Skip to content

Commit

Permalink
Update ExcelDNA to v1.5.0 (#65)
Browse files Browse the repository at this point in the history
* Updated excel dna to latest version and bumped to version 4.1.0

* Updated add-in.zip with signed assemblies.

* Updated add-in.zip to include more signed assemblies.

Co-authored-by: John M <john.mandia@gmail.com>
  • Loading branch information
richbrowne-openfin and johnman committed Aug 27, 2021
1 parent 6af9625 commit 1c934cb
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 deletions.
3 changes: 1 addition & 2 deletions .gitignore
@@ -1,3 +1,2 @@
node_modules
.idea
package-lock.json
.idea
2 changes: 1 addition & 1 deletion client/fin.desktop.Excel.js
Expand Up @@ -558,7 +558,7 @@ class ExcelApplication extends RpcDispatcher_1.RpcDispatcher {
constructor(connectionUuid, logger) {
super(logger);
this.workbooks = {};
this.version = { clientVersion: "4.0.7", buildVersion: "4.0.7.0" };
this.version = { clientVersion: "4.1.0", buildVersion: "4.1.0.0" };
this.loggerName = "ExcelApplication";
this.processExcelEvent = (data, uuid) => {
var eventType = data.event;
Expand Down
10 changes: 5 additions & 5 deletions demo/app.json
Expand Up @@ -2,9 +2,9 @@
"licenseKey": "64605fac-add3-48a0-8710-64b38e96a2dd",
"startup_app": {
"name": "Excel-API-Example",
"url": "https://cdn.openfin.co/release/exceljs/4.0.7/demo/index.html",
"url": "https://cdn.openfin.co/release/exceljs/4.1.0/demo/index.html",
"uuid": "excel-api-example",
"applicationIcon": "https://cdn.openfin.co/release/exceljs/4.0.7/demo/openfin-excel.ico",
"applicationIcon": "https://cdn.openfin.co/release/exceljs/4.1.0/demo/openfin-excel.ico",
"autoShow": true,
"defaultWidth": 760,
"defaultHeight": 704,
Expand All @@ -21,17 +21,17 @@
"arguments": "",
"version": "14.78.48.16"
},
"splashScreenImage": "https://cdn.openfin.co/release/exceljs/4.0.7/demo/splash_excel.png",
"splashScreenImage": "https://cdn.openfin.co/release/exceljs/4.1.0/demo/splash_excel.png",
"shortcut": {
"company": "OpenFin",
"description": "excel-api-example",
"icon": "https://cdn.openfin.co/release/exceljs/4.0.7/demo/openfin-excel.ico",
"icon": "https://cdn.openfin.co/release/exceljs/4.1.0/demo/openfin-excel.ico",
"name": "excel-api-example"
},
"services": [
{
"name": "excel",
"manifestUrl": "https://cdn.openfin.co/release/exceljs/4.0.7/provider/app.json"
"manifestUrl": "https://cdn.openfin.co/release/exceljs/4.1.0/provider/app.json"
}
]
}
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "excel-api-example",
"version": "4.0.7",
"version": "4.1.0",
"description": "Excel integration for OpenFin",
"main": "main.js",
"dependencies": {},
Expand Down
Binary file modified provider/add-in.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions provider/app.json
Expand Up @@ -2,7 +2,7 @@
"licenseKey": "64605fac-add3-48a0-8710-64b38e96a2dd",
"startup_app": {
"name": "Excel-Service-Manager",
"url": "https://cdn.openfin.co/release/exceljs/4.0.7/provider/provider.html",
"url": "https://cdn.openfin.co/release/exceljs/4.1.0/provider/provider.html",
"uuid": "excel-service-manager",
"permissions": {
"System": {
Expand All @@ -17,9 +17,9 @@
},
"appAssets": [
{
"src": "https://cdn.openfin.co/release/exceljs/4.0.7/provider/add-in.zip",
"src": "https://cdn.openfin.co/release/exceljs/4.1.0/provider/add-in.zip",
"alias": "excel-api-addin",
"version": "4.0.7"
"version": "4.1.0"
}
]
}
2 changes: 1 addition & 1 deletion provider/dev-app.json
Expand Up @@ -20,7 +20,7 @@
{
"src": "http://localhost:8080/provider/add-in.zip",
"alias": "excel-api-addin",
"version": "4.0.7",
"version": "4.1.0",
"forceDownload": true
}
]
Expand Down
4 changes: 2 additions & 2 deletions provider/provider.js
Expand Up @@ -83,8 +83,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
// XLL Add-In has been installed. If not, it will perform the deployment, registration,
// and start the service process
fin.desktop.main(() => __awaiter(this, void 0, void 0, function* () {
const providerVersion = "4.0.7";
const buildVersion = "4.0.7.0";
const providerVersion = "4.1.0";
const buildVersion = "4.1.0.0";
const excelAssetAlias = 'excel-api-addin';
const excelServiceUuid = '886834D1-4651-4872-996C-7B2578E953B9';
const installFolder = '%localappdata%\\OpenFin\\shared\\assets\\excel-api-addin';
Expand Down

0 comments on commit 1c934cb

Please sign in to comment.