Skip to content

Commit b00618b

Browse files
committed
Enable creepy voice(s) detection + fix an old override
1 parent 3ca2e7b commit b00618b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

parse_qwantz/data/panel_overrides.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@
959959
"panels": {
960960
"6": [
961961
"T-Rex: Yeah... full of Internet robot nano-maids!",
962-
"〚a cloud of dust and motion lines suggest that Utahraptor ran away"
962+
"〚a cloud of dust and motion lines suggest that Utahraptor flipped backwards"
963963
]
964964
}
965965
},

parse_qwantz/parser.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,5 +223,5 @@ def handle_god_and_devil(block: TextBlock, is_off_panel: bool) -> Character | No
223223
return Character.from_name('Devil')
224224
elif is_off_panel and block.is_bold:
225225
return Character.from_name('God')
226-
# elif is_off_panel and block.is_italic:
227-
# return Character.from_name('Creepy neighbours')
226+
elif is_off_panel and block.is_italic:
227+
return Character.from_name('Creepy voice(s)')

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "parse_qwantz"
33
authors = [{name = "Jan Szejko", email = "[email protected]"}]
4-
version = "2025.1.3"
4+
version = "2025.3.0"
55
description = "Transcript generator for Dinosaur Comics"
66
readme = "README.md"
77
requires-python = ">=3.10"

0 commit comments

Comments
 (0)