Skip to content

Commit fb921c4

Browse files
authored
Merge pull request #1065 from d2phap/develop
Hot fix v8.2.6.6
2 parents 299bc83 + 4ce647d commit fb921c4

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It gives you the possibility to view over **70+** common image formats, includin
1919

2020

2121
<a href="https://www.imageglass.org/download" target="_blank" title="View screen shots">
22-
<img src="https://imageglass.org/upload/photo/release/8.2_1.jpg" alt="ImageGlass 8.2.5.16" width="640">
22+
<img src="https://imageglass.org/upload/photo/release/8.2_1.jpg" alt="ImageGlass 8.2.6.6" width="640">
2323
</a><br/>
2424

2525

Setup/AdvancedInstaller/x64/ImageGlass-x64.aip

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<ROW Property="MSIFASTINSTALL" MultiBuildValue="MsiBuild:1"/>
1616
<ROW Property="Manufacturer" Value="Duong Dieu Phap"/>
1717
<ROW Property="MsiLogging" MultiBuildValue="MsiBuild:vp"/>
18-
<ROW Property="ProductCode" Value="1033:{22231BA8-76D0-4B3D-B512-FA0A7FA2C687} " Type="16"/>
18+
<ROW Property="ProductCode" Value="1033:{599251C9-761B-44BC-BB7E-3F383760C563} " Type="16"/>
1919
<ROW Property="ProductLanguage" Value="1033"/>
2020
<ROW Property="ProductName" Value="ImageGlass"/>
21-
<ROW Property="ProductVersion" Value="8.2.5.16" Type="32" TargetFile="ImageGlass.exe"/>
21+
<ROW Property="ProductVersion" Value="8.2.6.6" Type="32" TargetFile="ImageGlass.exe"/>
2222
<ROW Property="RUNAPPLICATION" Value="1" Type="4"/>
2323
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
2424
<ROW Property="UpgradeCode" Value="{877DB994-AB03-4025-B99D-41CE565E810B}"/>

Source/Components/ImageGlass.Settings/Configs.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,9 @@ public static uint RandomizeSlideshowInterval() {
971971
/// <returns></returns>
972972
public static EditApp GetEditApp(string ext) {
973973
if (EditApps.Count > 0) {
974-
return EditApps.Find(v => v.Extension.CompareTo(ext) == 0);
974+
return EditApps.Find(v =>
975+
v.Extension.CompareTo(ext) == 0
976+
&& v.AppPath.Length > 0);
975977
}
976978

977979
return null;

Source/ImageGlass/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("8.2.5.16")]
35-
[assembly: AssemblyFileVersion("8.2.5.16")]
34+
[assembly: AssemblyVersion("8.2.6.6")]
35+
[assembly: AssemblyFileVersion("8.2.6.6")]

0 commit comments

Comments
 (0)