Skip to content

Commit 205a75d

Browse files
committed
Update branch from master to main
1 parent e6d0643 commit 205a75d

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/typos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
pull_request:
44
push:
55
branches:
6-
- "master"
6+
- "main"
77
jobs:
88
typos:
99
name: Spell Check with Typos

_includes/projects.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
{% endfor %}
1111
</ul>
1212

13-
If you want your app to be added to this list, please create a [Pull Request](https://github.com/gtk-rs/gtk-rs.github.io/edit/master/_data/projects.json) for it.
13+
If you want your app to be added to this list, please create a [Pull Request](https://github.com/gtk-rs/gtk-rs.github.io/edit/main/_data/projects.json) for it.
1414
</details>

_posts/2019-02-21-new-release.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Let's see those in details.
2424

2525
#### Atk
2626

27-
The Atk crate is about accessibility. We thought it was a miss not having it considering how important accessibility is. Now it's fixed! You can find more information directly on the [`Atk` repository](https://github.com/gtk-rs/atk) or in the [accessibility example](https://github.com/gtk-rs/examples/blob/master/src/bin/accessibility.rs).
27+
The Atk crate is about accessibility. We thought it was a miss not having it considering how important accessibility is. Now it's fixed! You can find more information directly on the [`Atk` repository](https://github.com/gtk-rs/atk) or in the [accessibility example](https://github.com/gtk-rs/examples/blob/main/src/bin/accessibility.rs).
2828

2929
#### Callbacks?
3030

@@ -102,7 +102,7 @@ We moved it to `1.31.0` mainly because imports handling is much easier starting
102102

103103
#### subclassing support in GLib
104104

105-
This is a strongly asked feature and we now have it in GLib. A lot of work remains to be done, but it's mostly polishing. At its current state, it can be used already. Take a look at the [listbox_model](https://github.com/gtk-rs/examples/blob/master/src/bin/listbox_model.rs) if you want to see how it works.
105+
This is a strongly asked feature and we now have it in GLib. A lot of work remains to be done, but it's mostly polishing. At its current state, it can be used already. Take a look at the [listbox_model](https://github.com/gtk-rs/examples/blob/main/src/bin/listbox_model.rs) if you want to see how it works.
106106

107107
#### Even more bindings generated
108108

_posts/2019-12-15-new-release.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ passed into the `clicked` signal handler. See also the `Rc` documentation about
4343
The "subclass" cargo feature was removed from all crates and is instead enabled by default with
4444
this release. The GObject subclassing support matured a lot over the last months and is ready for
4545
wider usage. A basic example for subclassing `gtk::Application` and `gtk::ApplicationWindow` can
46-
be found [here](https://github.com/gtk-rs/examples/blob/master/src/bin/basic_subclass.rs), another
46+
be found [here](https://github.com/gtk-rs/examples/blob/main/src/bin/basic_subclass.rs), another
4747
example using custom `glib::Object` subclasses as part of a `gtk::ListBox` model can be found
48-
[here](https://github.com/gtk-rs/examples/blob/master/src/bin/listbox_model.rs) and various examples
48+
[here](https://github.com/gtk-rs/examples/blob/main/src/bin/listbox_model.rs) and various examples
4949
for creating GStreamer elements [here](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs).
5050

5151
While there are still subclassing bindings missing for many types, various basic types in the `gio`,
@@ -69,7 +69,7 @@ way that looks close to the equivalent synchronous code. Check
6969
Rust blog for more details.
7070

7171
An example making use of this with `gio`'s asynchronous file reading support can be found
72-
[here](https://github.com/gtk-rs/examples/blob/master/src/bin/gio_futures_await.rs). While it is
72+
[here](https://github.com/gtk-rs/examples/blob/main/src/bin/gio_futures_await.rs). While it is
7373
not as streamlined as with native Rust crates like [async-std](https://async.rs) or
7474
[tokio](https://tokio.rs) because of how the `gio` API works, it nonetheless much more convenient
7575
to work with than the previous (but still available) callback-based approach.

faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Currently we only add crates to the gtk-rs project that are required for the exi
2121

2222
You can find more examples in the corresponding repositories
2323

24-
- [gtk-rs-core/examples](https://github.com/gtk-rs/gtk-rs-core/tree/master/examples)
25-
- [gtk4-rs/examples](https://github.com/gtk-rs/gtk4-rs/tree/master/examples)
24+
- [gtk-rs-core/examples](https://github.com/gtk-rs/gtk-rs-core/tree/main/examples)
25+
- [gtk4-rs/examples](https://github.com/gtk-rs/gtk4-rs/tree/main/examples)
2626

2727
or have a look at the source code of the projects listed on our [start page](/#projects-using-gtk-rs).
2828

0 commit comments

Comments
 (0)