Skip to content

Commit

Permalink
Prepare 0.0.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindean committed Jul 9, 2016
1 parent 585c225 commit 8aa65b9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
all: clean run

VERSION=0.0.8
VERSION=0.0.9

clean:
find furikura -type f -name "*.pyc" | xargs rm -rf
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ You can skip this list if you are installing it from a .deb package.
### From a .deb package

```
wget https://github.com/benjamindean/furi-kura/releases/download/v0.0.8/furi-kura_0.0.8-1_all.deb
sudo dpkg -i furi-kura_0.0.8-1_all.deb
wget https://github.com/benjamindean/furi-kura/releases/download/v0.0.9/furi-kura_0.0.9-1_all.deb
sudo dpkg -i furi-kura_0.0.9-1_all.deb
```

In case you are getting a dependency errors:
Expand All @@ -42,8 +42,8 @@ sudo apt-get install -f
### From source

```
wget https://github.com/benjamindean/furi-kura/archive/v0.0.8.zip
unzip v0.0.8.zip && cd furi-kura-0.0.8
wget https://github.com/benjamindean/furi-kura/archive/v0.0.9.zip
unzip v0.0.9.zip && cd furi-kura-0.0.9
sudo make install
```

Expand Down
2 changes: 1 addition & 1 deletion furikura/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Config(object):
CLIENT_ID = 'RQftQ0QKd9ZCDA'
LOGIN_URI = 'http://localhost:65010'
REDIRECT_URI = LOGIN_URI + '/reddit_callback'
USER_AGENT = 'linux:furi-kura:v0.0.8 (by /u/benjaminabel)'
USER_AGENT = 'linux:furi-kura:v0.0.9 (by /u/benjaminabel)'

def __init__(self):
self.config = self.read_config()
Expand Down
2 changes: 1 addition & 1 deletion furikura/ui/about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<property name="gravity">center</property>
<property name="copyright">by Benjamin Dean</property>
<property name="program_name">Furi Kura</property>
<property name="version">0.0.8</property>
<property name="version">0.0.9</property>
<property name="comments">Linux appindicator for reddit</property>
<property name="website">https://github.com/benjamindean/furi-kura</property>
<property name="website_label">GitHub</property>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='furi-kura',
version='0.0.8',
version='0.0.9',
packages=['furikura', 'furikura/desktop'],
install_requires=[
'Flask',
Expand Down

0 comments on commit 8aa65b9

Please sign in to comment.