diff --git a/Distribution/Release/Changelog.txt b/Distribution/Release/Changelog.txt index 5744079..74df4c3 100644 --- a/Distribution/Release/Changelog.txt +++ b/Distribution/Release/Changelog.txt @@ -1,3 +1,9 @@ +**v1.7.3-1** + +- Updated to KSP 1.7.3 and Kopernicus.Parser v1.7.3-2 +- Fixed Date and LeapDate calculation + + **v1.7.1-1** - Updated to KSP 1.7.1 and Kopernicus.Parser v1.7.1-4 diff --git a/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.dll b/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.dll index 8e7b52e..796fe44 100644 Binary files a/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.dll and b/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.dll differ diff --git a/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version b/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version index 07376f2..9f32017 100644 --- a/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version +++ b/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version @@ -1,11 +1,11 @@ { - "NAME": "Kronometer", - "URL": "https://raw.githubusercontent.com/StollD/Kronometer/master/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version", - "DOWNLOAD": "https://github.com/StollD/Kronometer/releases/latest", - "CHANGE_LOG_URL": "https://raw.githubusercontent.com/StollD/Kronometer/master/Distribution/Release/Changelog.txt", + "NAME": "Kronometer", + "URL": "https://raw.githubusercontent.com/Kopernicus/Kronometer/master/Distribution/Release/GameData/Kronometer/Plugins/Kronometer.version", + "DOWNLOAD": "https://github.com/Kopernicus/Kronometer/releases/latest", + "CHANGE_LOG_URL": "https://raw.githubusercontent.com/Kopernicus/Kronometer/master/Distribution/Release/Changelog.txt", "GITHUB": { - "USERNAME": "StollD", + "USERNAME": "Kopernicus", "REPOSITORY": "Kronometer", "ALLOW_PRE_RELEASE": false }, @@ -13,13 +13,13 @@ { "MAJOR": 1, "MINOR": 7, - "PATCH": 1, + "PATCH": 3, "BUILD": 1 }, "KSP_VERSION": { "MAJOR": 1, "MINOR": 7, - "PATCH": 1 + "PATCH": 3 } } diff --git a/LICENSE b/LICENSE index 408a3a4..043bc0e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Dorian Stoll +Copyright (c) 2017 Dorian Stoll and Sigma88 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e1e68f9..2b2a1e5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This mod is licensed under the Terms of the MIT License. It was previously licen ## Downloads -- [Latest Release](https://github.com/StollD/Kronometer/releases/latest) +- [Latest Release](https://github.com/Kopernicus/Kronometer/releases/latest) ### Credits Sigma88 wrote most of the original code, Thomas P. made various improvements. The name is an idea of the IRC user "acc" @@ -48,9 +48,9 @@ The Kronometer root node contains five general settings and three nodes for more > > if the year ends halfway through a day, the clock will go: > - > Year 1 Day 365 ==> Year 2 Day 0 (Instead of starting directly with Day 1) + > Year 1 Day 365 ==> Year 2 Day 1 (Hours, Minutes and Seconds do not reset) > - > Day 0 will last untill Day 365 would have ended, then Day 1 will start. + > Day 1 will last untill Day 365 would have ended, then Day 2 will start. > > - **When *'true'***: > diff --git a/src/Kronometer.cs b/src/Kronometer.cs index 17059a3..5e86555 100644 --- a/src/Kronometer.cs +++ b/src/Kronometer.cs @@ -398,8 +398,8 @@ public virtual string PrintDateDeltaCompact(double time, bool includeTime, bool /// Calculates the current date /// This will work also when a year cannot be divided in days without a remainder /// If the year ends halfway through a day, the clock will go: - /// Year 1 Day 365 ==> Year 2 Day 0 (Instead of starting directly with Day 1) - /// Day 0 will last untill Day 365 would have ended, then Day 1 will start. + /// Year 1 Day 365 ==> Year 2 Day 1 (Hours, Minutes and Seconds do not reset) + /// Day 1 will last untill Day 365 would have ended, then Day 2 will start. /// This way the time shown by the clock will always be consistent with the position of the sun in the sky /// public virtual Date GetDate(double time)