[gnome-tour] bump to 3.37.91
- From: Bilal Elmoussaoui <bilelmoussaoui src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-tour] bump to 3.37.91
- Date: Sun, 23 Aug 2020 12:15:49 +0000 (UTC)
commit f31480dbe5012825feb3e9a0af3eda054c8bce85
Author: Bilal Elmoussaoui <bil elmoussaoui gmail com>
Date: Fri Aug 21 12:12:33 2020 +0200
bump to 3.37.91
Cargo.lock | 2 +-
Cargo.toml | 2 +-
NEWS | 3 +++
data/org.gnome.Tour.metainfo.xml.in.in | 1 +
meson.build | 4 +---
src/application.rs | 2 +-
src/config.rs.in | 1 -
src/main.rs | 2 +-
src/meson.build | 1 -
9 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/Cargo.lock b/Cargo.lock
index da99a1c..1e2cc91 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -380,7 +380,7 @@ dependencies = [
[[package]]
name = "gnome-tour"
-version = "0.0.1"
+version = "3.37.91"
dependencies = [
"anyhow",
"gdk",
diff --git a/Cargo.toml b/Cargo.toml
index e5ff1b1..402076b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gnome-tour"
-version = "0.0.1"
+version = "3.37.91"
authors = ["Bilal Elmoussaoui <bil elmoussaoui gmail com>"]
edition = "2018"
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..08a1b11
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,3 @@
+gnome-tour 3.37.91
+===================
+ * First release of GNOME Tour & Greater
diff --git a/data/org.gnome.Tour.metainfo.xml.in.in b/data/org.gnome.Tour.metainfo.xml.in.in
index bf7d04d..a75c02f 100644
--- a/data/org.gnome.Tour.metainfo.xml.in.in
+++ b/data/org.gnome.Tour.metainfo.xml.in.in
@@ -20,6 +20,7 @@
<url type="donation">http://www.gnome.org/friends/</url>
<content_rating type="oars-1.0" />
<releases>
+ <release version="3.37.91" date="2020-08-21" type="developement" />
<release version="0.0.1" date="2020-03-01" />
</releases>
<kudos>
diff --git a/meson.build b/meson.build
index 049e03a..732c565 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('gnome-tour',
'rust',
- version: '3.37.1',
+ version: '3.37.91',
meson_version : '>= 0.50')
i18n = import('i18n')
@@ -45,7 +45,6 @@ gettext_package = meson.project_name()
if get_option('profile') == 'development'
profile = 'Devel'
- name_suffix = ' (Devel)'
vcs_tag = run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip()
if vcs_tag == ''
version_suffix = '-devel'
@@ -54,7 +53,6 @@ if get_option('profile') == 'development'
endif
else
profile = ''
- name_suffix = ''
version_suffix = ''
endif
diff --git a/src/application.rs b/src/application.rs
index 2604f9d..ee6cec7 100644
--- a/src/application.rs
+++ b/src/application.rs
@@ -107,7 +107,7 @@ impl Application {
}
pub fn run(&self) {
- info!("GNOME Tour{} ({})", config::NAME_SUFFIX, config::APP_ID);
+ info!("GNOME Tour ({})", config::APP_ID);
info!("Version: {} ({})", config::VERSION, config::PROFILE);
info!("Datadir: {}", config::PKGDATADIR);
diff --git a/src/config.rs.in b/src/config.rs.in
index 8859ae7..aebf16d 100644
--- a/src/config.rs.in
+++ b/src/config.rs.in
@@ -1,7 +1,6 @@
pub static APP_ID: &str = @APP_ID@;
pub static PKGDATADIR: &str = @PKGDATADIR@;
pub static PROFILE: &str = @PROFILE@;
-pub static NAME_SUFFIX: &str = @NAME_SUFFIX@;
pub static VERSION: &str = @VERSION@;
pub static GETTEXT_PACKAGE: &str = @GETTEXT_PACKAGE@;
pub static LOCALEDIR: &str = @LOCALEDIR@;
diff --git a/src/main.rs b/src/main.rs
index c60ff3c..867c685 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,7 +16,7 @@ fn main() {
bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR);
textdomain(GETTEXT_PACKAGE);
- glib::set_application_name(&format!("Tour{}", config::NAME_SUFFIX));
+ glib::set_application_name("Tour");
glib::set_prgname(Some("Tour"));
gtk::init().expect("Unable to start GTK3");
diff --git a/src/meson.build b/src/meson.build
index bb21c2e..35f2841 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -2,7 +2,6 @@ global_conf = configuration_data()
global_conf.set_quoted('APP_ID', application_id)
global_conf.set_quoted('PKGDATADIR', pkgdatadir)
global_conf.set_quoted('PROFILE', profile)
-global_conf.set_quoted('NAME_SUFFIX', name_suffix)
global_conf.set_quoted('VERSION', version + version_suffix)
global_conf.set_quoted('GETTEXT_PACKAGE', gettext_package)
global_conf.set_quoted('LOCALEDIR', localedir)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]