diff --git a/OnlyOffice/build/release/OnlyOffice.zip b/OnlyOffice/build/release/OnlyOffice.zip index f6226d3..0f32135 100644 Binary files a/OnlyOffice/build/release/OnlyOffice.zip and b/OnlyOffice/build/release/OnlyOffice.zip differ diff --git a/libantosdk/README.md b/libantosdk/README.md index a54d699..c1d47c4 100644 --- a/libantosdk/README.md +++ b/libantosdk/README.md @@ -2,6 +2,7 @@ AntOSDK: development API for AntOS based applications/projects ## Change logs +- 0.0.10: fix binary readfile bug - 0.0.9: Fix locale gen bug - 0.0.8: Update JQuery support in typescript - 0.0.7: enable typescript downlevelIteration compile option diff --git a/libantosdk/build/debug/README.md b/libantosdk/build/debug/README.md index a54d699..c1d47c4 100644 --- a/libantosdk/build/debug/README.md +++ b/libantosdk/build/debug/README.md @@ -2,6 +2,7 @@ AntOSDK: development API for AntOS based applications/projects ## Change logs +- 0.0.10: fix binary readfile bug - 0.0.9: Fix locale gen bug - 0.0.8: Update JQuery support in typescript - 0.0.7: enable typescript downlevelIteration compile option diff --git a/libantosdk/build/debug/core/worker.js b/libantosdk/build/debug/core/worker.js index 6ee2f5b..6e61252 100644 --- a/libantosdk/build/debug/core/worker.js +++ b/libantosdk/build/debug/core/worker.js @@ -148,7 +148,7 @@ class AntOSDKBaseJob { req.send(JSON.stringify(data)); }); } - read_files(files) + read_files(files, type) { return new Promise( async (resolve, reject) => { try{ @@ -161,7 +161,7 @@ class AntOSDKBaseJob { promises = []; for(let file of files) { - promises.push(this.get(file.getlink(this.job.root))); + promises.push(this.get(file.getlink(this.job.root), type)); } const contents = await Promise.all(promises); resolve(contents); diff --git a/libantosdk/build/debug/package.json b/libantosdk/build/debug/package.json index 429098d..356becb 100644 --- a/libantosdk/build/debug/package.json +++ b/libantosdk/build/debug/package.json @@ -7,7 +7,7 @@ "author": "Xuan Sang LE", "email": "mrsang@iohub.dev" }, - "version": "0.0.9-a", + "version": "0.0.10-a", "category": "Development", "iconclass": "fa fa-cog", "mimes": [ diff --git a/libantosdk/build/release/libantosdk.zip b/libantosdk/build/release/libantosdk.zip index 4f90ab8..3bf52b5 100644 Binary files a/libantosdk/build/release/libantosdk.zip and b/libantosdk/build/release/libantosdk.zip differ diff --git a/libantosdk/core/worker.js b/libantosdk/core/worker.js index 6ee2f5b..6e61252 100644 --- a/libantosdk/core/worker.js +++ b/libantosdk/core/worker.js @@ -148,7 +148,7 @@ class AntOSDKBaseJob { req.send(JSON.stringify(data)); }); } - read_files(files) + read_files(files, type) { return new Promise( async (resolve, reject) => { try{ @@ -161,7 +161,7 @@ class AntOSDKBaseJob { promises = []; for(let file of files) { - promises.push(this.get(file.getlink(this.job.root))); + promises.push(this.get(file.getlink(this.job.root), type)); } const contents = await Promise.all(promises); resolve(contents); diff --git a/libantosdk/package.json b/libantosdk/package.json index 429098d..356becb 100644 --- a/libantosdk/package.json +++ b/libantosdk/package.json @@ -7,7 +7,7 @@ "author": "Xuan Sang LE", "email": "mrsang@iohub.dev" }, - "version": "0.0.9-a", + "version": "0.0.10-a", "category": "Development", "iconclass": "fa fa-cog", "mimes": [ diff --git a/packages.json b/packages.json index e0f4ffb..41a7640 100644 --- a/packages.json +++ b/packages.json @@ -195,7 +195,7 @@ "description": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/libantosdk/README.md", "category": "Development", "author": "Xuan Sang LE", - "version": "0.0.9-a", + "version": "0.0.10-a", "dependencies": [], "download": "https://raw.githubusercontent.com/lxsang/antosdk-apps/master/libantosdk/build/release/libantosdk.zip" },