Skip to content

Commit

Permalink
Possible fix for PyCairo crashes, reinstate debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
A S Lewis committed Dec 29, 2023
1 parent 652ab3f commit 7f88b6b
Show file tree
Hide file tree
Showing 15 changed files with 3,404 additions and 32 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Problems can be reported at `our GitHub page <https://github.com/axcore/tartube/

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

Development release: **v2.4.433 (22 Nov 2023)**
Development release: **v2.4.438 (29 Dec 2023)**

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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.433
2.4.438
6 changes: 3 additions & 3 deletions nsis/tartube_install_64bit.nsi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tartube v2.4.433 installer script for MS Windows
# Tartube v2.4.438 installer script for MS Windows
#
# Copyright (C) 2019-2023 A S Lewis
#
Expand Down Expand Up @@ -294,7 +294,7 @@

;Name and file
Name "Tartube"
OutFile "install-tartube-2.4.433-64bit.exe"
OutFile "install-tartube-2.4.438-64bit.exe"

;Default installation folder
InstallDir "$LOCALAPPDATA\Tartube"
Expand Down Expand Up @@ -397,7 +397,7 @@ Section "Tartube" SecClient
# "Publisher" "A S Lewis"
# WriteRegStr HKLM \
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
# "DisplayVersion" "2.4.433"
# "DisplayVersion" "2.4.438"

# Create uninstaller
WriteUninstaller "$INSTDIR\Uninstall.exe"
Expand Down
4 changes: 2 additions & 2 deletions pack/bin/no_download/tartube
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ import mainapp

# 'Global' variables
__packagename__ = 'tartube'
__version__ = '2.4.433'
__date__ = '22 Nov 2023'
__version__ = '2.4.438'
__date__ = '29 Dec 2023'
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
__license__ = """
Copyright \xa9 2019-2023 A S Lewis.
Expand Down
4 changes: 2 additions & 2 deletions pack/bin/pkg/tartube
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ import mainapp

# 'Global' variables
__packagename__ = 'tartube'
__version__ = '2.4.433'
__date__ = '22 Nov 2023'
__version__ = '2.4.438'
__date__ = '29 Dec 2023'
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
__license__ = """
Copyright \xa9 2019-2023 A S Lewis.
Expand Down
4 changes: 2 additions & 2 deletions pack/bin/strict/tartube
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ import mainapp

# 'Global' variables
__packagename__ = 'tartube'
__version__ = '2.4.433'
__date__ = '22 Nov 2023'
__version__ = '2.4.438'
__date__ = '29 Dec 2023'
__copyright__ = 'Copyright \xa9 2019-2023 A S Lewis'
__license__ = """
Copyright \xa9 2019-2023 A S Lewis.
Expand Down
2 changes: 1 addition & 1 deletion pack/tartube.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH man 1 "22 Nov 2023" "2.4.433" "tartube man page"
.TH man 1 "29 Dec 2023" "2.4.438" "tartube man page"
.SH NAME
tartube \- GUI front-end for youtube-dl and yt-dlp
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
# Setup
setuptools.setup(
name = 'tartube',
version = '2.4.433',
version = '2.4.438',
description = 'GUI front-end for youtube-dl, yt-dlp and other compatible' \
+ ' video downloaders',
long_description = long_description,
Expand Down
4 changes: 2 additions & 2 deletions tartube/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -10947,7 +10947,7 @@ def setup_name_tab(self):
# (To avoid messing up the neat format of the rows above and below, add
# a secondary grid, and put the next set of widgets inside it)
grid2 = self.add_secondary_grid(grid, 0, 1, grid_width, 1)

self.add_label(grid2,
_('Extra command line options (e.g. --help)'),
0, 0, 1, 1,
Expand All @@ -10958,7 +10958,7 @@ def setup_name_tab(self):
'extra_override_flag',
1, 0, 2, 1,
)

self.extra_cmd_string_textview, \
self.extra_cmd_string_textbuffer = self.add_textview(grid,
'extra_cmd_string',
Expand Down
Loading

0 comments on commit 7f88b6b

Please sign in to comment.