Cammy 7 роки тому
батько
коміт
485c98e50f
3 змінених файлів з 6 додано та 6 видалено
  1. 3 3
      README.md
  2. 1 1
      pyinstalive/initialize.py
  3. 2 2
      setup.py

+ 3 - 3
README.md

@@ -5,15 +5,15 @@ This script enables you to record Instagram livestreams as well as download any
 
 Run the following command in command line (as administrator in Windows) / terminal:
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.2.0 --process-dependency-links
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.2.1 --process-dependency-links
 ```
 
 #### Updating
 
-To update PyInstaLive to the latest version (currently **2.2.0**) run the following command:
+To update PyInstaLive to the latest version (currently **2.2.1**) run the following command:
 
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.2.0 --process-dependency-links --upgrade
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.2.1 --process-dependency-links --upgrade
 ```
 
 #### Specific versions

+ 1 - 1
pyinstalive/initialize.py

@@ -23,7 +23,7 @@ def check_config_validity(config):
 
 def run():
 
-	script_version = "2.2.0"
+	script_version = "2.2.1"
 	bool_values = {'True', 'False'}
 
 	logger.log('PYINSTALIVE DOWNLOADER (SCRIPT v{0!s})'.format(script_version), "GREEN")

+ 2 - 2
setup.py

@@ -2,12 +2,12 @@ from setuptools import setup
 
 __author__ = 'notcammy'
 __email__ = 'neus2benen@gmail.com'
-__version__ = '2.2.0'
+__version__ = '2.2.1'
 
 _api_version = '1.3.5'
 _api_extensions_version = '0.3.6'
 
-long_description = 'This script enables you to record Instagram livestreams. It is based on another script that has now been discontinued.'
+long_description = 'This script enables you to record Instagram livestreams as well as download any available replays. It is based on another script that has now been discontinued.'
 
 setup(
 	name='pyinstalive',