Skip to content

Commit

Permalink
various small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigma88 committed Dec 5, 2019
1 parent 3d5a5cb commit e2d59e7
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
6 changes: 6 additions & 0 deletions Distribution/Release/Changelog.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file modified Distribution/Release/GameData/Kronometer/Plugins/Kronometer.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"NAME": "<b><color=#9B59B6>Kronometer</color></b>",
"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
},
"VERSION":
{
"MAJOR": 1,
"MINOR": 7,
"PATCH": 1,
"PATCH": 3,
"BUILD": 1
},
"KSP_VERSION":
{
"MAJOR": 1,
"MINOR": 7,
"PATCH": 1
"PATCH": 3
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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'***:
>
Expand Down
4 changes: 2 additions & 2 deletions src/Kronometer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
/// </summary>
public virtual Date GetDate(double time)
Expand Down

0 comments on commit e2d59e7

Please sign in to comment.