File tree 4 files changed +15
-4
lines changed
4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 4
4
- Polish translation fixed. German, Turkish and Japanese translation updated.
5
5
French translation added! Thanks to the translation team!
6
6
- Support of relative folders from command line.
7
- - Support for the mpv option ` cursor-autohide ` has been added .
7
+ - Support for the mpv option ` cursor-autohide ` .
8
8
- A issue with the support of the mpv property ` title-bar ` has been fixed,
9
9
at the moment this is most useful for users of the popular uosc user script,
10
10
the mpv built-in OSC doesn't fully support it yet.
11
- - Set ` media-controls=yes ` by default.
11
+ - ` media-controls=yes ` is now enabled by default, this enables play controls
12
+ in the ` KDE Connect ` android app.
13
+ - The mpv.net option ` auto-load-folder ` by default is now disabled and the
14
+ option is deprecated. The reason for this is mpv has new native support
15
+ for it using ` autocreate-playlist ` , which mpv.net uses now instead by default.
16
+ - New zhongfly libmpv x64 build.
17
+ - New Andarwinux libmpv ARM64 build.
12
18
13
19
14
20
# v7.1.1.1 Beta (2024-07-20)
Original file line number Diff line number Diff line change @@ -407,7 +407,11 @@ are used as defined by autofit and start-size. Default: 1500
407
407
408
408
#### --auto-load-folder=\< yes|no\>
409
409
410
- For single files automatically load the entire directory into the playlist.
410
+ For single files automatically load the entire directory
411
+ into the playlist. This option by default is disabled.
412
+ The option is deprecated because mpv now has native
413
+ support for it using ` autocreate-playlist ` ,
414
+ which by default mpv.net sets to ` autocreate-playlist=filter ` .
411
415
412
416
413
417
### General
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class AppClass
21
21
public string CommandLine { get ; set ; } = Environment . CommandLine ;
22
22
public string MenuSyntax { get ; set ; } = "#menu:" ;
23
23
24
- public bool AutoLoadFolder { get ; set ; } = true ;
24
+ public bool AutoLoadFolder { get ; set ; }
25
25
public bool DebugMode { get ; set ; }
26
26
public bool Exit { get ; set ; }
27
27
public bool IsTerminalAttached { get ; } = Environment . GetEnvironmentVariable ( "_started_from_console" ) == "yes" ;
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ public void Init(IntPtr formHandle, bool processCommandLine)
104
104
SetPropertyBool ( "input-builtin-bindings" , false ) ;
105
105
SetPropertyBool ( "input-media-keys" , true ) ;
106
106
107
+ SetPropertyString ( "autocreate-playlist" , "filter" ) ;
107
108
SetPropertyString ( "media-controls" , "yes" ) ;
108
109
SetPropertyString ( "idle" , "yes" ) ;
109
110
SetPropertyString ( "screenshot-directory" , "~~desktop/" ) ;
You can’t perform that action at this time.
0 commit comments