release: 0.10.1

This commit is contained in:
Oj 2023-01-07 01:33:25 +00:00
parent a3479988be
commit 159be343f9
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Gluon Changelog
## v0.10.1
- Fixed IPC exposed functions being called with arguments incorrectly
- Fixed onLoad causing errors in Node
## [v0.10.0 - 2023-01-05](https://gluonjs.org/blog/gluon-v0.10/)
## [v0.9.0 - 2023-01-03](https://gluonjs.org/blog/gluon-v0.9/)

View File

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

View File

@ -1,7 +1,7 @@
const rgb = (r, g, b, msg) => `\x1b[38;2;${r};${g};${b}m${msg}\x1b[0m`;
global.log = (...args) => console.log(`[${rgb(88, 101, 242, 'Gluon')}]`, ...args);
process.versions.gluon = '0.11.0-alpha.0';
process.versions.gluon = '0.10.1';
import { join, dirname, delimiter, sep } from 'path';
import { access, readdir } from 'fs/promises';