Skip to content

Commit

Permalink
Merge pull request #174 from finos/2.0-release-candidate-2
Browse files Browse the repository at this point in the history
2.0 release candidate 2
  • Loading branch information
finos-admin authored Jun 8, 2023
2 parents 892b7a6 + 14f9f97 commit b48bac4
Show file tree
Hide file tree
Showing 135 changed files with 5,328 additions and 5,514 deletions.
894 changes: 840 additions & 54 deletions directories/local-conformance-2_0.v2.json

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions options/glue-core-app-2.0.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
module.exports = {
files: './dist/**/index.html',
from: '<!-- optional 2.0 app scripts -->',
to: '<script src="https://unpkg.com/@glue42/web-platform@latest/dist/platform.web.umd.js"></script>\n'+
' <script src="https://unpkg.com/@glue42/[email protected]/dist/fdc3.umd.js"></script>\n'+
' <script src="../lib/glue/startRunner.js"></script>\n'
};
to: ' <script src="https://unpkg.com/@glue42/[email protected]/dist/platform.web.umd.js"></script>\n'+
'<script src="../glue42/startRunner.js"></script>\n'+
'<script src="https://unpkg.com/@glue42/[email protected]/dist/fdc3.umd.js"></script>'
};


8 changes: 4 additions & 4 deletions options/glue-core-support-2.0.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
files: './dist/**/index.html',
from: '<!-- optional 2.0 support scripts -->',
to: '<script src="https://unpkg.com/@glue42/web-platform@latest/dist/platform.web.umd.js"></script>\n'+
' <script src="https://unpkg.com/@glue42/[email protected]/dist/fdc3.umd.js"></script>\n'+
' <script src="../lib/glue/startSupport.js"></script>\n'
};
to: '<script src="https://unpkg.com/@glue42/web@2.21.0/dist/web.umd.js"></script>\n'+
' <script src="../glue42/startSupport.js"></script>\n'+
' <script src="https://unpkg.com/@glue42/[email protected]/dist/fdc3.umd.js"></script>\n'
};
449 changes: 449 additions & 0 deletions options/glue/v2.0/glue42/startRunner.js

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions options/glue/v2.0/glue42/startSupport.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const init = async () => {
const config = {
intents: {
enableIntentsResolverUI: false,
},
};

const glue = await GlueWeb(config);

console.log(`GlueWeb initialized successfully with version: ${glue.version}`);
};

init().catch(console.error);
Loading

0 comments on commit b48bac4

Please sign in to comment.