Skip to content

Commit

Permalink
Merge pull request CleverRaven#22 from CleverRaven/master
Browse files Browse the repository at this point in the history
Catchup
  • Loading branch information
Maleclypse authored Jul 15, 2020
2 parents 3558e43 + 5837d3f commit d492872
Show file tree
Hide file tree
Showing 1,021 changed files with 117,195 additions and 39,409 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version: '{branch}.{build}'
image: Previous Visual Studio 2019
image: Visual Studio 2019
configuration: Release
platform: x64
shallow_clone: true
Expand Down
2 changes: 0 additions & 2 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ readability-*,\
-modernize-return-braced-init-list,\
-modernize-use-default-member-init,\
-modernize-use-emplace,\
-modernize-use-transparent-functors,\
-performance-for-range-copy,\
-performance-inefficient-vector-operation,\
-performance-noexcept-move-constructor,\
-performance-implicit-conversion-in-loop,\
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ Cataclysm.exe.lastcodeanalysissucceeded
#Visual Studio 2017
/msvc-full-features/PredictedInputCache_Debug_x64.dat

#vcpkg
/msvc-full-features/vcpkg_installed

# PVS Studio
/msvc-full-features/*PVS-Studio*

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set(PREFIX "" CACHE STRING "Location of Data & GFX directories")
include(CTest)

include(GetGitRevisionDescription)
git_describe(GIT_VERSION)
git_describe(GIT_VERSION --tags --always --match "[0-9A-Z]*.[0-9A-Z]*")

MESSAGE("\n * Cataclysm: Dark Days Ahead is a turn-based survival game set in a post-apocalyptic world.")
MESSAGE(" _________ __ .__ ")
Expand Down
2 changes: 1 addition & 1 deletion build-scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ then
else
remaining_cpp_files="$all_cpp_files"
fi
set -x

function analyze_files_in_random_order
{
Expand All @@ -142,6 +141,7 @@ then

echo "Analyzing remaining files"
analyze_files_in_random_order "$remaining_cpp_files"
set -x
else
# Regular build
make -j$num_jobs
Expand Down
1 change: 0 additions & 1 deletion build-scripts/clang-tidy-wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set -o pipefail

plugin=build/tools/clang-tidy-plugin/libCataAnalyzerPlugin.so

set -x
if [ -f "$plugin" ]
then
LD_PRELOAD=$plugin "$CATA_CLANG_TIDY" "$@"
Expand Down
4 changes: 2 additions & 2 deletions data/core/basic.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"category": "food",
"name": { "str_sp": "water" },
"description": "Water, the stuff of life, the best thirst-quencher available. It would be safer to drink once purified.",
"weight": 250,
"volume": 1,
"weight": "250 g",
"volume": "250 ml",
"price": 50,
"symbol": "~",
"color": "light_blue",
Expand Down
Loading

0 comments on commit d492872

Please sign in to comment.