Skip to content
This repository was archived by the owner on Dec 4, 2020. It is now read-only.

Commit c31d30c

Browse files
committed
Merge branch 'release' into feature/enm
# Conflicts: # scripts/zones/Waughroon_Shrine/IDs.lua # sql/mob_spell_lists.sql
2 parents aedc03e + f52b66b commit c31d30c

File tree

682 files changed

+29267
-13044
lines changed

Some content is hidden

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

682 files changed

+29267
-13044
lines changed

.clang-format

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
---
2-
BasedOnStyle: WebKit
2+
# We base things of WebKit + Allman braces
3+
# BasedOnStyle: WebKit
34
BreakBeforeBraces: Allman
4-
Cpp11BracedListStyle: 'true'
5+
BreakConstructorInitializers: BeforeComma
6+
CompactNamespaces: 'false'
7+
ConstructorInitializerIndentWidth: 0
8+
Cpp11BracedListStyle: 'false'
9+
IndentCaseLabels: 'true'
10+
IndentWidth: 4
11+
KeepEmptyLinesAtTheStartOfBlocks: 'false'
512
Language: Cpp
613
PointerAlignment: Left
714
SortIncludes: 'true'
815
SortUsingDeclarations: 'true'
16+
SpaceBeforeParens: ControlStatements
917
Standard: Cpp11
1018
UseTab: Never
1119

.github/workflows/build.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v1
2020
with:
21-
fetch-depth: 1
21+
fetch-depth: 0
2222
- name: Install Dependencies
2323
run: |
2424
sudo apt-get update
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v1
3737
with:
38-
fetch-depth: 1
38+
fetch-depth: 0
3939
- name: Install Dependencies
4040
run: |
4141
sudo apt-get update
@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- uses: actions/checkout@v1
5353
with:
54-
fetch-depth: 1
54+
fetch-depth: 0
5555
- name: Install Dependencies
5656
run: |
5757
sudo apt-get update
@@ -70,7 +70,7 @@ jobs:
7070
steps:
7171
- uses: actions/checkout@v1
7272
with:
73-
fetch-depth: 1
73+
fetch-depth: 0
7474
- name: Build Solution
7575
shell: cmd
7676
run: |
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: actions/checkout@v1
8585
with:
86-
fetch-depth: 1
86+
fetch-depth: 0
8787
- name: Build Solution
8888
shell: cmd
8989
run: |
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- uses: actions/checkout@v1
9999
with:
100-
fetch-depth: 1
100+
fetch-depth: 0
101101
- name: Build Solution
102102
shell: cmd
103103
run: |
@@ -118,6 +118,7 @@ jobs:
118118
run: |
119119
sh travis_lua.sh
120120
- name: Clang Format (C++ files)
121+
if: 'false' # Don't run until fixed
121122
run: |
122123
clang-format --version
123124
echo "Base Ref: ${{ github.event.pull_request.base.ref }}"
@@ -144,7 +145,7 @@ jobs:
144145
runs-on: ubuntu-18.04
145146
services:
146147
mysql:
147-
image: mysql:5.6
148+
image: mariadb:10.1
148149
env:
149150
MYSQL_DATABASE: tpzdb
150151
MYSQL_ROOT_PASSWORD: root
@@ -154,7 +155,7 @@ jobs:
154155
steps:
155156
- uses: actions/checkout@v1
156157
with:
157-
fetch-depth: 1
158+
fetch-depth: 0
158159
- name: Install Dependencies
159160
run: |
160161
sudo apt-get update
@@ -193,14 +194,14 @@ jobs:
193194
cat map-server.log
194195
cat search-server.log
195196
196-
if grep -q error login-server.log; then
197+
if grep -qi "Error" login-server.log; then
197198
exit -1
198199
fi
199200
200-
if grep -q error map-server.log; then
201+
if grep -qi "Error" map-server.log; then
201202
exit -1
202203
fi
203204
204-
if grep -q error search-server.log; then
205+
if grep -qi "Error" search-server.log; then
205206
exit -1
206207
fi

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ ipch/
6363
# ReSharper is a .NET coding add-in
6464
_ReSharper*
6565

66+
# .idea is created by CLion
67+
.idea
68+
6669
# NCrunch
6770
*.ncrunch*
6871
.*crunch*.local.xml

0 commit comments

Comments
 (0)