-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [x] test for 1130 and 1170 - [x] fix xp - [x] fall damage perk - [x] translation replacement
- Loading branch information
Showing
32 changed files
with
470 additions
and
138 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -391,4 +391,5 @@ FodyWeavers.xsd | |
out/ | ||
build/ | ||
swf/gfx/ | ||
venv/ | ||
|
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,68 +1,75 @@ | ||
{ | ||
"configurePresets": [{ | ||
"binaryDir": "${sourceDir}/build", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": { | ||
"type": "STRING", | ||
"value": "Release" | ||
} | ||
}, | ||
"errors": { | ||
"deprecated": true | ||
}, | ||
"hidden": true, | ||
"name": "cmake-dev", | ||
"warnings": { | ||
"deprecated": true, | ||
"dev": true | ||
} | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"type": "STRING", | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" | ||
} | ||
}, | ||
"hidden": true, | ||
"name": "vcpkg" | ||
"configurePresets": [ | ||
{ | ||
"binaryDir": "${sourceDir}/build", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": { | ||
"type": "STRING", | ||
"value": "Release" | ||
} | ||
}, | ||
"errors": { | ||
"deprecated": true | ||
}, | ||
"hidden": true, | ||
"name": "cmake-dev", | ||
"warnings": { | ||
"deprecated": true, | ||
"dev": true | ||
} | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_TOOLCHAIN_FILE": { | ||
"type": "STRING", | ||
"value": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_MSVC_RUNTIME_LIBRARY": { | ||
"type": "STRING", | ||
"value": "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" | ||
}, | ||
"VCPKG_TARGET_TRIPLET": { | ||
"type": "STRING", | ||
"value": "x64-windows-static-md" | ||
} | ||
}, | ||
"hidden": true, | ||
"name": "windows" | ||
"VCPKG_OVERLAY_PORTS": { | ||
"type": "STRING", | ||
"value": "${sourceDir}/cmake/ports/" | ||
} | ||
}, | ||
"hidden": true, | ||
"name": "vcpkg" | ||
}, | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_MSVC_RUNTIME_LIBRARY": { | ||
"type": "STRING", | ||
"value": "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL" | ||
}, | ||
{ | ||
"architecture": { | ||
"strategy": "set", | ||
"value": "x64" | ||
}, | ||
"cacheVariables": { | ||
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX" | ||
}, | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": [ | ||
"cmake-dev", | ||
"vcpkg", | ||
"windows" | ||
], | ||
"name": "vs2022-windows", | ||
"toolset": "v143" | ||
"VCPKG_TARGET_TRIPLET": { | ||
"type": "STRING", | ||
"value": "x64-windows-static-md" | ||
} | ||
], | ||
"buildPresets": [{ | ||
"name": "vs2022-windows", | ||
"configurePreset": "vs2022-windows", | ||
"configuration": "Release" | ||
}], | ||
"version": 3 | ||
}, | ||
"hidden": true, | ||
"name": "windows" | ||
}, | ||
{ | ||
"architecture": { | ||
"strategy": "set", | ||
"value": "x64" | ||
}, | ||
"cacheVariables": { | ||
"CMAKE_CXX_FLAGS": "/EHsc /MP /W4 /WX" | ||
}, | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": [ | ||
"cmake-dev", | ||
"vcpkg", | ||
"windows" | ||
], | ||
"name": "vs2022-windows", | ||
"toolset": "v143" | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "vs2022-windows", | ||
"configurePreset": "vs2022-windows", | ||
"configuration": "Release" | ||
} | ||
], | ||
"version": 3 | ||
} |
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,14 @@ | ||
# header-only library | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO powerof3/CLibUtil | ||
REF a801992250ee8c6178159cc73ce3354a742be6b4 | ||
SHA512 3eb37eb0958bf5cf01c8cd80f673b5ab60c562757d76024937fde529b82938481ad8d6fa30d6ca21d5ef93ab8a2d92e7ad093ddc242fb2462aa234689efd31eb | ||
HEAD_REF master | ||
) | ||
|
||
# Install codes | ||
set(CLIBUTIL_SOURCE ${SOURCE_PATH}/include/ClibUtil) | ||
file(INSTALL ${CLIBUTIL_SOURCE} DESTINATION ${CURRENT_PACKAGES_DIR}/include) | ||
|
||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") |
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,7 @@ | ||
{ | ||
"name": "clib-util", | ||
"version-string": "1.3.5", | ||
"port-version": 1, | ||
"description": "", | ||
"homepage": "https://github.com/powerof3/CLibUtil" | ||
} |
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 @@ | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO martinus/unordered_dense | ||
REF a570a0e87f95027e8544c72295236df5d84c3dcc | ||
SHA512 3f06daf92b68ef7e1ec0c7bbd7070aac8d0bf7ce57bfc6408770ab001f4c3c5efe084b01405a65d6b9e3d99eb0f16c95dd6c5dfc88387d246552f850a9ec6cad | ||
HEAD_REF main | ||
) | ||
|
||
vcpkg_cmake_configure( | ||
SOURCE_PATH "${SOURCE_PATH}" | ||
) | ||
|
||
vcpkg_cmake_install() | ||
vcpkg_cmake_config_fixup( | ||
PACKAGE_NAME unordered_dense | ||
CONFIG_PATH lib/cmake/unordered_dense | ||
) | ||
|
||
file(REMOVE_RECURSE | ||
"${CURRENT_PACKAGES_DIR}/debug" | ||
"${CURRENT_PACKAGES_DIR}/lib" | ||
) | ||
|
||
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) |
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,17 @@ | ||
{ | ||
"name": "unordered-dense", | ||
"version-string": "4.1.0", | ||
"port-version": 1, | ||
"description": "", | ||
"homepage": "https://github.com/martinus/unordered_dense", | ||
"dependencies": [ | ||
{ | ||
"name": "vcpkg-cmake", | ||
"host": true | ||
}, | ||
{ | ||
"name": "vcpkg-cmake-config", | ||
"host": true | ||
} | ||
] | ||
} |
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 |
---|---|---|
|
@@ -19,6 +19,10 @@ | |
{ | ||
"key": "alternative", | ||
"name": "$ShowAlternative" | ||
}, | ||
{ | ||
"key": "close", | ||
"name": "$ShowClose" | ||
} | ||
] | ||
} |
Submodule CommonLibSSE-NG
added at
69317b
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
Oops, something went wrong.