Skip to content

Commit 38b31d8

Browse files
committed
Fix typo and update to 1.3.1
1 parent 40891b4 commit 38b31d8

6 files changed

Lines changed: 29 additions & 14 deletions

File tree

data/com.github.devalien.workspaces.appdata.xml.in

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,15 @@
6767
</content_rating>
6868

6969
<releases>
70+
<release version="1.3.1" date="2020-08-23">
71+
<description>
72+
<p>Fixes</p>
73+
<ul>
74+
<li>Fixed typo</li>
75+
</ul>
76+
</description>
77+
</release>
78+
7079
<release version="1.3.0" date="2020-08-23">
7180
<description>
7281
<p>New Features</p>

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
com.github.devalien.workspaces (1.3.1) RELEASED; urgency=low
2+
3+
* Fixed typo. *
4+
5+
-- Goncalo Margalho <g@margalho.info> Mon, 23 Aug 2020 22:50:00 +0200
6+
17
com.github.devalien.workspaces (1.3.0) RELEASED; urgency=low
28

39
* Run commands in terminal. *

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
project (
33
'com.github.devalien.workspaces',
44
'vala', 'c',
5-
version: '1.3.0'
5+
version: '1.3.1'
66
)
77

88
# Translation module

po/com.github.devalien.workspaces.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: com.github.devalien.workspaces\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2020-08-23 03:13+0200\n"
11+
"POT-Creation-Date: 2020-08-23 22:51+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -183,7 +183,7 @@ msgid "Auto Launch with workspace"
183183
msgstr ""
184184

185185
#: src/Views/ItemEditor.vala:157
186-
msgid "Run in termianl"
186+
msgid "Run in terminal"
187187
msgstr ""
188188

189189
#: src/Views/ItemEditor.vala:172 src/Widgets/ExpandableCategory.vala:79

src/Application.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class Workspaces.Application : Gtk.Application {
2727

2828
public Workspaces.Controllers.WorkspacesController workspaces_controller;
2929

30-
public const string APP_VERSION = "1.3.0";
30+
public const string APP_VERSION = "1.3.1";
3131
public const string APP_ID = "com.github.devalien.workspaces";
3232
public const string SHOW_WORKSPACES_CMD = APP_ID;
3333
public const string FLATPAK_SHOW_WORKSPACES_CMD = "flatpak run " + APP_ID;

src/Views/ItemEditor.vala

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class Workspaces.Views.ItemEditor : Gtk.Box {
7171
private Workspaces.Widgets.IconButton icon_button;
7272
private Gtk.Entry name_entry;
7373
private Gtk.Switch auto_start_switch;
74-
private Gtk.Switch run_in_termianl_switch;
74+
private Gtk.Switch run_in_terminal_switch;
7575
private Gtk.Button delete_button;
7676
private Granite.Widgets.Toast toast;
7777
private Gtk.Grid settings_grid;
@@ -145,16 +145,16 @@ public class Workspaces.Views.ItemEditor : Gtk.Box {
145145
Workspaces.Application.instance.workspaces_controller.save ();
146146
});
147147
var auto_box = new Workspaces.Widgets.SettingBox (_ ("Auto Launch with workspace"), auto_start_switch, false);
148-
run_in_termianl_switch = new Gtk.Switch ();
149-
run_in_termianl_switch.halign = Gtk.Align.END;
150-
run_in_termianl_switch.margin_start = 8;
151-
run_in_termianl_switch.margin_end = 8;
152-
run_in_termianl_switch.hexpand = true;
153-
run_in_termianl_switch.notify["active"].connect (() => {
154-
item.item.run_in_terminal = run_in_termianl_switch.state;
148+
run_in_terminal_switch = new Gtk.Switch ();
149+
run_in_terminal_switch.halign = Gtk.Align.END;
150+
run_in_terminal_switch.margin_start = 8;
151+
run_in_terminal_switch.margin_end = 8;
152+
run_in_terminal_switch.hexpand = true;
153+
run_in_terminal_switch.notify["active"].connect (() => {
154+
item.item.run_in_terminal = run_in_terminal_switch.state;
155155
Workspaces.Application.instance.workspaces_controller.save ();
156156
});
157-
var run_box = new Workspaces.Widgets.SettingBox (_ ("Run in termianl"), run_in_termianl_switch, false);
157+
var run_box = new Workspaces.Widgets.SettingBox (_ ("Run in terminal"), run_in_terminal_switch, false);
158158
settings_sg.add_widget (auto_box);
159159
settings_sg.add_widget (run_box);
160160

@@ -553,7 +553,7 @@ public class Workspaces.Views.ItemEditor : Gtk.Box {
553553
}
554554

555555
auto_start_switch.set_state (item.item.auto_start);
556-
run_in_termianl_switch.set_state (item.item.run_in_terminal);
556+
run_in_terminal_switch.set_state (item.item.run_in_terminal);
557557
load_widgets_by_type (item.item.item_type);
558558
}
559559
}

0 commit comments

Comments
 (0)