Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iWuna committed Jul 9, 2019
0 parents commit 4b63e40
Show file tree
Hide file tree
Showing 5,168 changed files with 1,251,381 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
12 changes: 12 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# dmm map merger hook
# needs additional setup, see tools/mapmerge/install.txt
*.dmm merge=merge-dmm

# dmi icon merger hook
# needs additional setup, see tools/dmitool/merging.txt
*.dmi merge=merge-dmi

# force changelog merging to use union
html/changelog.html merge=union


50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!--
Если какое-то из полей не подходит к данной проблеме, удалите его!
Всё, что написано в тэгах подобных этому, является комментарием и не будет отображено в проблеме.
Будьте осторожны, дабы не написать в них.
Шутки или спам проблемами приведут к наказанию!
ВСТАВЛЯЙТЕ СВОИ ОТВЕТЫ НИЖЕ ЗАГОЛОВКОВ В ПУСТОЕ МЕСТО
(Линии с четырьмя #)
НЕ РЕДАКТИРУЙТЕ ИЛИ УДАЛЯЙТЕ ИХ, это часть форматировангия.
-->

#### Описание проблемы



#### Разница между ожидаемым поведением и действительным



#### Как повторить данную проблему?



#### Дополнительная информация для поиска проблемы
<!-- к примеру, название объекта, сообщения связанные с проблемой, логи, и т.д. -->



#### Продолжительность, в течении которого баг существует
<!--
Чем точнее вы скажете время, тем больше шансов, что проблема будет найдена быстро.
Но даже если вы не уверены, назовите время, которое вы предполагаейте.
-->



#### Версия клиента BYOND и приблизительное время начала раунда с проблемой


#### Бинго проблем

Отметьте то, что подходит. Больше отметок - больше шансов, что проблема будет решена максимально быстро.

<!-- Отметить можно с помощь "x" вписанного в [ ] (к примеру: [x])-->
<!-- Не забудьте убрать пробелы в скобках, иначе не будет работать! -->
- [ ] Проблему получилось повторно воспроизвести хотя бы один раз.
- [ ] Проблему получилось повторно воспроизвести несколькими игроками.
- [ ] Проблему получилось повторно воспроизвести в нескольких раундах.
- [ ] Проблема была найдена в недавнем раунде(меньше 7 дней).
- [ ] [Похожих проблем не было найдено в списке проблем в репозитории](https://github.com/animusdev/Fallout-13/issues)
193 changes: 193 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
###Files and folders specified here will never be tracked.

#Ignore everything in datafolder and subdirectories
/data/**/*

#Ignore configs folder
/config/**/

#Ignore byond config folder.
/cfg/**/*

#Ignore compiled files and other files generated during compilation.
*.mdme
*.dmb
*.rsc
*.lk
*.int
*.backup
*.int
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Linux.gitignore

*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*


### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Vim.gitignore

# swap
[._]*.s[a-w][a-z]
[._]s[a-w][a-z]
# session
Session.vim
# temporary
.netrwhist
*~
# auto-generated tag files
tags


### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Python.gitignore

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
#*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask instance folder
instance/

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject


### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Windows.gitignore

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
#*.cab
#*.msi
#*.msm
#*.msp

# Windows shortcuts
*.lnk


### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/OSX.gitignore

.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

*.before

server/

config/
Expand Down
50 changes: 50 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
language: generic
sudo: false
branches:
except:
- ___TGS3TempBranch
env:
global:
- BYOND_MAJOR="512"
- BYOND_MINOR="1418"
- NODE_VERSION="4"
- RUST_G_VERSION="0.2.0"
- BUILD_TOOLS=false
- BUILD_TESTING=false
- DM_MAPFILE="loadallmaps"
matrix:
- BUILD_TOOLS=true
- BUILD_TESTING=true
- BUILD_TESTING=false

cache:
directories:
- $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}
- tgui/node_modules
- $HOME/.rustup
- $HOME/.cargo


addons:
apt:
packages:
- libc6-i386
- libgcc1:i386
- libstdc++6:i386
- gcc-multilib
- python3
- python3-pip

install:
- tools/travis/install_build_tools.sh

before_script:
- tools/travis/before_build_tools.sh
- tools/travis/before_build_byond.sh

script:
- tools/travis/check_filedirs.sh tgstation.dme
- tools/travis/build_tools.sh
- tools/travis/build_dependencies.sh
- tools/travis/build_byond.sh

41 changes: 41 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
language: generic
sudo: false

env:
global:
- BYOND_MAJOR="510"
- BYOND_MINOR="1346"
- NODE_VERSION="4"
- BUILD_TOOLS=false
- DM_MAPFILE=""
matrix:
- BUILD_TOOLS=true
- DM_MAPFILE="tgstation2"

cache:
directories:
- tgui/node_modules
- $HOME/BYOND-${BYOND_MAJOR}.${BYOND_MINOR}


addons:
apt:
packages:
- libc6-i386
- libgcc1:i386
- libstdc++6:i386
- python
- python-pip

install:
- tools/travis/install_build_tools.sh

before_script:
- tools/travis/before_build_tools.sh
- tools/travis/before_build_byond.sh

script:
- tools/travis/check_filedirs.sh tgstation.dme
- tools/travis/build_tools.sh
- tools/travis/build_byond.sh

Loading

0 comments on commit 4b63e40

Please sign in to comment.