mtranserver 4.0.25 → 4.0.26
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/dist/main.js +2 -2
- package/package.json +30 -10
package/dist/main.js
CHANGED
|
@@ -213814,7 +213814,7 @@ __export(exports_version, {
|
|
|
213814
213814
|
function getVersion() {
|
|
213815
213815
|
return VERSION;
|
|
213816
213816
|
}
|
|
213817
|
-
var VERSION = "4.0.
|
|
213817
|
+
var VERSION = "4.0.26";
|
|
213818
213818
|
|
|
213819
213819
|
// src/server/index.ts
|
|
213820
213820
|
init_config();
|
|
@@ -215451,7 +215451,7 @@ var swagger_default = {
|
|
|
215451
215451
|
},
|
|
215452
215452
|
info: {
|
|
215453
215453
|
title: "MTranServer API",
|
|
215454
|
-
version: "4.0.
|
|
215454
|
+
version: "4.0.26",
|
|
215455
215455
|
description: "Translation server API",
|
|
215456
215456
|
license: {
|
|
215457
215457
|
name: "Apache-2.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mtranserver",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.26",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Translation server",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -78,11 +78,7 @@
|
|
|
78
78
|
"extraMetadata": {
|
|
79
79
|
"main": "dist/main-bundled.js"
|
|
80
80
|
},
|
|
81
|
-
"asar":
|
|
82
|
-
"asarUnpack": [
|
|
83
|
-
"dist/mtranserver*",
|
|
84
|
-
"dist/*.exe"
|
|
85
|
-
],
|
|
81
|
+
"asar": true,
|
|
86
82
|
"artifactName": "mtranserver-desktop-${version}-${os}-${arch}.${ext}",
|
|
87
83
|
"files": [
|
|
88
84
|
"desktop/**/*",
|
|
@@ -97,7 +93,13 @@
|
|
|
97
93
|
"output": "release"
|
|
98
94
|
},
|
|
99
95
|
"mac": {
|
|
100
|
-
"target":
|
|
96
|
+
"target": {
|
|
97
|
+
"target": "dmg",
|
|
98
|
+
"arch": [
|
|
99
|
+
"x64",
|
|
100
|
+
"arm64"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
101
103
|
"icon": "images/icon.icns"
|
|
102
104
|
},
|
|
103
105
|
"win": {
|
|
@@ -106,9 +108,27 @@
|
|
|
106
108
|
},
|
|
107
109
|
"linux": {
|
|
108
110
|
"target": [
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
111
|
+
{
|
|
112
|
+
"target": "AppImage",
|
|
113
|
+
"arch": [
|
|
114
|
+
"x64",
|
|
115
|
+
"arm64"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"target": "deb",
|
|
120
|
+
"arch": [
|
|
121
|
+
"x64",
|
|
122
|
+
"arm64"
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"target": "rpm",
|
|
127
|
+
"arch": [
|
|
128
|
+
"x64",
|
|
129
|
+
"arm64"
|
|
130
|
+
]
|
|
131
|
+
}
|
|
112
132
|
],
|
|
113
133
|
"icon": "images/icon.png"
|
|
114
134
|
},
|