Skip to content

Commit 7abd857

Browse files
Merge pull request #200 from gtk-rs/gtk+-to-gtk
Replace all "GTK+" with "GTK"
2 parents 178b218 + c610cd0 commit 7abd857

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Site settings
22
title: Gtk-rs
33
description: > # this means to ignore newlines until "baseurl:"
4-
Rust bindings for GTK+ and GLib-based libraries
4+
Rust bindings for GTK and GLib-based libraries
55
baseurl: "" # the subpath of your site, e.g. /blog/
66
url: "https://gtk-rs.org" # the base hostname & protocol for your site
77
github_username: gtk-rs

_posts/2015-09-20-Contributor-s-story.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The previous posts were about the `Gtk-rs` libraries and issues we encountered.
1010

1111
### Story of imperio
1212

13-
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.
13+
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.
1414

1515
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).
1616

_posts/2016-03-15-forget-everything-you-knew-gtk-0.0.7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ updating the installed libraries could trigger confusing build failures.
7171
Explicitly selecting the version avoids sudden breakage and keeps the user
7272
conscious and in control of their project's requirements.
7373

74-
* The version features have been [reintroduced][gtk248]. The baseline GTK+ version
74+
* The version features have been [reintroduced][gtk248]. The baseline GTK version
7575
is 3.4, you can opt into higher versions like this:
7676

7777
~~~toml

_posts/2020-04-02-sponsoring-gtk-rs-development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ date: 2020-04-02 18:00:00 +0000
1010
Hi everyone!
1111

1212
The [gtk-rs organization][gtk-rs] has been created in 2015. The original goal was to bring
13-
[GTK+][GTK+] library and other libraries from the GNOME platform to the [Rust language][Rust]. We
13+
[GTK][GTK] library and other libraries from the GNOME platform to the [Rust language][Rust]. We
1414
now provide 19 bindings and that number will certainly increase even more in the future.
1515

1616
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
2929
done [here][opencollective].
3030

3131
[gtk-rs]: https://github.com/gtk-rs
32-
[GTK+]: https://www.gtk.org/
32+
[GTK]: https://www.gtk.org/
3333
[Rust]: https://www.rust-lang.org/
3434
[opencollective]: https://opencollective.com/gtk-rs

docs-src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ First, prepare your system by taking a look at the [GTK installation page](https
2222
- [**pangocairo**](../docs/pangocairo/)
2323
- [**sourceview**](../docs/sourceview/)
2424

25-
## [The GTK+ Project documentation](https://www.gtk.org/docs/)
25+
## [The GTK Project documentation](https://www.gtk.org/docs/)
2626

2727
## Versions
2828

29-
By default the `gtk` crate provides only GTK+ 3.14 APIs. You can access more
29+
By default the `gtk` crate provides only GTK 3.14 APIs. You can access more
3030
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`.
3131

3232
`Cargo.toml` example:

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ layout: wide
55
<div class="intro-col-wrapper">
66
<div class="intro-col intro-col-1" markdown="1">
77

8-
## [Rust] bindings for [GTK+ 3][GTK], [Cairo], [GtkSourceView] and other [GLib]-compatible libraries
8+
## [Rust] bindings for [GTK 3][GTK], [Cairo], [GtkSourceView] and other [GLib]-compatible libraries
99

1010
[![GTK screenshot](gtk.png)](gtk.png)
1111

@@ -100,7 +100,7 @@ fn main() {
100100

101101
application.connect_activate(|app| {
102102
let window = ApplicationWindow::new(app);
103-
window.set_title("First GTK+ Program");
103+
window.set_title("First GTK Program");
104104
window.set_default_size(350, 70);
105105

106106
let button = Button::with_label("Click me!");

0 commit comments

Comments
 (0)