Skip to content

Commit

Permalink
1356 preserve clipboard (#1357)
Browse files Browse the repository at this point in the history
* preserve clipboard
#1356
  • Loading branch information
stevencohn authored Apr 25, 2024
1 parent b31242a commit 3753f00
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions OneMore/Helpers/ClipboardProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ await SingleThreaded.Invoke(() =>
{
var data = new Win.DataObject();
data.SetText(text, Win.TextDataFormat.Html);
Clipboard.SetDataObject(data, false, RetryTimes, RetryDelay);
Clipboard.SetDataObject(data, true, RetryTimes, RetryDelay);
//Win.Clipboard.SetText(text, Win.TextDataFormat.Html);
}
catch (COMException ex)
Expand Down Expand Up @@ -270,7 +270,7 @@ await SingleThreaded.Invoke(() =>
{
var data = new Win.DataObject();
data.SetText(text, Win.TextDataFormat.Text);
Clipboard.SetDataObject(data, false, RetryTimes, RetryDelay);
Clipboard.SetDataObject(data, true, RetryTimes, RetryDelay);
//Win.Clipboard.SetText(text, Win.TextDataFormat.Text);
}
catch (COMException ex)
Expand Down
2 changes: 1 addition & 1 deletion OneMore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal static class AssemblyInfo
* NOTE - also update the version in the Setup project
* by clicking on the Setup project node in VS and update its properties
*/
public const string Version = "6.2.0";
public const string Version = "6.2.1";

public const string Product = "OneMore";

Expand Down
2 changes: 1 addition & 1 deletion OneMoreCalendar/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ namespace OneMoreCalendar
{
internal static class AssemblyInfo
{
public const string Version = "6.2.0";
public const string Version = "6.2.1";
}
}
2 changes: 1 addition & 1 deletion OneMoreProtocolHandler/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ namespace OneMoreProtocolHandler
{
internal static class AssemblyInfo
{
public const string Version = "6.2.0";
public const string Version = "6.2.1";
}
}
6 changes: 3 additions & 3 deletions OneMoreSetup/OneMoreSetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -10941,15 +10941,15 @@
{
"Name" = "8:OneMoreAddIn"
"ProductName" = "8:OneMoreAddIn"
"ProductCode" = "8:{F368E8D0-09E6-4C09-97EB-A2C2025FBE7B}"
"PackageCode" = "8:{A336AEE0-34B5-4669-A450-F795E9698127}"
"ProductCode" = "8:{B9D42559-5946-494F-8EF5-012F8F15B6F8}"
"PackageCode" = "8:{E7F7E49E-805B-40AF-8704-C1374B07F6B2}"
"UpgradeCode" = "8:{058F6D04-E0D0-4984-B6B7-7FE0C581680E}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:6.2.0"
"ProductVersion" = "8:6.2.1"
"Manufacturer" = "8:River"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
2 changes: 1 addition & 1 deletion OneMoreSetupActions/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ namespace OneMoreSetupActions
{
internal static class AssemblyInfo
{
public const string Version = "6.2.0";
public const string Version = "6.2.1";
}
}
4 changes: 2 additions & 2 deletions OneMoreTray/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//************************************************************************************************
//************************************************************************************************
// Copyright © 2024 Steven M Cohn. All rights reserved.
//************************************************************************************************

Expand Down Expand Up @@ -27,6 +27,6 @@ namespace OneMoreService
{
internal static class AssemblyInfo
{
public const string Version = "6.2.0";
public const string Version = "6.2.1";
}
}

0 comments on commit 3753f00

Please sign in to comment.