Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SpicyDarkFox committed Sep 4, 2024
2 parents db95bda + e9f5ff5 commit 8d61567
Show file tree
Hide file tree
Showing 145 changed files with 370 additions and 4,557 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-map-renderer.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: Build & Test Map Renderer

on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
branches: [ master ]

jobs:
build:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/build-test-debug.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: Build & Test Debug

on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
branches: [ master ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-master-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: superbrothers/close-pull-request@v3
with:
github_token: ${{ secrets.BOT_TOKEN }}
comment: "Благодарим вас за вклад в наш репозиторий. К сожалению, похоже, что вы отправили ПР из master ветки. Мы рекомендуем вам следовать [документации](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n Вы можете перенести свою текущую работу из основной ветки в другую ветку с помощью [создав новый](https://git-scm.com/docs/git-branch) и [очистив](https://git-scm.com/docs/git-reset) master ветку."
comment: "Благодарим вас за вклад в наш репозиторий. К сожалению, похоже, что вы отправили ПР из master ветки. Мы рекомендуем вам следовать [документации](https://docs.spacestation14.com/en/general-development/setup/git-for-the-ss14-developer.html). \n\n Вы можете перенести свою текущую работу из основной ветки в другую ветку с помощью [создания новой](https://git-scm.com/docs/git-branch) и [очистки](https://git-scm.com/docs/git-reset) master ветки."

# If you prefer to just comment on the pr and not close it, uncomment the bellow and comment the above

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/rsi-diff.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Diff RSIs

on:
workflow_dispatch:
pull_request_target:
paths:
- '**.rsi/**.png'

jobs:
diff:
Expand Down Expand Up @@ -42,6 +44,7 @@ jobs:
uses: peter-evans/create-or-update-comment@v1
with:
issue-number: ${{ github.event.number }}
token: ${{ secrets.BOT_TOKEN }}
body: |
${{ steps.diff.outputs.summary-details }}
Expand All @@ -50,6 +53,7 @@ jobs:
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
token: ${{ secrets.BOT_TOKEN }}
edit-mode: replace
body: |
${{ steps.diff.outputs.summary-details }}
Expand All @@ -59,6 +63,7 @@ jobs:
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ steps.fc.outputs.comment-id }}
token: ${{ secrets.BOT_TOKEN }}
edit-mode: append
body: |
Edit: diff updated after ${{ github.event.pull_request.head.sha }}
81 changes: 48 additions & 33 deletions .github/workflows/test-packaging.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,66 @@
name: Test Packaging

on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
- '**.git**'
- '**.yml'
# no docs on which one of these is supposed to work, so
# why not just do both
- 'RobustToolbox'
- 'RobustToolbox/**'
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
branches: [ master ]
paths:
- '**.cs'
- '**.csproj'
- '**.sln'
- '**.git**'
- '**.yml'
- 'RobustToolbox'
- 'RobustToolbox/**'

jobs:
build:
name: Test Packaging
if: github.actor != 'PJBot' && github.event.pull_request.draft == false && github.actor != 'DeltaV-Bot' && github.actor != 'SimpleStation14'
if: github.actor != 'PJBot' && github.actor != 'PJBot' && github.event.pull_request.draft == false
runs-on: ubuntu-latest

steps:
- name: Checkout Master
uses: actions/[email protected]
- name: Checkout Master
uses: actions/[email protected]

- name: Setup Submodule
run: |
git submodule update --init --recursive
- name: Setup Submodule
run: |
git submodule update --init --recursive
- name: Pull engine updates
uses: space-wizards/[email protected]
- name: Pull engine updates
uses: space-wizards/[email protected]

- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- name: Update Engine Submodules
run: |
cd RobustToolbox/
git submodule update --init --recursive
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0.100
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 8.0.100

- name: Install dependencies
run: dotnet restore
- name: Install dependencies
run: dotnet restore

- name: Build Packaging
run: dotnet build Content.Packaging --configuration Release --no-restore /m
- name: Build Packaging
run: dotnet build Content.Packaging --configuration Release --no-restore /m

- name: Package server
run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64
- name: Package server
run: dotnet run --project Content.Packaging server --platform win-x64 --platform linux-x64 --platform osx-x64 --platform linux-arm64

- name: Package client
run: dotnet run --project Content.Packaging client --no-wipe-release

- name: Update Build Info
run: Tools/gen_build_info.py

- name: Shuffle files around
run: |
mkdir "release/${{ github.sha }}"
mv release/*.zip "release/${{ github.sha }}"
- name: Package client
run: dotnet run --project Content.Packaging client --no-wipe-release
6 changes: 5 additions & 1 deletion .github/workflows/validate-rgas.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: RGA schema validator
on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]

jobs:
yaml-schema-validation:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/validate-rsis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
name: RSI Validator

on:
workflow_dispatch:
push:
branches: [ staging, trying ]
merge_group:
pull_request:
paths:
- '**.rsi/**'

jobs:
validate_rsis:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validate_mapfiles.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Map file schema validator
on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]

jobs:
yaml-schema-validation:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/yaml-linter.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: YAML Linter

on:
workflow_dispatch:
push:
branches: [ master, staging, trying ]
merge_group:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]

jobs:
build:
Expand Down
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Secret
Secrets
_Private*
Resources/Prototypes/_Private
Resources/Textures/PERSONAL

# Build results
[Dd]ebug/
[Dd]ebugPublic/
Expand Down Expand Up @@ -43,7 +49,7 @@ dlldata.c
# DNX
project.lock.json
project.fragment.lock.json
# artifacts/
artifacts/

*_i.c
*_p.c
Expand Down Expand Up @@ -307,5 +313,5 @@ Resources/MapImages
# Direnv stuff
.direnv/

# Changelog package lock
package-lock.json
# locale fix
!/Resources/Locale/*
2 changes: 1 addition & 1 deletion Content.Server/Atmos/Components/AirFilterComponent.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Content.Server.Atmos.EntitySystems;
using Content.Shared.Atmos;
using Content.Shared.Atmos;

namespace Content.Server.Atmos.Components;

Expand Down
2 changes: 1 addition & 1 deletion Content.Server/Atmos/Components/AirIntakeComponent.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Content.Server.Atmos.EntitySystems;
using Content.Shared.Atmos;
using Content.Shared.Atmos;

namespace Content.Server.Atmos.Components;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Content.Shared.Popups;

namespace Content.Server.Destructible.Thresholds.Behaviors;
namespace Content.Server.Destructible.Thresholds.Behaviors;

/// <summary>
/// Shows a popup for everyone.
Expand Down
2 changes: 1 addition & 1 deletion Content.Server/Objectives/ObjectivesSystem.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Content.Server.GameTicking;
using Content.Server.GameTicking.Rules.Components;
using Content.Server.GameTicking.Rules.Components;
using Content.Server.Mind;
using Content.Server.Shuttles.Systems;
using Content.Shared.Cuffs.Components;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13 changes: 13 additions & 0 deletions Resources/Changelog/ChangelogLPP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,16 @@ Entries:
id: 9
time: '2024-09-04T11:55:47.0000000+00:00'
url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/61
- author: SpicyDarkFox
changes:
- type: Add
message: Разделение маркингов по уровням спонсорки
- type: Tweak
message: >-
У людей изменены очки внешности: по 1 на уши и хвост, и по 4 на руки и
ноги вместо 6
- type: Fix
message: Исправлены кнопки в редакторе персонажа, снимающие одежду
id: 10
time: '2024-09-04T15:33:10.0000000+00:00'
url: https://github.com/Lost-Paradise-Project/Lost-Paradise/pull/62
1 change: 1 addition & 0 deletions Resources/Locale/ru-RU/_LostParadise/update20.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -395,3 +395,4 @@ ent-LPPClothingUnderSocksThighOrange = носки
ent-SpawnSecPilot = спавн пилота службы безопансоти
ent-LockerWoCSyndicate = Шкафчик для хранения улик
.desc = Для хранения мешков с гильзами и вещами задержанного.
lathe-category-hardsuit = Скафандры
34 changes: 3 additions & 31 deletions Resources/Maps/_LostParadise/normandy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11826,7 +11826,7 @@ entities:
content: >
КОДЕКС ПОВЕДЕНИЯ КЛОУНОВ:

0. ХОНК!
0. ХОНК!

1. Быть весёлым и смешным(Самое важное у клоунов!)

Expand All @@ -11838,7 +11838,7 @@ entities:

5. Воровать-плохо! (Не воруйте со станции вещи. А если взяли на время, то возвращайте через 10 минут максимум. Есть исключения если это экстренная ситуация. )

6. Не обижать людей на выступлениях!
6. Не обижать людей на выступлениях!

7. Будь креативным! (придумывай свои безопасные приколы, шутки, а может даже устраивай конкурсы, люди это любят.)

Expand Down Expand Up @@ -70272,20 +70272,6 @@ entities:
- type: Transform
pos: 18.665314,8.550899
parent: 2
- proto: LPPSpawnPointLawyer
entities:
- uid: 7196
components:
- type: Transform
pos: -7.5,-5.5
parent: 2
- proto: LPPSpawnPointPrisoner
entities:
- uid: 7197
components:
- type: Transform
pos: -45.5,6.5
parent: 2
- proto: LPPSpawnPointSecurityEngineer
entities:
- uid: 12991
Expand All @@ -70298,13 +70284,6 @@ entities:
- type: Transform
pos: -31.5,2.5
parent: 2
- proto: LPPSpawnPointVirologist
entities:
- uid: 13096
components:
- type: Transform
pos: 55.5,-24.5
parent: 2
- uid: 13097
components:
- type: Transform
Expand Down Expand Up @@ -72893,7 +72872,7 @@ entities:
parent: 2
- type: Paper
content: >-
Я отправил фотографии начальству, мне остаётся только надеется, что меня спасут... на случай худшего исхода я оставил в одном из хвостовых оперений ресурсы для агентов...
Я отправил фотографии начальству, мне остаётся только надеется, что меня спасут... на случай худшего исхода я оставил в одном из хвостовых оперений ресурсы для агентов...


ответа нет уже около 12 часов... Кажется мне крышка... блять.....
Expand Down Expand Up @@ -84346,13 +84325,6 @@ entities:
- type: Transform
pos: -36.5,6.5
parent: 2
- proto: SpawnRoboticist
entities:
- uid: 13084
components:
- type: Transform
pos: 48.5,12.5
parent: 2
- uid: 13085
components:
- type: Transform
Expand Down
2 changes: 1 addition & 1 deletion Resources/Prototypes/Catalog/uplink_catalog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1758,7 +1758,7 @@
id: LPPUplinkhelmetswat
name: шлем спецназа синдиката
description: Крепкий шлем, что защитит вашу голову от ненужных свинцовых, а так же лазерных выстрелов.
icon: { sprite: Textures/Clothing/Head/Helmets/swat_syndicate.rsi, state: icon }
icon: { sprite: Clothing/Head/Helmets/swat_syndicate.rsi, state: icon }
productEntity: ClothingHeadHelmetSwatSyndicate
cost:
Telecrystal: 2
Expand Down
Loading

0 comments on commit 8d61567

Please sign in to comment.