Skip to content

Commit

Permalink
Here's to 0.6.2 beta and the first objective completed!
Browse files Browse the repository at this point in the history
  • Loading branch information
o355 committed Sep 25, 2017
1 parent 674cfd6 commit 2d9a4fd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Adds the ability to manually define a version you're upgrading to in the configupdate script in the event your versioncheck file is gone.
* Removed the configdefault script. The configsetup script has taken it's place now.
* Added up-to-date and no matching version messages in the configupdate script.
* Minor UI changes.

**BUG FIXES**
* Fixed a critical bug where if geopy wasn't installed before setup, Pyweather Setup would install geocoder INSTEAD of geopy, and throw an error.
Expand All @@ -29,16 +30,16 @@
* Fixed a bug where if you entered nothing for the backup key directory, an error would occur. Thanks to @creepersbane for reporting the error!
* Fixed a bug where if your configuration file failed to load, enter to continue prompts were disabled by default.
* Fixed a bug where the last step in the setup process (bypassing radar confirmation) didn't have proper else catching, and if a "yes" or "no" was entered, PyWeather setup would crash.
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical hourly data.
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical data.
* Fixed a bug where wind chill data in celsius in historical hourly displayed "kph" instead of a degree C symbol.
* Fixed a bug where the 10 day forecast cache expire time was running off of the hourly cache time.
* Fixed a bug where PyWeather wouldn't properly catch no moonrise data, resulting in a crash.
* Fixed a bug where if alerts data wasn't getting prefetched at boot, when detailed alerts data was called up PyWeather would crash.
* Fixed a bug where if you had 10-day hourly prefetch enabled at boot, when you viewed detailed 10-day hourly information PyWeather would crash.
* Fixed a potential bug where the configupdate script might not at all work when you manually edit the version info file. It now searches the file instead of an exact match.
* Fixed a bug where yesterday precipitation data could say "T" on the summary screen. A data check has been added.
* Fixing a bug where if some almanac data wasn't available, PyWeather would crash - 80% done. Thanks to @ModoUnreal for reporting the error!
* Fixing a "bug" where if you had no connection to the updater at boot with it enabled, PyWeather would exit instead of continue - 0% done. Thanks to @creepersbane for reporting the error!
* Fixed a bug where if some almanac data wasn't available, PyWeather would crash - Thanks to @ModoUnreal for reporting the error!
* Fixed a "bug" where if you had no connection to the updater at boot with it enabled, PyWeather would exit instead of continue Thanks to @creepersbane for reporting the error!
* Fixed a potential bug where proper code to catch invalid sunrise/sunset data was not implemented.

**OTHER CHANGES**
Expand All @@ -61,6 +62,7 @@
* Geopy's scheme was changed to HTTP due to issues on OS X.
* Adds wind direction data to historical hourly.
* Removed the keybackup script.
* Minor UI changes.

**BUG FIXES**
* Fixed a major bug where the PyWeather Git updater wouldn't, uh, fully update.
Expand Down
6 changes: 5 additions & 1 deletion updater/releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**WHEN UPDATING FROM 0.6.1 BETA TO 0.6.2 BETA, YOU WILL NEED TO ENTER "2" IN THE INPUT PROMPT (also when you run configupdate separately)**
**YOU SHOULD BE ABLE TO UPDATE FROM 0.6 BETA TO 0.6.2 BETA.**

**NEW FEATURES/REMOVALS**
* Adds the ability to view yesterday's weather. - Thanks to @ModoUnreal for coding this in!
* Adds the ability to view hurricane data in PyWeather.
Expand All @@ -8,6 +11,7 @@
* Adds the ability to manually define a version you're upgrading to in the configupdate script in the event your versioncheck file is gone.
* Removed the configdefault script. The configsetup script has taken it's place now.
* Added up-to-date and no matching version messages in the configupdate script.
* Minor UI updates

**BUG FIXES**
* Fixed a critical bug where if geopy wasn't installed before setup, Pyweather Setup would install geocoder INSTEAD of geopy, and throw an error.
Expand All @@ -16,7 +20,7 @@
* Fixed a bug where if you entered nothing for the backup key directory, an error would occur. Thanks to @creepersbane for reporting the error!
* Fixed a bug where if your configuration file failed to load, enter to continue prompts were disabled by default.
* Fixed a bug where the last step in the setup process (bypassing radar confirmation) didn't have proper else catching, and if a "yes" or "no" was entered, PyWeather setup would crash.
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical hourly data.
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical data.
* Fixed a bug where wind chill data in celsius in historical hourly displayed "kph" instead of a degree C symbol.
* Fixed a bug where the 10 day forecast cache expire time was running off of the hourly cache time.
* Fixed a bug where PyWeather wouldn't properly catch no moonrise data, resulting in a crash.
Expand Down
14 changes: 7 additions & 7 deletions updater/versioncheck.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"updater": {
"apiversion": "1.4",
"latestbuild": "61",
"latestversion": "0.6.1 beta",
"latestversiontag": "0.6.1-beta",
"latesturl": "https://github.com/o355/pyweather/releases/download/0.6.1-beta/pyweather-0.6.1beta.zip",
"latestfilename": "pyweather-0.6.1beta.zip",
"releasedate": "7/31/2017",
"nextversionreleasedate": "9/22/2017"
"latestbuild": "62",
"latestversion": "0.6.2 beta",
"latestversiontag": "0.6.2-beta",
"latesturl": "https://github.com/o355/pyweather/releases/download/0.6.2-beta/pyweather-0.6.2beta.zip",
"latestfilename": "pyweather-0.6.2beta.zip",
"releasedate": "9/24/2017",
"nextversionreleasedate": "November 2017"
}
}

0 comments on commit 2d9a4fd

Please sign in to comment.