Merge pull request #37 from vanillajonathan/patch-2

Update Readme.md
This commit is contained in:
ToshioCP 2022-11-21 10:45:57 +09:00 committed by GitHub
commit a6da48a796
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
# Gtk4 Tutorial for beginners
# GTK 4 Tutorial for beginners
The github page of this tutorial is also available. Click [here](https://toshiocp.github.io/Gtk4-tutorial/).
The GitHub page of this tutorial is also available. Click [here](https://toshiocp.github.io/Gtk4-tutorial/).
#### Contents of this Repository
This tutorial illustrates how to write C programs with the Gtk4 library.
This tutorial illustrates how to write C programs with the GTK 4 library.
It focuses on beginners so the contents are limited to the basics.
The table of contents is at the end of this abstract.
@ -18,20 +18,20 @@ You can read it from there directly without having to download anything.
#### Gtk4 Documentation
Please refer to [Gtk API Reference](https://docs.gtk.org/gtk4/index.html)
and [Gnome Developer Documentation Website](https://developer.gnome.org/) for further information.
Please refer to [GTK API Reference](https://docs.gtk.org/gtk4/index.html)
and [GNOME Developer Documentation Website](https://developer.gnome.org/) for further information.
These websites are newly opened lately (Aug/2021).
The old documentation is located at [Gtk Reference Manual](https://developer-old.gnome.org/gtk4/stable/) and [Gnome Developer Center](https://developer-old.gnome.org/).
The new website is in progress at present, so you might need to refer to the old version.
If you want to know about GObject and the type system, please refer to [GObject tutorial](https://github.com/ToshioCP/Gobject-tutorial).
The GObject details are easy to understand and also necessary to know when writing Gtk4 programs.
The GObject details are easy to understand and also necessary to know when writing GTK 4 programs.
#### Contribution
This tutorial is under development and unstable.
Even though the codes of the examples have been tested on Gtk4 version 4.0, bugs may still exist.
Even though the codes of the examples have been tested on GTK version 4.0, bugs may still exist.
If you find any bugs, errors or mistakes in the tutorial and C examples, please let me know.
You can post it to [github issues](https://github.com/ToshioCP/Gtk4-tutorial/issues).
You can also post corrected files as a commit to [pull request](https://github.com/ToshioCP/Gtk4-tutorial/pulls).