@groupdocs/groupdocs.editor 25.4.0 → 26.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -2
- package/lib/groupdocs.editor.js +2 -3
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -11,8 +11,8 @@ const path = require('path');
|
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
if (!checkFileExists(path.join(__dirname, 'lib/groupdocs-editor-nodejs-
|
|
15
|
-
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-editor-nodejs-
|
|
14
|
+
if (!checkFileExists(path.join(__dirname, 'lib/groupdocs-editor-nodejs-26.1.jar'))) {
|
|
15
|
+
console.warn('\x1b[33m%s\x1b[0m', `File groupdocs-editor-nodejs-26.1.jar not found in the lib directory.\nPlease navigate to the package directory:`);
|
|
16
16
|
console.log('\n cd node_modules/@groupdocs/groupdocs.editor\n');
|
|
17
17
|
console.warn('\x1b[33m%s\x1b[0m', `Then download the JAR file using the command:`);
|
|
18
18
|
console.log('\n npm run postinstall\n');
|
package/lib/groupdocs.editor.js
CHANGED
|
@@ -11,7 +11,7 @@ java.asyncOptions = {
|
|
|
11
11
|
syncSuffix: '',
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
java.classpath.push(path.join(__dirname, '/groupdocs-editor-nodejs-
|
|
14
|
+
java.classpath.push(path.join(__dirname, '/groupdocs-editor-nodejs-26.1.jar'))
|
|
15
15
|
|
|
16
16
|
exports = module.exports
|
|
17
17
|
|
|
@@ -111,6 +111,7 @@ exports.Editor = java.import("com.groupdocs.editor.Editor");
|
|
|
111
111
|
exports.EncryptedException = java.import("com.groupdocs.editor.EncryptedException");
|
|
112
112
|
exports.IncorrectPasswordException = java.import("com.groupdocs.editor.IncorrectPasswordException");
|
|
113
113
|
exports.InvalidFormatException = java.import("com.groupdocs.editor.InvalidFormatException");
|
|
114
|
+
exports.InvalidImageDimensionsException = java.import("com.groupdocs.editor.InvalidImageDimensionsException");
|
|
114
115
|
exports.PasswordRequiredException = java.import("com.groupdocs.editor.PasswordRequiredException");
|
|
115
116
|
exports.StreamBuffer = java.import("com.groupdocs.editor.StreamBuffer");
|
|
116
117
|
exports.ArchiveSecurityException = java.import("com.groupdocs.editor.exception.ArchiveSecurityException");
|
|
@@ -162,12 +163,10 @@ exports.InvalidFontFormatException = java.import("com.groupdocs.editor.htmlcss.e
|
|
|
162
163
|
exports.InvalidImageFormatException = java.import("com.groupdocs.editor.htmlcss.exceptions.InvalidImageFormatException");
|
|
163
164
|
exports.ResourceTypeDetector = java.import("com.groupdocs.editor.htmlcss.resources.ResourceTypeDetector");
|
|
164
165
|
exports.AudioType = java.import("com.groupdocs.editor.htmlcss.resources.audio.AudioType");
|
|
165
|
-
exports.Mp3Audio = java.import("com.groupdocs.editor.htmlcss.resources.audio.Mp3Audio");
|
|
166
166
|
exports.EotFont = java.import("com.groupdocs.editor.htmlcss.resources.fonts.EotFont");
|
|
167
167
|
exports.FontType = java.import("com.groupdocs.editor.htmlcss.resources.fonts.FontType");
|
|
168
168
|
exports.OtfFont = java.import("com.groupdocs.editor.htmlcss.resources.fonts.OtfFont");
|
|
169
169
|
exports.TtfFont = java.import("com.groupdocs.editor.htmlcss.resources.fonts.TtfFont");
|
|
170
|
-
exports.Woff2Font = java.import("com.groupdocs.editor.htmlcss.resources.fonts.Woff2Font");
|
|
171
170
|
exports.WoffFont = java.import("com.groupdocs.editor.htmlcss.resources.fonts.WoffFont");
|
|
172
171
|
exports.Dimensions = java.import("com.groupdocs.editor.htmlcss.resources.images.Dimensions");
|
|
173
172
|
exports.ImageType = java.import("com.groupdocs.editor.htmlcss.resources.images.ImageType");
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@groupdocs/groupdocs.editor",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "26.1.0",
|
|
4
4
|
"description": "GroupDocs.Editor for Node.js is a document editing API developed by GroupDocs, a part of Aspose. It allows developers to integrate document editing functionality into their applications.",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-editor-nodejs/
|
|
6
|
+
"postinstall": "curl -H 'Cache-Control:no-cache' https://releases.groupdocs.com/java/repo/com/groupdocs/groupdocs-editor-nodejs/26.1/groupdocs-editor-nodejs-26.1.jar > lib/groupdocs-editor-nodejs-26.1.jar"
|
|
7
7
|
},
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"keywords": [
|