Skip to content

Commit 4e30be2

Browse files
author
o355
committed
0.5.2.1 ready for release
1 parent e1ad55e commit 4e30be2

File tree

3 files changed

+16
-19
lines changed

3 files changed

+16
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Quick note: I generally use the changelog (thanks Eclipse for supporting MD file
1515
* Doing the usual setup/configdefault catching up
1616
* Fixes for config updates. A new "configsetup.py" script will be introduced, which will update the config for each new version, but preserve old user settings. It'll get automatically executed when doing updates through PyWeather, but users doing updates through the .zip method or manual Git updating will have to execute the script each time. When PyWeather setup is launched for the first time, the config file will be created.
1717

18-
### version 0.5.3 beta - Release not occurring.
19-
* Rewrites multiline prints in keybackup.py/updater.py (thanks to @gsilvapt for the PR/notifing me of the issue, and @Rhomboid on /r/learnpython for a good solution) - Scrapped. Will be implemented in 0.9 beta.
18+
## version 0.5.2.1 beta - Released on 4/30/2017
19+
* Fixes a bug in which if validating your API key wasn't enabled, a variable wasn't defined, crashing PyWeather at boot.
2020

2121
## version 0.5.2 beta - Released on 4/30/2017
2222
**NEW FEATURES/REMOVALS**

README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
## Welcome to PyWeather (0.5.2 beta)!
1+
## Welcome to PyWeather (0.5.2.1 beta)!
22
Viewing the weather in a terminal has never been so much fun.
33

4-
## Why? Why should I check my weather in a terminal?
5-
It's cooler. I think.
4+
## Download/Setup
5+
You can download PyWeather by visiting the releases tab, and getting the latest zip.
66

7-
## Setup
8-
I won't make you read the entire readme, so here's how to download PyWeather.
7+
You can also use git to download PyWeather, using the commands below.
98

10-
Download a release from the releases tab, unzip it, and run setup.py. The script will walk you through installing necessary libraries, instructions for retrieving an API key, letting you configure stuff, and making sure things work.
11-
12-
After that, double click pyweather.py, input a location, and that's it! No, really. That's actually it. No completed config files, none of that. setup.py, pyweather.py. Welcome to the world of simplicity! \ (•◡•) /
13-
14-
**Sometimes, the setup script will have a tendancy to fail in regards to installing geocoder. See the wiki page "Setup" for more information.**
15-
16-
If you have Git, and you'd prefer to clone over PyWeather from Git, please read the page on "Installing from Git" in the Wiki.
9+
```
10+
git clone https://github.com/o355/pyweather.git
11+
git checkout 0.5.2.1 beta (if you want indev code, don't perform this command)
12+
```
13+
After that, run setup.py, and the setup file will guide you through setting up PyWeather. After that, run pyweather.py, and enjoy the magic of PyWeather! It's as easy as that.
1714

1815
## What's PyWeather?
1916
PyWeather was a script I made, because I couldn't find anything that I wanted (from a terminal-based weather machine)

updater/versioncheck.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"updater": {
33
"apiversion": "1.2",
4-
"latestbuild": "52",
5-
"latestversion": "0.5.2 beta",
6-
"latestversiontag": "0.5.2-beta",
7-
"latesturl": "https://github.com/o355/pyweather/releases/download/0.5.2-beta/pyweather-0.5.2beta.zip",
8-
"latestfilename": "pyweather-0.5.2beta.zip",
4+
"latestbuild": "52.1",
5+
"latestversion": "0.5.2.1 beta",
6+
"latestversiontag": "0.5.2.1-beta",
7+
"latesturl": "https://github.com/o355/pyweather/releases/download/0.5.2.1-beta/pyweather-0.5.2.1beta.zip",
8+
"latestfilename": "pyweather-0.5.2.1beta.zip",
99
"releasedate": "4/30/2017"
1010
}
1111
}

0 commit comments

Comments
 (0)