summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Implementations of "G List.get()" should use non-nullable return as definedHEADmastermainRico Tzschichholz2023-04-134-4/+4
|
* Add more missing generic type argumentsRico Tzschichholz2023-04-083-3/+3
|
* Release 0.20.60.20.6Rico Tzschichholz2022-09-172-1/+6
|
* Keep the original exception in Future.map/flat_mapBrendan Long2022-09-171-2/+11
| | | | | | | If a chain of maps fails, the final `exception` should be the actual exception, not a semi-useless `FutureError.EXCEPTION`. Fixes https://gitlab.gnome.org/GNOME/libgee/issues/23
* doap: Demote idle maintainers to authorsRico Tzschichholz2022-09-171-6/+6
|
* Add more missing generic type argumentsRico Tzschichholz2022-08-011-3/+3
|
* Various English and typo fixes in the documentationReuben Thomas2022-04-042-2/+2
|
* Release 0.20.50.20.5Rico Tzschichholz2022-02-102-1/+6
|
* Add more missing generic type argumentsRico Tzschichholz2022-01-301-1/+1
|
* gee/Makefile.am: include Makefile.introspectionFabrice Fontaine2021-11-301-1/+2
| | | | | | | | | | | | | | | Include Makefile.introspection instead of using a custom rule which will result in the following build failure when cross-compiling on buildroot because of missing --includedir: /home/giuliobenetti/autobuild/run/instance-1/output-1/host/bin/../riscv32-buildroot-linux-gnu/sysroot/usr/bin/g-ir-compiler -l `/usr/bin/sed -nE "s/^dlname='([A-Za-z0-9.+-]+)'/\1/p" libgee-0.8.la` -o Gee-0.8.typelib Gee-0.8.gir libgee-0.8.la Could not find GIR file 'GObject-2.0.gir'; check XDG_DATA_DIRS or use --includedir error parsing file Gee-0.8.gir: Failed to parse included gir GObject-2.0 Fixes: - http://autobuild.buildroot.org/results/884faa0f84c8dc43ed1ca6cde9caf21c731a4b35 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
* Add more missing generic type argumentsRico Tzschichholz2021-10-155-24/+24
|
* Release 0.20.40.20.4Rico Tzschichholz2021-03-172-1/+5
|
* Remove invalid usage of type-argument for Gee.Future.SourceFuncArrayElementRico Tzschichholz2021-03-072-8/+8
|
* Replace Memory.dup() with GLib.malloc() and Memory.copy()Rico Tzschichholz2021-02-052-1/+4
|
* Various English and typo fixes in the documentationReuben Thomas2020-10-2323-56/+58
|
* Release 0.20.30.20.3Rico Tzschichholz2020-02-092-1/+6
|
* Flatten call structure a bitRico Tzschichholz2019-11-252-17/+21
|
* Guard GLib.Cond.wait/wait_until calls against spurious or stolen wakeupsRico Tzschichholz2019-10-052-14/+22
| | | | | | | | It is possible that a spurious or stolen wakeup could occur. For that reason, waiting on a condition variable should always be in a loop, based on an explicitly-checked predicate. Fixes https://gitlab.gnome.org/GNOME/libgee/issues/34
* Fix "Access to possible `null'" warnings and use unsafe castsRico Tzschichholz2019-09-255-27/+27
|
* Release 0.20.20.20.2Rico Tzschichholz2019-08-052-1/+5
|
* Add more m4 scripts to .gitignoreRico Tzschichholz2019-04-011-0/+4
|
* Add myself to libgee.doapRico Tzschichholz2019-04-011-0/+7
|
* Update bugtracker and homepage linksRico Tzschichholz2019-04-012-2/+5
|
* Constructors of abstract classes should not be publicRico Tzschichholz2019-03-1417-18/+18
|
* Replace 404 <download-page> in DOAP file with working oneAndre Klapper2018-12-161-1/+1
|
* Add <description> to pass git pre-receive hookAndre Klapper2018-12-161-0/+1
|
* Replace Bugzilla by Gitlab URL in DOAP fileAndre Klapper2018-12-161-1/+1
|
* Release 0.20.10.20.1tempmigrationtogitlabMaciej Piechotka2018-02-112-2/+6
|
* Revert "Add additional query functions to Traversable<G>"Maciej Piechotka2018-02-112-83/+0
| | | | This reverts commit da95e830524ffa309eb57925320666e5085b9d66.
* Add additional query functions to Traversable<G>Edward Hennessy2017-12-112-0/+83
| | | | | | | * one_match (Predicate<G>) check if exactly one element matches * count_match (Predicate<G>) returns the count of items that matches https://bugzilla.gnome.org/show_bug.cgi?id=781641
* Fix links in Traverable.tee() docRico Tzschichholz2017-12-111-2/+2
|
* Fix some delegate copying warningsRico Tzschichholz2017-09-122-3/+3
|
* Release 0.20.00.20.0Maciej Piechotka2017-03-212-2/+6
|
* Release 0.19.910.19.91Maciej Piechotka2017-02-222-1/+6
|
* Change @since to reflect the correct versionMaciej Piechotka2017-02-221-6/+6
|
* Add some more query operations for Traversable<G>Rodrigo Moya2017-01-172-0/+174
| | | | | | | | | | * first_match (Predicate<G>) returns the first item that matches * any_match (Predicate<G>) checks if any element matches * all_match (Predicate<G>) checks if all elements match * max/min returns max/min value * order_by to perform ordering on any Traversable https://bugzilla.gnome.org/show_bug.cgi?id=776558
* Drop obsolete VALA_0_16 conditionalsRico Tzschichholz2016-12-142-8/+0
|
* Fix converting enumerations and flags to arraysColomban Wendling2016-11-233-0/+26
| | | | | | | | | | | | | | | | | | | Enumerations and flags are classed types for Vala, not integers, so they don't fall in the `typeof(G) == typeof(int)` kind of tests. This leads to using the generic code in which Vala assumes pointer-sized elements, which is often not true for enumerations and flags. Add special case for those to use the `int` converters for enumerations and flags. This is most generally correct, but not always: the compiler will likely chose a larger type for a specific enumeration if one of its value is larger than `int`. It would be tempting to use the enumeration's class minimum and maximum values to determine the appropriate type, but unfortunately the API for this uses int itself, so doesn't help. https://bugzilla.gnome.org/show_bug.cgi?id=774669
* Release 0.18.10.18.1Maciej Piechotka2016-10-122-1/+5
|
* Fix memory-leaks by avoiding field initializers for generic fieldsOle André Vadla Ravnås2016-10-114-9/+16
| | | | | | | | Discussed this briefly with upstream on IRC, and it was concluded that this should probably have been forbidden by the Vala compiler in the first place. https://bugzilla.gnome.org/show_bug.cgi?id=772417
* Fix use-after-frees caused by weak pointer issuesOle André Vadla Ravnås2016-10-113-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Same issue in HashMap and TreeMap: ``` ==3251==ERROR: AddressSanitizer: heap-use-after-free on address 0x604000000870 at pc 0x000108be666b bp 0x7fff571e62b0 sp 0x7fff571e62a8 WRITE of size 8 at 0x604000000870 thread T0 #0 0x108be666a in g_nullify_pointer gutils.c:2051 #1 0x108b8c906 in weak_refs_notify gobject.c:2638 #2 0x108bbb17c in g_data_set_internal gdataset.c:407 #3 0x108b887db in g_object_unref gobject.c:3148 #4 0x108a4b0ec in map_tests_test_entry_weak_pointer_lifetime testmap.c:1358 0x604000000870 is located 32 bytes inside of 40-byte region [0x604000000850,0x604000000878) freed by thread T0 here: #0 0x1090f0e29 in wrap_free (libclang_rt.asan_osx_dynamic.dylib+0x4ae29) #1 0x108ace566 in gee_hash_map_unset_helper hashmap.c:1692 #2 0x108acc534 in gee_hash_map_real_unset hashmap.c:1520 #3 0x108a4b0df in map_tests_test_entry_weak_pointer_lifetime testmap.c:1357 previously allocated by thread T0 here: #0 0x1090f0c60 in wrap_malloc (libclang_rt.asan_osx_dynamic.dylib+0x4ac60) #1 0x108bce848 in g_malloc gmem.c:95 #2 0x108bd6585 in g_slice_alloc gslice.c:1012 #3 0x108bd6bee in g_slice_alloc0 gslice.c:1038 #4 0x108acdc27 in gee_hash_map_node_new hashmap.c:2084 #5 0x108acc277 in gee_hash_map_real_set hashmap.c:1494 #6 0x108a4b032 in map_tests_test_entry_weak_pointer_lifetime testmap.c:1311 https://bugzilla.gnome.org/show_bug.cgi?id=772418
* Replace deprecated NoArrayLength annotationRico Tzschichholz2016-09-291-2/+2
|
* Fix overrides with non-matching typesMatthias Berndt2016-09-295-11/+11
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=772149
* Fix type parameters in testsJürg Billeter2016-09-273-3/+3
|
* Fix type parameters in TreeMapJürg Billeter2016-09-271-8/+8
|
* Fix 'static const' warnings with vala 0.33.1Rico Tzschichholz2016-09-146-8/+8
|
* Fix type parameters in LightMapFuture.wait_until/asyncJürg Billeter2016-07-151-4/+4
|
* Fix type parameters in AbstractMultiMap.Values.add/removeJürg Billeter2016-07-151-2/+2
|
* Handle deprecated Deprecated annotation with newer valacRico Tzschichholz2016-06-092-0/+20
|
* Fix some valadocsBen Iofel2016-01-202-7/+8
|