GameSentenceMiner 2.8.5__py3-none-any.whl → 2.8.6__py3-none-any.whl
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.
- GameSentenceMiner/owocr/owocr/run.py +4 -9
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/METADATA +1 -1
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/RECORD +7 -7
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/WHEEL +0 -0
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/entry_points.txt +0 -0
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/licenses/LICENSE +0 -0
- {gamesentenceminer-2.8.5.dist-info → gamesentenceminer-2.8.6.dist-info}/top_level.txt +0 -0
@@ -222,9 +222,6 @@ class WindowsWindowTracker(threading.Thread):
|
|
222
222
|
if self.window_active != is_active:
|
223
223
|
on_window_activated(is_active)
|
224
224
|
self.window_active = is_active
|
225
|
-
elif ignore_window_visiblity:
|
226
|
-
on_window_minimized(False)
|
227
|
-
self.window_minimized = False
|
228
225
|
else:
|
229
226
|
is_minimized = win32gui.IsIconic(self.window_handle)
|
230
227
|
if self.window_minimized != is_minimized:
|
@@ -646,16 +643,16 @@ def run(read_from=None,
|
|
646
643
|
:param screen_capture_combo: When reading with screen capture, specifies a combo to wait on for taking a screenshot instead of using the delay. As an example: "<ctrl>+<shift>+s". The list of keys can be found here: https://pynput.readthedocs.io/en/latest/keyboard.html#pynput.keyboard.Key
|
647
644
|
"""
|
648
645
|
|
649
|
-
if
|
646
|
+
if read_from is None:
|
650
647
|
read_from = config.get_general('read_from')
|
651
648
|
|
652
|
-
if
|
649
|
+
if screen_capture_area is None:
|
653
650
|
screen_capture_area = config.get_general('screen_capture_area')
|
654
651
|
|
655
|
-
if
|
652
|
+
if screen_capture_only_active_windows is None:
|
656
653
|
screen_capture_only_active_windows = config.get_general('screen_capture_only_active_windows')
|
657
654
|
|
658
|
-
if
|
655
|
+
if write_to is None:
|
659
656
|
write_to = config.get_general('write_to')
|
660
657
|
|
661
658
|
logger.configure(handlers=[{'sink': sys.stderr, 'format': config.get_general('logger_format')}])
|
@@ -669,8 +666,6 @@ def run(read_from=None,
|
|
669
666
|
|
670
667
|
global engine_instances
|
671
668
|
global engine_keys
|
672
|
-
global ignore_window_visiblity
|
673
|
-
ignore_window_visiblity = ignore_window_visible
|
674
669
|
engine_instances = []
|
675
670
|
config_engines = []
|
676
671
|
engine_keys = []
|
@@ -31,7 +31,7 @@ GameSentenceMiner/owocr/owocr/__main__.py,sha256=r8MI6RAmbkTWqOJ59uvXoDS7CSw5jX5
|
|
31
31
|
GameSentenceMiner/owocr/owocr/config.py,sha256=738QCJHEWpFhMh966plOcXYWwcshSiRsxjjIwldeTtI,7461
|
32
32
|
GameSentenceMiner/owocr/owocr/lens_betterproto.py,sha256=oNoISsPilVVRBBPVDtb4-roJtAhp8ZAuFTci3TGXtMc,39141
|
33
33
|
GameSentenceMiner/owocr/owocr/ocr.py,sha256=n24Xg8Z8dbcgLpq1u4d22z3tLV1evmf0dK3-Xocv3vs,39878
|
34
|
-
GameSentenceMiner/owocr/owocr/run.py,sha256=
|
34
|
+
GameSentenceMiner/owocr/owocr/run.py,sha256=WP3YTocRnZh4AHysIgLokemcaowatMjwfxS0IcxIHps,47859
|
35
35
|
GameSentenceMiner/owocr/owocr/screen_coordinate_picker.py,sha256=fjJ3CSXLti3WboGPpmsa7MWOwIXsfpHC8N4zKahGGY0,3346
|
36
36
|
GameSentenceMiner/vad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
37
|
GameSentenceMiner/vad/silero_trim.py,sha256=ULf3zwS-JMsY82cKF7gZxREHw8L6lgpWF2U1YqgE9Oc,1681
|
@@ -50,9 +50,9 @@ GameSentenceMiner/web/static/text_replacements.html,sha256=tV5c8mCaWSt_vKuUpbdbL
|
|
50
50
|
GameSentenceMiner/web/static/utility.html,sha256=58br1whazdfrevWCHEzYNa1_VdBvebDDX2tWlX2QrFs,9964
|
51
51
|
GameSentenceMiner/web/static/web-app-manifest-192x192.png,sha256=EfSNnBmsSaLfESbkGfYwbKzcjKOdzuWo18ABADfN974,51117
|
52
52
|
GameSentenceMiner/web/static/web-app-manifest-512x512.png,sha256=wyqgCWCrLEUxSRXmaA3iJEESd-vM-ZmlTtZFBY4V8Pk,230819
|
53
|
-
gamesentenceminer-2.8.
|
54
|
-
gamesentenceminer-2.8.
|
55
|
-
gamesentenceminer-2.8.
|
56
|
-
gamesentenceminer-2.8.
|
57
|
-
gamesentenceminer-2.8.
|
58
|
-
gamesentenceminer-2.8.
|
53
|
+
gamesentenceminer-2.8.6.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
54
|
+
gamesentenceminer-2.8.6.dist-info/METADATA,sha256=-y0KqwQGu8y7OVhrpmzL0JSPusDvd4YtcxSip82DND4,5912
|
55
|
+
gamesentenceminer-2.8.6.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
56
|
+
gamesentenceminer-2.8.6.dist-info/entry_points.txt,sha256=2APEP25DbfjSxGeHtwBstMH8mulVhLkqF_b9bqzU6vQ,65
|
57
|
+
gamesentenceminer-2.8.6.dist-info/top_level.txt,sha256=V1hUY6xVSyUEohb0uDoN4UIE6rUZ_JYx8yMyPGX4PgQ,18
|
58
|
+
gamesentenceminer-2.8.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|