Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fixed typo in nickchange message |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
516d875231154893745b0f019f37c829 |
User & Date: | patthoyts 2009-10-15 20:52:14.000 |
Context
2009-12-13
| ||
01:23 | [wm state] doesn't support zoomed on x11. changed the web browser handling for unix to look for more recent commands line xdg-open and chrome. Avoid the -remote stuff (can still be set manually) check-in: 634a4cd47c user: patthoyts tags: trunk | |
2009-10-15
| ||
20:52 | Fixed typo in nickchange message check-in: 516d875231 user: patthoyts tags: trunk | |
2009-09-24
| ||
10:40 | * tkchat.tcl (::tkchat::Smile): Unset IMGre before reinitializing the emoticons, or it will keep growing. Only reinitialize when it was explicitly asked for (i.e. not on re-logins). check-in: 940345d5fa user: rmax tags: trunk | |
Changes
Changes to apps/tkchat/ChangeLog.
1 2 3 4 5 6 7 | 2009-09-24 Reinhard Max <[email protected]> * tkchat.tcl (::tkchat::Smile): Unset IMGre before reinitializing the emoticons, or it will keep growing. Only reinitialize when it was explicitly asked for (i.e. not on re-logins). 2009-08-12 Elchonon Edelson <[email protected]> | > > > > | 1 2 3 4 5 6 7 8 9 10 11 | 2009-10-15 Pat Thoyts <[email protected]> * tkchat.tcl: Fix typo spotted by mistachkin. 2009-09-24 Reinhard Max <[email protected]> * tkchat.tcl (::tkchat::Smile): Unset IMGre before reinitializing the emoticons, or it will keep growing. Only reinitialize when it was explicitly asked for (i.e. not on re-logins). 2009-08-12 Elchonon Edelson <[email protected]> |
︙ | ︙ |
Changes to apps/tkchat/tkchat.tcl.
︙ | ︙ | |||
275 276 277 278 279 280 281 | } } namespace eval ::tkchat { variable chatWindowTitle "The Tcler's Chat" variable HEADUrl {http://tcllib.cvs.sourceforge.net/*checkout*/tcllib/tclapps/apps/tkchat/tkchat.tcl?revision=HEAD} | | | 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | } } namespace eval ::tkchat { variable chatWindowTitle "The Tcler's Chat" variable HEADUrl {http://tcllib.cvs.sourceforge.net/*checkout*/tcllib/tclapps/apps/tkchat/tkchat.tcl?revision=HEAD} variable rcsid {$Id: tkchat.tcl,v 1.476 2009/10/15 20:52:14 patthoyts Exp $} variable MSGS set MSGS(entered) [list \ "%user% has entered the chat!" \ "Out of a cloud of smoke, %user% appears!" \ "%user% saunters in." \ "%user% wanders in." \ |
︙ | ︙ | |||
307 308 309 310 311 312 313 | "%user% zakt door de vloer en is weg." \ "%user% vertrekt stilletjes." \ ] set MSGS(nickchange) [list \ "In a fit of schizophrenia, %user% would like to be known as %newuser%." \ "%user% replaces their old hat with a new one called %newuser%." \ "The Amazing %user% switches to their secret identity, mild mannered %newuser%." \ | | | 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 | "%user% zakt door de vloer en is weg." \ "%user% vertrekt stilletjes." \ ] set MSGS(nickchange) [list \ "In a fit of schizophrenia, %user% would like to be known as %newuser%." \ "%user% replaces their old hat with a new one called %newuser%." \ "The Amazing %user% switches to their secret identity, mild mannered %newuser%." \ "Amidst a burst of smoke, %user% disappears and %newuser% materializes." ] # Variables to control the search function. variable searchString "" variable searchOffset end # a variable to support nickname completion |
︙ | ︙ |