Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-welcome
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-welcome
Commits
f31480db
Commit
f31480db
authored
Aug 21, 2020
by
Bilal Elmoussaoui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bump to 3.37.91
parent
cb97837d
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
Cargo.lock
Cargo.lock
+1
-1
Cargo.toml
Cargo.toml
+1
-1
NEWS
NEWS
+3
-0
org.gnome.Tour.metainfo.xml.in.in
data/org.gnome.Tour.metainfo.xml.in.in
+1
-0
meson.build
meson.build
+1
-3
application.rs
src/application.rs
+1
-1
config.rs.in
src/config.rs.in
+0
-1
main.rs
src/main.rs
+1
-1
meson.build
src/meson.build
+0
-1
No files found.
Cargo.lock
View file @
f31480db
...
...
@@ -380,7 +380,7 @@ dependencies = [
[[package]]
name = "gnome-tour"
version = "
0.0.
1"
version = "
3.37.9
1"
dependencies = [
"anyhow",
"gdk",
...
...
Cargo.toml
View file @
f31480db
[package]
name
=
"gnome-tour"
version
=
"
0.0.
1"
version
=
"
3.37.9
1"
authors
=
[
"Bilal Elmoussaoui <bil.elmoussaoui@gmail.com>"
]
edition
=
"2018"
...
...
NEWS
0 → 100644
View file @
f31480db
gnome-tour 3.37.91
===================
* First release of GNOME Tour & Greater
data/org.gnome.Tour.metainfo.xml.in.in
View file @
f31480db
...
...
@@ -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>
...
...
meson.build
View file @
f31480db
project('gnome-tour',
'rust',
version: '3.37.1',
version: '3.37.
9
1',
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
...
...
src/application.rs
View file @
f31480db
...
...
@@ -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
);
...
...
src/config.rs.in
View file @
f31480db
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@;
...
...
src/main.rs
View file @
f31480db
...
...
@@ -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"
);
...
...
src/meson.build
View file @
f31480db
...
...
@@ -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)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment