Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Console View

Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

Mario Daniel Ruiz Saavedra
sdl2: Fix missing integer type for JoystickID
Fixes https://gitlab.gnome.org/GNOME/vala/issues/1563
Corentin Noël
doap: Remove authors
This is not part of the DOAP specification.
Sergey Bugaev
parser: Fix statement error recovery
Parser.rollback () can only be used to move *backward* through tokens,
not forward. When we run into a ParseError while parsing a statement,
'begin' points to the start of the statement, and 'e_begin' to the error
location inside the statement. 'rollback (begin)' is then justified,
since we're rolling back to the start of the statement; but moving to
'e_begin' again can not be done with 'rollback (e_begin)'.

Because we failed to seek forward, an syntax error could send us into an
infinite loop. Use Parser.jump () instead, which moves forward through
tokens.

Regession of f5934184d050d1a19f394fdab6f2ee66ff30965f

Fixes https://gitlab.gnome.org/GNOME/vala/issues/1590
Sergey Bugaev
tests: Regenerate for the precondition failure change
Rico Tzschichholz
Sync NEWS from 0.56
Dawid Duma
gobject-2.0: Add TypeFlags missing values
Sergey Bugaev
codegen: Return default_value_on_error on precondition failures
This way, we get -1 for integers, G_TYPE_INVALID for GType, etc. The
returned value doesn't really matter since this is an assertion failure
in any case, but this is what's usually done in C code.
Sergey Bugaev
gobject-2.0: Fix return type
Reuben Thomas
glib-2.0: allow FileUtils.open_tmp's first argument to be null
This is allowed in GLib to use a default template for the file name.
Sergey Bugaev
codegen: Propagate default_value_on_error from parent struct
Like it's already done for default_value. This in particular should
impact tests/structs/gtype-base-struct.vala when we set the default
values for GLib.Type.
Rico Tzschichholz
girparser: Respect given lower_case_cprefix metadata all the way
GIR allows to define multiple prefixes in "c:identifier-prefixes".
Vala is blindly taking the first one which worked well so far, but
can go very wrong. So allow overriding this information of the
root namespace for real.
Rico Tzschichholz
libnotify: Update to 0.8.4
Fixes https://gitlab.gnome.org/GNOME/vala/issues/1601
Sergey Bugaev
codegen: Set and check GTask source tag
This is the best practice when writing async code in C.
Sergey Bugaev
codegen: Set and check GTask source tag
This is the best practice when writing async code in C.
Sergey Bugaev
gobject-2.0: Add Type.to_string ()
Fixes formatting types via string interpolation.
Reuben Thomas
posix: add UTIME_{NOW,OMIT} constants for utimensat
Zhou Qiankang
glib-2.0: Add Regex.escape_nul in GLib
See: https://docs.gtk.org/glib/type_func.Regex.escape_nul.html

Signed-off-by: Zhou Qiankang <wszqkzqk@qq.com>
Rico Tzschichholz
vapi: Regenerate for GIR-based bindings to update prefix handling
Jordan Petridis
ci: Skip meson dist in flatpak jobs
Corentin Noël
libxml-2.0: Add more fields to ParserCtxt
The fields are actually required when using the ParserCtxt.
Jordan Petridis
ci: Update nightly runtime extension to 25.08beta base
Corentin Noël
libvaladoc: Do not error-out on doc:format
This is part of the valid .gir file format, just skip it for now.
Sergey Bugaev
gobject-2.0: Set default_value{,_on_error} for GType
Rico Tzschichholz
Add CI for tarball release service
Rico Tzschichholz
tests: Prepend $(builddir) to gir file target to increase coverage
Rico Tzschichholz
girparser: Handle `doc:format` element in root:repository
See https://gitlab.gnome.org/GNOME/gobject-introspection/-/issues/448

Fixes https://gitlab.gnome.org/GNOME/vala/issues/1586
arujjval
Update links to GNOME Wiki project and refer to new Vala websites
jordangit
gsl: Deprecate gsl_linalg_cholesky_decomp in favour of gsl_linalg_cholesky_decomp1
Fixes https://gitlab.gnome.org/GNOME/vala/issues/1602
Rico Tzschichholz
tests: Prepend $(builddir) to gir file target to increase coverage
Rico Tzschichholz
build: Update gitlog-to-changelog to latest upstream
From commit 7b08932179d0d6b017f7df01a2ddf6e096b038e3 of
https://git.savannah.gnu.org/cgit/gnulib.git/tree/build-aux/gitlog-to-changelog
Zhou Qiankang
valadoc: Sync gir argument handling from valacompiler.vala
Rico Tzschichholz
gtk4: Update to 4.19.1~a9188062
Rico Tzschichholz
ci: Make sure REPO_TOKEN_FILE is set rather than deprecated REPO_TOKEN
Zhou Qiankang
glib-2.0: Update RegexMatchFlags and RegexCompileFlags's binding to 2.74
Signed-off-by: Zhou Qiankang <wszqkzqk@qq.com>
Sergey Bugaev
glib-2.0: Fix *.add_once () callbacks
These callbacks have scope=async, not scope=call. In Vala, the latter is
what passing an unowned delegate implies, while scope=async is achieved
with an owned delegate marked [CCode (scope = "async")].

Fixes https://gitlab.gnome.org/GNOME/vala/issues/1556
Zhou Qiankang
glib-2.0: Add Regex.escape_nul in GLib
See: https://docs.gtk.org/glib/type_func.Regex.escape_nul.html

Signed-off-by: Zhou Qiankang <wszqkzqk@qq.com>
Rico Tzschichholz
Release 0.56.18
Sergey Bugaev
codegen: Use g_once_init_{enter,leave}_pointer when targetting glib >= 2.80
See https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3577
Zhou Qiankang
glib-2.0: Update RegexMatchFlags and RegexCompileFlags's binding to 2.74
Signed-off-by: Zhou Qiankang <wszqkzqk@qq.com>
Rico Tzschichholz
girwriter: Don't use instance-parameter inside function elements
Fixes https://gitlab.gnome.org/GNOME/vala/issues/1606