Compare commits

...

8 Commits

Author SHA1 Message Date
Lukas Obermann 0dc6316b5b docs(github): use task list for new book data sources 2025-09-06 17:08:53 +02:00
Lukas Obermann c7d1735e4b docs(github): change new book data template to hide instructions as comments 2025-09-06 17:03:13 +02:00
Lukas Obermann aa93dab7fd build(release): 1.5.2 2025-01-02 18:43:46 +01:00
Lukas Obermann 5a9ae86cf9 build(git): merge master 2025-01-02 18:43:14 +01:00
Michel Fedde 7f5f94491e fix: throws during startup due to changed devtools identifiers
Refs: #1634
Co-authored-by: Lukas Obermann <lukas.obermann@icloud.com>
2025-01-02 18:26:57 +01:00
Lukas Obermann a2979650f2 build(deps): fix auto-fixable vulnerabilities in packages 2025-01-02 18:17:24 +01:00
Lukas Obermann 8e8932cd83 build(release): bump version to 1.5.1 2022-03-20 16:05:05 +01:00
Lukas Obermann c15505062d build(release): 1.5.1
Refs: #1360
2022-03-20 15:26:11 +01:00
5 changed files with 1911 additions and 2126 deletions
+20 -10
View File
@@ -9,19 +9,27 @@ assignees: ''
## Sources
> List here what is included in this part of the book to implement. E.g., for special abilities, you need to list every source of entries from the book. Example (in German):
>
> - S. 133150 (Berufsgeheimnisse)
<!-- List here what is included in this part of the book to implement. E.g., for special abilities, you need to list every source of entries from the book. Use page ranges if entries span multiple pages. Example:
- S. X (Section/Chapter Name)
- [ ] S. 133 (Entry A)
- [ ] S. 133134 (Entry B)
Alternatively, provide an overview of the different sections in the book where one or more relevant entries occur. Example (in German):
- [ ] S. 133150 (Berufsgeheimnisse)
-->
- [ ] S. X (Entry/Section/Chapter Name)
## Special Notes
> List here any special hints to implement the sources listed above.
>
> - …
<!-- List here any special hints to implement the sources listed above. Example:
- All entries are already present, only add source references
- Pay attention to the layout of entry A, there is a gap that should not be in Optolith
Replace the dash below this comment if there are any notes. -->
@@ -29,8 +37,10 @@ assignees: ''
## Special Implementations
> List here what cannot be solved only using the database. Example (in German):
>
> - [ ] Voraussetzungen Vorliebe I-II
<!-- List issues that track what cannot be solved only using the database. Example:
- #123
Replace the dash below this comment if there are any notes. -->
+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.
### [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)
+1869 -2107
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -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
View File
@@ -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 ...")