Skip to content

Commit 687fb83

Browse files
Merge pull request #5 from rocksdanister/dev-build
v0.5.1.0 src
2 parents cbb86c8 + 43326ec commit 687fb83

File tree

7 files changed

+32
-27
lines changed

7 files changed

+32
-27
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,21 @@ Help translate lively to other languages: <a href="https://github.com/rocksdanis
9696

9797
**_I'm not officially affiliated with Unity technologies, youtube, godot, bizhawk, shadertoy;_**
9898
## Download
99-
##### Latest version: v0.5.0.0 (Windows 10, 8.1)
99+
##### Latest version: v0.5.1.0 (Windows 10, 8.1)
100100
- [`lively_full_x86.zip`][direct-full-win32]
101101
_116MB, Web wallpaper support & some sample wallpapers included._
102102

103103
- [`lively_x86.zip`][direct-just-win32]
104-
_76MB, Web wallpaper support.
104+
_76MB, Web wallpaper support._
105105

106106
- [`lively_lite_x86.zip`][direct-lite-win32]
107107
_5MB, No web wallpaper support._
108108

109-
[direct-full-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.0.0/lively_full_x86.zip
109+
[direct-full-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.1.0/lively_full_x86.zip
110110

111-
[direct-just-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.0.0/lively_x86.zip
111+
[direct-just-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.1.0/lively_x86.zip
112112

113-
[direct-lite-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.0.0/lively_lite_x86.zip
113+
[direct-lite-win32]: https://github.com/rocksdanister/lively/releases/download/v0.5.1.0/lively_lite_x86.zip
114114

115115
Unzip the file, select livelywpf.exe to get started, first run will be slow due to windows defender scanning.
116116

builds/v0.5.0.0/lively_x86.zip

-76.2 MB
Binary file not shown.
Binary file not shown.

src/livelywpf/livelywpf/MainWindow.xaml.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -2464,8 +2464,7 @@ private string YoutubeDLArgGenerate(string link)
24642464
break;
24652465
}
24662466

2467-
return "\"" + link + "\"" + " --loop-file --keep-open" + quality;
2468-
//SetupWallpaper(link, SetupDesktop.WallpaperType.video_stream, "\"" + link + "\"" + " --loop-file --keep-open" + quality);
2467+
return "\"" + link + "\"" + " --loop-file --keep-open --hwdec=yes" + quality;
24692468
}
24702469

24712470
public readonly static string[] formatsVideo = { ".dat", ".wmv", ".3g2", ".3gp", ".3gp2", ".3gpp", ".amv", ".asf", ".avi", ".bin", ".cue", ".divx", ".dv", ".flv", ".gxf", ".iso", ".m1v", ".m2v", ".m2t", ".m2ts", ".m4v",

src/livelywpf/livelywpf/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("0.5.0.0")]
54+
[assembly: AssemblyVersion("0.5.1.0")]
5555
[assembly: AssemblyFileVersion("1.0.0.0")]

src/livelywpf/livelywpf/docs/changelog.rtf

+24-18
Large diffs are not rendered by default.

src/livelywpf/livelywpf/wp_lib/SetupDesktop.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ public static async void SetWallpaper(SaveData.WallpaperLayout layout)
280280
FileName = AppDomain.CurrentDomain.BaseDirectory +"\\external\\mpv\\mpv.exe",
281281
UseShellExecute = false,
282282
WorkingDirectory = System.IO.Path.GetDirectoryName(layout.FilePath),
283-
Arguments = "\"" + layout.FilePath + "\"" + " --loop-file --keep-open" //+" --wid "+workerw //--mute=yes
283+
Arguments = "\"" + layout.FilePath + "\"" + " --loop-file --keep-open --hwdec=yes" //+" --wid "+workerw //--mute=yes
284284
};
285285

286286

0 commit comments

Comments
 (0)