Skip to content

Replace all "GTK+" with "GTK" #200

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

Merged
merged 1 commit into from
Apr 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion _posts/2015-09-20-Contributor-s-story.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion _posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions _posts/2020-04-02-sponsoring-gtk-rs-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions docs-src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ layout: wide
<div class="intro-col-wrapper">
<div class="intro-col intro-col-1" markdown="1">

## [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)

Expand Down Expand Up @@ -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!");
Expand Down