release: 0.11.0

This commit is contained in:
CanadaHonk 2023-01-08 22:35:38 +00:00
parent d95301199b
commit 7774f39a0c
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
# Gluon Changelog # Gluon Changelog
## v0.10.1 ## [v0.11.0 - 2023-01-08](https://gluonjs.org/blog/gluon-v0.11/)
## v0.10.1 - 2023-01-07
- Fixed IPC exposed functions being called with arguments incorrectly - Fixed IPC exposed functions being called with arguments incorrectly
- Fixed onLoad causing errors in Node - Fixed onLoad causing errors in Node

View File

@ -1,6 +1,6 @@
{ {
"name": "@gluon-framework/gluon", "name": "@gluon-framework/gluon",
"version": "0.11.0-alpha.7", "version": "0.11.0",
"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

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