From 28e9aa84a3900a376ff9e4f7d297b3ef565eb396 Mon Sep 17 00:00:00 2001 From: Nightkingale <63483138+Nightkingale@users.noreply.github.com> Date: Sun, 22 Oct 2023 09:59:57 -0600 Subject: [PATCH] Prepare for next minor release --- .github/README.md | 7 ++++--- source/main.cpp | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index 5ca282b..597d9cb 100644 --- a/.github/README.md +++ b/.github/README.md @@ -14,10 +14,11 @@ If the program is placed correctly on an SD card, Wii U Time Sync will be listed * If Wii U Time Sync doesn't show up in the Wii U Plugin System Config Menu, confirm you placed the WPS file on your SD card correctly and restart your console. * `Configuration -> Syncing Enabled`: Enables syncing to the Internet, `false` by default. * `Configuration -> Show Notifications`: Shows a notification whenever Wii U Time Sync adjusts the clock, `false` by default. -* `Configuration -> Time Offset (hours)`: The amount of hours to add/subtract from the coordinated universal time, `0` by default. -* `Configuration -> Time Offset (minutes)`: The amount of minutes to add/subtract from the coordinated universal time, `0` by default. -* `Configuration -> Message Duration (seconds)`: The amount of seconds which notifications will appear on screen for, `5` by default. +* `Configuration -> Hour Offset`: The amount of hours to add/subtract from the coordinated universal time, `0` by default. +* `Configuration -> Minutes Offset`: The amount of minutes to add/subtract from the coordinated universal time, `0` by default. +* `Configuration -> Notification Duration (seconds)`: The amount of seconds which notifications will appear on screen for, `5` by default. * `Configuration -> Tolerance (milliseconds)`: The amount of milliseconds in which Wii U Time Sync will tolerate differences, `250` by default. +* `Configuration -> Detect Timezone`: Uses the IP Geolocation API to guess the timezone, setting the offset accordingly. * `Configuration -> NTP Servers`: The list of NTP servers in which the plugin connects to, only `ntp.pool.org` by default. * This cannot be edited on the console. However, you can edit the Wii U Time Sync configuration file on a computer to adjust the default server, or add more. * The configuration file: `wiiu/environments/aroma/plugins/config/Wii U Time Sync.json` diff --git a/source/main.cpp b/source/main.cpp index 78f4e24..22b9f44 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -20,7 +20,7 @@ // Important plugin information. WUPS_PLUGIN_NAME(PLUGIN_NAME); WUPS_PLUGIN_DESCRIPTION("A plugin that synchronizes a Wii U's clock to the Internet."); -WUPS_PLUGIN_VERSION("v2.0.0"); +WUPS_PLUGIN_VERSION("v2.1.0"); WUPS_PLUGIN_AUTHOR("Nightkingale, Daniel K. O."); WUPS_PLUGIN_LICENSE("MIT");