Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
glom
Commits
5df154ac
Unverified
Commit
5df154ac
authored
Oct 28, 2019
by
Murray Cumming
Browse files
1.33.1
parent
5cd063d3
Changes
5
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
5df154ac
cmake_minimum_required
(
VERSION 3.2
)
project
(
"glom"
)
set
(
PACKAGE_VERSION
"1.3
1.3
"
)
set
(
PACKAGE_VERSION
"1.3
3.1
"
)
set
(
GETTEXT_PACKAGE
"glom"
)
set
(
CMAKE_CXX_STANDARD 14
)
set
(
GLOM_ABI_VERSION
"1.3
2
"
)
set
(
GLOM_ABI_VERSION
"1.3
4
"
)
# TODO: Find an equivalent for autoconf's AS_TR_SH()
set
(
GLOM_ABI_VERSION_UNDERLINED
"1_3
2
"
)
set
(
GLOM_ABI_VERSION_UNDERLINED
"1_3
4
"
)
# TODO: GLOM_LOCALEDIR seems to be empty by default.
include
(
GNUInstallDirs
)
...
...
NEWS
View file @
5df154ac
1.32.0 (stable):
* Require libgda 5.2.9, to support newer postgresql versions.
* Require Python 3.
* Require at least gtkmm 3.22
* Use some more modern C++ code.
* Avoid some compiler warnings.
* Correct build errors when srcdir != builddir
(Murray Cumming)
1.31.6 (unstable):
* Layout: Custom fonts: Fix regressoin in 1.31.5.
...
...
configure.ac
View file @
5df154ac
...
...
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <http://www.gnu.org/licenses/>.
AC_INIT([Glom],[1.3
1.6
],[http://bugzilla.gnome.org/enter_bug.cgi?product=Glom],[glom])
AC_INIT([Glom],[1.3
3.1
],[http://bugzilla.gnome.org/enter_bug.cgi?product=Glom],[glom])
AC_PREREQ(2.63)
AC_CONFIG_SRCDIR([glom/main.cc])
...
...
@@ -39,7 +39,7 @@ LT_INIT([disable-static win32-dll])
# Used for the install directories for headers. The same number is used in
# the library name, which must be kept in sync, but variables can't be used
# with that.
AC_SUBST([GLOM_ABI_VERSION], [1.3
2
])
AC_SUBST([GLOM_ABI_VERSION], [1.3
4
])
AC_DEFINE_UNQUOTED([GLOM_ABI_VERSION], ["$GLOM_ABI_VERSION"],
[Define to the Glom ABI version string.])
...
...
docs/pyglom_reference/Makefile.am
View file @
5df154ac
...
...
@@ -6,7 +6,7 @@
# html:
# pydoc -w $(top_builddir)/glom/python_embed/python_module/.libs/
# mkdir html
# mv glom_1_3
2
.html html/index.html
# mv glom_1_3
4
.html html/index.html
book_name
=
pyglom_
$(GLOM_ABI_VERSION_UNDERLINED)
...
...
glom/python_embed/python_module/py_glom_module.cc
View file @
5df154ac
...
...
@@ -29,7 +29,7 @@
using
namespace
Glom
;
BOOST_PYTHON_MODULE
(
glom_1_3
2
)
BOOST_PYTHON_MODULE
(
glom_1_3
4
)
{
boost
::
python
::
docstring_options
doc_options
(
true
,
// show the docstrings from here
...
...
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