Compare commits
6 Commits
develop-V2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| aa93dab7fd | |||
| 5a9ae86cf9 | |||
| 7f5f94491e | |||
| a2979650f2 | |||
| 8e8932cd83 | |||
| c15505062d |
@@ -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.
|
||||
|
||||
### [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)
|
||||
|
||||
|
||||
|
||||
Generated
+1869
-2107
File diff suppressed because it is too large
Load Diff
+3
-3
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "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'.",
|
||||
"author": {
|
||||
"name": "Lukas Obermann",
|
||||
@@ -14,7 +14,7 @@
|
||||
"@electron/remote": "^2.0.8",
|
||||
"adm-zip": "^0.5.1",
|
||||
"ajv": "6.12.6",
|
||||
"electron-devtools-installer": "^3.2.0",
|
||||
"electron-devtools-installer": "^3.2.1",
|
||||
"electron-log": "^4.4.8",
|
||||
"electron-updater": "^5.0.5",
|
||||
"electron-window-state": "5.0.3",
|
||||
@@ -103,4 +103,4 @@
|
||||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+12
-6
@@ -182,14 +182,20 @@ const main = async () => {
|
||||
|
||||
console.log ("main: Install extensions ...")
|
||||
|
||||
const installExtension = require ("electron-devtools-installer")
|
||||
|
||||
const installedExtensions = await installExtension.default ([
|
||||
installExtension.REACT_DEVELOPER_TOOLS,
|
||||
installExtension.REDUX_DEVTOOLS,
|
||||
])
|
||||
try {
|
||||
const installExtension = require ("electron-devtools-installer")
|
||||
|
||||
console.log (`main: Installed extensions: ${installedExtensions}`)
|
||||
const installedExtensions = await installExtension.default ([
|
||||
installExtension.REACT_DEVELOPER_TOOLS,
|
||||
installExtension.REDUX_DEVTOOLS,
|
||||
])
|
||||
|
||||
console.log (`main: Installed extensions: ${installedExtensions}`)
|
||||
}
|
||||
catch (error) {
|
||||
console.error ("main: Installing extensions failed! Skipping extensions...")
|
||||
}
|
||||
|
||||
console.log ("main: Create Window ...")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user