@basthon/gui-base 0.36.9 → 0.36.10
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/lib/main.js +2 -2
- package/package.json +4 -4
package/lib/main.js
CHANGED
|
@@ -140,9 +140,9 @@ export class GUIBase {
|
|
|
140
140
|
const reader = new FileReader();
|
|
141
141
|
reader.readAsArrayBuffer(file);
|
|
142
142
|
reader.onload = async (event) => {
|
|
143
|
-
var _a, _b;
|
|
143
|
+
var _a, _b, _c;
|
|
144
144
|
(_a = this.kernel) === null || _a === void 0 ? void 0 : _a.putRessource(file.name, reader.result);
|
|
145
|
-
this.info(
|
|
145
|
+
this.info(`Fichier utilisable depuis ${(_b = this.kernel) === null || _b === void 0 ? void 0 : _b.languageName()}`, `${file.name} est maintenant utilisable depuis ${(_c = this.kernel) === null || _c === void 0 ? void 0 : _c.languageName()}`);
|
|
146
146
|
resolve();
|
|
147
147
|
};
|
|
148
148
|
reader.onerror = reject;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basthon/gui-base",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.10",
|
|
4
4
|
"description": "Basthon - Base GUI",
|
|
5
5
|
"homepage": "https://basthon.fr",
|
|
6
6
|
"bugs": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"clean": "rm -rf lib/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@basthon/kernel-base": "^0.36.
|
|
29
|
-
"@basthon/kernel-loader": "^0.36.
|
|
28
|
+
"@basthon/kernel-base": "^0.36.10",
|
|
29
|
+
"@basthon/kernel-loader": "^0.36.10",
|
|
30
30
|
"js-base64": "^3.7.2",
|
|
31
31
|
"pako": "^2.0.4",
|
|
32
32
|
"promise-delegate": "^1.0.1"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "107f9cca4c8e93a4c8858b298369d945866b4694"
|
|
44
44
|
}
|