build: sources for v0.9.19.1

This commit is contained in:
2026-06-03 13:12:30 +02:00
parent 1c5396b37d
commit 466b8c518d
4 changed files with 24 additions and 2 deletions

View File

@@ -1,5 +1,16 @@
# Changelog
## [0.9.19.1] 2026-06-03
### Behoben
- **Hotfix: Standalone-Binaries (Linux/Windows) der 0.9.19 wurden
aus einem veralteten Source-Stand gebaut** und enthielten die
neuen Filament-Sync-/Custom-Profile-Import-Features nicht. Das
Docker-Image war nicht betroffen. Diese Version baut die Binaries
aus dem tatsächlichen 0.9.19-Source neu.
- **Windows-EXE zeigt die korrekte Versionsnummer** statt `vunknown`
(PyInstaller-Spec bettet die `VERSION`-Datei jetzt mit ein).
## [0.9.19] 2026-06-02
### Neu

View File

@@ -1,5 +1,16 @@
# Changelog
## [0.9.19.1] 2026-06-03
### Fixed
- **Hotfix: standalone binaries (Linux/Windows) for v0.9.19 were
built from a stale source revision** and shipped without the
new filament-sync / custom-profile-import features. The Docker
image was not affected. This release rebuilds the binaries
from the actual 0.9.19 source.
- **Windows-EXE shows the correct version** instead of `vunknown`
(PyInstaller spec now bundles the `VERSION` file).
## [0.9.19] 2026-06-02
### New

View File

@@ -1 +1 @@
0.9.19
0.9.19.1

View File

@@ -6,7 +6,7 @@
# ein → zur Laufzeit über sys._MEIPASS lesbar (_WEB_BASE in der Bridge).
from PyInstaller.utils.hooks import collect_all
datas = [("web", "web"), ("data", "static"), ("VERSION", ".")] # bridge/data/ → static/ im _MEIPASS
datas = [("web", "web"), ("data", "static")] # bridge/data/ → static/ im _MEIPASS
binaries = []
hiddenimports = []