1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
|
2006-10-24 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.6.2
* gxmessage.c: (cb_timeout, window_create): fixed 2 casting bugs
* examples/*: use #!/bin/sh rather than bash where possible
2006-05-06 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.6.1
* gxmessage.c (window_create): allow auto-sizing for slightly longer files
* examples/xinitrc: new example from Han Boetes
* examples/gxview: added a command line option to wrap long lines
* HACKING: new file
2006-01-23 Tim Musson <trmusson@ihug.co.nz>
* configure.in:
- version to 2.6.0
- added sv to ALL_LINGUAS
- require GTK >= 2.6
* po/sv.po: added Swedish translation (thanks to Daniel Nylander)
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=348153)
* gxmessage.c:
- close the window if <ESC> is pressed (patch from Dmitry Petukhov)
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=310663)
- fixed deprecated GTK function calls:
s/gtk_timout_add/g_timeout_add/
s/gtk_timeout_remove/g_source_remove/
* gxmessage.1: updated man page
* examples/nautilus-word-count: bugfix (cope with spaces in filenames)
2005-05-22 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.4.4
* gxmessage.c:
- allow chars in button labels to be escaped using backslashes
- added gtk_widget_set_name: gxmessage-textview, gxmessage-entry
- font no longer defaults to "monospace" if no -fn given
- automatic window sizing if no -geometry given
- removed some redundant -geometry parsing code
- place cursor at beginning of message
* examples/gtkrc, examples/nautilus-word-count: added
* gxmessage.1, examples/*: updated
2005-03-06 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.4.3
* gxmessage.c:
- (my_gtk_init): a better work around for gtk_init hassles
(related to bugzilla.gnome.org #168008)
- the -help and -version options can now be used without gtk running
- misc small cleanups
* gxmessage.1: updated
* gxmessage.png: new gnome-ish icon
2005-02-22 Tim Musson <trmusson@ihug.co.nz>
* configure.in:
- version to 2.4.2
- set up conditional compilation according to GTK version
* gxmessage.c:
- (option_kludge): work around hassles with gtk_init 2.6.x
- (window_create): hide gtk_window_set_accept_focus if gtk < 2.4
- option array bugfix: -nofocus shouldn't expect an argument
- new -entrytext "hello" option
- misc tweaks suggested by Tom (tpgww AT onepost DOT net)
* gxmessage.1, README: updated
2005-02-20 Tim Musson <trmusson@ihug.co.nz>
* gxmessage.c:
- (window_create):
- unhide cursor, to allow text selection via keyboard
- don't draw a separator above the botton box
- (button_new_from_str): use original str, don't allocate new memory
- (main): bugfix - finish parsing other options before reading -file
- misc small cleanups
2005-02-17 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.4.1
* examples/*: minor improvements
2005-02-16 Tom (tpgww AT onepost DOT net)
* gxmessage.c:
- HIG'ify the buttons layout
- support button labels like GTK_STOCK_OK, for using Gtk stock buttons
- clean up a few old macros
* gxmessage.1:
- update the man content accordingly
2004-11-28 Tim Musson <trmusson@ihug.co.nz>
* configure.in:
- version to 2.4.0
- require gtk+-2.0 >= 2.4 (for gtk_window_set_accept_focus)
* gxmessage.c:
- new -nofocus option (suggested by Miek Gieben)
- (main): like xmessage, don't complain about multiple '-file' options
- (window_create): removed unused/useless window sizing code
- (window_create): don't attempt to change fg/bg colours if
gdk_color_parse fails
* gxmessage.1: updated man page, and fixed a typo in the --buttons section
* examples/gxman: minor tweaks
2004-04-15 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.11
* po/sk.po: updated (thanks to Jan Matis)
* gxmessage.c: (window_create):
- removed the unnecessary vbox that was interfering with scrolling
- spacing and padding tweaks
* examples/gxman, examples/gxaddress: added
* examples/gxdialup, gxdict, gxview: improved examples
2004-03-26 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.10
* po/sk.po: updated (thanks, Jan!)
* gxmessage.c:
- new -wrap option (thanks to Jan Matis for the suggestion)
- new -encoding option
- (main, read_stdin):
added checks for NULL returns from g_string_* functions
* gxmessage.1: updated
2004-03-19 Tim Musson <trmusson@ihug.co.nz>
* configure.in:
- version to 2.0.9
- added sk to ALL_LINGUAS
* po/sk.po: added Slovak language translation (thanks to Jan Matis)
* Makefile.am: minor cleanup
* examples/gxview: added
* examples/dxdict & gxdialup: minor tweaks
2004-03-10 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.8
* gxmessage.c: (message_to_utf8):
if g_locale_to_utf8 fails, assume input charset is ISO-8859-1
2004-03-09 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.7
* gxmessage.c: use g_locale_to_utf8 (bugfix, thanks to Jan Matis)
2004-03-03 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.6
* gxmessage.c:
- new -borderless option (thanks to Miek Gieben for the suggestion)
- removed redundant calls to gtk_widget_show
* gxmessage.1: updated
* examples/gxdialup: minor cleanup
* examples/gxdict: added
2003-10-12 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.5
* README, gxmessage.1: minor documentation tweaks
* Makefile.am, gxmessage.c, gxmessage.png: icon added
* Makefile.am, configure.in, gxmessage.c, po/*:
I've put gettext support back in. *blushes*
2003-09-27 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.4
* source package tidied up
* gxmessage.1: rough man page added
* examples/gxdialup: replaces old examples
* gxmessage.c:
-fg and -bg options now work.
-fn | -font option now works (er, but only with GTK font names).
The message display widget is now a GtkTextView.
i18n stuff removed (I'm the only one using this prog, after all ;)
2002-07-06 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.3
* src/gxmessage.c: automatic window sizing if no -geom given
* src/gxmessage.c: file reading is now done by g_file_get_contents
* src/gxmessage.c: -fn/-font now (kind of) works (with "fixed" only)
* src/gxmessage.c, src/Makefile.am: *_DISABLE_DEPRECATED
* examples/*.sh: removed -geometry settings
2002-06-29 Tim Musson <trmusson@ihug.co.nz>
* Added examples/dialup.sh
2002-06-20 Tim Musson <trmusson@ihug.co.nz>
* configure.in: version to 2.0.2
* gettextize
* src/gxmessage.c:
gtk_widget_set_name -> "gxmessage_viewport" and "gxmessage-text"
* Added examples/gtkrc-2.0
2002-06-20 Tim Musson <trmusson@ihug.co.nz>
* 2.0.1
* Added automake stuff.
2002-06-20 Tim Musson <trmusson@ihug.co.nz>
* 2.0.0
* gxmessage.c is decent.
|