release: 0.13.2

This commit is contained in:
CanadaHonk 2023-02-09 18:30:45 +00:00
parent b771777882
commit 40952f14b7
3 changed files with 5 additions and 2 deletions

View File

@ -6,6 +6,9 @@
- Fixed IPC exposing sometimes not working when ran early due to timing issue - Fixed IPC exposing sometimes not working when ran early due to timing issue
- Fixed IPC expose Proxy setter return values - Fixed IPC expose Proxy setter return values
### v0.13.2
- Fixed Local not resolving custom indexes
## [v0.12.0 - 2023-01-28](https://gluonjs.org/blog/gluon-v0.12/) ## [v0.12.0 - 2023-01-28](https://gluonjs.org/blog/gluon-v0.12/)

View File

@ -1,6 +1,6 @@
{ {
"name": "@gluon-framework/gluon", "name": "@gluon-framework/gluon",
"version": "0.13.1", "version": "0.13.2",
"description": "Make websites into desktop apps with system installed browsers and NodeJS.", "description": "Make websites into desktop apps with system installed browsers and NodeJS.",
"main": "src/index.js", "main": "src/index.js",
"types": "gluon.d.ts", "types": "gluon.d.ts",

View File

@ -9,7 +9,7 @@ import Firefox from './browser/firefox.js';
import * as ExtensionsAPI from './extensions.js'; import * as ExtensionsAPI from './extensions.js';
import LocalHTTP from './lib/local/http.js'; import LocalHTTP from './lib/local/http.js';
process.versions.gluon = '0.13.1'; process.versions.gluon = '0.13.2';
const __filename = fileURLToPath(import.meta.url); const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename); const __dirname = dirname(__filename);