Skip to content

Commit 4de4df2

Browse files
committed
Prepare for v0.7.0 release
1 parent dd5e8d8 commit 4de4df2

5 files changed

Lines changed: 19 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

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

5+
## v0.7.0
6+
7+
### Added
8+
9+
* Added ability to close open applications by using the `quit` command
10+
11+
### Fixed
12+
13+
* Fixed issue where timer messages would become overridden by other search results
14+
* Fixed issue where the application would crash if alphabetical characters were provided after the timer command instead of a number
15+
16+
* Fixed issue where fields would disappear from settings app if they were disenabled
17+
518
## v0.6.1
619

720
### Fixed

Reginald.Core/Utilities/Processes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public static void QuitProcess(string name)
7171
string fileDescription = process.MainModule.FileVersionInfo.FileDescription;
7272
if (fileDescription == name)
7373
{
74-
process.CloseMainWindow();
74+
_ = process.CloseMainWindow();
7575
process.Close();
7676
}
7777
}

Reginald/Reginald.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<TargetFramework>net5.0-windows10.0.18362.0</TargetFramework>
66
<UseWPF>true</UseWPF>
77
<ApplicationIcon>Reginald.ico</ApplicationIcon>
8-
<Version>0.5.0</Version>
9-
<AssemblyVersion>0.5.0.0</AssemblyVersion>
10-
<FileVersion>0.5.0.0</FileVersion>
8+
<Version>0.7.0</Version>
9+
<AssemblyVersion>0.7.0.0</AssemblyVersion>
10+
<FileVersion>0.7.0.0</FileVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

Reginald/Views/ShellView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</Window.InputBindings>
2323

2424
<hc:TransitioningContentControl>
25-
<hc:NotifyIcon Text="Reginald v0.6.1"
25+
<hc:NotifyIcon Text="Reginald v0.7.0"
2626
Icon="pack://application:,,,/Reginald;component/Reginald.ico">
2727
<hc:NotifyIcon.ContextMenu>
2828
<ContextMenu>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h1 class="intro__title">Meet your new assistant</h1>
6464
</p>
6565
</div>
6666
<a class="download-link button--windows"
67-
href="https://github.com/giosali/reginald/releases/download/v0.6.1/Reginald-0.6.1.msi">
67+
href="https://github.com/giosali/reginald/releases/download/v0.7.0/Reginald-0.7.0.msi">
6868
<img class="download-link__icon" src="images/icons/windows.svg">
6969
<p class="download-link__text">Download Reginald</p>
7070
</a>

0 commit comments

Comments
 (0)