diff --git a/ClockLib/ClockLib.csproj b/ClockLib/ClockLib.csproj index 5db4980..bb7db94 100644 --- a/ClockLib/ClockLib.csproj +++ b/ClockLib/ClockLib.csproj @@ -295,6 +295,14 @@ copy /y "$(ProjectDir)\default-config.json" "$(OwmlDir)\Mods\$(ModUniqueName)" copy /y "$(ProjectDir)\manifest.json" "$(OwmlDir)\Mods\$(ModUniqueName)" copy /y "$(ProjectDir)\events.json" "$(OwmlDir)\Mods\$(ModUniqueName)" + + md "$(ProjectDir)\Release" + copy /y "$(ProjectDir)\default-config.json" "$(ProjectDir)\Release" + copy /y "$(ProjectDir)\manifest.json" "$(ProjectDir)\Release" + copy /y "$(ProjectDir)\events.json" "$(ProjectDir)\Release" + copy /y "$(ProjectDir)\bin\Release\Clock.dll" "$(ProjectDir)\Release" + tar.exe -a -c -f Release.zip "$(ProjectDir)\Release" + rmdir /s /q "$(ProjectDir)\Release" \ No newline at end of file diff --git a/ClockLib/manifest.json b/ClockLib/manifest.json index e8afbbc..eebd03c 100644 --- a/ClockLib/manifest.json +++ b/ClockLib/manifest.json @@ -4,6 +4,6 @@ "name": "Clock", "uniqueName": "clubby789.OWClock", "description": "Add a clock overlay", - "version": "0.2.0", + "version": "0.2.5", "owmlVersion": "0.7.3" } \ No newline at end of file diff --git a/README.md b/README.md index 7ae93c9..e9d2c39 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,8 @@ This mod adds a clock overlay to Outer Wilds. It can be set to count up, or down to the sun exploding. There's also an additional event logging system; upcoming events defined in `events.json` are displayed above the clock, turning red as they approach. -New eents can be added from the pause menu (tmestamp will be set to the current loop time). +New events can be added from the pause menu (timestamp will be set to the current loop time). + +## Options + - Count Up: Counts the elapsed seconds and minutes. When off, will count down to events/the end of the loop + - Milliseconds: For speedrunners; uses millisecond timestamps \ No newline at end of file