Skip to content

Commit

Permalink
src v.1.1.9
Browse files Browse the repository at this point in the history
For full changelog see Release notes.
https://github.com/rocksdanister/lively/releases/tag/v1.1.9.0

- updated screen recorder library.
- fixed some localization errors.
- updated assembly.
  • Loading branch information
rocksdanister committed Feb 7, 2021
1 parent 1f0845c commit bfa87cc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ Help translate lively to other languages: <a href="https://github.com/rocksdanis

**_I'm not officially affiliated with Unity technologies, godot, shadertoy;_**
## Download
##### Latest version: v1.1.8.0 (Windows 10 1903 or above)[What's new?](https://github.com/rocksdanister/lively/releases/tag/v1.1.8.0)
##### Latest version: v1.1.9.0 (Windows 10 1903 or above)[What's new?](https://github.com/rocksdanister/lively/releases/tag/v1.1.9.0)
- [`Installer`][direct-full-win32]

[direct-full-win32]: https://github.com/rocksdanister/lively/releases/download/v1.1.8.0/lively_setup_x86_full_v1180.exe
[direct-full-win32]: https://github.com/rocksdanister/lively/releases/download/v1.1.9.0/lively_setup_x86_full_v1190.exe

**Installer will give Smartscreen warning, [discussion.](https://github.com/rocksdanister/lively/issues/9)**

Expand Down
6 changes: 3 additions & 3 deletions src/installer/Script.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; https://jrsoftware.org/isinfo.php

#define MyAppName "Lively Wallpaper"
#define MyAppVersion "1.1.8.0"
#define MyAppVersion "1.1.9.0"
#define MyAppPublisher "rocksdanister"
#define MyAppURL "https://github.com/rocksdanister/lively"
#define MyAppExeName "livelywpf.exe"
Expand Down Expand Up @@ -67,7 +67,7 @@ Root: HKCU; Subkey: "Software\Microsoft\Windows\CurrentVersion\Run"; ValueType:

[Files]
Source: "VC\VC_redist.x86.exe"; DestDir: {tmp}; Flags: deleteafterinstall
Source: "dotnetcore\windowsdesktop-runtime-3.1.9-win-x86.exe"; DestDir: {tmp}; Flags: deleteafterinstall
Source: "dotnetcore\windowsdesktop-runtime-3.1.11-win-x86.exe"; DestDir: {tmp}; Flags: deleteafterinstall
Source: "dotnetcore\netcorecheck.exe"; DestDir: {tmp}; Flags: deleteafterinstall

; NOTE: Don't use "Flags: ignoreversion" on any shared system files
Expand All @@ -82,7 +82,7 @@ Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: de
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall; Check: AutoLaunch
;skipifsilent
Filename: "{tmp}\VC_redist.x86.exe"; Check: VCRedistNeedsInstall and DependencyInstall; StatusMsg: Installing Visual Studio Runtime Libraries...
Filename: "{tmp}\windowsdesktop-runtime-3.1.9-win-x86.exe"; Check: NetCoreNeedsInstall('3.1.7') and NetCoreNeedsInstall('3.1.8') and NetCoreNeedsInstall('3.1.9') and DependencyInstall; StatusMsg: Installing .Net Core 3.1...
Filename: "{tmp}\windowsdesktop-runtime-3.1.11-win-x86.exe"; Check: NetCoreNeedsInstall('3.1.7') and NetCoreNeedsInstall('3.1.8') and NetCoreNeedsInstall('3.1.9') and NetCoreNeedsInstall('3.1.10') and NetCoreNeedsInstall('3.1.11') and DependencyInstall; StatusMsg: Installing .Net Core 3.1...

[Code]
var
Expand Down
Binary file modified src/livelywpf/livelywpf/DLL/ScreenRecorderLib.dll
Binary file not shown.
10 changes: 9 additions & 1 deletion src/livelywpf/livelywpf/Model/SettingsModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ public SettingsModel()

WallpaperWaitTime = 20000; // 20sec
ProcessTimerInterval = 500; //reduce to 250 for quicker response.
Language = CultureInfo.CurrentCulture.Name;
StreamQuality = StreamQualitySuggestion.High;
GenerateTile = true;
LivelyZipGenerate = false;
Expand Down Expand Up @@ -152,6 +151,15 @@ public SettingsModel()
TestBuild = false;
ApplicationTheme = AppTheme.Dark;
DetectRemoteDesktop = true;

try
{
Language = CultureInfo.CurrentCulture.Name;
}
catch (ArgumentNullException)
{
Language = "en";
}
}
}
}
2 changes: 1 addition & 1 deletion src/livelywpf/livelywpf/livelywpf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<StartupObject>livelywpf.Program</StartupObject>
<ApplicationIcon>appicon.ico</ApplicationIcon>
<Version>1.0.0</Version>
<AssemblyVersion>1.1.8.5</AssemblyVersion>
<AssemblyVersion>1.1.9.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
Expand Down

0 comments on commit bfa87cc

Please sign in to comment.