ranfdev

Results 47 issues of ranfdev

### Checklist - [X] I agree to follow the [Code of Conduct](https://github.com/flatpak/flatpak/blob/master/CODE_OF_CONDUCT.md) that this project adheres to. - [X] I have searched the [issue tracker](https://www.github.com/flatpak/flatpak-builder/issues) for a bug that matches...

enhancement

Something like this https://tera.netlify.com/docs/templates/#include but instead of parsing the content of the file as if it was a template, just include the raw content of the file. Maybe a function...

enhancement

In general, we should provide typed methods when possible and `with_type` variants. Example: `Widget::ancestor(widget, type)` (which currently returns a `Option`) could become `Widget::ancestor::(widget)` and directly return a typed `Option`.

enhancement

Problem: I've defined a widget `MyBin` but using it inside a UI file brings up an error. JS code ``` import GObject from "gi://GObject"; import Gtk from "gi://Gtk?version=4.0"; import Adw...

bug

This is an exploratory idea. I welcome everyone who want's to provide feedback. In Vala, you can work with signals by doing ```vala btn.clicked(); // emit btn.clicked.connect(fun); btn.clicked.connect_after(fun); // after...

enhancement

fixes #983 enables support for a correct handling of `ThreadGuard`, therefore supersedes #968. In general, this kinda enables two-level nesting: this makes supporting newtypes trivial (conceptually, they are a nested...

Related issue: https://github.com/gtk-rs/gtk-rs-core/issues/935 I think there are currently too many timeout functions, with too many combinations of scheduling priority and scheduling precision (second, millisecond). Instead of just moving every timeout...

enhancement
glib

Currently if the conversion fails, the code will just panic. This isn't any different from `str::from_value`, which panics on invalid utf-8. related #1047

I want to add support for `TryFrom` in the ValueDelegate macro Eg, I want to do this: ```rust #[derive(ValueDelegate)] #[value_delegate(try_from = u32)] struct MyU16(u16); ``` Clearly, the conversion from a...

enhancement