Skip to content

Commit

Permalink
Prepare for v0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
giosali committed Oct 4, 2021
1 parent dd5e8d8 commit 4de4df2
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file.

## v0.7.0

### Added

* Added ability to close open applications by using the `quit` command

### Fixed

* Fixed issue where timer messages would become overridden by other search results
* Fixed issue where the application would crash if alphabetical characters were provided after the timer command instead of a number

* Fixed issue where fields would disappear from settings app if they were disenabled

## v0.6.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Reginald.Core/Utilities/Processes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public static void QuitProcess(string name)
string fileDescription = process.MainModule.FileVersionInfo.FileDescription;
if (fileDescription == name)
{
process.CloseMainWindow();
_ = process.CloseMainWindow();
process.Close();
}
}
Expand Down
6 changes: 3 additions & 3 deletions Reginald/Reginald.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<TargetFramework>net5.0-windows10.0.18362.0</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>Reginald.ico</ApplicationIcon>
<Version>0.5.0</Version>
<AssemblyVersion>0.5.0.0</AssemblyVersion>
<FileVersion>0.5.0.0</FileVersion>
<Version>0.7.0</Version>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Reginald/Views/ShellView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</Window.InputBindings>

<hc:TransitioningContentControl>
<hc:NotifyIcon Text="Reginald v0.6.1"
<hc:NotifyIcon Text="Reginald v0.7.0"
Icon="pack://application:,,,/Reginald;component/Reginald.ico">
<hc:NotifyIcon.ContextMenu>
<ContextMenu>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1 class="intro__title">Meet your new assistant</h1>
</p>
</div>
<a class="download-link button--windows"
href="https://github.com/giosali/reginald/releases/download/v0.6.1/Reginald-0.6.1.msi">
href="https://github.com/giosali/reginald/releases/download/v0.7.0/Reginald-0.7.0.msi">
<img class="download-link__icon" src="images/icons/windows.svg">
<p class="download-link__text">Download Reginald</p>
</a>
Expand Down

0 comments on commit 4de4df2

Please sign in to comment.