From 4bf7ed4674aa420bec7bfffa2b2ae13b8d0ed2d0 Mon Sep 17 00:00:00 2001 From: plucik Date: Fri, 19 Jun 2026 15:03:46 +0300 Subject: [PATCH 1/4] changes linux pyinstaller from single-file to dir --- pgmanage/pgmanage-lin.spec | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pgmanage/pgmanage-lin.spec b/pgmanage/pgmanage-lin.spec index b1eb6052a..630f74186 100644 --- a/pgmanage/pgmanage-lin.spec +++ b/pgmanage/pgmanage-lin.spec @@ -53,12 +53,22 @@ pyz = PYZ(a.pure, a.zipped_data, exe = EXE(pyz, a.scripts, [], - a.binaries, - a.zipfiles, - a.datas, + exclude_binaries=True, name='pgmanage-server', debug=False, strip=False, upx=True, runtime_tmpdir=None, console=True ) + + +coll = COLLECT( + exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=True, + upx_exclude=[], + name='pgmanage-server', +) \ No newline at end of file From 52a1abb4d464997aadfe340f3904c53aa792849e Mon Sep 17 00:00:00 2001 From: plucik Date: Fri, 19 Jun 2026 18:15:54 +0300 Subject: [PATCH 2/4] improves app loading time on nwjs front-end part --- deploy/app/index.html | 110 +++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 72 deletions(-) diff --git a/deploy/app/index.html b/deploy/app/index.html index f768d37f1..6615a0869 100644 --- a/deploy/app/index.html +++ b/deploy/app/index.html @@ -35,6 +35,7 @@ position: absolute; top: 30px; left: 0; width: 100%; height: calc(100% - 30px); + visibility: hidden; } #loading_interface { @@ -583,31 +584,6 @@