summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build-win.yml4
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--backend/src/browser.py (renamed from backend/browser.py)0
-rw-r--r--backend/src/customtypes.py (renamed from backend/customtypes.py)0
-rw-r--r--backend/src/helpers.py (renamed from backend/helpers.py)0
-rw-r--r--backend/src/injector.py (renamed from backend/injector.py)0
-rw-r--r--backend/src/legacy/library.js (renamed from backend/legacy/library.js)0
-rw-r--r--backend/src/loader.py (renamed from backend/loader.py)0
-rw-r--r--backend/src/locales/bg-BG.json (renamed from backend/locales/bg-BG.json)0
-rw-r--r--backend/src/locales/cs-CZ.json (renamed from backend/locales/cs-CZ.json)0
-rw-r--r--backend/src/locales/de-DE.json (renamed from backend/locales/de-DE.json)0
-rw-r--r--backend/src/locales/el-GR.json (renamed from backend/locales/el-GR.json)0
-rw-r--r--backend/src/locales/en-US.json (renamed from backend/locales/en-US.json)0
-rw-r--r--backend/src/locales/es-ES.json (renamed from backend/locales/es-ES.json)0
-rw-r--r--backend/src/locales/fi-FI.json (renamed from backend/locales/fi-FI.json)0
-rw-r--r--backend/src/locales/fr-FR.json (renamed from backend/locales/fr-FR.json)0
-rw-r--r--backend/src/locales/it-IT.json (renamed from backend/locales/it-IT.json)0
-rw-r--r--backend/src/locales/ko-KR.json (renamed from backend/locales/ko-KR.json)0
-rw-r--r--backend/src/locales/nl-NL.json (renamed from backend/locales/nl-NL.json)0
-rw-r--r--backend/src/locales/pl-PL.json (renamed from backend/locales/pl-PL.json)0
-rw-r--r--backend/src/locales/pt-BR.json (renamed from backend/locales/pt-BR.json)0
-rw-r--r--backend/src/locales/pt-PT.json (renamed from backend/locales/pt-PT.json)0
-rw-r--r--backend/src/locales/ru-RU.json (renamed from backend/locales/ru-RU.json)0
-rw-r--r--backend/src/locales/sq-AL.json (renamed from backend/locales/sq-AL.json)0
-rw-r--r--backend/src/locales/uk-UA.json (renamed from backend/locales/uk-UA.json)0
-rw-r--r--backend/src/locales/zh-CN.json (renamed from backend/locales/zh-CN.json)0
-rw-r--r--backend/src/locales/zh-TW.json (renamed from backend/locales/zh-TW.json)0
-rw-r--r--backend/src/localplatform.py (renamed from backend/localplatform.py)0
-rw-r--r--backend/src/localplatformlinux.py (renamed from backend/localplatformlinux.py)0
-rw-r--r--backend/src/localplatformwin.py (renamed from backend/localplatformwin.py)0
-rw-r--r--backend/src/localsocket.py (renamed from backend/localsocket.py)0
-rw-r--r--backend/src/main.py (renamed from backend/main.py)0
-rw-r--r--backend/src/plugin.py (renamed from backend/plugin.py)0
-rw-r--r--backend/src/settings.py (renamed from backend/settings.py)0
-rw-r--r--backend/src/updater.py (renamed from backend/updater.py)0
-rw-r--r--backend/src/utilities.py (renamed from backend/utilities.py)0
36 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml
index 16577da3..a0fd13b9 100644
--- a/.github/workflows/build-win.yml
+++ b/.github/workflows/build-win.yml
@@ -43,10 +43,10 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data "./backend/static;/backend/static" --add-data "./backend/locales;/backend/locales" --add-data "./backend/legacy;/backend/legacy" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./main.py
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data "./backend/src/static;/backend/src/static" --add-data "./backend/src/locales;/backend/src/locales" --add-data "./backend/src/legacy;/backend/src/legacy" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./backend/main.py
- name: Build Python Backend (noconsole) 🛠️
- run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/static;/backend/static" --add-data "./backend/locales;/backend/locales" --add-data "./backend/legacy;/backend/legacy" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./main.py
+ run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/src/static;/backend/src/static" --add-data "./backend/src/locales;/backend/src/locales" --add-data "./backend/src/legacy;/backend/src/legacy" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./backend/main.py
- name: Upload package artifact ⬆️
uses: actions/upload-artifact@v3
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3c09beb9..70b68f96 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -86,7 +86,7 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/backend/static --add-data ./backend/locales:/backend/locales --add-data ./backend/legacy:/backend/legacy --add-data ./plugin:/plugin --hidden-import=sqlite3 ./main.py
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/src/static:/backend/src/static --add-data ./backend/src/locales:/backend/src/locales --add-data ./backend/src/legacy:/backend/src/legacy --add-data ./plugin:/plugin --hidden-import=sqlite3 ./backend/main.py
- name: Upload package artifact ⬆️
if: ${{ !env.ACT }}
diff --git a/backend/browser.py b/backend/src/browser.py
index 08560749..08560749 100644
--- a/backend/browser.py
+++ b/backend/src/browser.py
diff --git a/backend/customtypes.py b/backend/src/customtypes.py
index 84ebc235..84ebc235 100644
--- a/backend/customtypes.py
+++ b/backend/src/customtypes.py
diff --git a/backend/helpers.py b/backend/src/helpers.py
index f8796bd8..f8796bd8 100644
--- a/backend/helpers.py
+++ b/backend/src/helpers.py
diff --git a/backend/injector.py b/backend/src/injector.py
index a217f689..a217f689 100644
--- a/backend/injector.py
+++ b/backend/src/injector.py
diff --git a/backend/legacy/library.js b/backend/src/legacy/library.js
index 17f4e46f..17f4e46f 100644
--- a/backend/legacy/library.js
+++ b/backend/src/legacy/library.js
diff --git a/backend/loader.py b/backend/src/loader.py
index 684570f7..684570f7 100644
--- a/backend/loader.py
+++ b/backend/src/loader.py
diff --git a/backend/locales/bg-BG.json b/backend/src/locales/bg-BG.json
index b9c4d803..b9c4d803 100644
--- a/backend/locales/bg-BG.json
+++ b/backend/src/locales/bg-BG.json
diff --git a/backend/locales/cs-CZ.json b/backend/src/locales/cs-CZ.json
index 74b7230c..74b7230c 100644
--- a/backend/locales/cs-CZ.json
+++ b/backend/src/locales/cs-CZ.json
diff --git a/backend/locales/de-DE.json b/backend/src/locales/de-DE.json
index 4ded8703..4ded8703 100644
--- a/backend/locales/de-DE.json
+++ b/backend/src/locales/de-DE.json
diff --git a/backend/locales/el-GR.json b/backend/src/locales/el-GR.json
index 62562935..62562935 100644
--- a/backend/locales/el-GR.json
+++ b/backend/src/locales/el-GR.json
diff --git a/backend/locales/en-US.json b/backend/src/locales/en-US.json
index 7845ae4f..7845ae4f 100644
--- a/backend/locales/en-US.json
+++ b/backend/src/locales/en-US.json
diff --git a/backend/locales/es-ES.json b/backend/src/locales/es-ES.json
index 6c47eb06..6c47eb06 100644
--- a/backend/locales/es-ES.json
+++ b/backend/src/locales/es-ES.json
diff --git a/backend/locales/fi-FI.json b/backend/src/locales/fi-FI.json
index b0ff1309..b0ff1309 100644
--- a/backend/locales/fi-FI.json
+++ b/backend/src/locales/fi-FI.json
diff --git a/backend/locales/fr-FR.json b/backend/src/locales/fr-FR.json
index f1c305f9..f1c305f9 100644
--- a/backend/locales/fr-FR.json
+++ b/backend/src/locales/fr-FR.json
diff --git a/backend/locales/it-IT.json b/backend/src/locales/it-IT.json
index 237bcdf4..237bcdf4 100644
--- a/backend/locales/it-IT.json
+++ b/backend/src/locales/it-IT.json
diff --git a/backend/locales/ko-KR.json b/backend/src/locales/ko-KR.json
index 48698c5c..48698c5c 100644
--- a/backend/locales/ko-KR.json
+++ b/backend/src/locales/ko-KR.json
diff --git a/backend/locales/nl-NL.json b/backend/src/locales/nl-NL.json
index 1adde308..1adde308 100644
--- a/backend/locales/nl-NL.json
+++ b/backend/src/locales/nl-NL.json
diff --git a/backend/locales/pl-PL.json b/backend/src/locales/pl-PL.json
index 5231fa37..5231fa37 100644
--- a/backend/locales/pl-PL.json
+++ b/backend/src/locales/pl-PL.json
diff --git a/backend/locales/pt-BR.json b/backend/src/locales/pt-BR.json
index 2a7c173b..2a7c173b 100644
--- a/backend/locales/pt-BR.json
+++ b/backend/src/locales/pt-BR.json
diff --git a/backend/locales/pt-PT.json b/backend/src/locales/pt-PT.json
index 9b273569..9b273569 100644
--- a/backend/locales/pt-PT.json
+++ b/backend/src/locales/pt-PT.json
diff --git a/backend/locales/ru-RU.json b/backend/src/locales/ru-RU.json
index 776ffa12..776ffa12 100644
--- a/backend/locales/ru-RU.json
+++ b/backend/src/locales/ru-RU.json
diff --git a/backend/locales/sq-AL.json b/backend/src/locales/sq-AL.json
index fe9d7eec..fe9d7eec 100644
--- a/backend/locales/sq-AL.json
+++ b/backend/src/locales/sq-AL.json
diff --git a/backend/locales/uk-UA.json b/backend/src/locales/uk-UA.json
index 09fbca1b..09fbca1b 100644
--- a/backend/locales/uk-UA.json
+++ b/backend/src/locales/uk-UA.json
diff --git a/backend/locales/zh-CN.json b/backend/src/locales/zh-CN.json
index d9d12aa0..d9d12aa0 100644
--- a/backend/locales/zh-CN.json
+++ b/backend/src/locales/zh-CN.json
diff --git a/backend/locales/zh-TW.json b/backend/src/locales/zh-TW.json
index 2891aa9c..2891aa9c 100644
--- a/backend/locales/zh-TW.json
+++ b/backend/src/locales/zh-TW.json
diff --git a/backend/localplatform.py b/backend/src/localplatform.py
index 028eff8f..028eff8f 100644
--- a/backend/localplatform.py
+++ b/backend/src/localplatform.py
diff --git a/backend/localplatformlinux.py b/backend/src/localplatformlinux.py
index bde2caac..bde2caac 100644
--- a/backend/localplatformlinux.py
+++ b/backend/src/localplatformlinux.py
diff --git a/backend/localplatformwin.py b/backend/src/localplatformwin.py
index 4c4e9439..4c4e9439 100644
--- a/backend/localplatformwin.py
+++ b/backend/src/localplatformwin.py
diff --git a/backend/localsocket.py b/backend/src/localsocket.py
index f38fe5e7..f38fe5e7 100644
--- a/backend/localsocket.py
+++ b/backend/src/localsocket.py
diff --git a/backend/main.py b/backend/src/main.py
index 793d000c..793d000c 100644
--- a/backend/main.py
+++ b/backend/src/main.py
diff --git a/backend/plugin.py b/backend/src/plugin.py
index 163bb9b6..163bb9b6 100644
--- a/backend/plugin.py
+++ b/backend/src/plugin.py
diff --git a/backend/settings.py b/backend/src/settings.py
index a9ab3daa..a9ab3daa 100644
--- a/backend/settings.py
+++ b/backend/src/settings.py
diff --git a/backend/updater.py b/backend/src/updater.py
index ac7c78d8..ac7c78d8 100644
--- a/backend/updater.py
+++ b/backend/src/updater.py
diff --git a/backend/utilities.py b/backend/src/utilities.py
index 3c7c8c2e..3c7c8c2e 100644
--- a/backend/utilities.py
+++ b/backend/src/utilities.py