Skip to content

Commit

Permalink
update to streamlink 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beardypig committed Sep 14, 2017
1 parent f2b51d8 commit 33d7bc0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Streamlink Portable
A script to build a portable version of Streamlink for Windows.

The portable zip files are build from the master branch of [streamlink/streamlink](https://github.com/streamlink/streamlink) and come bundled with Python 3.5.2. There is a 32 bit and a 64 bit version available for 32 bit Windows and 64 bit Windows (if in doubt use the 32 bit version).
The portable zip files are build from the master branch of [streamlink/streamlink](https://github.com/streamlink/streamlink) and come bundled with Python 3.5.4. There is a 32 bit and a 64 bit version available for 32 bit Windows and 64 bit Windows (if in doubt use the 32 bit version).

The latest versions of the portable zips can be downloaded here:
- [streamlink-portable-latest-win32.zip](https://dl.bintray.com/beardypig/streamlink-portable/streamlink-portable-latest-win32.zip)
- [streamlink-portable-latest-amd64.zip](https://dl.bintray.com/beardypig/streamlink-portable/streamlink-portable-latest-amd64.zip)

A stable version is also available, based on the `0.7.0` tag of streamlink:
- [streamlink-portable-0.7.0-py3.5.2-win32.zip](https://github.com/beardypig/streamlink-portable/releases/download/0.7.0/streamlink-portable-0.7.0-py3.5.2-win32.zip)
- [streamlink-portable-0.7.0-py3.5.2-amd64.zip](https://github.com/beardypig/streamlink-portable/releases/download/0.7.0/streamlink-portable-0.7.0-py3.5.2-amd64.zip)
A stable version is also available, based on the `0.8.1` tag of streamlink:
- [streamlink-portable-0.8.1-py3.5.2-win32.zip](https://github.com/beardypig/streamlink-portable/releases/download/0.8.1/streamlink-portable-0.8.1-py3.5.4-win32.zip)
- [streamlink-portable-0.8.1-py3.5.2-amd64.zip](https://github.com/beardypig/streamlink-portable/releases/download/0.8.1/streamlink-portable-0.8.1-py3.5.4-amd64.zip)

To install simply unzip the zip file.

Expand All @@ -26,6 +26,12 @@ NB. `sed` must be `gnu-sed`

## Changelog

### 2017-09-14

* Release stable `0.8.1`.
* Resolved issue with missing `websocket` and `PySocks` modules.
* Update to Python 3.5.4.

### 2017-07-05

* Release stable `0.7.0`.
Expand Down
4 changes: 2 additions & 2 deletions scripts/makeportable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e # quit on error

branch=${1:-master}
STREAMLINK_PYTHON_ARCH=${2:-win32}
STREAMLINK_PYTHON_VERSION=3.5.3
STREAMLINK_PYTHON_VERSION=3.5.4
PYTHON_PLATFORM=${STREAMLINK_PYTHON_ARCH}

if [[ "${STREAMLINK_PYTHON_ARCH}" == "amd64" ]]; then
Expand Down Expand Up @@ -38,7 +38,7 @@ commit=$(git rev-parse --short HEAD)

echo "Downloading Python dependencies..."
pip download --only-binary ":all:" --platform "${PYTHON_PLATFORM}" --python-version "35" --abi "cp35m" -d "${temp_dir}" "pycryptodome==3.4.3" > /dev/null
pip install --upgrade -t "${packages_dir}" "iso-639" "iso3166" "setuptools" "requests>=1.0,>=2.18.0,<3.0" > /dev/null
pip install --upgrade -t "${packages_dir}" "iso-639" "iso3166" "setuptools" "requests>=1.0,>=2.18.0,<3.0" "websocket-client" "PySocks!=1.5.7,>=1.5.6" > /dev/null

# Work out the streamlink version
# For travis nightly builds generate a version number with commit hash
Expand Down

0 comments on commit 33d7bc0

Please sign in to comment.