forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/PhantornRU/Paradise-Remak…
…e-SS220 into master220
- Loading branch information
Showing
596 changed files
with
9,102 additions
and
3,903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
"TGUI": | ||
- 'tgui/**' | ||
'TGUI': | ||
- 'tgui/**' | ||
|
||
"Звук": | ||
- '**/*.ogg' | ||
'Звук': | ||
- '**/*.ogg' | ||
|
||
"Изменение Карты": | ||
- '**/*.dmm' | ||
'Изменение Карты': | ||
- '**/*.dmm' | ||
|
||
"Инструменты": | ||
- '.gihub/workflows/**' | ||
- 'tools/**' | ||
'Инструменты': | ||
- '.gihub/workflows/**' | ||
- 'tools/**' | ||
|
||
"Керберос": | ||
- '_maps/map_files220/delta/delta.dmm' | ||
'Керберос': | ||
- '_maps/map_files220/stations/deltastation.dmm' | ||
|
||
"Кибериада": | ||
- '_maps/map_files220/cyberiad/cyberiad.dmm' | ||
'Кибериада': | ||
- '_maps/map_files220/stations/boxstation.dmm' | ||
|
||
"Цереброн": | ||
- '_maps/map_files220/MetaStation/MetaStation.dmm' | ||
'Цереброн': | ||
- '_maps/map_files220/stations/metastation.dmm' | ||
|
||
"НЕ МОДУЛЬНО": | ||
- all: ['code/**'] | ||
'НЕ МОДУЛЬНО': | ||
- all: ['code/**'] | ||
|
||
"Спрайты": | ||
- '**/*.dmi' | ||
'Спрайты': | ||
- '**/*.dmi' | ||
|
||
"Требуется изменение конфига": | ||
- 'config/**' | ||
'Требуется изменение конфига': | ||
- 'config/**' | ||
|
||
"Документация": | ||
- '**/*.md' | ||
'Документация': | ||
- '**/*.md' | ||
|
||
"Частичная модульность": | ||
- all: ['code/**', modular_ss220/**] | ||
'Частичная модульность': | ||
- all: ['code/**', modular_ss220/**] | ||
|
||
"SQL": | ||
- 'SQL/**' | ||
'SQL': | ||
- 'SQL/**' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Label and close stale PRs and Issues | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Runs at midnight UTC every day | ||
|
||
jobs: | ||
stale-prs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Seek and destroy stale PRs and Issues | ||
uses: actions/stale@v9 | ||
with: | ||
stale-pr-message: 'This pull request seems to be stale as there have been no changes in 14 days, please make changes within 7 days or the PR will be closed. If you believe this is a mistake, please inform a development team member on Discord.' | ||
close-pr-message: 'This pull request has not received any updates since being marked stale, and as such is now being automatically closed. Please feel free to re-open this pull request or open a new one once you have new updates.' | ||
stale-issue-message: 'This issue either requires verification or is unreproducible, but has had no updates for 60 days. Please provide an update within 14 days or this issue will be closed. If you believe this is a mistake, please contact an issue manager on Discord.' | ||
close-issue-message: 'This issue was marked as stale, yet no changes have been observed in the specified time. The issue has been closed.' | ||
days-before-stale: 14 | ||
days-before-issue-stale: 60 | ||
days-before-close: 7 | ||
days-before-issue-close: 14 | ||
exempt-issue-labels: '"Stale Exempt"' | ||
exempt-pr-labels: '"Stale Exempt", "-Status: Awaiting approval", "-Status: Awaiting Merge", "-Status: Awaiting type assignment"' | ||
any-of-issue-labels: '"Need Verification", "Cannot Reproduce", "Not A Bug", "(99% Sure) Not A Bug"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "Build & DS Debug", | ||
"preLaunchTask": "dm: build - ${command:CurrentDME}", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
}, | ||
{ | ||
"type": "byond", | ||
"request": "launch", | ||
"name": "DS Debug", | ||
"dmb": "${workspaceFolder}/${command:CurrentDMB}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,53 @@ | ||
{ | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
// ESLint settings: | ||
"eslint.workingDirectories": ["tgui/"], | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"eslint.nodePath": "tgui/.yarn/sdks", | ||
"prettier.configPath": "tgui/.prettierrc.yml", | ||
"prettier.prettierPath": "tgui/.yarn/sdks/prettier/index.cjs", | ||
"typescript.tsdk": "tgui/.yarn/sdks/typescript/lib", | ||
"typescript.enablePromptUseWorkspaceTsdk": true, | ||
"search.exclude": { | ||
"**/.yarn": true, | ||
"**/.pnp.*": true | ||
}, | ||
"eslint.format.enable": true, | ||
"eslint.rules.customizations": [ | ||
// We really want to fail the CI builds on styling errors, | ||
// but it's better to show them as yellow squigglies in IDE | ||
// and thus differentiate from the red typescript ones which | ||
// are actually hard errors. | ||
{ "rule": "*", "severity": "warn" } | ||
], | ||
"eslint.format.enable": true, | ||
|
||
"[javascript]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[javascriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescript]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[typescriptreact]": { | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"[scss]": { | ||
"editor.rulers": [80] | ||
"editor.rulers": [80], | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true | ||
}, | ||
"editor.formatOnSave": true | ||
|
||
"editor.formatOnSave": true, | ||
"gitlens.advanced.blame.customArguments": [ | ||
"--ignore-revs-file", | ||
"${workspaceRoot}/.git-blame-ignore-revs" | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#Updating SQL from 53 to 54 -Wilk | ||
#Add a choice for what type of brain borgs want to have | ||
|
||
ALTER TABLE `characters` | ||
ADD COLUMN `cyborg_brain_type` VARCHAR(11) NOT NULL DEFAULT 'MMI' AFTER `height`; |
Oops, something went wrong.