Skip to content

Commit

Permalink
V3.1.20 - Fix some issues with creating new reminders
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan committed Dec 13, 2022
1 parent 0928e2a commit 7c36c71
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions RemindMe/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// 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("3.1.19")]
[assembly: AssemblyFileVersion("3.1.19")]
[assembly: AssemblyVersion("3.1.20")]
[assembly: AssemblyFileVersion("3.1.20")]
[assembly: NeutralResourcesLanguage("en")]
6 changes: 3 additions & 3 deletions RemindMe/User controls/MaterialUserControls/MUCNewReminder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ private void btnConfirm_Click(object sender, EventArgs e)

if (File.Exists(editableReminder.SoundFilePath))
editableReminder.SoundFilePath = "*"; //privacy. if the file DOESNT exist, we do want to inspect it
else
else if (editableReminder != null)
editableReminder.SoundFilePath = BLIO.AnonymizePath(editableReminder.SoundFilePath);

BLIO.Log("==Reminder information==\r\n" + JsonConvert.SerializeObject(editableReminder));
Expand All @@ -1480,7 +1480,7 @@ private void btnConfirm_Click(object sender, EventArgs e)

if (File.Exists(rem.SoundFilePath))
rem.SoundFilePath = "*"; //privacy. if the file DOESNT exist, we do want to inspect it
else
else if(editableReminder != null)
editableReminder.SoundFilePath = BLIO.AnonymizePath(editableReminder.SoundFilePath);

BLIO.Log("==Reminder information==\r\n" + JsonConvert.SerializeObject(rem));
Expand Down Expand Up @@ -1518,7 +1518,7 @@ private void btnConfirm_Click(object sender, EventArgs e)

if (File.Exists(editableReminder.SoundFilePath))
editableReminder.SoundFilePath = ""; //privacy. if the file DOESNT exist, we do want to inspect it
else
else if (editableReminder != null)
editableReminder.SoundFilePath = BLIO.AnonymizePath(editableReminder.SoundFilePath);

BLIO.Log("==Reminder information==\r\n" + JsonConvert.SerializeObject(editableReminder));
Expand Down
Binary file modified SetupRemindMe.msi
Binary file not shown.
8 changes: 4 additions & 4 deletions SetupRemindMe17/SetupRemindMe17.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -2273,7 +2273,7 @@
{
"Name" = "8:.NET Framework"
"Message" = "8:[VSDNETMSG]"
"FrameworkVersion" = "8:v4.6.1 "
"FrameworkVersion" = "8:v4.6.1 "
"AllowLaterVersions" = "11:FALSE"
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
}
Expand Down Expand Up @@ -7414,15 +7414,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:RemindMe"
"ProductCode" = "8:{B46B51BE-AACC-41E1-8A34-E97EA8231B00}"
"PackageCode" = "8:{8A8C784C-0164-4960-BBDA-890B789D6616}"
"ProductCode" = "8:{3FF4E1BB-1564-42F8-B415-2A466F5923A4}"
"PackageCode" = "8:{32B2BDC6-FD08-4541-8690-89AA931E963C}"
"UpgradeCode" = "8:{026AD2C2-A1B9-4D88-91FE-D0E8C55594D8}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:3.1.19"
"ProductVersion" = "8:3.1.20"
"Manufacturer" = "8:StefanGansevlesPrograms"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://github.com/Stefangansevles/RemindMe/issues"
Expand Down
Binary file modified Update/UpdateFiles.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Update/version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.1.19
3.1.20
update: major
silentUpdate: true

Expand Down

0 comments on commit 7c36c71

Please sign in to comment.