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
GNOME
glibmm
Commits
21f246ba
Commit
21f246ba
authored
Oct 06, 2021
by
Kjell Ahlstedt
Browse files
2.68.2
parent
09d6ccb0
Pipeline
#323154
passed with stages
in 17 minutes and 47 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
NEWS
View file @
21f246ba
2.68.2 (stable):
Glib:
* Replace all g_quark_from_static_string() by g_quark_from_string()
(Kjell Ahlstedt) Issue #96 (小太)
Gio:
* FileEnumerator: Remove refreturn to avoid memory leak
(talisein) Merge request !53
* ListModel::get_object(): Make it work for interface classes
(Kjell Ahlstedt) Issue #93 (pumkinpal)
* AppInfo::get_all(): Avoid a crash on Windows
(Kjell Ahlstedt) Issue #94 (Lawrence37)
Build:
* MSVC build: Remove extraneous GLIBMM_API in Glib::ustring
(Kjell Ahlstedt) Issue #92 (Christoph Reiter)
2.68.1 (stable):
Glib:
...
...
configure.ac
View file @
21f246ba
...
...
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
AC_INIT([glibmm], [2.68.
1
],
AC_INIT([glibmm], [2.68.
2
],
[https://gitlab.gnome.org/GNOME/glibmm/issues],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
...
...
meson.build
View file @
21f246ba
# This file is part of glibmm.
project
(
'glibmm'
,
'cpp'
,
version
:
'2.68.
1
'
,
version
:
'2.68.
2
'
,
license
:
'LGPLv2.1+'
,
default_options
:
[
'cpp_std=c++17'
...
...
@@ -253,12 +253,20 @@ if can_add_dist_script
python3
.
path
(),
dist_changelog_py
,
project_source_root
,
)
# Don't distribute these files.
dont_distribute
=
[
'HACKING'
,
'.gitlab-ci.yml'
,
]
# Add build scripts to the distribution directory, and delete .gitignore
# files and an empty $MESON_PROJECT_DIST_ROOT/build/ directory.
meson
.
add_dist_script
(
python3
.
path
(),
dist_build_scripts_py
,
project_source_root
,
'untracked'
/
'build_scripts'
,
dont_distribute
,
)
endif
...
...
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