Skip to content

Commit 0eaeb79

Browse files
committed
Release 3.0.0 for AppCenter
1 parent 38b31d8 commit 0eaeb79

5 files changed

+18
-6
lines changed

com.github.devalien.workspaces.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,12 @@
5151
{
5252
"type": "git",
5353
"url": "https://github.com/devalien/workspaces.git",
54-
"branch": "master"
54+
"tag": "1.2.1",
55+
"commit": "919375876e4bc7625ddd4800c41750efac9c6ba3"
5556
}
5657
],
5758
"post-install": [
58-
"sed -i s:Exec=data/com.github.devalien.workspaces:Exec=/app/bin/workspaces-wrapper: /app/share/applications/com.github.devalien.workspaces.desktop"
59+
"sed -i s:Exec=com.github.devalien.workspaces:Exec=/app/bin/workspaces-wrapper: /app/share/applications/com.github.devalien.workspaces.desktop"
5960
]
6061
}
6162
]

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<metadata_license>CC0-1.0</metadata_license>
66
<project_license>GPL-3.0+</project_license>
77
<name>Workspaces</name>
8-
<summary>Workspaces to be always ready to work</summary>
8+
<summary>Always be ready for work</summary>
99
<description>
1010
<p>Make working on different projects easy again!</p>
1111
<p>Workspaces lets you configure and quickly launch all you need to work on a project. It can open in a second different instances of code, a specific website and a directory</p>
@@ -67,7 +67,12 @@
6767
</content_rating>
6868

6969
<releases>
70-
<release version="1.3.1" date="2020-08-23">
70+
<release version="3.0.0" date="2020-09-01">
71+
<description>
72+
<p>Release 3.0 for AppCenter</p>
73+
</description>
74+
</release>
75+
<release version="1.3.1" date="2020-08-23">
7176
<description>
7277
<p>Fixes</p>
7378
<ul>

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
com.github.devalien.workspaces (3.0.0) RELEASED; urgency=low
2+
3+
* Release for AppCenter. *
4+
5+
-- Goncalo Margalho <[email protected]> Tue, 01 Aug 2020 10:50:00 +0200
6+
17
com.github.devalien.workspaces (1.3.1) RELEASED; urgency=low
28

39
* Fixed typo. *

meson.build

+1-1
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.1'
5+
version: '3.0.0'
66
)
77

88
# Translation module

src/Application.vala

+1-1
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.1";
30+
public const string APP_VERSION = "3.0.0";
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;

0 commit comments

Comments
 (0)