Cammy 6 роки тому
батько
коміт
d732d87889
4 змінених файлів з 14 додано та 12 видалено
  1. 3 3
      .github/issue_template.md
  2. 5 5
      README.md
  3. 1 1
      pyinstalive/constants.py
  4. 5 3
      setup.py

+ 3 - 3
.github/issue_template.md

@@ -1,7 +1,7 @@
 ### Please check the boxes below by filling [ ] with an x so it looks like [x].
 ###### Remove all spaces already present in the box.
 
-- [ ] I am using the latest version of PyInstaLive: 3.0.0.
+- [ ] I am using the latest version of PyInstaLive: 3.0.1.
 - [ ] I have installed either Python 2.7.x or 3.5>=. (If applicable)
 - [ ] I have read the [README](https://github.com/notcammy/pyinstalive/blob/master/README.md).
 - [ ] I have read the [FAQ](https://github.com/notcammy/pyinstalive/blob/master/FAQ.md).
@@ -26,11 +26,11 @@ Run ```pyinstalive --info``` and paste its output below. Don't forget to omit yo
 ```bash
 $ pyinstalive --info
 ---------------------------------------------------------------------------
-[I] PYINSTALIVE (SCRIPT V3.0.0 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
+[I] PYINSTALIVE (SCRIPT V3.0.1 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
 ---------------------------------------------------------------------------
 [I] To see all the available arguments, use the -h argument.
 
-[I] PyInstaLive version:        3.0.0
+[I] PyInstaLive version:        3.0.1
 [I] Python version:             3.6.3
 [I] FFmpeg framework:           Available
 [I] Cookie files:               2 (johndoe.json matches config user)

+ 5 - 5
README.md

@@ -1,5 +1,5 @@
 # PyInstaLive
-![Version 3.0.0](https://img.shields.io/badge/Version-3.0.0-orange.svg)
+![Version 3.0.1](https://img.shields.io/badge/Version-3.0.1-orange.svg)
 ![Python 2.7, 3.5](https://img.shields.io/badge/Python-2.7%2C%203.5%2B-3776ab.svg)
 
 This Python script enables you to download any ongoing Instagram livestreams as well as any available replays. It is based on [another script](https://github.com/taengstagram/instagram-livestream-downloader) that has now been discontinued.
@@ -59,15 +59,15 @@ In case it doesn't work or you just prefer building PyInstaLive from source foll
 
 Run the following command in Command Prompt (might need to be run as administrator on Windows) or a terminal:
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@3.0.0 --process-dependency-links
+pip install git+https://github.com/notcammy/PyInstaLive.git@3.0.1 --process-dependency-links
 ```
 
 #### Updating
 
-To update PyInstaLive to the latest version (currently **3.0.0**) run the following command:
+To update PyInstaLive to the latest version (currently **3.0.1**) run the following command:
 
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@3.0.0 --process-dependency-links --upgrade
+pip install git+https://github.com/notcammy/PyInstaLive.git@3.0.1 --process-dependency-links --upgrade
 ```
 
 #### Specific versions
@@ -122,7 +122,7 @@ Below is an example of PyInstaLive's output after downloading a livestream:
 > pyinstalive -d "janedoe"
 
 ---------------------------------------------------------------------------
-[I] PYINSTALIVE (SCRIPT V3.0.0 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
+[I] PYINSTALIVE (SCRIPT V3.0.1 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
 ---------------------------------------------------------------------------
 [I] Successfully logged into account: johndoe
 ---------------------------------------------------------------------------

+ 1 - 1
pyinstalive/constants.py

@@ -2,7 +2,7 @@ import sys
 
 
 class Constants:
-    SCRIPT_VER = "3.0.0"
+    SCRIPT_VER = "3.0.1"
     PYTHON_VER = sys.version.split(' ')[0]
     CONFIG_TEMPLATE = """
 [pyinstalive]

+ 5 - 3
setup.py

@@ -2,12 +2,13 @@ from setuptools import setup
 
 __author__ = 'notcammy'
 __email__ = 'neus2benen@gmail.com'
-__version__ = '3.0.0'
+__version__ = '3.0.1'
 
 _api_version = '1.5.7'
 _api_extensions_version = '0.3.8'
 
-long_description = 'This CLI script enables you to download any ongoing Instagram livestreams as well as any available replays. It is based on another script that has now been discontinued.'
+long_description = 'This Python script enables you to download any ongoing Instagram livestreams as well as any ' \
+				   'available replays. It is based on another script that has now been discontinued. '
 
 setup(
 	name='pyinstalive',
@@ -36,7 +37,8 @@ setup(
 	include_package_data=True,
 	platforms='any',
 	long_description=long_description,
-	keywords='instagram-livestream-recorder record-instagram-livestreams live instagram record livestream video recorder downloader download save',
+	keywords='instagram-livestream-recorder record-instagram-livestreams live instagram record livestream video '
+			 'recorder downloader download save',
 	description='This script enables you to download Instagram livestreams and replays.',
 	classifiers=[
 		'Environment :: Console',