Skip to content

Commit

Permalink
Release version 1.4.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrippa committed May 10, 2013
1 parent d630fa5 commit 65fad06
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 1.4.5
-------------

Plugins:
- Twitch/Justin.tv: Fixed mobile transcode request never happening.
- GOMTV.net: Fixed issue causing disabled streams to be picked up.
- Azubu.tv: Updated for HTML change.

Streams:
- HLS: Fixed potential crash when getting a invalid playlist.


Version 1.4.4
-------------

Expand Down
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Windows

Livestreamer is primarily developed for Unix-like operating systems where using a CLI is common. There is however an installer available for brave Windows users who don't mind using the command prompt. This installer contains a precompiled version of Livestreamer that does not require you to install any dependencies.

`livestreamer-1.4.4-win32-setup.exe <https://pypi.python.org/packages/2.7/l/livestreamer/livestreamer-1.4.4-win32-setup.exe>`_ ``MD5: f1cf4b2ae55d394da0902be56f22e2a4``
`livestreamer-1.4.5-win32-setup.exe <https://pypi.python.org/packages/2.7/l/livestreamer/livestreamer-1.4.5-win32-setup.exe>`_ ``MD5: 6e41d59792beb89478533f884cd5a06d``

Dependencies
------------
Expand All @@ -48,7 +48,7 @@ Optional dependencies

For RTMP based plugins:

- `RTMPDump <http://rtmpdump.mplayerhq.hu/>`_ (The latest official release is 2.3, but it is not compatible with Twitch/Justin.tv streams, use a git clone after 2011-07-31 if you wish to use the Twitch/Justin.tv plugin)
- `RTMPDump <http://rtmpdump.mplayerhq.hu/>`_ (Twitch/Justin.tv streams require at least version 2.4)

For decrypting encrypted HLS streams:

Expand Down
2 changes: 1 addition & 1 deletion src/livestreamer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


__title__ = "livestreamer"
__version__ = "1.5"
__version__ = "1.4.5"
__license__ = "Simplified BSD"
__author__ = "Christopher Rosell"
__copyright__ = "Copyright 2011-2013 Christopher Rosell"
Expand Down
3 changes: 2 additions & 1 deletion win32/build-bbfreeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
import sys

from bbfreeze import Freezer
from livestreamer import __version__

build_version = "1.5"
build_version = __version__
python_path = sys.prefix
script = os.path.join(python_path, "Scripts\\livestreamer-script.py")
script_exe = os.path.join(python_path, "Scripts\\livestreamer.py")
Expand Down
2 changes: 1 addition & 1 deletion win32/livestreamer-win32-installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SetCompressor lzma

# Livestreamer program information
!define PROGRAM_NAME "Livestreamer"
!define PROGRAM_VERSION "1.5"
!define PROGRAM_VERSION "1.4.5"
!define PROGRAM_WEB_SITE "http://livestreamer.tanuki.se/"

# Python files generated with bbfreeze
Expand Down

0 comments on commit 65fad06

Please sign in to comment.