mirror of
https://github.com/streamlink/streamlink
synced 2024-11-15 03:02:22 +01:00
Release version 1.4.5.
This commit is contained in:
parent
d630fa5adb
commit
65fad06524
12
CHANGELOG
12
CHANGELOG
@ -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
|
||||
-------------
|
||||
|
||||
|
@ -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
|
||||
------------
|
||||
@ -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:
|
||||
|
||||
|
@ -8,7 +8,7 @@ that allows you to interact with the stream data in your own application.
|
||||
|
||||
|
||||
__title__ = "livestreamer"
|
||||
__version__ = "1.5"
|
||||
__version__ = "1.4.5"
|
||||
__license__ = "Simplified BSD"
|
||||
__author__ = "Christopher Rosell"
|
||||
__copyright__ = "Copyright 2011-2013 Christopher Rosell"
|
||||
|
@ -4,8 +4,9 @@ import shutil
|
||||
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")
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user