Skip to content

Commit 80dcf4a

Browse files
authored
Merge pull request corvax-team#463 from tau27/upstream
Upstream
2 parents 1932daf + 346539b commit 80dcf4a

File tree

1,837 files changed

+231319
-275899
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,837 files changed

+231319
-275899
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ resharper_csharp_qualified_using_at_nested_scope = false
351351
resharper_csharp_prefer_qualified_reference = false
352352
resharper_csharp_allow_alias = false
353353

354-
[*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets,props}]
354+
[*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets,props,slnx}]
355355
indent_size = 2
356356

357357
[nuget.config]

.github/CODEOWNERS

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
* @JerryImMouse
66
* @Litogin
77

8-
# Translations
9-
*.ftl @Morb0 @DIMMoon1 @ficcialfaint
10-
118
# Maps
12-
/Resources/Prototypes/Maps/** @Morb0 @DIMMoon1 @Ko4ergaPunk
13-
/Resources/Maps/** @Morb0 @DIMMoon1 @Ko4ergaPunk
9+
/Resources/Prototypes/Maps/** @Morb0 @DIMMoon1 @kvant8
10+
/Resources/Maps/** @Morb0 @DIMMoon1 @kvant8
1411
/Resources/Prototypes/_WL/Maps/** @0leshe
1512
/Resources/Maps/_WL/** @0leshe
1613

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Небольшие исправления/рефакторинг освобождаются от этого требования. -->
1515

1616
## Требования
17-
<!-- Подтвердите следующее, поставив X в скобках [X]: -->
17+
<!-- Подтвердите следующее, поставив X в скобках без пробелов [X]: -->
1818
- [ ] Я прочитал(а) и следую [Рекомендациям по оформлению Pull Request и Changelog](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html).
1919
- [ ] Я добавил(а) медиафайлы к этому PR или он не требует демонстрации в игре.
2020

.github/workflows/build-docfx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup .NET Core
2222
uses: actions/setup-dotnet@v4.1.0
2323
with:
24-
dotnet-version: 9.0.x
24+
dotnet-version: 10.0.x
2525

2626
- name: Install dependencies
2727
run: dotnet restore

.github/workflows/build-map-renderer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup .NET Core
3737
uses: actions/setup-dotnet@v4.1.0
3838
with:
39-
dotnet-version: 9.0.x
39+
dotnet-version: 10.0.x
4040

4141
- name: Install dependencies
4242
run: dotnet restore

.github/workflows/build-test-debug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup .NET Core
3737
uses: actions/setup-dotnet@v4.1.0
3838
with:
39-
dotnet-version: 9.0.x
39+
dotnet-version: 10.0.x
4040

4141
- name: Install dependencies
4242
run: dotnet restore

.github/workflows/publish-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET Core
2121
uses: actions/setup-dotnet@v3.2.0
2222
with:
23-
dotnet-version: 9.0.x
23+
dotnet-version: 10.0.x
2424

2525
- name: Get Engine Tag
2626
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Setup .NET Core
5151
uses: actions/setup-dotnet@v4.3.0
5252
with:
53-
dotnet-version: 9.0.x
53+
dotnet-version: 10.0.x
5454

5555
- name: Get Engine Tag
5656
run: |

.github/workflows/test-packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Setup .NET Core
6666
uses: actions/setup-dotnet@v4.1.0
6767
with:
68-
dotnet-version: 9.0.x
68+
dotnet-version: 10.0.x
6969

7070
- name: Install dependencies
7171
run: dotnet restore

.github/workflows/update-wiki.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
- 'Resources/Prototypes/Chemistry/**.yml'
1515
- 'Resources/Prototypes/Recipes/Reactions/**.yml'
1616
- 'RobustToolbox/'
17+
- 'Resources/Locale/**.ftl'
1718

1819
jobs:
1920
update-wiki:
@@ -90,3 +91,13 @@ jobs:
9091
api_url: ${{ secrets.WIKI_ROOT_URL }}/api.php
9192
username: ${{ secrets.WIKI_BOT_USER }}
9293
password: ${{ secrets.WIKI_BOT_PASS }}
94+
95+
- name: Upload loc.json to wiki
96+
uses: jtmullen/mediawiki-edit-action@v0.1.1
97+
with:
98+
wiki_text_file: ./bin/Content.Server/data/loc.json
99+
edit_summary: Update loc.json via GitHub Actions
100+
page_name: "${{ secrets.WIKI_PAGE_ROOT }}/loc.json"
101+
api_url: ${{ secrets.WIKI_ROOT_URL }}/api.php
102+
username: ${{ secrets.WIKI_BOT_USER }}
103+
password: ${{ secrets.WIKI_BOT_PASS }}

0 commit comments

Comments
 (0)