GameSentenceMiner 2.0.1.post1__tar.gz → 2.0.1.post2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/PKG-INFO +2 -2
  2. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/README.md +1 -1
  3. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/pyproject.toml +1 -1
  4. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/configuration.py +1 -1
  5. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/PKG-INFO +2 -2
  6. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/setup.cfg +0 -0
  7. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/__init__.py +0 -0
  8. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/anki.py +0 -0
  9. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/config_gui.py +0 -0
  10. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/ffmpeg.py +0 -0
  11. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/gametext.py +0 -0
  12. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/gsm.py +0 -0
  13. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/model.py +0 -0
  14. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/notification.py +0 -0
  15. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/obs.py +0 -0
  16. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/util.py +0 -0
  17. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/vad/__init__.py +0 -0
  18. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/vad/silero_trim.py +0 -0
  19. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/vad/vosk_helper.py +0 -0
  20. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner/vad/whisper_helper.py +0 -0
  21. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/SOURCES.txt +0 -0
  22. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/dependency_links.txt +0 -0
  23. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/entry_points.txt +0 -0
  24. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/requires.txt +0 -0
  25. {gamesentenceminer-2.0.1.post1 → gamesentenceminer-2.0.1.post2}/src/GameSentenceMiner.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: GameSentenceMiner
3
- Version: 2.0.1.post1
3
+ Version: 2.0.1.post2
4
4
  Summary: A tool for mining sentences from games.
5
5
  Author-email: Beangate <bpwhelan95@gmail.com>
6
6
  License: MIT License
@@ -40,7 +40,7 @@ Requires-Dist: pywin32
40
40
 
41
41
  ## WARNING
42
42
 
43
- This project is in process of a major rewrite, and this README will be updated soon with the new process.
43
+ This project is in process of a major overhaul, and this README will be updated soon with the new process.
44
44
 
45
45
  ---
46
46
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## WARNING
4
4
 
5
- This project is in process of a major rewrite, and this README will be updated soon with the new process.
5
+ This project is in process of a major overhaul, and this README will be updated soon with the new process.
6
6
 
7
7
  ---
8
8
 
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
 
8
8
  [project]
9
9
  name = "GameSentenceMiner"
10
- version = "2.0.1.post1"
10
+ version = "2.0.1.post2"
11
11
  description = "A tool for mining sentences from games."
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.11"
@@ -5,7 +5,7 @@ import shutil
5
5
  from dataclasses import dataclass, field
6
6
  from logging.handlers import RotatingFileHandler
7
7
  from os.path import expanduser
8
- from platform import platform
8
+ from sys import platform
9
9
  from typing import List, Dict
10
10
 
11
11
  import toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: GameSentenceMiner
3
- Version: 2.0.1.post1
3
+ Version: 2.0.1.post2
4
4
  Summary: A tool for mining sentences from games.
5
5
  Author-email: Beangate <bpwhelan95@gmail.com>
6
6
  License: MIT License
@@ -40,7 +40,7 @@ Requires-Dist: pywin32
40
40
 
41
41
  ## WARNING
42
42
 
43
- This project is in process of a major rewrite, and this README will be updated soon with the new process.
43
+ This project is in process of a major overhaul, and this README will be updated soon with the new process.
44
44
 
45
45
  ---
46
46