10 Commits

Author SHA1 Message Date
7a410d4124 Merge branch 'main' of https://git.shahovalov.ru/mikhail/bg3-dnd55e-russian-localization
All checks were successful
Build Mod Package / build (push) Successful in 23s
2026-04-08 19:55:46 +03:00
945ede2583 Исправлена работа Invoke-WebRequest на Windows PowerShell 2026-04-08 19:53:47 +03:00
469cd8bc37 docs: add glossary file reference to AGENTS.md 2026-04-08 19:53:10 +03:00
c1ca11ab25 Update Mods/DnD 5.5e AIO Russian/Localization/Russian/russian.xml
Some checks failed
Build Mod Package / build (push) Failing after 6s
2026-04-08 19:50:19 +03:00
042b1fb43b Update Mods/DnD 5.5e AIO Russian/Localization/Russian/russian.xml 2026-04-08 16:40:10 +03:00
c49ff67d51 Merge pull request 'feat: обновить глоссарий под BG3' (#1) from feat/glossary-bg3-aligned into main
Reviewed-on: mikhail/bg3-dnd55e-russian-localization#1
2026-04-08 15:09:05 +03:00
2324bf0c26 Merge branch 'main' into feat/glossary-bg3-aligned 2026-04-08 15:08:50 +03:00
4148e8b861 Уточнены требования к формулировке сообщений коммитов 2026-04-08 15:06:57 +03:00
3c893cd0d9 Дополнить AGENTS.md правилом повторной отправки 2026-04-08 15:04:52 +03:00
2a7b6d9395 Дополнить AGENTS.md правилом про предложение нового релиза 2026-04-08 15:01:53 +03:00
2 changed files with 6 additions and 2 deletions

View File

@@ -59,7 +59,7 @@ jobs:
throw "Could not find a downloadable LSLib zip asset in the latest release." throw "Could not find a downloadable LSLib zip asset in the latest release."
} }
Invoke-WebRequest -Uri $asset.browser_download_url -OutFile ".tools/lslib/lslib.zip" Invoke-WebRequest -UseBasicParsing -Uri $asset.browser_download_url -OutFile ".tools/lslib/lslib.zip"
Expand-Archive -LiteralPath ".tools/lslib/lslib.zip" -DestinationPath ".tools/lslib" -Force Expand-Archive -LiteralPath ".tools/lslib/lslib.zip" -DestinationPath ".tools/lslib" -Force
- name: Build .pak - name: Build .pak
@@ -157,4 +157,4 @@ jobs:
Accept = "application/json" Accept = "application/json"
} }
Invoke-WebRequest -Method Post -Uri "$apiBase/releases/$($release.id)/assets?name=$([uri]::EscapeDataString($assetName))" -Headers $uploadHeaders -ContentType "application/octet-stream" -InFile $zipPath Invoke-WebRequest -UseBasicParsing -Method Post -Uri "$apiBase/releases/$($release.id)/assets?name=$([uri]::EscapeDataString($assetName))" -Headers $uploadHeaders -ContentType "application/octet-stream" -InFile $zipPath

View File

@@ -24,6 +24,7 @@ This repository is for the localization mod only. It must not gain gameplay logi
- Mod sources: `Mods/DnD 5.5e AIO Russian` - Mod sources: `Mods/DnD 5.5e AIO Russian`
- Localization XML: `Mods/DnD 5.5e AIO Russian/Localization/Russian/russian.xml` - Localization XML: `Mods/DnD 5.5e AIO Russian/Localization/Russian/russian.xml`
- Glossary: `glossary/glossary.normalized.json`
- Mod metadata: `Mods/DnD 5.5e AIO Russian/meta.lsx` - Mod metadata: `Mods/DnD 5.5e AIO Russian/meta.lsx`
- CI workflow: `.gitea/workflows/build.yml` - CI workflow: `.gitea/workflows/build.yml`
- Main build script: `scripts/build.ps1` - Main build script: `scripts/build.ps1`
@@ -132,6 +133,9 @@ User preference:
- feature/fix branches must use the prefix `feat/` or `fix/` - feature/fix branches must use the prefix `feat/` or `fix/`
- after finishing work in a `feat/` or `fix/` branch, propose merging it back into `main` - after finishing work in a `feat/` or `fix/` branch, propose merging it back into `main`
- comments and commit messages should be written in Russian - comments and commit messages should be written in Russian
- commit messages should describe what was done, not what should be done
- if changes affect files that go into the final `.pak`, or change the build/release process, propose releasing the next version
- if push fails, retry up to two more times with a 3-second pause between attempts
Do not auto-commit or auto-push without explicit user approval. Do not auto-commit or auto-push without explicit user approval.