https://github.com/GNOME/glib
Name Target Message Date
HEAD 3a1b76a Update Persian translation 05 April 2024, 13:58:21 UTC
refs/heads/1013-search-evince-or-totem-zero-result-from-flatpaks 1acffad try harder to get the exec name for flatpaks so gnome-shell's application search does not show zero result for an application that is installed both by distro package and by flatpak. Fixes issue gnome-shell#1013 03 March 2019, 00:37:32 UTC
refs/heads/1302-file-set-contents-fsync fc631fb gfileutils: make g_file_set_contents() always fsync() Previously, this function only called fsync() if @filename exists and is non-empty. This behaviour was introduced when the function was first written (6cff88ba18b3bc0d118308f109840cb163dcea03) and shortly afterwards (d20a188b1250ab3cf211d684429127d99378e886) respectively, with the latter justified as a performance optimisation. This meant that g_file_set_contents() does not provide the guarantee that developers assume it has, namely that after a call and a crash, @filename will either contain its previous contents or its new @contents. In practice, when it was previously non-existent or empty on a bog-standard ext4 filesystem, it would often contain NUL bytes matching the @length of @contents, requiring application developers to explicitly handle this third case. Given the documentation includes the word "atomic", we make this function provide the guarantee that was previously implied but untrue, and document it. If applications require higher performance at the cost of correctness, they can open-code the old behaviour, or we can add a new function to glib providing weaker guarantees. https://gitlab.gnome.org/GNOME/glib/issues/1302 22 November 2017, 11:43:55 UTC
refs/heads/1798-freebsd-test abbc5c4 WIP Signed-off-by: Philip Withnall <withnall@endlessm.com> 03 June 2019, 17:38:57 UTC
refs/heads/2.73.2 5ef65e5 2.73.2 08 July 2022, 14:49:21 UTC
refs/heads/262.c89 fa2b78f gdatetime.c: Fix MSVC builds for lack of NAN items Use a fallback for isnan() on Visual Studio 2012 or earlier, and define NAN if it does not exist. 30 December 2020, 10:46:33 UTC
refs/heads/3v1n0/allocation-benchmarks 51794f7 allocator-tests: Add some machine-readable output 07 July 2022, 15:40:15 UTC
refs/heads/GLIB_1_1_3_MARTIN d77288d define G_GNUC_UNUSED. Wed Sep 30 10:53:03 1998 Tim Janik <timj@gtk.org> * glib.h: define G_GNUC_UNUSED. This change was made in CVS after glib-1.1.3 was released, but I need to have this in glib.h for GTop 0.30 (and perhaps also LibGTop 0.30), so I made this branch. Binaries created from this branch will be completely identically with Glib-1.1.3. Martin. 04 October 1998, 19:31:54 UTC
refs/heads/GLIB_1_1_4_THREADS 3876753 Added module headers, made gtree.c thread-safe. 12 November 1998, 13:47:05 UTC
refs/heads/GLIB_1_3_HACKS a6ab9d0 merge from HEAD 07 March 1999, 01:44:10 UTC
refs/heads/GLIB_2_15_0 48ba9ea 2.15.0 svn path=/trunk/; revision=6180 21 December 2007, 00:37:41 UTC
refs/heads/arnaudb/option-flag-append-empty-line f7b2e8c Fix Since tag. 12 September 2019, 15:51:04 UTC
refs/heads/arnaudb/visual-group-in-option-entry f7892d9 Introduce visual_group in GOptionEntry Add in GOptionEntry a new field that identifies a group of options. When displaying help, options that are contiguous and have the same "visual group" are separatated from other groups, by an empty line. 13 September 2019, 14:26:42 UTC
refs/heads/ascii-formatd-libc-dep 2eec72e Apply 1 suggestion(s) to 1 file(s) 18 January 2022, 16:41:10 UTC
refs/heads/atomic-older-cplusplus 84f66a0 gmacros: Prioritize the usage of [[noreturn]] in C++11 We defined G_NO_RETURN as [[noreturn]] in the C++ case, but only after trying the __attribute__ syntax, so it was never used in GNUC compatible compilers. Give it priority instead when supporting a C++11 compiler and onwards. As per this we need to adapt the code in the places where it was not properly used (leading to compilation warnings). 13 September 2022, 23:59:24 UTC
refs/heads/autostart-network-monitor-portal e80cae8 portal network monitor: Do autostart There is no explicit starting of the portals in the session, so best to allow autostart here. There has been at least one epiphany bug reported that can be described as "epiphany thinks I'm offline and there's a warning about a D-Bus name without an owner and a proxy without autostart." 13 September 2018, 02:00:11 UTC
refs/heads/backport-2309-pcre-blah-blah-glib-2-70 562295c Rename libpcre.wrap to pcre.wrap It is exactly the same wrap as the one in WrapDB but with a different name. That fix error when multiple projects uses pcre and they don't have the same wrap name: meson.build:1:0: ERROR: Multiple wrap files provide 'libpcre' dependency: pcre.wrap and libpcre.wrap 21 October 2021, 15:09:57 UTC
refs/heads/backport-2364-freebsd-objcopy-glib-2-70 05340ad tests: Allow `objcopy --help` to fail, because it fails on FreeBSD This is a partial revert of b248f3481ced. Eventually, this commit can be dropped once `objcopy --help` doesn’t exit with a non-zero status on FreeBSD. See: https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2360#note_1318608 Signed-off-by: Philip Withnall <pwithnall@endlessos.org> 24 November 2021, 12:01:39 UTC
refs/heads/backport-2412-paramspec-annotation-glib-2-70 2812798 paramspec: fix unref annotation 30 December 2021, 12:40:47 UTC
refs/heads/backport-2449-2600-mingw-test-fixes-glib-2-72 25616eb gio/tests: fix socket /socket/credentials/unix_socketpair on win32 When I enabled unix socketpair test on win32, I left the existing g_close(fds[1]), but _g_win32_socketpair() returns native sockets descriptors that must be closed with closesocket() on win32. Let GSocket handle the socket pair cleanup. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> 23 March 2022, 15:12:59 UTC
refs/heads/benzea/systemd-launch-transient-unit e2c54e2 gdesktopappinfo: Use systemd to launch applications when possible This commits adds support to launch applications using systemd. This will only be done if systemd is running (XDG_RUNTIME_DIR/systemd exists) and if the session bus we are connected to belongs to this user session. 27 July 2020, 13:44:08 UTC
refs/heads/benzea/systemd-transient-scope 0a0ac9f gdesktopappinfo: Move launched applications into transient scope Try to move the spawned executable into its own systemd scope. To avoid possible race conditions and ensure proper accounting, we delay the execution of the real command until after the DBus call to systemd has finished. From the two approaches we can take here, this is better in the sense that we have a child that the API consumer can watch. API consumers should not be doing this, however, gnome-session needs to watch children during session startup. Until gnome-session is fixed, we will not be able to change this. The alternative approach is to delegate launching itself to systemd by creating a transient .service unit instead. This is cleaner and has e.g. the advantage that systemd will take care of log redirection and similar issues. 27 July 2020, 20:22:32 UTC
refs/heads/better-cmpfloat 072cfa6 Tweak g_assert_cmpfloat_with_epsilon While it is nice to see the expression symbolically, it is much more useful to see the actual value of epsilon. I don't really care if the variable that was passed in there is called eps, epsilon or blast_radius. 26 August 2023, 14:49:17 UTC
refs/heads/c-cxx-std-versions 6e3046f gmacros: Use G_C_STD_CHECK_VERSION to define C-std dependent items 14 September 2022, 02:44:46 UTC
refs/heads/c99-int-types 5e516be Use C99 integer types where appropriate GLib depends on various parts of a valid C99 toolchain, so it's time to use C99 integer types wherever possible, instead of doing configure-time discovery like it's 1997. So: gint8 → int8_t guint8 → uint8_t gint16 → int16_t guint16 → uint16_t gint32 → int32_t guint32 → uint32_t gint64 → int64_t guint64 → uint64_t gsize → size_t gintptr → intptr_t guintptr → uintptr_t There are some side effects on switching to C99: - the G_*_MODIFIER macros do not really make any more sense, and should be deprecated and replaced by an empty string - the G_*_FORMAT macros are marked for use with both printf() and scanf(), except that's not really true at all; C99 defines format macros for print() and scanf() separately, and GLib should do the same. The old macros should be deprecated, but if we want to be evil about it, we could alias them with the PRINTF_FORMAT, as it's likely their more dominant use In general, there shouldn't be any ABI changes, unless the toolchain in use is not conformant to C99. Closes #1484 19 December 2019, 15:45:32 UTC
refs/heads/cherry-pick-03cb4261 6626765 gthread-posix: need to #include <errno.h> a79c6af23eff5ee978db62e048828c9a992a1261 uses errno without the required header. (cherry picked from commit 03cb4261e00cf505790f4fd4e69f97b2ef4fcccd) 20 December 2022, 23:10:41 UTC
refs/heads/cherry-pick-15aff433 592ab79 Merge branch 'fix_pcre' into 'main' Fix link to pcre-8.37.tar.bz2 See merge request GNOME/glib!2324 (cherry picked from commit 15aff433ccfbc4503396ac02799e56e5fe74d043) e5dc2997 Fix link to pcre-8.37.tar.bz2 07 November 2021, 19:45:34 UTC
refs/heads/cherry-pick-15aff433-2 1301627 Merge branch 'fix_pcre' into 'main' Fix link to pcre-8.37.tar.bz2 See merge request GNOME/glib!2324 (cherry picked from commit 15aff433ccfbc4503396ac02799e56e5fe74d043) e5dc2997 Fix link to pcre-8.37.tar.bz2 07 November 2021, 19:45:34 UTC
refs/heads/cherry-pick-255fa26b 081d992 build: Let Meson figure out Python installation Commit 4a4d9eb6624 initially switched Meson to find the python program using find_program('python3'). Sadly that caused a regression, since in some cases with MSVC it would fallback to 'meson.exe runpython', which is undesired. However, that particular code was reverted back to an also undesired lookup method, find_installation('python3'). This way of finding python also breaks on Windows + MSVC, in particular when setting it up as follows: ``` winget install python winget install meson ``` This fails building GLib with: > python3 not found Fix that by not passing any argument to find_installation(), which lets Meson figure it all out by itself. (cherry picked from commit 255fa26b964bbcd22150dafbfe5ead0acf0b84ad) 29 September 2022, 20:18:10 UTC
refs/heads/cherry-pick-41af4271 2272575 tests: Remove variable-length lookbehind tests for GRegex PCRE2 10.43 has now introduced support for variable-length lookbehind, so these tests now fail if GLib is built against PCRE2 10.43 or higher. See https://github.com/PCRE2Project/pcre2/blob/e8db6fa7137f4c6f66cb87e0a3c9467252ec1ef7/ChangeLog#L94. Rather than making the tests conditional on the version of PCRE2 in use, just remove them. They are mostly testing the PCRE2 code rather than any code in GLib, so don’t have much value. This should fix CI runs on msys2-mingw32, which updated to PCRE2 10.43 2 days ago. Signed-off-by: Philip Withnall <pwithnall@gnome.org> 26 February 2024, 16:55:44 UTC
refs/heads/cherry-pick-cc25486b 014f12b Use CPU_COUNT to get the number of set CPUs This fixes an issue with the number getting very big due to CPU_ISSET not returning exactly 0 or 1. This also fixes scenarios where there are holes in the CPU set. E.g. for a simple run like `taskset --cpu-list 1,2,4 ...` the old code would return 2 instead of 3, due to iterating until `ncores` (which is 3) and therefore not accounting for CPUs further in the set. Ref https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3784 (cherry picked from commit cc25486b233ada380ac8452f47f5fb35536888f4) 23 March 2024, 19:51:52 UTC
refs/heads/chpe-main-patch-69529 5d8e175 Add comma after last entry. 27 October 2022, 09:05:24 UTC
refs/heads/ci-api-reference de3dd2d ci: Add a stage for building the API reference We can generate the GLib API references and publish them, so they are always up to date. 28 March 2019, 14:44:39 UTC
refs/heads/ci-timeout-mult ebdc7f4 ci: Always pass --timeout-multiplier 4 to meson test. Fixes #1393 Sometimes the CI machines are a bit slow and tests time out. This should help. 26 May 2018, 14:31:29 UTC
refs/heads/collate-crash 95d7c7a collate: Don't segfault on bad input The behavior of _g_utf8_normalize_wc() changed in 7f4726d1, it now returns NULL if the length ends in the middle of a multibyte character. Make g_utf8_collate_key() handle that without a crash. Testcase included. Fixes #3185 26 November 2023, 13:08:58 UTC
refs/heads/devnull-em-and-let-god-figure-it-out ee9c928 glib-unix: Ensure g_unix_open_pipe never leaves standard io fd range exposed It's now possible that g_unix_open_pipe will reject an fd because it's STDIN, STDOUT, or STDERR. Having those fds left open to be used by the next thing is causing buggy apps to fail, since they relied on g_unix_open_pipe using the fds. This commit puts a /dev/null placeholder on an standard fds that g_unix_open_pipe rejects. Closes: https://gitlab.gnome.org/GNOME/glib/-/issues/2795 28 October 2022, 14:16:56 UTC
refs/heads/dispatch-data 66def9d dispatch data 15 June 2013, 19:36:38 UTC
refs/heads/ebassi/c11-toolchain-req 7227b42 ci: Use MSVC 2019 toolchain 13 September 2023, 08:57:42 UTC
refs/heads/ebassi/c99-int-types b7f73d9 Drop custom re-implementation of C99 integer types We have required a strict equivalence between our integer types and their C99 counterparts for two years and four cycles, and nobody complained about it. It is time to drop one of the few remaining vestiges of C89 compatibility. 26 July 2022, 12:12:09 UTC
refs/heads/ebassi/gi-docgen-wrap-update 4543fb8 Update the wrap file for gi-docgen Use the [provide] section to override the binary name, and track the main development branch, like GTK does, so we get warnings and a consistent output. 11 January 2024, 15:13:07 UTC
refs/heads/ebassi/gtype-refcount c541101 Drop TypeNode reference counting We don't allow unloading types, both static and dynamic, since 2013. The code that deals with reference counting is mostly dead code, and makes reasoning about the type system more complicated than necessary. Since type classes and interfaces can only be instantiated, we introduce explicit getter functions that create a GTypeClass or a GTypeInterface vtable; the ref() and unref() API gets a "soft" deprecation, to allow people to progressively port their code. 04 February 2023, 15:41:55 UTC
refs/heads/ebassi/object-connect-docs 9b2dd96 Apply changes suggested during code review 03 April 2024, 16:51:44 UTC
refs/heads/ebassi/thread-gir 908f5c7 Add comments on closing guards This way it's easier to identify the guarded block. 11 January 2024, 18:57:51 UTC
refs/heads/ebassi/version-header-install 0ea1d3f Install gversionmacros.h in the right place The gversionmacros.h header is referenced from glib/, so it needs to go into glib's include directory, not in the top-level alongside glib.h, glib-object.h, gmodule.h, and glib-unix.h. 26 October 2022, 11:01:51 UTC
refs/heads/ewlsh/gi-async-function-annotations eb9fb1b girepository: Add APIs for sync, async, and finish function annotations 26 January 2024, 10:46:02 UTC
refs/heads/ewlsh/splitting-gitypelib de06097 fix: Fix documentation references 29 December 2023, 17:33:42 UTC
refs/heads/faster-contenttype-guess 0917506 xdgmime: Use memmem when we can When comparing magic without a mask, we can use the optimized function that glibc has for this purpose. This makes g_content_type_guess drop from 10% to 3% in some of my GTK profiles. Still not ideal. It would be much better if we could ask 'Which of these 3 types is it?' style questions. 15 October 2019, 15:56:16 UTC
refs/heads/finalize-speedups2 b1a6324 gobject: Don't do duplicate work We already remove the signal handlers and weak refs in g_object_real_dispose. No need to do it again after dispose, and before the data is cleaned out for good in finalize. 22 May 2022, 11:25:20 UTC
refs/heads/fix-introspection-windows d733579 Introspection: Fix running g-ir-scanner 1.80.x+ on Windows Since we are now building introspection files for GLib while building GLib, so we want to make sure that we indeed load the freshly-built DLLs when running g-ir-scanner, so we add the various needed subdirs (and if needed, subprojects), to set the GI_EXTRA_BASE_DLL_DIRS envvar so that g-ir-scanner will look for the newly-built GLib DLLs. This will also fix the g-ir-scanner erroring out when there is no pre-existing GLib on the system, as the needed DLLs are now found. Related issue: https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/499 28 March 2024, 10:36:41 UTC
refs/heads/fix-param-validation 241286a Fix g_param_is_valid for GParam The is_valid vfunc need to return the same condition that the validate vfunc uses to determine whether to 'fix' the value. param_param_validate is considering NULL to be a valid value, so param_param_is_valid needs to do the same. Fixes: #8576 25 September 2022, 00:21:07 UTC
refs/heads/fix-property-action-property-name 804bc05 Avoid crashing when GPropertyAction's property name is not set Instead of crashing on a segfault, raise a critical error. 29 September 2023, 12:06:20 UTC
refs/heads/force-refresh 9670d4c Revert "tests: Temporarily disable desktop-app-info terminal test on FreeBSD" Since we no longer require /proc for the desktop-app-info test, we can run it on FreeBSD again. This reverts commit 3235eee0e2c75f746f14f95e58220b95a74ad3a6. 18 October 2022, 14:08:41 UTC
refs/heads/g-string-append-filename c42fa38 Add a cross-reference Mention g_string_append_filename in the g_build_filename docs. 17 January 2023, 19:20:47 UTC
refs/heads/g-string-on-stack 1e38e6f GString: Support on-stack use Move the preallocation into the GString struct, and add g_string_init and g_string_clear to enable on-stack use of GString. 17 January 2023, 22:56:41 UTC
refs/heads/gdbus-codegen-exporting-2-64 33930e1 gdbus-object-manager-example: Fix build on Visual Studio This ensures that we do really export the symbols for Visual Studio-style builds, by using __declspec(dllexport) for the functions prototypes that are generated. 17 April 2020, 10:07:51 UTC
refs/heads/gdbus-daemon fab641e win32: Support autolaunching dbus daemon 18 April 2012, 15:09:37 UTC
refs/heads/gdbus-daemon2 39b3263 win32: Implement _g_dbus_get_machine_id using machine guid This is what libdbus uses, so we're compatible. 20 April 2012, 08:23:34 UTC
refs/heads/gfile-colons dc9314f gfile: Fallback to local path for unknown schemes g_file_new_for_cmd_path() doesn't handle files with colons ideally: $ touch foo:bar $ gio info foo:bar gio: foo:///bar: The specified location is not supported Just a note that "./foo:bar", "~/foo:bar" or "file:///foo:bar" works properly. With this patch, the file info is shown even for "foo:bar" when "foo" isn't supported scheme. Side-effect of this patch is that operations will fail with "No such file or directory" if the local file doesn't exist as well instead of "The specified location is not supported" (ie. with G_IO_ERROR_NOT_FOUND instead of G_IO_ERROR_NOT_SUPPORTED)... https://gitlab.gnome.org/GNOME/glib/issues/1623 17 December 2018, 11:49:32 UTC
refs/heads/gio-file-info fab6e59 Add new api to the docs G_FILE_ATTRIBUTE_STANDARD_FILE is new. 04 July 2020, 15:41:41 UTC
refs/heads/gio-file-info-2 7a2fb58 localfile: Set the file on file infos Associate the original GFile with a GFileInfo created for it. This will be used in the GTK filechooser. 12 July 2020, 17:57:20 UTC
refs/heads/gio-tool-attributes 7dac406 gio-tool: Respect --attributes Do not add custom attributes when the command-line explicitly specifies some. 30 September 2019, 13:53:49 UTC
refs/heads/girepository-docs b55ac8e docs: Add GIRepository documentation build using gi-docgen Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155 08 November 2023, 23:16:43 UTC
refs/heads/glib-1-2 63127f2 Fixed typo. (#78985) 2002-04-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * gthread.c (g_thread_init): Fixed typo. (#78985) 18 April 2002, 12:10:17 UTC
refs/heads/glib-2-0 beab1b6 Updated Finnish translation from Lauri Nurmi. 2003-01-05 Pauli Virtanen <pauli.virtanen@hut.fi> * fi.po: Updated Finnish translation from Lauri Nurmi. 05 January 2003, 15:37:56 UTC
refs/heads/glib-2-10 d3374b3 Updated Slovenian translation 26 October 2009, 13:57:34 UTC
refs/heads/glib-2-12 730670a Updated Arabic Translation by Djihed Afifi. svn path=/branches/glib-2-12/; revision=6194 23 December 2007, 12:00:25 UTC
refs/heads/glib-2-14 f6f75ff Updated Slovenian translation 21 October 2009, 12:03:42 UTC
refs/heads/glib-2-16 ee90280 Updated Dzongkha Translation svn path=/branches/glib-2-16/; revision=7712 01 December 2008, 04:31:37 UTC
refs/heads/glib-2-18 b1a22c1 Updated Basque language 22 March 2010, 11:43:18 UTC
refs/heads/glib-2-2 fe71c76 Added British translation from Dave Lodge <dave@cirt.net> 23 March 2004, 01:24:07 UTC
refs/heads/glib-2-20 017a648 Updated Hungarian translation 27 December 2012, 18:58:21 UTC
refs/heads/glib-2-22 2c00d9a Translations merged 16 April 2010, 09:31:35 UTC
refs/heads/glib-2-24 6eac40f Update Simplified Chinese translation. 14 September 2010, 09:01:08 UTC
refs/heads/glib-2-26 52366b3 Update Occitan translation 12 October 2016, 08:20:21 UTC
refs/heads/glib-2-28 59fa0ba Update Occitan translation 12 October 2016, 08:22:59 UTC
refs/heads/glib-2-30 440cc81 Update Occitan translation 12 October 2016, 08:12:15 UTC
refs/heads/glib-2-32 245a4d9 Update Occitan translation 12 October 2016, 08:25:44 UTC
refs/heads/glib-2-34 70227f3 Update Occitan translation 12 October 2016, 08:24:22 UTC
refs/heads/glib-2-36 9ee83d8 Update Occitan translation 12 October 2016, 08:18:41 UTC
refs/heads/glib-2-38 7275d1a Update Occitan translation 12 October 2016, 08:21:33 UTC
refs/heads/glib-2-4 cffb5f6 Updated Slovak translation. 2004-01-14 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation. 14 January 2005, 05:54:56 UTC
refs/heads/glib-2-40 042c5f6 Update Occitan translation 12 October 2016, 08:13:34 UTC
refs/heads/glib-2-42 5759c55 Update Occitan translation 12 October 2016, 08:17:15 UTC
refs/heads/glib-2-44 dbdb11e Update Occitan translation 12 October 2016, 08:15:41 UTC
refs/heads/glib-2-46 c3c7cc6 file monitors: reorder some code to avoid segfault We must initialise '->source' before we use fields inside of it. https://bugzilla.gnome.org/show_bug.cgi?id=758823 30 November 2015, 15:13:46 UTC
refs/heads/glib-2-48 fcc7123 Updated German translation 02 September 2016, 05:33:12 UTC
refs/heads/glib-2-50 b281f7d Updated Slovenian translation 07 August 2017, 06:43:57 UTC
refs/heads/glib-2-52 1666d75 Update Chinese (China) translation 31 January 2022, 03:21:12 UTC
refs/heads/glib-2-54 9eed922 Update Chinese (China) translation 11 September 2022, 19:14:28 UTC
refs/heads/glib-2-56 4d47819 Update Serbian translation 03 March 2019, 10:30:57 UTC
refs/heads/glib-2-58 d80d9af Merge CVE-2021-27218, CVE-2021-27219 and CVE-2021-28153 fixes into glib-2-58 See merge requests https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2000, https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2001 and https://gitlab.gnome.org/GNOME/glib/-/merge_requests/2002. 21 March 2021, 13:08:31 UTC
refs/heads/glib-2-6 526e0c8 updated nepali translation 02 August 2005, 13:34:57 UTC
refs/heads/glib-2-60 2ac344c Update Chinese (China) translation 11 September 2022, 19:19:25 UTC
refs/heads/glib-2-62 5e95443 Updated Slovenian translation 16 June 2020, 16:58:32 UTC
refs/heads/glib-2-64 ddf2d4c 2.64.6 Signed-off-by: Philip Withnall <pwithnall@endlessos.org> 01 October 2020, 12:30:27 UTC
refs/heads/glib-2-66 284b7eb Update Croatian translation 27 October 2021, 17:16:17 UTC
refs/heads/glib-2-68 b3023ec Update Croatian translation 27 October 2021, 17:15:22 UTC
refs/heads/glib-2-70 e9fc174 Update Turkish translation 23 March 2022, 08:12:25 UTC
refs/heads/glib-2-72 ab4e9ab Add Abkhazian translation 06 January 2023, 10:26:29 UTC
refs/heads/glib-2-74 fa55ff3 Update Czech translation 17 September 2023, 13:04:28 UTC
back to top