Skip to content

Latest commit

 

History

History
181 lines (116 loc) · 5.84 KB

CHANGELOG.md

File metadata and controls

181 lines (116 loc) · 5.84 KB

Change Log

[Unreleased]

[0.6.6]

Bilal Elmoussaoui:

  • gtk: Implement convenience traits for StringObject
  • gtk: Move gtk::StyleContext::add_provider_for_display & gtk::StyleContext::remove_provider_for_display functions outside of gtk::StyleContext type as it was deprecated in GTK 4.10 causing a wrong deprecation warning. Switch to gtk::style_context_add_provider_for_display & gtk::style_context_remove_provider_for_display instead.

Yuri Izmer:

#[derive(Debug, Default, gtk::CompositeTemplate)]
#[template(file = "src/my_widget.blp")] // relative to the project directory
pub struct MyWidget {
    #[template_child]
    pub label: TemplateChild<gtk::Label>,
    #[template_child(id = "my_label2")]
    pub label2: gtk::TemplateChild<gtk::Label>,
}

[0.6.5]

Fabio Valentini:

  • gtk4-macros: enable default features of syn

[0.6.4]

Bilal Elmoussaoui:

  • gtk: Add missing guard to AccessibleRoleToggleButton

[0.6.3]

Bilal Elmoussaoui:

  • gtk/subclass: Adapt per Accessible transfer type changes
  • Bump GTK requirement for v4_10 feature
  • Fix nightly clippy warnings
  • Fix docs generation

Maximiliano Sandoval R:

  • rgba: Add TRANSPARENT const

[0.6.2]

Bilal Elmoussaoui:

  • gtk: Add Accessible interface implementation support

Sebastian Dröge:

  • Add various new GTK 4.10 APIs

[0.6.1]

Julian Hofer:

  • Update book to 0.6
  • book: Fix clippy warnings

Mițca Dumitru:

  • book: Adapt to glib-build-tools breaking change

Sebastian Dröge:

  • gtk4: Use correct length for the StrV when passing to C in ConstraintLayout::add_constraint_from_description()

[0.6.0]

Bilal Elmoussaoui:

yuraiz:

#[derive(Debug, Default, gtk::CompositeTemplate)]
#[template(string = "
template MyWidget : Widget {
    Label label {
        label: 'foobar';
    }
    Label my_label2 {
        label: 'foobaz';
    }
}
")]
pub struct MyWidget {
    #[template_child]
    pub label: TemplateChild<gtk::Label>,
    #[template_child(id = "my_label2")]
    pub label2: gtk::TemplateChild<gtk::Label>,
}

0.5.5

Bilal Elmoussaoui:

Maximilano:

0.5.4

Bilal Elmoussaoui:

0.5.3

Aaron Erhardt:

Bilal Elmoussaoui:

Jason Francis:

Sebastian Dröge:

0.5.2

Marc-Andre Lureau:

nardoor:

0.5.1

Aaron Erhardt:

Bilal Elmoussaoui:

Marc-Andre Lureau: