Skip to content

Commit 7f88b6b

Browse files
author
A S Lewis
committed
Possible fix for PyCairo crashes, reinstate debug messages
1 parent 652ab3f commit 7f88b6b

File tree

15 files changed

+3404
-32
lines changed

15 files changed

+3404
-32
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Problems can be reported at `our GitHub page <https://github.com/axcore/tartube/
4646

4747
Stable release: **v2.4.429 (21 Nov 2023)**
4848

49-
Development release: **v2.4.433 (22 Nov 2023)**
49+
Development release: **v2.4.438 (29 Dec 2023)**
5050

5151
Official packages (also available from the `Github release page <https://github.com/axcore/tartube/releases>`__):
5252

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.433
1+
2.4.438

nsis/tartube_install_64bit.nsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tartube v2.4.433 installer script for MS Windows
1+
# Tartube v2.4.438 installer script for MS Windows
22
#
33
# Copyright (C) 2019-2023 A S Lewis
44
#
@@ -294,7 +294,7 @@
294294

295295
;Name and file
296296
Name "Tartube"
297-
OutFile "install-tartube-2.4.433-64bit.exe"
297+
OutFile "install-tartube-2.4.438-64bit.exe"
298298

299299
;Default installation folder
300300
InstallDir "$LOCALAPPDATA\Tartube"
@@ -397,7 +397,7 @@ Section "Tartube" SecClient
397397
# "Publisher" "A S Lewis"
398398
# WriteRegStr HKLM \
399399
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
400-
# "DisplayVersion" "2.4.433"
400+
# "DisplayVersion" "2.4.438"
401401

402402
# Create uninstaller
403403
WriteUninstaller "$INSTDIR\Uninstall.exe"

pack/bin/no_download/tartube

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ import mainapp
4444

4545
# 'Global' variables
4646
__packagename__ = 'tartube'
47-
__version__ = '2.4.433'
48-
__date__ = '22 Nov 2023'
47+
__version__ = '2.4.438'
48+
__date__ = '29 Dec 2023'
4949
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2023 A S Lewis.

pack/bin/pkg/tartube

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ import mainapp
4444

4545
# 'Global' variables
4646
__packagename__ = 'tartube'
47-
__version__ = '2.4.433'
48-
__date__ = '22 Nov 2023'
47+
__version__ = '2.4.438'
48+
__date__ = '29 Dec 2023'
4949
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2023 A S Lewis.

pack/bin/strict/tartube

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ import mainapp
4444

4545
# 'Global' variables
4646
__packagename__ = 'tartube'
47-
__version__ = '2.4.433'
48-
__date__ = '22 Nov 2023'
47+
__version__ = '2.4.438'
48+
__date__ = '29 Dec 2023'
4949
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2023 A S Lewis.

pack/tartube.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH man 1 "22 Nov 2023" "2.4.433" "tartube man page"
1+
.TH man 1 "29 Dec 2023" "2.4.438" "tartube man page"
22
.SH NAME
33
tartube \- GUI front-end for youtube-dl and yt-dlp
44
.SH SYNOPSIS

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
# Setup
184184
setuptools.setup(
185185
name = 'tartube',
186-
version = '2.4.433',
186+
version = '2.4.438',
187187
description = 'GUI front-end for youtube-dl, yt-dlp and other compatible' \
188188
+ ' video downloaders',
189189
long_description = long_description,

tartube/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10947,7 +10947,7 @@ def setup_name_tab(self):
1094710947
# (To avoid messing up the neat format of the rows above and below, add
1094810948
# a secondary grid, and put the next set of widgets inside it)
1094910949
grid2 = self.add_secondary_grid(grid, 0, 1, grid_width, 1)
10950-
10950+
1095110951
self.add_label(grid2,
1095210952
_('Extra command line options (e.g. --help)'),
1095310953
0, 0, 1, 1,
@@ -10958,7 +10958,7 @@ def setup_name_tab(self):
1095810958
'extra_override_flag',
1095910959
1, 0, 2, 1,
1096010960
)
10961-
10961+
1096210962
self.extra_cmd_string_textview, \
1096310963
self.extra_cmd_string_textbuffer = self.add_textview(grid,
1096410964
'extra_cmd_string',

0 commit comments

Comments
 (0)