Skip to content

Commit e6d0940

Browse files
author
Alan Beveridge
committed
Last work before 1.2.0 release
1 parent 53767a9 commit e6d0940

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

data/com.github.ADBeveridge.Raider.metainfo.xml

+10
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,16 @@
5252
</screenshot>
5353
</screenshots>
5454
<releases>
55+
<release version="1.2.0" date="2022-8-06">
56+
<description>
57+
<p>User interface fixes</p>
58+
<ul>
59+
<li>Fixed cropping of keyboard focus ring on shred button</li>
60+
<li>Updated preferences to be more concise and explanatory</li>
61+
<li>Add icon to open button in headerbar</li>
62+
</ul>
63+
</description>
64+
</release>
5565
<release version="1.1.1" date="2022-8-03">
5666
<description>
5767
<p>Bug fixes and translation updates</p>

meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('raider', 'c',
2-
version: '1.1.1',
3-
meson_version: '>= 0.56.0',
2+
version: '1.2.0',
3+
meson_version: '>= 0.59.0',
44
)
55

66
i18n = import('i18n')

src/raider-application.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ static void raider_application_show_about(GSimpleAction *action, GVariant *param
106106
"transient-for", window,
107107
"modal", TRUE,
108108
"program-name", program_name,
109-
"version", _("1.1.1"),
109+
"version", _("1.2.0"),
110110
"comments", _("Securely delete your files"),
111111
"license-type", GTK_LICENSE_GPL_3_0,
112112
"artists", artists,

0 commit comments

Comments
 (0)