Skip to content

Commit 2d9a4fd

Browse files
author
o355
committed
Here's to 0.6.2 beta and the first objective completed!
1 parent 674cfd6 commit 2d9a4fd

3 files changed

Lines changed: 17 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
* Adds the ability to manually define a version you're upgrading to in the configupdate script in the event your versioncheck file is gone.
2222
* Removed the configdefault script. The configsetup script has taken it's place now.
2323
* Added up-to-date and no matching version messages in the configupdate script.
24+
* Minor UI changes.
2425

2526
**BUG FIXES**
2627
* Fixed a critical bug where if geopy wasn't installed before setup, Pyweather Setup would install geocoder INSTEAD of geopy, and throw an error.
@@ -29,16 +30,16 @@
2930
* Fixed a bug where if you entered nothing for the backup key directory, an error would occur. Thanks to @creepersbane for reporting the error!
3031
* Fixed a bug where if your configuration file failed to load, enter to continue prompts were disabled by default.
3132
* 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.
32-
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical hourly data.
33+
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical data.
3334
* Fixed a bug where wind chill data in celsius in historical hourly displayed "kph" instead of a degree C symbol.
3435
* Fixed a bug where the 10 day forecast cache expire time was running off of the hourly cache time.
3536
* Fixed a bug where PyWeather wouldn't properly catch no moonrise data, resulting in a crash.
3637
* Fixed a bug where if alerts data wasn't getting prefetched at boot, when detailed alerts data was called up PyWeather would crash.
3738
* 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.
3839
* 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.
3940
* Fixed a bug where yesterday precipitation data could say "T" on the summary screen. A data check has been added.
40-
* Fixing a bug where if some almanac data wasn't available, PyWeather would crash - 80% done. Thanks to @ModoUnreal for reporting the error!
41-
* 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!
41+
* Fixed a bug where if some almanac data wasn't available, PyWeather would crash - Thanks to @ModoUnreal for reporting the error!
42+
* 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!
4243
* Fixed a potential bug where proper code to catch invalid sunrise/sunset data was not implemented.
4344

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

6567
**BUG FIXES**
6668
* Fixed a major bug where the PyWeather Git updater wouldn't, uh, fully update.

updater/releasenotes.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
**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)**
2+
**YOU SHOULD BE ABLE TO UPDATE FROM 0.6 BETA TO 0.6.2 BETA.**
3+
14
**NEW FEATURES/REMOVALS**
25
* Adds the ability to view yesterday's weather. - Thanks to @ModoUnreal for coding this in!
36
* Adds the ability to view hurricane data in PyWeather.
@@ -8,6 +11,7 @@
811
* Adds the ability to manually define a version you're upgrading to in the configupdate script in the event your versioncheck file is gone.
912
* Removed the configdefault script. The configsetup script has taken it's place now.
1013
* Added up-to-date and no matching version messages in the configupdate script.
14+
* Minor UI updates
1115

1216
**BUG FIXES**
1317
* Fixed a critical bug where if geopy wasn't installed before setup, Pyweather Setup would install geocoder INSTEAD of geopy, and throw an error.
@@ -16,7 +20,7 @@
1620
* Fixed a bug where if you entered nothing for the backup key directory, an error would occur. Thanks to @creepersbane for reporting the error!
1721
* Fixed a bug where if your configuration file failed to load, enter to continue prompts were disabled by default.
1822
* 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.
19-
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical hourly data.
23+
* Fixed a bug where you weren't able to exit out of the summary screen when viewing historical data.
2024
* Fixed a bug where wind chill data in celsius in historical hourly displayed "kph" instead of a degree C symbol.
2125
* Fixed a bug where the 10 day forecast cache expire time was running off of the hourly cache time.
2226
* Fixed a bug where PyWeather wouldn't properly catch no moonrise data, resulting in a crash.

updater/versioncheck.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"updater": {
33
"apiversion": "1.4",
4-
"latestbuild": "61",
5-
"latestversion": "0.6.1 beta",
6-
"latestversiontag": "0.6.1-beta",
7-
"latesturl": "https://github.com/o355/pyweather/releases/download/0.6.1-beta/pyweather-0.6.1beta.zip",
8-
"latestfilename": "pyweather-0.6.1beta.zip",
9-
"releasedate": "7/31/2017",
10-
"nextversionreleasedate": "9/22/2017"
4+
"latestbuild": "62",
5+
"latestversion": "0.6.2 beta",
6+
"latestversiontag": "0.6.2-beta",
7+
"latesturl": "https://github.com/o355/pyweather/releases/download/0.6.2-beta/pyweather-0.6.2beta.zip",
8+
"latestfilename": "pyweather-0.6.2beta.zip",
9+
"releasedate": "9/24/2017",
10+
"nextversionreleasedate": "November 2017"
1111
}
1212
}

0 commit comments

Comments
 (0)