Skip to content

Commit 6295551

Browse files
author
A S Lewis
committed
Rename utils.py and update code
1 parent 4ff29ed commit 6295551

26 files changed

+1765
-1719
lines changed

README.rst

Lines changed: 3 additions & 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.5.100 (2 Feb 2025)**
4848

49-
Development release: **v2.5.108 (14 Mar 2025)**
49+
Development release: **v2.5.113 (13 May 2025)**
5050

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

@@ -2247,6 +2247,8 @@ A: **youtube-dl** can create an archive file. The archive file remembers which v
22472247

22482248
To enable this functionality, click **Edit > System preferences... > Operations > Archive** and select **Allow downloader to create its own archive file**.
22492249

2250+
(If the **Archive** tab is not visible, select the **General > Application** tab, and then click the **Show advanced preferences** button.)
2251+
22502252
By default, the archive file is stored in the same folder as the video, but you can change this behaviour, if you like.
22512253

22522254
- Click **Store the archive file in Tartube's data directory** to create a single archive file that applies to every video, channel and playlist in Tartube's database

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.108
1+
2.5.113

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.5.108 installer script for MS Windows
1+
# Tartube v2.5.113 installer script for MS Windows
22
#
33
# Copyright (C) 2019-2025 A S Lewis
44
#
@@ -294,7 +294,7 @@
294294

295295
;Name and file
296296
Name "Tartube"
297-
OutFile "install-tartube-2.5.108-64bit.exe"
297+
OutFile "install-tartube-2.5.113-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.5.108"
400+
# "DisplayVersion" "2.5.113"
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.5.108'
48-
__date__ = '14 Mar 2025'
47+
__version__ = '2.5.113'
48+
__date__ = '13 May 2025'
4949
__copyright__ = 'Copyright \xa9 2019-2025 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2025 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.5.108'
48-
__date__ = '14 Mar 2025'
47+
__version__ = '2.5.113'
48+
__date__ = '13 May 2025'
4949
__copyright__ = 'Copyright \xa9 2019-2025 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2025 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.5.108'
48-
__date__ = '14 Mar 2025'
47+
__version__ = '2.5.113'
48+
__date__ = '13 May 2025'
4949
__copyright__ = 'Copyright \xa9 2019-2025 A S Lewis'
5050
__license__ = """
5151
Copyright \xa9 2019-2025 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 "14 Mar 2025" "2.5.108" "tartube man page"
1+
.TH man 1 "13 May 2025" "2.5.113" "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
@@ -175,7 +175,7 @@
175175
# Setup
176176
setuptools.setup(
177177
name = 'tartube',
178-
version = '2.5.108',
178+
version = '2.5.113',
179179
description = 'GUI front-end for youtube-dl and yt-dlp',
180180
long_description = long_description,
181181
long_description_content_type = 'text/plain',

tartube/classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class ModTextWrapper(textwrap.TextWrapper):
4242
4343
If 'break_on_hyphens' is specified, wrap the text on both hyphens and
4444
forward slashes. In that way, we can break up long URLs in calls to
45-
utils.tidy_up_long_descrip() and utils.tidy_up_long_string().
45+
ttutils.tidy_up_long_descrip() and ttutils.tidy_up_long_string().
4646
4747
v2.3.606: Modified the '_whitespace' field to allow wrapping after an
4848
underline.

0 commit comments

Comments
 (0)