Skip to content

Commit

Permalink
Fix #33 bad adhan paths on initial install
Browse files Browse the repository at this point in the history
  • Loading branch information
iysaleh committed Nov 12, 2024
1 parent 23b762a commit e1934df
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file modified InstallForgeProject/OpenAdhan.ifp
Binary file not shown.
4 changes: 2 additions & 2 deletions OpenAdhanForWindowsX/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]
4 changes: 2 additions & 2 deletions OpenAdhanForWindowsX/RegistrySettingsHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ public void InstallOpenAdhanRegistryKeys()
InstallRegistryValueWithPermissions(automaticDaylightSavingsAdjustmentKey, "0", "int");
}
InstallRegistryValueWithPermissions(initialInstallFlagKey, "1", "int");
InstallRegistryValueWithPermissions(normalAdhanFilePathkey, System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Random"), "string");
InstallRegistryValueWithPermissions(fajrAdhanFilePathKey, System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Random"), "string");
InstallRegistryValueWithPermissions(normalAdhanFilePathkey, "Random", "string");
InstallRegistryValueWithPermissions(fajrAdhanFilePathKey, "Random", "string");
InstallRegistryValueWithPermissions(openAdhanInstalledVersionKey, System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(), "string"); // Save the version of OpenAdhan that was installed (for future use in the installer/updater)
InstallRegistryValueWithPermissions(windowPositionXKey, "100", "int");
InstallRegistryValueWithPermissions(windowPositionYKey, "100", "int");
Expand Down
4 changes: 2 additions & 2 deletions OpenAdhanRegistrySetupApp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]

0 comments on commit e1934df

Please sign in to comment.