浏览代码

Bump version to 2.3.5

notcammy 7 年之前
父节点
当前提交
74a6daff05
共有 5 个文件被更改,包括 12 次插入8 次删除
  1. 1 1
      .github/issue_template.md
  2. 4 1
      MOREHELP.md
  3. 5 4
      README.md
  4. 1 1
      pyinstalive/initialize.py
  5. 1 1
      setup.py

+ 1 - 1
.github/issue_template.md

@@ -1,7 +1,7 @@
 ### Please check the boxes below by filling [ ] with an x so it looks like [x].
 ### Please check the boxes below by filling [ ] with an x so it looks like [x].
 ###### Remove all spaces already present in the box.
 ###### Remove all spaces already present in the box.
 
 
-- [ ] I have installed the latest version of PyInstaLive: 2.3.4.
+- [ ] I have installed the latest version of PyInstaLive: 2.3.5.
 - [ ] I have installed either Python 2.7.x or 2.5>=.
 - [ ] I have installed either Python 2.7.x or 2.5>=.
 - [ ] I have read the [README](https://github.com/notcammy/pyinstalive/blob/master/README.md).
 - [ ] 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).
 - [ ] I have read the [FAQ](https://github.com/notcammy/pyinstalive/blob/master/FAQ.md).

+ 4 - 1
MOREHELP.md

@@ -26,6 +26,7 @@ clear_temp_files = false
 save_replays = true
 save_replays = true
 run_at_start =
 run_at_start =
 run_at_finish =
 run_at_finish =
+save_comments = true
 ```
 ```
 
 
 ```username```  **—**  Instagram username to login with.
 ```username```  **—**  Instagram username to login with.
@@ -42,4 +43,6 @@ run_at_finish =
 
 
 ```run_at_start```  **—**  Python script to run when PyInstaLive starts recording a livestream. (Experimental, use at own risk.)
 ```run_at_start```  **—**  Python script to run when PyInstaLive starts recording a livestream. (Experimental, use at own risk.)
 
 
-```run_at_finish```  **—**  Python script to run when PyInstaLive finishes recording a livestream. (Experimental, use at own risk.)
+```run_at_finish```  **—**  Python script to run when PyInstaLive finishes recording a livestream. (Experimental, use at own risk.)
+
+```save_comments```  **—**  When enabled, PyInstaLive will try to save comments from a livestream or replay to a log file. Verified users have *(v)* next to their name. (Experimental, use at own risk.)

+ 5 - 4
README.md

@@ -1,5 +1,5 @@
 # PyInstaLive
 # PyInstaLive
-![Version 2.3.4](https://img.shields.io/badge/Version-2.3.4-pink.svg?style=for-the-badge)
+![Version 2.3.5](https://img.shields.io/badge/Version-2.3.5-pink.svg?style=for-the-badge)
 
 
 This script enables you to download 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. 
 This script enables you to download 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. 
 
 
@@ -22,15 +22,15 @@ You need [ffmpeg](https://ffmpeg.org/download.html), [Git](https://git-scm.com/d
 
 
 Run the following command in command line (as administrator in Windows) / terminal:
 Run the following command in command line (as administrator in Windows) / terminal:
 ```bash
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.3.4 --process-dependency-links
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.3.5 --process-dependency-links
 ```
 ```
 
 
 #### Updating
 #### Updating
 
 
-To update PyInstaLive to the latest version (currently **2.3.4**) run the following command:
+To update PyInstaLive to the latest version (currently **2.3.5**) run the following command:
 
 
 ```bash
 ```bash
-pip install git+https://github.com/notcammy/PyInstaLive.git@2.3.4 --process-dependency-links --upgrade
+pip install git+https://github.com/notcammy/PyInstaLive.git@2.3.5 --process-dependency-links --upgrade
 ```
 ```
 
 
 **Note**: From version 2.2.9 and up, newly generated login cookie files are now named after the username in the configuration file. If you have an existing cookie file called 'credentials.json' it is a good idea to rename it to the username it is associated with so PyInstaLive won't needlessly create a new cookie file.
 **Note**: From version 2.2.9 and up, newly generated login cookie files are now named after the username in the configuration file. If you have an existing cookie file called 'credentials.json' it is a good idea to rename it to the username it is associated with so PyInstaLive won't needlessly create a new cookie file.
@@ -61,6 +61,7 @@ clear_temp_files = false
 save_replays = true
 save_replays = true
 run_at_start =
 run_at_start =
 run_at_finish =
 run_at_finish =
+save_comments = true
 ```
 ```
 
 
 Use the following command to run PyInstaLive:
 Use the following command to run PyInstaLive:

+ 1 - 1
pyinstalive/initialize.py

@@ -11,7 +11,7 @@ from .logger import log, seperator, supports_color
 from .downloader import main
 from .downloader import main
 from .settings import settings
 from .settings import settings
 
 
-script_version = "2.3.4"
+script_version = "2.3.5"
 python_version = sys.version.split(' ')[0]
 python_version = sys.version.split(' ')[0]
 bool_values = {'True', 'False'}
 bool_values = {'True', 'False'}
 
 

+ 1 - 1
setup.py

@@ -2,7 +2,7 @@ from setuptools import setup
 
 
 __author__ = 'notcammy'
 __author__ = 'notcammy'
 __email__ = 'neus2benen@gmail.com'
 __email__ = 'neus2benen@gmail.com'
-__version__ = '2.3.4'
+__version__ = '2.3.5'
 
 
 _api_version = '1.3.6'
 _api_version = '1.3.6'
 _api_extensions_version = '0.3.6'
 _api_extensions_version = '0.3.6'