Skip to content

Commit

Permalink
bump to 3.6.1 and remove dbus-python as requirement from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gmdfalk committed Apr 14, 2016
1 parent e15a8c2 commit 477c091
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- v3.6.1 (2016-04-11): Fix Gst initialization in interlude player, refactor dbusclient CLI and improve some documentation.
- v3.6.0 (2016-04-10): Published blockify to PyPI, made it virtualenv compatible (still requires --system-site-packages for gi.repository) and refactored the import structure.
- v3.5.0 (2016-04-08): Reintroduce wmctrl to catch video ads ([issue #89](https://github.com/mikar/blockify/issues/89)) and block some audio ads more reliably. Fix encoding issues ([issue #95](https://github.com/mikar/blockify/issues/95)).
- v3.4.0 (2016-03-25): Fix play/pause toggle button, right click on tray [issue #83](https://github.com/mikar/blockify/issues/83) and add start_minimized option [issue #93](https://github.com/mikar/blockify/issues/93).
Expand Down Expand Up @@ -31,4 +32,4 @@
- v1.2 (2014-12-11): Cover-Art and config/cache folder in ~/.config/blockify
- v1.1 (2014-06-17): Autodetection of commercials
- v1.0 (2014-05-02): First moderately stable version
- v0.9 (2014-04-29): Pulseaudio (sink) support
- v0.9 (2014-04-29): Pulseaudio (sink) support
2 changes: 1 addition & 1 deletion blockify/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
except ImportError:
log.error("ImportError: Please install docopt to use the DBus CLI.")

VERSION = "3.6.0"
VERSION = "3.6.1"
CONFIG = None
CONFIG_DIR = os.path.expanduser("~/.config/blockify")
CONFIG_FILE = os.path.join(CONFIG_DIR, "blockify.ini")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
blockify==3.5.1
blockify==3.6.1
dbus-python==1.2.4
docopt==0.6.2
wmctrl==0.3
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,5 @@ def read(filename):
"gui_scripts": [
"{0}-ui = {0}.gui:main".format(_name),
],
},
install_requires=[
"dbus-python"
]
}
)

0 comments on commit 477c091

Please sign in to comment.