summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerWolv <werwolv98@gmail.com>2023-09-26 14:58:27 +0200
committermarios8543 <marios8543@gmail.com>2023-10-17 17:08:23 +0300
commit45353c87c22613735bc81be8eaa985ce6acddf7a (patch)
tree3def604f1c11b341f68e497c3b508e4e77bf01b4
parent37b8c5264fd61ec217d73f2eef0acbe19496a6e2 (diff)
downloaddecky-loader-45353c87c22613735bc81be8eaa985ce6acddf7a.tar.gz
decky-loader-45353c87c22613735bc81be8eaa985ce6acddf7a.zip
Moved locales folder and requirements.txt
-rw-r--r--.github/workflows/build-win.yml6
-rw-r--r--.github/workflows/build.yml4
-rw-r--r--backend/locales/bg-BG.json (renamed from backend/src/locales/bg-BG.json)0
-rw-r--r--backend/locales/cs-CZ.json (renamed from backend/src/locales/cs-CZ.json)0
-rw-r--r--backend/locales/de-DE.json (renamed from backend/src/locales/de-DE.json)0
-rw-r--r--backend/locales/el-GR.json (renamed from backend/src/locales/el-GR.json)0
-rw-r--r--backend/locales/en-US.json (renamed from backend/src/locales/en-US.json)0
-rw-r--r--backend/locales/es-ES.json (renamed from backend/src/locales/es-ES.json)0
-rw-r--r--backend/locales/fi-FI.json (renamed from backend/src/locales/fi-FI.json)0
-rw-r--r--backend/locales/fr-FR.json (renamed from backend/src/locales/fr-FR.json)0
-rw-r--r--backend/locales/it-IT.json (renamed from backend/src/locales/it-IT.json)0
-rw-r--r--backend/locales/ko-KR.json (renamed from backend/src/locales/ko-KR.json)0
-rw-r--r--backend/locales/nl-NL.json (renamed from backend/src/locales/nl-NL.json)0
-rw-r--r--backend/locales/pl-PL.json (renamed from backend/src/locales/pl-PL.json)0
-rw-r--r--backend/locales/pt-BR.json (renamed from backend/src/locales/pt-BR.json)0
-rw-r--r--backend/locales/pt-PT.json (renamed from backend/src/locales/pt-PT.json)0
-rw-r--r--backend/locales/ru-RU.json (renamed from backend/src/locales/ru-RU.json)0
-rw-r--r--backend/locales/sq-AL.json (renamed from backend/src/locales/sq-AL.json)0
-rw-r--r--backend/locales/uk-UA.json (renamed from backend/src/locales/uk-UA.json)0
-rw-r--r--backend/locales/zh-CN.json (renamed from backend/src/locales/zh-CN.json)0
-rw-r--r--backend/locales/zh-TW.json (renamed from backend/src/locales/zh-TW.json)0
-rw-r--r--backend/requirements.txt (renamed from requirements.txt)0
22 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml
index a0fd13b9..b1eee0dd 100644
--- a/.github/workflows/build-win.yml
+++ b/.github/workflows/build-win.yml
@@ -30,7 +30,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pyinstaller==5.13.0
- pip install -r requirements.txt
+ pip install -r backend/requirements.txt
- name: Install JS dependencies ⬇️
working-directory: ./frontend
@@ -43,10 +43,10 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- 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
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data "./backend/src/static;/backend/src/static" --add-data "./backend/locales;/backend/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/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
+ run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/src/static;/backend/src/static" --add-data "./backend/locales;/backend/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 70b68f96..31d01bef 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -73,7 +73,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pyinstaller==5.13.0
- [ -f requirements.txt ] && pip install -r requirements.txt
+ [ -f backend/requirements.txt ] && pip install -r backend/requirements.txt
- name: Install JS dependencies ⬇️
working-directory: ./frontend
@@ -86,7 +86,7 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- 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
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/src/static:/backend/src/static --add-data ./backend/locales:/backend/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/src/locales/bg-BG.json b/backend/locales/bg-BG.json
index b9c4d803..b9c4d803 100644
--- a/backend/src/locales/bg-BG.json
+++ b/backend/locales/bg-BG.json
diff --git a/backend/src/locales/cs-CZ.json b/backend/locales/cs-CZ.json
index 74b7230c..74b7230c 100644
--- a/backend/src/locales/cs-CZ.json
+++ b/backend/locales/cs-CZ.json
diff --git a/backend/src/locales/de-DE.json b/backend/locales/de-DE.json
index 4ded8703..4ded8703 100644
--- a/backend/src/locales/de-DE.json
+++ b/backend/locales/de-DE.json
diff --git a/backend/src/locales/el-GR.json b/backend/locales/el-GR.json
index 62562935..62562935 100644
--- a/backend/src/locales/el-GR.json
+++ b/backend/locales/el-GR.json
diff --git a/backend/src/locales/en-US.json b/backend/locales/en-US.json
index 7845ae4f..7845ae4f 100644
--- a/backend/src/locales/en-US.json
+++ b/backend/locales/en-US.json
diff --git a/backend/src/locales/es-ES.json b/backend/locales/es-ES.json
index 6c47eb06..6c47eb06 100644
--- a/backend/src/locales/es-ES.json
+++ b/backend/locales/es-ES.json
diff --git a/backend/src/locales/fi-FI.json b/backend/locales/fi-FI.json
index b0ff1309..b0ff1309 100644
--- a/backend/src/locales/fi-FI.json
+++ b/backend/locales/fi-FI.json
diff --git a/backend/src/locales/fr-FR.json b/backend/locales/fr-FR.json
index f1c305f9..f1c305f9 100644
--- a/backend/src/locales/fr-FR.json
+++ b/backend/locales/fr-FR.json
diff --git a/backend/src/locales/it-IT.json b/backend/locales/it-IT.json
index 237bcdf4..237bcdf4 100644
--- a/backend/src/locales/it-IT.json
+++ b/backend/locales/it-IT.json
diff --git a/backend/src/locales/ko-KR.json b/backend/locales/ko-KR.json
index 48698c5c..48698c5c 100644
--- a/backend/src/locales/ko-KR.json
+++ b/backend/locales/ko-KR.json
diff --git a/backend/src/locales/nl-NL.json b/backend/locales/nl-NL.json
index 1adde308..1adde308 100644
--- a/backend/src/locales/nl-NL.json
+++ b/backend/locales/nl-NL.json
diff --git a/backend/src/locales/pl-PL.json b/backend/locales/pl-PL.json
index 5231fa37..5231fa37 100644
--- a/backend/src/locales/pl-PL.json
+++ b/backend/locales/pl-PL.json
diff --git a/backend/src/locales/pt-BR.json b/backend/locales/pt-BR.json
index 2a7c173b..2a7c173b 100644
--- a/backend/src/locales/pt-BR.json
+++ b/backend/locales/pt-BR.json
diff --git a/backend/src/locales/pt-PT.json b/backend/locales/pt-PT.json
index 9b273569..9b273569 100644
--- a/backend/src/locales/pt-PT.json
+++ b/backend/locales/pt-PT.json
diff --git a/backend/src/locales/ru-RU.json b/backend/locales/ru-RU.json
index 776ffa12..776ffa12 100644
--- a/backend/src/locales/ru-RU.json
+++ b/backend/locales/ru-RU.json
diff --git a/backend/src/locales/sq-AL.json b/backend/locales/sq-AL.json
index fe9d7eec..fe9d7eec 100644
--- a/backend/src/locales/sq-AL.json
+++ b/backend/locales/sq-AL.json
diff --git a/backend/src/locales/uk-UA.json b/backend/locales/uk-UA.json
index 09fbca1b..09fbca1b 100644
--- a/backend/src/locales/uk-UA.json
+++ b/backend/locales/uk-UA.json
diff --git a/backend/src/locales/zh-CN.json b/backend/locales/zh-CN.json
index d9d12aa0..d9d12aa0 100644
--- a/backend/src/locales/zh-CN.json
+++ b/backend/locales/zh-CN.json
diff --git a/backend/src/locales/zh-TW.json b/backend/locales/zh-TW.json
index 2891aa9c..2891aa9c 100644
--- a/backend/src/locales/zh-TW.json
+++ b/backend/locales/zh-TW.json
diff --git a/requirements.txt b/backend/requirements.txt
index 326a924c..326a924c 100644
--- a/requirements.txt
+++ b/backend/requirements.txt