]> Pileus Git - ~andy/gtk/blob - README.in
Destroy the icon factory with the screen
[~andy/gtk] / README.in
1 General Information
2 ===================
3
4 This is GTK+ version @GTK_VERSION@. GTK+ is a multi-platform toolkit for
5 creating graphical user interfaces. Offering a complete set of widgets,
6 GTK+ is suitable for projects ranging from small one-off projects to
7 complete application suites.
8
9 GTK+ is free software and part of the GNU Project. However, the
10 licensing terms for GTK+, the GNU LGPL, allow it to be used by all
11 developers, including those developing proprietary software, without any
12 license fees or royalties.
13
14 The official download locations are:
15   ftp://ftp.gtk.org/pub/gtk
16   http://download.gnome.org/sources/gtk+
17
18 The official web site is:
19   http://www.gtk.org/
20
21 Information about mailing lists can be found at
22   http://www.gtk.org/mailing-lists.php
23
24
25 Installation
26 ============
27
28 See the file 'INSTALL'
29
30
31 How to report bugs
32 ==================
33
34 Bugs should be reported to the GNOME bug tracking system.
35 (http://bugzilla.gnome.org, product glib.) You will need
36 to create an account for yourself.
37
38 In the bug report please include:
39
40 * Information about your system. For instance:
41
42    - What operating system and version
43    - For Linux, what version of the C library
44
45   And anything else you think is relevant.
46
47 * How to reproduce the bug.
48
49   If you can reproduce it with one of the test programs that are built
50   in the tests/ subdirectory, that will be most convenient.  Otherwise,
51   please include a short test program that exhibits the behavior.
52   As a last resort, you can also provide a pointer to a larger piece
53   of software that can be downloaded.
54
55 * If the bug was a crash, the exact text that was printed out
56   when the crash occured.
57
58 * Further information such as stack traces may be useful, but
59   is not necessary.
60
61
62 Patches
63 =======
64
65 Patches should also be submitted to bugzilla.gnome.org. If the
66 patch fixes an existing bug, add the patch as an attachment
67 to that bug report.
68
69 Otherwise, enter a new bug report that describes the patch,
70 and attach the patch to that bug report.
71
72 Patches should be in unified diff form. (The -up option to GNU diff.)
73
74
75 Release notes for 3.6
76 =====================
77
78 * Now follows the XDG Base Directory specification for user
79   configuration and data files. In detail,
80   * $XDG_CONFIG_HOME/gtk-3.0/custom-papers is the new location
81     for $HOME/.gtk-custom-papers
82   * $XDG_CONFIG_HOME/gtk-3.0/bookmarks is the new location
83     for $HOME/.gtk-bookmarks
84   * $XDG_DATA_HOME/themes is preferred over $HOME/.themes
85   * $XDG_DATA_HOME/icons is preferred over $HOME/.icons.
86   Existing files from the old location will still be read
87   if the new location does not exist.
88
89 * $HOME/.gtk-3.0 is no longer in the default module load path.
90   If you want to load modules from there, add it to the GTK_PATH
91   environment variable.
92
93 Release notes for 3.4
94 =====================
95
96 * Scroll events have been separated from button events, and smooth
97   scrolling has been added with a separate event mask. Widgets now
98   need to have either GDK_SCROLL_MASK or GDK_SMOOTH_SCROLL_MASK in
99   their event mask to receive scroll events. In addition, the
100   GdkScrollDirection enumeration has gained a new member,
101   GDK_SCROLL_SMOOTH, so switch statements will have to be amended
102   to cover this case.
103
104 * GTK+ now uses <Primary> instead of <Control> in keyboard accelerators,
105   for improved cross-platform handling. This should not affect
106   applications, unless they parse or create these accelerator
107   manually.
108
109 * The tacit assumption that the Alt key corresponds to the MOD1
110   modifier under X11 is now a hard requirement.
111
112 * The beagle search backend for the file chooser has been dropped.
113   Tracker is the only supported search backend on Linux now.
114
115 * GtkNotebook has been changed to destroy its action widgets when
116   it gets destroyed itself. If your application is using action
117   widgets in notebooks, you may have to adjust your code to take
118   this into account.
119
120 * GtkApplication no longer uses the gtk mainloop wrappers, so
121   it is no longer possible to use gtk_main_quit() to stop it.
122
123 * The -uninstalled variants of the pkg-config files have been dropped.
124
125 * Excessive dependencies have been culled from Requires: lines
126   in .pc files. Dependent modules may have to declare dependencies
127   that there were getting 'for free' in the past.
128
129
130 Release notes for 3.2
131 =====================
132
133 * The accessible implementations for GTK+ widgets have been integrated
134   into libgtk itself, and the gail module does not exist anymore. This
135   change should not affect applications very much.
136
137 Release notes for 3.0
138 =====================
139
140 * GTK+ 3 is a major new version of GTK+, which is parallel installable
141   with GTK+ 2.x. For information about porting applications from GTK+ 2.x
142   to GTK+ 3, see the file:
143
144   docs/reference/gtk/html/migrating.html
145
146   Or online at:
147
148   http://library.gnome.org/devel/gtk/3.0/migrating.html
149
150 * Note that the library sonames in this release have been changed from
151   libgtk-3.0 and libgdk-3.0 to libgtk-3 and libgdk-3, to prevent the
152   library versions from going backwards, compared to the 2.90/91/99
153   releases. Applications will have to be recompiled.