File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ the native format of `Aegisub <http://www.aegisub.org/>`_; it also supports *Su
20
20
line.text = " {\\ be1}" + line.text
21
21
subs.save(" my_subtitles_edited.ass" )
22
22
23
- The library works in Python 3.8 or newer, with no extra dependencies.
23
+ The library works in Python 3.9 or newer, with no extra dependencies.
24
24
It’s available under the MIT license (see bottom of the page).
25
25
To get started, simply install it using `pip <https://pypi.python.org/pypi/pip >`_: ``pip install pysubs2 ``.
26
26
You can also clone `the GitHub repository <https://github.com/tkarabela/pysubs2/ >`_.
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ **1.8.0 ** --- released on 2024-12-24
5
+
6
+ - Added reader and writer for TTML subtitle format
7
+ - Added reader for SAMI subtitle format (Issue #80)
8
+ - Added reader for transcriptions from OpenAI Whisper JAX (Issue #73)
9
+ - Added ``py.typed `` file to allow MyPy to check types for code using this library, patch by eggplants (https://github.com/eggplants)
10
+ - Minor improvements to `pysubs2.formats.substation.parse_tags() ` - now supports the ``\fn<fontname> `` tag, can optionally skip empty fragments
11
+ - Added support for Python 3.13, removed support for Python 3.8
12
+
13
+
4
14
**1.7.3 ** --- released on 2024-07-27
5
15
6
16
- Fixed problem with ``multiprocessing.Pool `` crashing due to ``FormatAutodetectionError `` (Issue #97)
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def to_ssa_alignment(self) -> int:
60
60
61
61
62
62
#: Version of the pysubs2 library.
63
- VERSION = "1.7.3 "
63
+ VERSION = "1.8.0 "
64
64
65
65
66
66
IntOrFloat = Union [int , float ]
You can’t perform that action at this time.
0 commit comments