Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gavr
gxml
Commits
da9da2de
Commit
da9da2de
authored
Jul 04, 2019
by
Daniel Espinosa Ortiz
Browse files
Release 0.18.0
Updated NEWS for new translations Fixes on documentation generation.
parent
df4fd775
Changes
4
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
da9da2de
===============
Version 0.18.0
===============
* GomDocument now can detect default root property, instantiate it
on reading
* GomDocument now can detect default a root property and instantiate it on reading
* New API in DomDocument and DomElement for read/write operations
* New serialization methods for DomElement and DomDocument interfaces
* Now all GomElement attributes are available from 'attributes' property,
...
...
@@ -22,9 +21,11 @@ Version 0.18.0
German by Tim Sabsch <tim@sabsch.com>
Spanish by Daniel Mustieles <daniel.mustieles.contractor@bbva.com>
Swedish by Anders Jonsson <anders.jonsson@norsjovallen.se>
Brazilian
by
Rafael Fontenelle <rafaelff@gnome.org>
Brazilian
Portuguese by
Rafael Fontenelle <rafaelff@gnome.org>
Czech by Marek Černocký <marek@manet.cz>
Polish by Piotr Drąg <piotrdrag@gmail.com>
French by BZHDeveloper <inizan.yannick@gmail.com>
Danish by Ask Hjorth Larsen <asklarsen@gmail.com>
===============
...
...
configure.ac
View file @
da9da2de
...
...
@@ -11,7 +11,7 @@
# Release Version for API related changes
m4_define([project_major_version], [0])
m4_define([project_minor_version], [1
7
])
m4_define([project_minor_version], [1
8
])
m4_define([project_micro_version], [0])
m4_define([project_nano_version], [0])
...
...
@@ -21,9 +21,9 @@ m4_define([project_nano_version], [0])
# Increase the current value whenever an interface has been added, removed or changed.
# Increase the age value only if the changes made to the ABI are backward compatible.
# Reset current to 1 and revision and age to 0 if library's name is changed
m4_define([project_lt_current], [
2
])
m4_define([project_lt_revision], [
1
])
m4_define([project_lt_age], [
1
])
m4_define([project_lt_current], [
3
])
m4_define([project_lt_revision], [
2
])
m4_define([project_lt_age], [
0
])
# Combine numbers to various version variables (different uses)
# Display the nano_version only if it's not '0'
...
...
@@ -35,7 +35,7 @@ m4_define([project_full_version],
# You should set project_released to one in order to mark this as a released version
# and to avoid date on version number
m4_define(project_released, [
0
])
m4_define(project_released, [
1
])
m4_define([project_maybe_datestamp],
m4_if(project_released, [1],
[], [m4_esyscmd([date +.%Y%m%d | tr -d '\n\r'])]))
...
...
@@ -223,7 +223,7 @@ AM_CONDITIONAL(ENABLE_PERFORMANCE_TESTS, [test $performance = yes])
tnode_tests=no
AC_ARG_ENABLE(test_tnode,
AS_HELP_STRING([--enable-test-tnode], [Enable Tests for deprecated TNode classes [default=no]]),
[
doc
s=$enableval], [
doc
s="no"])
[
tnode_test
s=$enableval], [
tnode_test
s="no"])
AM_CONDITIONAL([ENABLE_TNODE_TESTS], [test x$tnode_tests = xyes])
dnl Check Cross Compile
...
...
@@ -286,6 +286,7 @@ echo " GObject Introspection: $found_introspection"
echo " Documentation: ${docs}"
echo " DevHelp Docs: ${build_devhelp}"
echo " Enable Performance Test: $performance"
echo " Enable TNode Test: $tnode_tests"
echo " Debug: $debug"
echo " Platform: $host"
echo " valac: $have_vala"
...
...
gxml/meson.build
View file @
da9da2de
...
...
@@ -138,16 +138,16 @@ inc_libh_dep = declare_dependency (include_directories : inc_libh)
# LT_VERSION for ABI related changes
# From: https://autotools.io/libtool/version.html
# This rules applies to Meson 0.43
# This rules applies to Meson 0.43
and newer
# Increase the current value whenever an interface has been added, removed or changed.
# Always increase revision value whenever an interface has been added, removed or changed.
# Increase the age value only if the changes made to the ABI are backward compatible.
# Set version to the value of subtract age from current
# Reset current and version to 1 and, age and version to 0 if library's name is changed
LT_CURRENT
=
'
2
'
LT_REVISION
=
'
1
'
LT_AGE
=
'
1
'
LT_VERSION
=
'
1
'
LT_CURRENT
=
'
3
'
LT_REVISION
=
'
2
'
LT_AGE
=
'
0
'
LT_VERSION
=
'
2
'
libgxml
=
library
(
VERSIONED_PROJECT_NAME
,
valasources
+
sources
+
configvapi
,
version
:
LT_VERSION
,
...
...
meson.build
View file @
da9da2de
project
(
'gxml'
,
[
'vala'
,
'c'
],
version
:
'0.1
7
.0'
)
project
(
'gxml'
,
[
'vala'
,
'c'
],
version
:
'0.1
8
.0'
)
PROJECT_NAME
=
meson
.
project_name
()
API_VERSION
=
'0.18'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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