Commit f31480db authored by Bilal Elmoussaoui's avatar Bilal Elmoussaoui

bump to 3.37.91

parent cb97837d
......@@ -380,7 +380,7 @@ dependencies = [
[[package]]
name = "gnome-tour"
version = "0.0.1"
version = "3.37.91"
dependencies = [
"anyhow",
"gdk",
......
[package]
name = "gnome-tour"
version = "0.0.1"
version = "3.37.91"
authors = ["Bilal Elmoussaoui <bil.elmoussaoui@gmail.com>"]
edition = "2018"
......
gnome-tour 3.37.91
===================
* First release of GNOME Tour & Greater
......@@ -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>
......
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
......
......@@ -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);
......
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@;
......
......@@ -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");
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment