-
-
Notifications
You must be signed in to change notification settings - Fork 131
Regenerate with latest gir-files #1544
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
0910f94
d7b73d9
62bda42
f47a9fa
e197aa1
b3255cb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3404,6 +3404,7 @@ pub struct GFileIface { | |
*mut *mut glib::GError, | ||
) -> gboolean, | ||
>, | ||
pub query_exists: Option<unsafe extern "C" fn(*mut GFile, *mut GCancellable) -> gboolean>, | ||
} | ||
|
||
impl ::std::fmt::Debug for GFileIface { | ||
|
@@ -3555,6 +3556,7 @@ impl ::std::fmt::Debug for GFileIface { | |
.field("measure_disk_usage", &self.measure_disk_usage) | ||
.field("measure_disk_usage_async", &self.measure_disk_usage_async) | ||
.field("measure_disk_usage_finish", &self.measure_disk_usage_finish) | ||
.field("query_exists", &self.query_exists) | ||
.finish() | ||
} | ||
} | ||
|
@@ -10043,6 +10045,9 @@ extern "C" { | |
flags: *mut u32, | ||
error: *mut *mut glib::GError, | ||
) -> gboolean; | ||
#[cfg(feature = "v2_84")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "v2_84")))] | ||
pub fn g_resource_has_children(resource: *mut GResource, path: *const c_char) -> gboolean; | ||
pub fn g_resource_lookup_data( | ||
resource: *mut GResource, | ||
path: *const c_char, | ||
|
@@ -17251,6 +17256,9 @@ extern "C" { | |
flags: *mut u32, | ||
error: *mut *mut glib::GError, | ||
) -> gboolean; | ||
#[cfg(feature = "v2_84")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "v2_84")))] | ||
pub fn g_resources_has_children(path: *const c_char) -> gboolean; | ||
pub fn g_resources_lookup_data( | ||
path: *const c_char, | ||
lookup_flags: GResourceLookupFlags, | ||
|
@@ -17313,7 +17321,21 @@ extern "C" { | |
pub fn g_unix_mount_is_system_internal(mount_entry: *mut GUnixMountEntry) -> gboolean; | ||
pub fn g_unix_mount_points_changed_since(time: u64) -> gboolean; | ||
pub fn g_unix_mount_points_get(time_read: *mut u64) -> *mut glib::GList; | ||
#[cfg(feature = "v2_82")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "v2_82")))] | ||
pub fn g_unix_mount_points_get_from_file( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to be conditional for non-Windows There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hm we don't do that for any others so it probably doesn't matter after all There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't those be in the gio-unix gi file nowadays anyway? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think that was not done for backwards compatibility reasons |
||
table_path: *const c_char, | ||
time_read_out: *mut u64, | ||
n_points_out: *mut size_t, | ||
) -> *mut *mut GUnixMountPoint; | ||
pub fn g_unix_mounts_changed_since(time: u64) -> gboolean; | ||
pub fn g_unix_mounts_get(time_read: *mut u64) -> *mut glib::GList; | ||
#[cfg(feature = "v2_82")] | ||
#[cfg_attr(docsrs, doc(cfg(feature = "v2_82")))] | ||
pub fn g_unix_mounts_get_from_file( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This needs to be conditional for non-Windows |
||
table_path: *const c_char, | ||
time_read_out: *mut u64, | ||
n_entries_out: *mut size_t, | ||
) -> *mut *mut GUnixMountEntry; | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
+1 −1 | .github/workflows/regenerate_scheduled.yml | |
+5 −3 | Atk-1.0.gir | |
+1,148 −552 | GLib-2.0.gir | |
+126 −0 | GLibUnix-2.0.gir | |
+136 −0 | GLibWin32-2.0.gir | |
+24 −0 | GModule-2.0.gir | |
+24 −0 | GObject-2.0.gir | |
+1 −1 | Gdk-3.0.gir | |
+989 −31 | Gdk-4.0.gir | |
+1,352 −976 | Gio-2.0.gir | |
+234 −148 | GioUnix-2.0.gir | |
+393 −0 | GioWin32-2.0.gir | |
+17 −4 | Gsk-4.0.gir | |
+2 −2 | Gtk-3.0.gir | |
+221 −16 | Gtk-4.0.gir | |
+6 −6 | Pango-1.0.gir | |
+8 −0 | dl-win32.sh |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70) | ||
Generated by gir (https://github.com/gtk-rs/gir @ af6703cf6545) | ||
from gir-files (https://github.com/gtk-rs/gir-files @ e45712216c81) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Breaking change but as we discussed we'd backport these now because of correctness
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, it would be nice to backport it actually as it blocks some work we have in ashpd :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do