Commit Graph

90 Commits (832f8c3318991b6b38fe6bccb23436bb1fe1faf6)
 

Author SHA1 Message Date
TDE Gitea 832f8c3318 Update translation template. 6 months ago
mio b8894a29b2 Create a AudioView widget for audio-only streams
Currently Codeine will show a blank area when playing an audio-only
file, such as music.  This patch adds a new widget that contains an
instance of the Analyzer::Block class, so instead of a blank area it
contains a "visualizer" of sorts.

Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 5cfecec409)
6 months ago
TDE Gitea 3f8d1f80ca Merge translation files from master branch. 6 months ago
TDE Gitea c9c1ea998b Merge translation files from master branch. 7 months ago
TDE Gitea bf46a952a2 Update translation template. 7 months ago
mio 673f35da4c Fix mouse events not changing volume
Using the scroll wheel over the volume slider would not change the
volume, neither would dragging the slider (until released) or clicking
on the slider.

This patch fixes the above.

See: TDE/codeine#5
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 14b52b5a46)
7 months ago
TDE Gitea 2ae198284f Merge translation files from master branch. 8 months ago
TDE Gitea 458d9e742e Merge translation files from master branch. 8 months ago
TDE Gitea 4e3fee358b Update translation template. 8 months ago
mio 86a889ec4e Allow seeking in FLAC
Xine has supported seeking in FLAC files since 1.1.16.

Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 462472610d)
8 months ago
TDE Gitea 78ee94271d Merge translation files from master branch. 8 months ago
TDE Gitea 52787fc2c7 Merge translation files from master branch. 8 months ago
TDE Gitea 77b92dd840 Update translation template. 8 months ago
mio 55b425fe49
Update the xineScope to remove global variables.
This patch updates xineScope.c to better align with Amarok's code. As a
result, the analyzer is more accurate.  For instance, when playing an
audio file and there is a silent spot, the blocks will correctly "drop"
to the bottom, leaving an empty analyzer.  The previous behaviour would
leave some blocks "stuck" in their position

See: TDE/codeine#23
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit ff2a5768dd)
8 months ago
mio 4fe9282a9b
Fix the audio analyzer
Most of the code was already borrowed from Amarok, but wasn't properly
finished. This just updates the code to more closely match what is
currently in TDE's Amarok.

The Analyzer still sits in the statusBar(), which is cool, but can have
some delays when watching a video (the video itself is unaffected).

See: TDE/codeine#23
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit a3ea0ee70f)
8 months ago
TDE Gitea c2ba45c141 Update translation template. 9 months ago
mio 39912d87d5
Fix channel selection menus disappearing
When adding/removing an action to/from the toolbar, the aspect ratio,
audio channel, and subtitle channel menus would disappear from the
parent settings menu.

My understanding is that this happened because nothing was keeping those
menus present (plugged?) when other actions were plugged/unplugged.

This changes it so "Aspect Ratio", "Subtitles", and "Audio Channels"
each are a TDESelectAction that is dynamically filled with items. This
way, each popup menu is still present after other actions being
plugged/unplugged.

Resolves: TDE/codeine#24
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit f460840a5e)
9 months ago
TDE Gitea 5100a0909b Update translation template. 9 months ago
mio 0dbeeeb9f2
Address -Wall warnings
VideoWindow::ExposeEvent wasn't being used correctly; it should be a
TQCustomEvent (although, the 3000 type is already being used for
forwarding XINE_PROGRESS_EVENT).

While the pts_per_smpls part never seemed to be encountered, it would
have resulted in a floating point exception as it's always 0.  Commented
out to leave a hint as to what the code should be doing.

Resolves: TDE/codeine#2
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 9ef39acd5d)
9 months ago
mio f41da351c6
Fix filter list when opening a file
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit c0311bdfc3)
10 months ago
TDE Gitea fb0c092eaa Update translation template. 10 months ago
mio 9f6a25bcf4
Improve the layout of XineConfigDialog
Properly display the description of each of the settings.  Also,
reorganize the layout so that it uses layouts rather than VBox/HBox.

The TabWidget class has been removed in favour of the standard
TQTabWidget class, as the different behaviour doesn't make a notable
visual difference.

Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 11c0638baf)
10 months ago
mio 5394e874c3
Fix crash when showing context menu in DVDs
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit b62e6bc2b9)
10 months ago
TDE Gitea e2003a00c4 Update translation template. 11 months ago
mio bca2a1a170
Use nullptr instead of NULL/0 pointer in C++ files
See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit ed55bf0726)
11 months ago
mio 55214aea7c
Use safer xine_get_current_frame_s
xine_get_current_frame was deprecated back in 2019 because it is
"unsafe by design"[0].  The '_s' version was introduced in xine-lib
1.1.11, which was released in 2008, so there are no version checks.

[0]:
c1a154c1a8/

Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 5e965846d1)
11 months ago
TDE Gitea 9cec7f890e Update translation template. 11 months ago
mio 86b8d57af8
Scale capture preview if it exceeds screen bounds
Signed-off-by: mio <stigma@disroot.org>
(cherry picked from commit 000a65ca62)
11 months ago
Michele Calgaro b4cc6a0cb0
Rename __KDE_HAVE_GCC_VISIBILITY to __TDE_HAVE_GCC_VISIBILITY
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 173770f0f1)
12 months ago
Michele Calgaro 38dcd28582
Use centralized cmake version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e097d43a06)
1 year ago
Michele Calgaro 81d30b1142
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 00a73f1dea)
1 year ago
Michele Calgaro b023e03979
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1ca6231ff7)
2 years ago
Slávek Banko 7c2b90bd69
Raise the minimum required version of CMake to 3.5.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 6208d03e3d)
2 years ago
TDE Gitea bf236a314c Update translation template. 2 years ago
Michele Calgaro 58bbed0510
xine engine: make volume control logarithmic for versions of xine < 1.2.13. For xine versions >= 1.2.13, libxine already makes the volume logarithmic. This relates to TDE/tdemultimedia#40.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit b5977d5e67)
2 years ago
TDE Gitea 79a8d17988 Update translation template. 2 years ago
Michele Calgaro d1d095a264
Fix volume slider functionality and visualization
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1884d0e5a2)
2 years ago
Michele Calgaro decb99db2f
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ea718087e4)
2 years ago
TDE Gitea 177cdfdd58 Merge translation files from master branch. 2 years ago
Eduardo Herrera b9fbcc0e48 Translated using Weblate (Spanish)
Currently translated at 60.0% (3 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/es/
2 years ago
Michele Calgaro 7eba30e8ba
Use TDE cmake macro to set version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 years ago
Lian Begett aaa872f150 Translated using Weblate (German)
Currently translated at 100.0% (5 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/de/
3 years ago
Michele Calgaro 043973b2fb
Remove obsolete setting of CMAKE_MODULE_PATH in cmake files.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 years ago
Slávek Banko 0a79d229af
Raise the minimum required version of CMake to 3.1 in CMakeL10n rules.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Slávek Banko 2ab437b189
Raise the minimum required version of CMake to 3.1.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Sebastião Guerra 54e68a8a27 Translated using Weblate (Portuguese (Brazil))
Currently translated at 100.0% (5 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/pt_BR/
4 years ago
Hugo Carvalho 71ea81cdee Translated using Weblate (Portuguese)
Currently translated at 100.0% (5 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/pt/
4 years ago
Hugo Carvalho a27060b1f3 Translated using Weblate (Portuguese)
Currently translated at 80.0% (4 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/pt/
4 years ago
Slávek Banko b7b726f67f
Change README to markdown format.
Add translation status overview.

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
4 years ago
Marek W d9797e7ec9 Translated using Weblate (Polish)
Currently translated at 100.0% (5 of 5 strings)

Translation: applications/codeine - desktop files
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/codeine-desktop-files/pl/
4 years ago