File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 FOMOD_AE_DESCR : ' Select this if you are using Skyrim Anniversary Edition v1.6.1130 or higher (latest update).'
3131 FOMOD_AE_MIN_GAME_VERSION : ' 1.6.1130.0'
3232 PUBLISH_ARCHIVE_TYPE : ' 7z'
33- VCPKG_COMMIT_ID : ' 41626fd77bf42f29e8f7e43dc1f2f05780588cde '
33+ VCPKG_COMMIT_ID : ' 53b9816594558d0b78529ecce2bf4a97d0a0729e '
Original file line number Diff line number Diff line change 1111 "hidden" : true ,
1212 "cacheVariables" : {
1313 "CMAKE_CONFIGURATION_TYPES" : " Debug;Release" ,
14- "CMAKE_CXX_FLAGS" : " /EHsc /MP /W4 /external:anglebrackets /external:W0 $penv{CXXFLAGS}"
14+ "CMAKE_CXX_FLAGS" : " /EHsc /MP /W4 /external:W0 $penv{CXXFLAGS}" ,
15+ "CMAKE_CXX_FLAGS_RELEASE" : " /O2 /DNDEBUG"
1516 },
1617 "errors" : {
1718 "deprecated" : true
Original file line number Diff line number Diff line change 22vcpkg_from_github (
33 OUT_SOURCE_PATH SOURCE_PATH
44 REPO powerof3/CLibUtil
5- REF a491e2f7919211eac6d32dd2814b7908134ec1b2
6- SHA512 e6b830a061d7fc99115ee7d28de0165b8c6281006df6d053342e6b5b85606a46a846ebb30f3e4598aa976c25cfe7a9dffd1c4eb72942829d1a4615d81e62cf3c
5+ REF a7a877a0551592cba58f7fc36d94d1a6d1a14db9
6+ SHA512 cfebe14121c41f2400bc85deeb881d631ecf0a9216bca7e963b5c7ef5de46d4048752dae1552915fb9927d25f71d430c6d2f92be195a8130ec15a5457491d473
77 HEAD_REF master
88)
99
Original file line number Diff line number Diff line change 11{
22 "name" : " clib-util" ,
3- "version-string" : " 1.4.0 " ,
3+ "version-string" : " 1.4.4 " ,
44 "port-version" : 1 ,
55 "description" : " " ,
66 "homepage" : " https://github.com/powerof3/CLibUtil"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ struct ConditionFilters
1717 }
1818
1919 // members
20- std::string conditionID{}; // path|condition1,condition2
20+ std::string conditionID{}; // path|condition1,condition2
2121 std::vector<FormIDStr> NOT{};
2222 std::vector<FormIDStr> MATCH{};
2323};
Original file line number Diff line number Diff line change 44
55namespace FormSwap
66{
7- class Manager : public ISingleton <Manager>
7+ class Manager : public REX ::Singleton <Manager>
88 {
99 public:
1010 void LoadFormsOnce ();
Original file line number Diff line number Diff line change 66#include < ranges>
77
88#include " RE/Skyrim.h"
9+ #include " REX/REX/Singleton.h"
910#include " SKSE/SKSE.h"
1011
1112#include < MergeMapperPluginAPI.h>
2021#include < CLibUtil/rng.hpp>
2122#include < CLibUtil/string.hpp>
2223#include < ClibUtil/simpleINI.hpp>
23- # include < ClibUtil/singleton.hpp >
24+
2425#include < ClibUtil/editorID.hpp>
2526
2627#define DLLEXPORT __declspec (dllexport)
@@ -29,7 +30,6 @@ namespace logger = SKSE::log;
2930using namespace std ::literals;
3031
3132using namespace clib_util ;
32- using namespace clib_util ::singleton;
3333using SeedRNG = clib_util::RNG;
3434
3535// for visting variants
Original file line number Diff line number Diff line change @@ -17,9 +17,8 @@ struct Chance
1717
1818 // members
1919 CHANCE_TYPE chanceType{ CHANCE_TYPE::kRefHash };
20- float chanceValue{ 100 .0f };
20+ float chanceValue{ 100 .0f };
2121 std::uint64_t seed{ 0 };
22-
2322};
2423
2524struct BOS_RNG
@@ -40,5 +39,5 @@ struct BOS_RNG
4039
4140 // members
4241 CHANCE_TYPE type;
43- std::uint64_t seed { 0 };
42+ std::uint64_t seed{ 0 };
4443};
You can’t perform that action at this time.
0 commit comments