Skip to content

Commit

Permalink
feat: add version to request
Browse files Browse the repository at this point in the history
  • Loading branch information
minkostaev committed May 1, 2024
1 parent f7101bd commit 580e55f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion ShortcutsGrid/Services/ShowShortcuts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public static void WaitForResponseOnClose(MainWindow window)
var headers = new System.Collections.Generic.Dictionary<string, string>
{
{ "Desktop-Machine", machine.Hash! },
{ "Desktop-Value", AppValues.LastExecuted! }
{ "Desktop-Value", AppValues.LastExecuted! },
{ "Desktop-Version", AppValues.AppVersion! }
};
var requestManager = new RequestManager(headers);
string jsonString = JsonSerializer.Serialize(machine);
Expand Down
6 changes: 3 additions & 3 deletions ShortcutsGrid/ShortcutsGrid.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<UseWPF>true</UseWPF>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<ApplicationIcon>Resources\web-browser-128.ico</ApplicationIcon>
<AssemblyVersion>1.3.3.0</AssemblyVersion>
<FileVersion>1.3.3.0</FileVersion>
<VersionPrefix>1.3.3</VersionPrefix>
<AssemblyVersion>1.3.4.0</AssemblyVersion>
<FileVersion>1.3.4.0</FileVersion>
<VersionPrefix>1.3.4</VersionPrefix>
<VersionSuffix>$([System.DateTime]::UtcNow.ToString(yyyy-MM-dd))</VersionSuffix>
</PropertyGroup>

Expand Down

0 comments on commit 580e55f

Please sign in to comment.