Rafał Dzięgiel
706c783498
Use unicode U+2215 for division
2022-01-17 22:28:17 +01:00
Rafał Dzięgiel
8ba3ca4af6
Use unicode U+00D7 for multiplication
2022-01-17 21:01:23 +01:00
Rafał Dzięgiel
38efa7ab9f
Use unicode U+2236 for time
2022-01-17 20:27:13 +01:00
Rafał Dzięgiel
f6a1aaf1dc
Remove all YouTube code
...
It has been broken for quite some time. From now on this is gonna be left to handle for GStreamer plugins.
2021-12-22 08:12:55 +01:00
Rafał Dzięgiel
d465d9f150
Make floating window update its title earlier
...
Instead of waiting till animation finishes, update the window title right away when changing modes
2021-12-15 16:58:54 +01:00
Rafał Dzięgiel
5e4dfb322c
Append "PiP" suffix to window title when in floating mode
...
We are gonna take advantage of this simple change elsewhere
2021-12-15 12:44:23 +01:00
Rafał Dzięgiel
0c561ab4b3
Also allow enabling gtuber code path via env
...
Having to use "gtuber" URI scheme might be inconvenient, so also allow to
whitelist it with "GST_PLUGIN_FEATURE_RANK=gtubersrc:300" env
2021-12-10 11:05:00 +01:00
Rafał Dzięgiel
46ce261524
widget: Make sure we have caps before logging them
2021-12-10 11:03:06 +01:00
Rafał Dzięgiel
810aea476f
Use gtuber lib for URIs with "gtuber" scheme
...
Take a different code path when URI uses "gtuber" scheme.
This allows testing new WIP lib as an opt-in.
2021-11-29 22:33:53 +01:00
Rafał Dzięgiel
82e3c9a52f
prefs: Add can-swipe-back compat with latest libadwaita
...
Recent libadwaita has renamed "can-swipe-back" into "can-navigate-back".
Set both in JS code instead of UI file in order to support all libadwaita versions.
Fixes #185
2021-11-29 10:13:06 +01:00
Rafał Dzięgiel
654b8aaf60
prefs: Fix expander rows compat with latest libadwaita
2021-11-19 18:43:01 +01:00
Rafał Dzięgiel
d2df1c3bd8
app: Use Adw.StyleManager to enable dark-theme
...
Latest libadwaita (for reasons unknown to me) totally ignores/breaks dark theme usage with gtk_application_prefer_dark_theme property. Lets just try using the new Adw.StyleManager without asking questions why.
2021-11-18 22:42:05 +01:00
Rafał Dzięgiel
60d4b5aec1
widget: Do gestures in capture phase
...
Capture phase runs from the toplevel down to the event widget and is meant to be used
in containers that might possibly handle events before their children, like our OSD layer.
This avoids an issue where pressing an OSD button does not emit cancelled signal,
accidentally triggering long press gesture signal handler.
Fixes #170
2021-10-04 10:11:53 +02:00
Rafał Dzięgiel
bafffa59b9
Fix missing translator-credits
2021-09-14 16:40:09 +02:00
Rafał Dzięgiel
201cb6f64c
actions: Also allow mute with "M" key alone
...
For faster access
2021-09-14 13:09:23 +02:00
Rafał Dzięgiel
636098182b
actions: Keep consistent letters case
2021-09-14 13:06:44 +02:00
Rafał Dzięgiel
5442b0b70a
uri-dialog: Catch errors when reading from clipboard
...
The clipboard.read_text_finish method might throw an error when something goes wrong. Catch it and print in debug message. There is no alternative clipboard reading, so simply ignore.
2021-09-14 13:00:14 +02:00
Rafał Dzięgiel
02a7419d66
Merge pull request #155 from Rafostar/scaling
...
Scale fullscreen differently depending on monitor res
2021-09-11 12:18:13 +02:00
Rafał Dzięgiel
e727b8fb50
Scale fullscreen differently depending on monitor res
2021-09-11 11:22:15 +02:00
Rafostar
3cbfd1a57c
Fix chapter popover parenting
2021-09-10 19:28:27 +02:00
Rafał Dzięgiel
b293a84df6
Skip hiding already hidden tracks radio buttons
...
Does not change much, but removes some useless logging
2021-09-09 22:08:20 +02:00
Rafał Dzięgiel
928244dc32
prefs: Show icon in plugins with modified feature ranks
2021-09-09 12:10:54 +02:00
Rafał Dzięgiel
dbeb4cb0b7
misc: Cleanup imports resolve code
...
It does not look like we will be able to provide gresources in near future (ever?). Remove those checks for less logic at startup.
2021-09-08 21:32:42 +02:00
Rafał Dzięgiel
b5007d12a1
remote: Use system play/pause icons
...
Those were taken from gresource, but since Remote is a different app, it does not use original clapper gresource. Use system icons for now.
2021-09-08 20:22:32 +02:00
Rafał Dzięgiel
98d2b80103
Add PiP and play icons as gresource
...
Add missing PiP icons from web devel kit. Also add play/pause
icons at the right size and remove all workarounds/scaling
implemented or these two.
Playback icons are always two bars for pause and triangle for play,
so hopefully this will not be problematic, as this guaranties the
right size for them that Adwaita unfortunately cannot provide.
2021-09-07 19:34:59 +02:00
Rafał Dzięgiel
fa39c45773
Remove useless signal connection in about dialog
2021-09-06 20:33:11 +02:00
Rafał Dzięgiel
e8c44dc400
Make end time label translatable
2021-09-06 20:21:18 +02:00
Rafał Dzięgiel
35d359daf9
Mark popovers text as translatable
2021-09-06 19:45:04 +02:00
Rafał Dzięgiel
8733610a9b
Move revealers access away from base classes
...
Those should not appear in base classes, as they are available in main app only
2021-09-06 17:23:36 +02:00
Rafał Dzięgiel
99acd36cc0
api: Always start unmuted
2021-09-06 13:18:57 +02:00
Rafał Dzięgiel
574e084383
Toggle mute with Ctrl+M
...
Closes #117
2021-09-06 12:34:11 +02:00
Rafał Dzięgiel
3483c94913
Completely disable audio track when set to disabled
...
Instead of just muting audio when disabled, tell GStreamer to diable it completely. This is slower, but makes this option do what it was supposed to.
2021-09-06 10:29:44 +02:00
Rafał Dzięgiel
a99abc652a
Do not store subtitle-offset as gsetting
...
This is not something we should remember
2021-09-06 10:12:33 +02:00
Rafostar
a16444cefb
Do not set subtitle-offset at startup
...
We should always start without any offset for subtitles
2021-09-05 20:44:12 +02:00
Rafostar
65673dbf4f
Add window mapped debug message
2021-09-05 17:55:16 +02:00
Rafostar
dea67e4712
Prepare for resource loading
...
Cleanup the Clapper install path detection code in a way to make gresources loading eventually possible for compiled builds
2021-09-05 17:55:11 +02:00
Rafostar
3c765e9f17
Add some init debug messages
...
To get an overall idea how long initialization takes
2021-09-05 17:54:55 +02:00
Rafostar
a77eb5352e
cleanup: Remove unused clapperVersion variable
2021-09-05 11:47:24 +02:00
Rafostar
ca168f34ed
controls: Use isFullscreen and isMobile from main widget
...
The "controls.isMobile" was used incorrectly here as it holds value if
controls are in mobile mode, not if running on mobile screen.
Use those values from clapper main widget instead. This fixes incorrect
chapter popover placement on mobile screens.
Also handle fine-tune in CSS as this code path is hit multiple times
when starting/stopping slider drag.
2021-09-05 11:30:46 +02:00
Rafał Dzięgiel
70942ba419
prefs: Mark experimental options
...
Options not fully reliable with possibility to break playback. Better mark them as experimental then listen to users complaining on daily basis.
2021-09-03 20:08:07 +02:00
Rafał Dzięgiel
38e721be03
prefs: Add playbin3 and pipewire options
2021-09-03 11:35:23 +02:00
Rafał Dzięgiel
dc25ec976a
Name our classes
...
In order to not end up with random names prefixed with Gjs_, give each class a proper name, so its easier to inspect and allows usage with UI files
2021-09-02 20:12:39 +02:00
Rafał Dzięgiel
914292612b
Show libadwaita version in about system
2021-09-02 19:27:00 +02:00
Rafał Dzięgiel
e34b164f5a
Auto fill open URI entry with clipboard content
...
If clipboard contains a valid URI, prefill the entry with it. Also select all of it to make it easier to remove this text.
2021-09-02 18:58:51 +02:00
Rafał Dzięgiel
2e0a455f92
dialogs: Use response virtual function instead of signal
2021-09-02 17:29:56 +02:00
Rafał Dzięgiel
3aab01d35c
Improved open URI dialog
2021-09-02 17:22:09 +02:00
Rafał Dzięgiel
e264304c9d
Mark text in remaining dialogs as translatable
2021-09-02 13:26:06 +02:00
Rafał Dzięgiel
a145890f9d
Fix disabling plugin feature with zero rank
2021-09-01 17:53:23 +02:00
Rafał Dzięgiel
4f1d9be423
Fix case with missing subtitle tracks
...
In case when first video has a lot of subtitles, second video has only a few and third one more then second one, we forgot to make the recycled toggle buttons visible again, causing some tracks to be missing
2021-09-01 17:26:10 +02:00
Rafał Dzięgiel
451711b9c6
Show current video/audio decoder in popover
2021-09-01 14:28:15 +02:00