From c610cd03a7a2238f4a49266b54f8ec3e211c1624 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sat, 10 Apr 2021 15:44:01 +0200 Subject: [PATCH] Replace all "GTK+" with "GTK" --- _config.yml | 2 +- _posts/2015-09-20-Contributor-s-story.md | 2 +- _posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md | 2 +- _posts/2020-04-02-sponsoring-gtk-rs-development.md | 4 ++-- docs-src/index.md | 4 ++-- index.md | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/_config.yml b/_config.yml index ee84c9c89..885c0454b 100644 --- a/_config.yml +++ b/_config.yml @@ -1,7 +1,7 @@ # Site settings title: Gtk-rs description: > # this means to ignore newlines until "baseurl:" - Rust bindings for GTK+ and GLib-based libraries + Rust bindings for GTK and GLib-based libraries baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://gtk-rs.org" # the base hostname & protocol for your site github_username: gtk-rs diff --git a/_posts/2015-09-20-Contributor-s-story.md b/_posts/2015-09-20-Contributor-s-story.md index 573fbdceb..b271ebac7 100644 --- a/_posts/2015-09-20-Contributor-s-story.md +++ b/_posts/2015-09-20-Contributor-s-story.md @@ -10,7 +10,7 @@ The previous posts were about the `Gtk-rs` libraries and issues we encountered. ### Story of imperio -At first, the `Gtk-rs` organization didn't exist. This was a project to provide `GTK+` bindings for `Rust`, started by jeremyletang. I joined him to speed up the development. +At first, the `Gtk-rs` organization didn't exist. This was a project to provide `GTK` bindings for `Rust`, started by jeremyletang. I joined him to speed up the development. At the time, `Rust` wasn't even at its first stable version and breaking changes happened quite often. So beside working on the library itself, we had to make sure it still built with the current `Rust` version. As the project continued to grow, it became more and more difficult to add new features and update the project's code at the same time (the biggest issue was updating all of the old signals system). diff --git a/_posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md b/_posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md index 15c90fa94..a52aacc7b 100644 --- a/_posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md +++ b/_posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md @@ -71,7 +71,7 @@ updating the installed libraries could trigger confusing build failures. Explicitly selecting the version avoids sudden breakage and keeps the user conscious and in control of their project's requirements. -* The version features have been [reintroduced][gtk248]. The baseline GTK+ version +* The version features have been [reintroduced][gtk248]. The baseline GTK version is 3.4, you can opt into higher versions like this: ~~~toml diff --git a/_posts/2020-04-02-sponsoring-gtk-rs-development.md b/_posts/2020-04-02-sponsoring-gtk-rs-development.md index 33bf09c1d..c9ac3b2da 100644 --- a/_posts/2020-04-02-sponsoring-gtk-rs-development.md +++ b/_posts/2020-04-02-sponsoring-gtk-rs-development.md @@ -10,7 +10,7 @@ date: 2020-04-02 18:00:00 +0000 Hi everyone! The [gtk-rs organization][gtk-rs] has been created in 2015. The original goal was to bring -[GTK+][GTK+] library and other libraries from the GNOME platform to the [Rust language][Rust]. We +[GTK][GTK] library and other libraries from the GNOME platform to the [Rust language][Rust]. We now provide 19 bindings and that number will certainly increase even more in the future. As this number continues to increase, our needs are increasing as well. At the same time, various @@ -29,6 +29,6 @@ If you're using [gtk-rs][gtk-rs] and want/can support us, any donation is very w done [here][opencollective]. [gtk-rs]: https://github.com/gtk-rs -[GTK+]: https://www.gtk.org/ +[GTK]: https://www.gtk.org/ [Rust]: https://www.rust-lang.org/ [opencollective]: https://opencollective.com/gtk-rs diff --git a/docs-src/index.md b/docs-src/index.md index 025c721df..2b41e82e7 100644 --- a/docs-src/index.md +++ b/docs-src/index.md @@ -22,11 +22,11 @@ First, prepare your system by taking a look at the [GTK installation page](https - [**pangocairo**](../docs/pangocairo/) - [**sourceview**](../docs/sourceview/) -## [The GTK+ Project documentation](https://www.gtk.org/docs/) +## [The GTK Project documentation](https://www.gtk.org/docs/) ## Versions -By default the `gtk` crate provides only GTK+ 3.14 APIs. You can access more +By default the `gtk` crate provides only GTK 3.14 APIs. You can access more modern APIs by selecting one of the following features: `v3_16`, `v3_18`, `v3_20`, `v3_22`, `v3_24`, `v3_26`, `v3_28`, `v3_30`. `Cargo.toml` example: diff --git a/index.md b/index.md index 1a1ba26e6..f32ee68bb 100644 --- a/index.md +++ b/index.md @@ -5,7 +5,7 @@ layout: wide
-## [Rust] bindings for [GTK+ 3][GTK], [Cairo], [GtkSourceView] and other [GLib]-compatible libraries +## [Rust] bindings for [GTK 3][GTK], [Cairo], [GtkSourceView] and other [GLib]-compatible libraries [![GTK screenshot](gtk.png)](gtk.png) @@ -100,7 +100,7 @@ fn main() { application.connect_activate(|app| { let window = ApplicationWindow::new(app); - window.set_title("First GTK+ Program"); + window.set_title("First GTK Program"); window.set_default_size(350, 70); let button = Button::with_label("Click me!");