Skip to content
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

groovy update: regenerate #19

Merged
merged 45 commits into from
Oct 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
5e280a6
groovy update: regenerate
bilelmoussaoui Oct 9, 2020
69073bd
gir: port to new builders syntax
bilelmoussaoui Oct 9, 2020
393e856
gir: remove removed types
bilelmoussaoui Oct 9, 2020
7192518
generate window handle/controls
bilelmoussaoui Oct 9, 2020
58ed2f5
generate a18y types
bilelmoussaoui Oct 9, 2020
afd281f
generate constraints types
bilelmoussaoui Oct 9, 2020
efa1e4a
generate shortcut types
bilelmoussaoui Oct 9, 2020
0d8326a
generate popover types
bilelmoussaoui Oct 9, 2020
ed43575
generate listview types
bilelmoussaoui Oct 9, 2020
42bd1d5
generate column view types
bilelmoussaoui Oct 9, 2020
c44415d
generate grid view types
bilelmoussaoui Oct 9, 2020
46f4779
generate action types
bilelmoussaoui Oct 9, 2020
c05b682
generate filter types
bilelmoussaoui Oct 9, 2020
ba01ccb
generate missing lists
bilelmoussaoui Oct 9, 2020
6c4a683
add missing manual types
bilelmoussaoui Oct 9, 2020
e6c04f4
generate sorter types
bilelmoussaoui Oct 9, 2020
af5fb72
generate expression types
bilelmoussaoui Oct 9, 2020
bf546c9
generate missing layouts
bilelmoussaoui Oct 9, 2020
ec65823
generate emoji chooser
bilelmoussaoui Oct 9, 2020
9cdda98
generate missing drag/drop types
bilelmoussaoui Oct 9, 2020
8e6d20b
generate missing css enums
bilelmoussaoui Oct 9, 2020
8ea37c2
generate selection types
bilelmoussaoui Oct 9, 2020
2a929a7
generate bitset & native types
bilelmoussaoui Oct 9, 2020
2ca0aa3
generate more missing types
bilelmoussaoui Oct 9, 2020
35a56b8
generate missing triggers
bilelmoussaoui Oct 9, 2020
4859b13
generate more missing types
bilelmoussaoui Oct 9, 2020
dea7225
generate tree expander
bilelmoussaoui Oct 9, 2020
2471d28
generate missing builder/buildable types
bilelmoussaoui Oct 9, 2020
4707e29
add missing manual gdk type
bilelmoussaoui Oct 9, 2020
3145cf8
re-generate missing builders
bilelmoussaoui Oct 9, 2020
cfb6cdf
gir: resort & regen
bilelmoussaoui Oct 9, 2020
68c3cc8
make it compile
bilelmoussaoui Oct 11, 2020
9d8ce2f
manual: add gio::Application
bilelmoussaoui Oct 11, 2020
338f6f2
gir: fix gir_check tests
bilelmoussaoui Oct 11, 2020
6558d02
enable v2_66 features & regen
bilelmoussaoui Oct 16, 2020
efe44ef
cargo: use gdk from gtk-rs
bilelmoussaoui Oct 19, 2020
da625df
CI: use a custom image
bilelmoussaoui Oct 19, 2020
1283745
Gir: add missing manual traits
bilelmoussaoui Oct 19, 2020
563e666
rt: remove unneded unsafe blocks
bilelmoussaoui Oct 19, 2020
590ab71
Cargo: use gsk from gtk-rs
bilelmoussaoui Oct 19, 2020
a26645c
re-add gsk::ColorStop
bilelmoussaoui Oct 19, 2020
d1e7aa6
re-add ShortcutTrigger
bilelmoussaoui Oct 19, 2020
308aa93
add ShortcutsShortcut
bilelmoussaoui Oct 19, 2020
86afd71
StringObject: get_string's return isn't nullable
bilelmoussaoui Oct 21, 2020
15d018a
disable *Expression types for now
bilelmoussaoui Oct 21, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 1 addition & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Rust project
runs-on: ubuntu-latest
container:
image: fedora:latest
image: docker.io/bilelmoussaoui/gtk4
strategy:
matrix:
rust:
Expand All @@ -19,7 +19,6 @@ jobs:
- nightly
- "1.40.0"
steps:
- run: sudo dnf install -y gtk4-devel gcc
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ gsk4-sys = { git = "https://github.com/gtk-rs/sys" }
gtk4-sys = { git = "https://github.com/gtk-rs/sys" }
pango-sys = { git = "https://github.com/gtk-rs/sys" }
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
gio = { git = "https://github.com/gtk-rs/gio", features = ["v2_44"] }
gio = { git = "https://github.com/gtk-rs/gio", features = ["v2_46"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gdk4 = { git = "https://github.com/gtk-rs/gdk4" }
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
gsk4 = { git = "https://github.com/gtk-rs/gsk4" }
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf" }
pango = { git = "https://github.com/gtk-rs/pango" }
pango = { git = "https://github.com/gtk-rs/pango", features = ["v1_46"] }

[dev-dependencies]
gir-format-check = "^0.1"
Loading