Compare commits

...
6 Commits
4 changed files with 1891 additions and 2116 deletions
+7
View File
@@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [1.5.2](https://github.com/elyukai/optolith-client/compare/v1.5.2-alpha.4...v1.5.2) (2025-01-02)
### Bug Fixes
* throws during startup due to changed devtools identifiers ([7f5f944](https://github.com/elyukai/optolith-client/commit/7f5f94491e1432d66add1315889075fb5369f700)), closes [#1634](https://github.com/elyukai/optolith-client/issues/1634)
### [1.5.2-alpha.4](https://github.com/elyukai/optolith-client/compare/v1.5.2-alpha.3...v1.5.2-alpha.4) (2022-07-22) ### [1.5.2-alpha.4](https://github.com/elyukai/optolith-client/compare/v1.5.2-alpha.3...v1.5.2-alpha.4) (2022-07-22)
+1864 -2102
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,7 +1,7 @@
{ {
"name": "optolith", "name": "optolith",
"productName": "Optolith", "productName": "Optolith",
"version": "1.5.2-alpha.4", "version": "1.5.2",
"description": "A generator for heroes for the P&P-RPG 'The Dark Eye'.", "description": "A generator for heroes for the P&P-RPG 'The Dark Eye'.",
"author": { "author": {
"name": "Lukas Obermann", "name": "Lukas Obermann",
@@ -14,7 +14,7 @@
"@electron/remote": "^2.0.8", "@electron/remote": "^2.0.8",
"adm-zip": "^0.5.1", "adm-zip": "^0.5.1",
"ajv": "6.12.6", "ajv": "6.12.6",
"electron-devtools-installer": "^3.2.0", "electron-devtools-installer": "^3.2.1",
"electron-log": "^4.4.8", "electron-log": "^4.4.8",
"electron-updater": "^5.0.5", "electron-updater": "^5.0.5",
"electron-window-state": "5.0.3", "electron-window-state": "5.0.3",
+6
View File
@@ -182,6 +182,8 @@ const main = async () => {
console.log ("main: Install extensions ...") console.log ("main: Install extensions ...")
try {
const installExtension = require ("electron-devtools-installer") const installExtension = require ("electron-devtools-installer")
const installedExtensions = await installExtension.default ([ const installedExtensions = await installExtension.default ([
@@ -190,6 +192,10 @@ const main = async () => {
]) ])
console.log (`main: Installed extensions: ${installedExtensions}`) console.log (`main: Installed extensions: ${installedExtensions}`)
}
catch (error) {
console.error ("main: Installing extensions failed! Skipping extensions...")
}
console.log ("main: Create Window ...") console.log ("main: Create Window ...")