Skip to content

Commit

Permalink
Merge pull request #5 from rocksdanister/dev-build
Browse files Browse the repository at this point in the history
v0.5.1.0 src
  • Loading branch information
rocksdanister authored Dec 18, 2019
2 parents cbb86c8 + 43326ec commit 687fb83
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 27 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,21 +96,21 @@ Help translate lively to other languages: <a href="https://github.com/rocksdanis

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

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

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

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

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

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

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

Expand Down
Binary file removed builds/v0.5.0.0/lively_x86.zip
Binary file not shown.
Binary file not shown.
3 changes: 1 addition & 2 deletions src/livelywpf/livelywpf/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2464,8 +2464,7 @@ private string YoutubeDLArgGenerate(string link)
break;
}

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

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",
Expand Down
2 changes: 1 addition & 1 deletion src/livelywpf/livelywpf/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyVersion("0.5.1.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
42 changes: 24 additions & 18 deletions src/livelywpf/livelywpf/docs/changelog.rtf

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/livelywpf/livelywpf/wp_lib/SetupDesktop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public static async void SetWallpaper(SaveData.WallpaperLayout layout)
FileName = AppDomain.CurrentDomain.BaseDirectory +"\\external\\mpv\\mpv.exe",
UseShellExecute = false,
WorkingDirectory = System.IO.Path.GetDirectoryName(layout.FilePath),
Arguments = "\"" + layout.FilePath + "\"" + " --loop-file --keep-open" //+" --wid "+workerw //--mute=yes
Arguments = "\"" + layout.FilePath + "\"" + " --loop-file --keep-open --hwdec=yes" //+" --wid "+workerw //--mute=yes
};


Expand Down

0 comments on commit 687fb83

Please sign in to comment.