igr.mods 175 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446
  1. Jan 2023 2.02.31
  2. ------------------------------------------------------------------------------
  3. cursor.c #cursor {get} will escape braces and other special characters.
  4. config.c Added the CONFIG event which triggers when a config option is
  5. set. %0 holds the option name, and %1 the value set.
  6. mapper.c When saving #map list to a table the vnum is now automatically
  7. included.
  8. data.c Added #info output which can be used to access the most recent
  9. data received from the mud.
  10. config.c Hybernate is now hibernate. Let's pretend that never happened.
  11. config.c Added #config hibernate on/off. When enabled it will reduce
  12. the idle cpu overhead by 90%, though tintin will be more
  13. sluggish and timers will fire with decreased accuracy.
  14. trigger.c A multi-line action can now trigger multiple times per block
  15. of text, skipping to the next unmatched line after each match.
  16. nest.c Fixed a bug reported by dzp where $var[] didn't behave
  17. identical to $var[%*].
  18. show.c A #showme containing a \n sequence will exclusively trigger
  19. multi-line triggers.
  20. history.c Added the HISTORY UPDATE event, %0 contains the command being
  21. added to the command history.
  22. help.c Added #help triggers which explains multi-line triggers.
  23. regex.c Added initial support for multi-line triggers.
  24. mapper.c The roomdesc now requires %a instead of %* to match multiple
  25. lines in searches.
  26. net.c Added the %1 argument to the RECEIVED OUTPUT event, which
  27. holds the plain text version of the data received.
  28. regex.c Added a warning when matching escape codes in a trigger
  29. without the trigger starting with a '~'.
  30. line.c Added #line logmode stamp option to force the adding of a
  31. timestamp when using #line log.
  32. config.c Added #config compact which is disabled by default. When
  33. enabled it can get rid of blank lines surrounding a gagged
  34. prompt line.
  35. substitute.c Fixed #alias and #function so #info arguments save works.
  36. line.c #line log no longer prints a stamp if #log timestamp is set,
  37. unless you're writing to the active log file.
  38. main.c The terminal title set with tt++ -t will now reset on exit.
  39. variable.c Added support for #format %.-3s which will print the last
  40. 3 characters of the string.
  41. regex.c It should now be possible to use %+10* %+1..5* etc
  42. variable.c Fixed a crash bug in #cat reported by dzp.
  43. tokenize.c Colorized some of the #debug messages, and added a debug
  44. message to mark the end of a trigger.
  45. tokenize.c Added error message for #foreach, #loop, #parse, #switch,
  46. #while, and #regex if invalid syntax is used.
  47. net.c Fixed a display problem related to #config packet_patch in
  48. vertical split mode.
  49. mapper.c Changed the usage of float to double to fix rounding issues in
  50. path calculations.
  51. Jul 2022 2.02.30
  52. ------------------------------------------------------------------------------
  53. help.c #help and #command when used with no argument display the
  54. entries as columns instead of rows.
  55. ../docs/ I got started on a tintin generated github website.
  56. https://scandum.github.io/tintin
  57. mapper.c Using #map exit <exit> dir 0, will now properly save.
  58. screen.c #screen set rows/cols will now properly initialize the new
  59. rows/cols setting for the screen dimensions. This will be
  60. global for all sessions. The values are reset when resizing
  61. the terminal.
  62. telopt_client.c Updated the TTYPE MNES negotiation to report a standardized
  63. charset value.
  64. telopt_client.c Updated the TTYPE MTTS negotiation to report SSL support if
  65. GnuTLS is included in the compilation.
  66. telopt_client.c Updated the TTYPE MTTS negotiation to report MSLP and mouse
  67. support if #config mouse is set to on.
  68. draw.c #draw SCALED will not scale horizontally when combined with
  69. the VERTICAL flag.
  70. gui.h Updated the connection manager (tt++ -g) with new sponsors and
  71. some bug fixes.
  72. trigger.c #prompt with a row argument of 0 will behave like #substitute.
  73. input.c Fixed memory access violation identified by dzp.
  74. line.c Updated #line gag to support #line gag [amount], you can use
  75. + or - to increase or decrease the current amount.
  76. mapper.c Added {both} option to #map exit and entrance where
  77. applicable.
  78. list.c Added #list {var} refine {keep} {remove}. Keep and remove must
  79. be a mathematical expression, the keep argument is ignored if
  80. {} is used, the remove expression is optional. #list indexate
  81. must be used to refine tables. In the expression &0 must be
  82. used as the placeholder of the item value being compared.
  83. draw.c If you #draw with both the talign and balign flags set the
  84. text will be centered vertically.
  85. mapper.c Added #map flag symbolgraphics support to #map flag mudfont
  86. line.c Added #line json <variable> <command> with &0 containing the
  87. variable's value translated to json.
  88. telopt_client.c IAC SB GMCP <MODULE> %0 data %1 plain data
  89. has been changed to
  90. IAC SB GMCP <MODULE> %0 data %1 data %2 plain data
  91. trigger.c Fixed a bug with using #highlight {[}
  92. list.c Added #list <list> numerate to renumber a list or table.
  93. list.c Proper lists will be renumbered after using #list filter.
  94. net.c Added a GAG NO SESSION ACTIVE event to block the NO SESSION
  95. ACTIVE message. %0 holds the command.
  96. regex.c Added %c for regular expressions which captures color codes.
  97. mapper.c Added #map flag fast which will limit coordinate searches to
  98. a 50 room radius. Improves the speed of map drawing and auto
  99. linking on large maps. This can result in the mapper failing
  100. to auto link if the path connecting two rooms exceeds the
  101. search radius.
  102. split.c Moving the cursor back to the scroll region if #split is used
  103. in an #action.
  104. parse.c No longer echoing hashbangs/shebangs unless tt++ -v is used.
  105. tables.c Fixed two errors in the ascii table, patch by dzp.
  106. net.c Added tcp keepalive at the socket level, patch by beinvisible.
  107. Sep 2021 2.02.20
  108. ------------------------------------------------------------------------------
  109. main.c Added -H startup option to run tintin in a nohup compatible
  110. mode.
  111. list.c Changed #list explode to support:
  112. #list {var} {explode} {separator}
  113. The separator can be {;} or {\n} or anything else. Variables
  114. and escape codes in the separator are substituted. This turns
  115. a variable into a list using the given separator.
  116. list.c Updated #list collapse to support:
  117. #list {var} {collapse} {separator}
  118. The separator can be {;} or {\n} or anything else. Variables
  119. and escape codes in the separator are substituted. This turns
  120. a list into a variable.
  121. buffer.c Updated #buffer find to support:
  122. #buffer {find} {[number]} {<string>} {[variable]}
  123. The number must now be -1, -2, etc to search starting from the
  124. end of the buffer, and 1, 2, etc to search from the start.
  125. buffer.c Updated #buffer clear to support:
  126. #buffer {clear} {[lower bound]} {[upper bound]}
  127. tokenize.c Increased the buffer size of #foreach to 1 million bytes, can
  128. be adjusted in tintin.h by changing MALLOC_SIZE.
  129. data.c Added #info arguments [save] option that will display all
  130. arguments / matches of the most recently fired trigger.
  131. data.c Added #info matches [save] option that will display all
  132. matches of the most recently fired command like #regex.
  133. data.c #kill all will no longer remove pathdirs.
  134. telopt_client.c Fixed an incorrect rejection response for the charset telopt.
  135. mapper.c Fixed #map goto jumping to the room you're currently in on a
  136. failed search.
  137. telopt_client.c Fixed handling of empty arrays for gmcp.
  138. mapper.c Added #map flag pancake which will display rooms on the map
  139. above and below you while enabled. You can use #map color
  140. room <aaa><fff> to display rooms with a white to black color
  141. gradient in pancake mode. To easily view color gradients use:
  142. #loop 6 0 i #draw scroll bar 1 1 1 40 {$i;6;<aaa><fff>}
  143. session.c The SESSION CREATED and SESSION CONNECTED will store the file
  144. name, if provided, in the %4 argument.
  145. draw.c #draw line now takes a text argument which can be further
  146. manipulated with the CALIGN and RALIGN flags, LALIGN is the
  147. default.
  148. session.c The SESSION CONNECTED event now triggers after the SESSION
  149. CREATED event.
  150. session.c Changed GAG SESSION DISCONNECTED to GAG SESSION DESTROYED.
  151. mapper.c Added the #map info save option.
  152. utf8.c Updated the cp949 to utf8 table with additional characters.
  153. May 2021 2.02.12
  154. ------------------------------------------------------------------------------
  155. input.c Added RECEIVED INPUT CHARACTER event that triggers on each
  156. character added to the input buffer. %0 holds the character,
  157. %1 the unicode index, %2 the byte size, %3 the character's
  158. display width.
  159. cursor.c Added #cursor tab caseless option to make tab completion case
  160. incensitive.
  161. dict.c Added #cursor tab dictionary option to tab through the
  162. dictionary.
  163. log.c Added #log timestamp <format>. The format follows strftime as
  164. described in #help time. Timestamps will be prepended to each
  165. line of log output.
  166. log.c Added #log move <filename> <filename> to move files.
  167. log.c Added #log remove <filename> to remove files.
  168. variable.c #format %r now ignores color and escape codes.
  169. data.c Added the #info tokenizer option to have a peek at the stack
  170. of the scripting engine. Use case example:
  171. #event {RECEIVED ERROR}
  172. {
  173. #echo <118>%h { TOKENIZER };
  174. #info tokenizer -1;
  175. #echo <118>%h
  176. }
  177. path.c #path load now automatically adds reverse directions.
  178. mapper.c Added support for #map list {roomflag} {!void} etc.
  179. line.c Added #line substitute braces which will turn { and } into
  180. \x7B and \x7D.
  181. mapper.c Added #map list {{distance}{5}} to list all rooms within a
  182. weighted distance of 5. Keep in mind this goes by weight,
  183. which starts at 1.0 and increases by 2.0 per room by default.
  184. cursor.c Added #cursor flag eol {cr|lf|crlf|crnul|off} to change the
  185. default end of line character between \r \n \r\n and \r\0.
  186. log.c Changed logging to where it logs data before it's wrapped by
  187. the client.
  188. mapper.c Added support for roomsymbol lengths up to 5 characters in
  189. unicode, and 6 characters in ascii graphics mode.
  190. mapper.c Added the option to #map list/find to use * as a roomexit.
  191. This will make the search ignore non-pathdir exits without
  192. an exit direction.
  193. Mar 2021 2.02.11
  194. ------------------------------------------------------------------------------
  195. draw.c #draw BALIGN will push text to the bottom if there aren't
  196. enough lines to fill the entire square.
  197. main.c Synchronized terminal resize handling which might fix some odd
  198. crashes.
  199. variable.c Getting rid of #format %C for chronological formatting since
  200. I'm abandoning chronological notation support. While it was
  201. a cute feature it's more important to support the ? : ternary
  202. operation. This frees up the %C argument for a more complex
  203. column operation.
  204. mapper.c Added support to use #map list 1..6 to provide a vnum range.
  205. substitute.c Added \u{} which supports between 2 and 6 hexadecimals.
  206. data.c Added the #info input and #info input save option.
  207. data.c Added the #info environ and #info environ save option.
  208. main.c Added SIGUSR event. %0 will contain either 1 or 2.
  209. #event {SIGUSR} {#showme RECEIVED SIGUSR %0}
  210. #info system save
  211. #system {kill -USR1 $info[SYSTEM][PID]
  212. main.c Added SIGHUB event which should trigger when the terminal is
  213. closed with TinTin++ still running inside. You can use
  214. #event {SIGHUB} {#end} to have tintin close normally.
  215. session.c Added #snoop {session} scroll {on|off} to snoop a session's
  216. scroll region, which will be printed on top of the active
  217. session's screen.
  218. math.c Made #math / #if about 3x faster.
  219. math.c Updated // to support powers other than 2 and 3.
  220. regex.c Changed %w to match any letter, number, or underscore instead
  221. of just letters, to make it match \w. Same for %W.
  222. Nov 2020 2.02.10
  223. ------------------------------------------------------------------------------
  224. split.c Now allowing #showme {text} {-1} to place text on the input
  225. line without #split being enabled.
  226. trigger.c Changed #tick to lazily get the second argument.
  227. files.c Added the READ FILE [NAME] event, triggers after a file has
  228. been read. %0 holds the file name.
  229. draw.c Added color gradient support to #draw bar. To use it you
  230. must specify two 256 color foreground codes for the color
  231. field and based on the min;max value it will pick a color
  232. somewhere in between.
  233. #loop 1 9 i #draw <DDF> scroll bar 1 1 1 40 {$i;9;<faa><afa>}
  234. draw.c Added the BAR drawing type. Currently only horizontal bars
  235. are supported, but for forward compatibility you should draw
  236. bars using #draw horizontal bar {square} {<min>;<max>;[color]}
  237. The width of the bar will be that of the square coordinate.
  238. trigger.c Added support for 10 digit precision delays. The main
  239. utility of this is execution order.
  240. #delay 0.00003 #show A;#delay 0.00002 #show B
  241. Since delays are processed in 0.01 second intervals these will
  242. both trigger within 0.01 seconds, but the display order will
  243. be: B A rathern than A B.
  244. path.c Added MAPPING and RUNNING to #path get.
  245. MAPPING returns 1 when path mapping, otherwise 0.
  246. RUNNING returns the delay until the next run, otherwise 0.00.
  247. #path get <variable> without an argument will store the
  248. length, position, mapping, and running values in a table.
  249. trigger.c Storing the creation time of tickers and delays in arg4, can
  250. be obtained using #info tickers/delays save.
  251. substitute.c Added support to call @function{} as @{function}{}.
  252. event.c The SCREEN FOCUS event no longer requires #config mouse to
  253. be enabled.
  254. math.c % in #math now supports floating point modulo operations.
  255. data.c #info will save #info variables to $info[VARIABLES] rather
  256. than $info[VARIABLE]. Same for other lists.
  257. list.c Added #list {var} filter {keep} {remove}. Keep and remove
  258. must be a regex pattern, the keep regex is ignored if {} is
  259. used, the remove regex is optional. #list indexate must be
  260. used to filter tables.
  261. utf8.c Added #config charset cp949 for Korean.
  262. Oct 2020 2.02.05
  263. ------------------------------------------------------------------------------
  264. variables.c Added the #unlocal command.
  265. files.c Table variables are now written to file with indentation.
  266. utf8.c Decreased the memory footprint of BIG-5 / GBK-1 support.
  267. variable.c The VARIABLE UPDATE event now reports the path in the %2
  268. argument.
  269. May 2020 2.02.04
  270. ------------------------------------------------------------------------------
  271. help.c Updated the MSLP helpfile.
  272. scan.c Added #scan forward, does the same as #textin.
  273. substitute.c Added a warning when using &variable on an undefined variable
  274. in math operations.
  275. draw.c Updated the #draw line mode to behave more distinct from the
  276. #draw side mode. When teed a horizontal line can have only
  277. the left or right side teed when specified. Similarly a
  278. vertical line can have the top or bot side teed.
  279. banner.c Added the tt++ -g startup option to startup tintin with a gui.
  280. So far it only supports a connection manager.
  281. main.c Added the SYSTEM CRASH event, %0 holds the error message.
  282. screen.c #screen inputregion now takes a 5th argument to assign a
  283. name, can be used with the RECEIVED INPUT [NAME] event.
  284. screen.c Added #screen swap, swaps the input and scroll region height.
  285. mapper.c The MAP ENTER ROOM and MAP EXIT ROOM events will store the
  286. direction traveled in the %2 argument.
  287. draw.c #draw CALIGN will prune and center text.
  288. #draw LALIGN will prune and left align text.
  289. #draw RALIGN will prune and right align text.
  290. #draw TALIGN will show the top of the text if it is too long
  291. to fit the square, cutting off the bottom. The default is to
  292. bottom align and cut off the top.
  293. #draw UALIGN will unwrap and rewrap text.
  294. math.c Added very basic ? : ternary operator support in #math. It
  295. currently only supports simple assignments like:
  296. #math result $variable < 5 ? 0 : $variable
  297. screen.c Added several #screen get INPUT_ options.
  298. daemon.c Added DAEMON ATTACHED and DAEMON DETACHED events.
  299. mapper.c Added #map flag quiet, gets rid of build walk spam.
  300. event.c With mouse pixel mode enabled the %7 argument of a mouse
  301. event will contain nw, n, ne, w, c, e, sw, s, se, depending
  302. on where on a character you clicked.
  303. You can, for example use #if {"%7" == "{nw|w|sw}"} to check
  304. if the left side of a character was clicked.
  305. help.c Added #help edit and #help editing
  306. config.c Added the #config mouse pixels option for pixel precision.
  307. Requires the latext xterm or mintty release to work.
  308. tokenize.z The default ! repeat character can now be used in scripts.
  309. Use with caution. To repeat the last command when you press
  310. ctrl-enter use: #macro {\e[13;5u} {!}
  311. tintin.h Increased BUFFER_SIZE from 30KB to 40KB.
  312. screen.c Added #screen scrollbar on/off, currently only works with
  313. mintty / wintin++. Allows using the scrollbar with tintin's
  314. own scrollback buffer. Works automatically once enabled.
  315. list.c Changed #list simplify to work in a similar manner as
  316. #list sort and #list order.
  317. draw.c #draw now takes a second color argument. First color argument
  318. sets the box color, the second sets the text color.
  319. split.c Updated #split to take a 5th argument to set the height of
  320. the input region, #split without an argument defaults to
  321. #split 0 1 0 0 1.
  322. event.c Added event group lookups, can use #event mouse to see all
  323. mouse events.
  324. edit.c Added the [CATCH] EDIT FINISHED and EDIT STARTED events.
  325. cursor.c Added #cursor {page} which has several sub-options that can
  326. be used in edit mode.
  327. ctrl-home is bound by default to #cursor page home
  328. ctrl-end is bound by default to #cursor page end
  329. cursor.c Added #cursor {soft enter} which allows inserting new lines
  330. while in edit mode, it's bound to shift-enter by default. A
  331. regular enter will exit edit mode.
  332. edit.c Added the #edit command, used to enter edit mode and perform
  333. various edit buffer operations.
  334. cursor.c Added #cursor up and #cursor down, moves cursor up/down in
  335. multiline input regions.
  336. event.c Added the INPUT MOUSE event, which triggers when using the
  337. mouse in the input region.
  338. cursor.c Added multiline input support. Use #screen inputregion to
  339. enable. For example:
  340. #screen inputregion -3 1 -1 -1
  341. #split 0 3
  342. cursor.c #cursor preserve macro and reset macro have been moved to
  343. #cursor macro {preserve|reset}
  344. #cursor echo and #cursor insert have been moved to
  345. #cursor flag {echo|insert} {on|off}
  346. input.c Added infinite input support, TinTin++ will still crash
  347. somewhere down the line until the rest of the engine has
  348. infinite string support as well. When CHILD LOCKED the
  349. input buffer is capped.
  350. class.c Added #event CLASS LOAD <NAME>, triggers after a class is
  351. loaded.
  352. Added #event CLASS CLEAR <NAME>, triggers before a class is
  353. cleared.
  354. scan.c Added the #scan dir <dir> <variable> option, will scan the
  355. given file or directory and store the info in the provided
  356. variable.
  357. scan.c Modernized #scan, includes a warning when the old syntax is
  358. used.
  359. variable.c #return now returns a local result, this should solve issues
  360. with function nesting.
  361. list.c Added #list {<list>} index {nest} which can be used to index
  362. a two dimensional table as a one dimensional list. After a
  363. table has been indexed, #list find, order, sort, and reverse
  364. will work.
  365. triggers.c Added the <900> color tag which can be used in substitutions
  366. to restore the text color to the original text color.
  367. #sub {\bsmurf\b} {<bdf>smurf<900>}
  368. #showme {<afa>A smurf is smurfing here.}
  369. draw.c Added the SCALED drawing option. When used the size of the
  370. square is increased depending on the size of the inputted
  371. text.
  372. buffer.c #buffer find now places the found keyword at the top instead
  373. of at the bottom of the page.
  374. path.c Added #path save {BOTH} <variable> to save both the forward
  375. and backward path, as well as any given delays. Keep in mind
  376. that delays will only work properly for forward going paths.
  377. path.c Added a third field to #path insert to specify the delay.
  378. mapper.c Added a delay field to #map exits, which will be used
  379. when using #path run with a delay argument.
  380. data.c Added #info sessions save which will save the data on all
  381. sessions to $info[SESSIONS].
  382. data.c #info session save now saves the data to $info[SESSION][NAME]
  383. rather than to $info[SESSION][SESSION_NAME]
  384. cursor.c Added #cursor position <column> to move the cursor to the
  385. given column.
  386. show.c Added RECEIVED ERROR event. Example:
  387. #event {RECEIVED ERROR} {#info stack}
  388. class.c Added #class {name} assign {argument} which will execute the
  389. argument, assigning all newly created triggers to the given
  390. class.
  391. draw.c Added #draw buffer, which draws the scrollback buffer based
  392. on the scrolling state.
  393. draw.c Added #draw foreground flag, which allows inactive sessions
  394. to draw.
  395. update.c Added END OF RUN event which triggers at the end of #map or
  396. #path run.
  397. Mar 2020 2.02.03
  398. ------------------------------------------------------------------------------
  399. data.c Added SESSION_ACTIVE field to #info session save
  400. mapper.c Added MAP CREATE EXIT and MAP DELETE EXIT events.
  401. history.c Added #history get <variable> <start> <end> option.
  402. draw.c Added #draw map <square> option.
  403. event.c Added MAP ROOM and MAP REGION mouse events. MAP ROOM only
  404. triggers when the mouse is above a room, MAP REGION triggers
  405. anywhere in the map region, as defined by default or as
  406. defined with #map offset.
  407. files.c #read will now warn if there is a possibly missing semicolon.
  408. config.c Can add non-colors in #config command_color by escaping the
  409. characters. Example: #con command <178>\>\ <128>
  410. line.c Added #line multishot {number} {argument} which should make
  411. all created triggers fire the given number of times before
  412. expiring.
  413. line.c Added #line local {argument} which should make all indirectly
  414. created variables local.
  415. variable.c Updated %h to allow #echo %+40h {some text}
  416. update.c Added the DISPLAY UPDATE event which is triggered right
  417. before the final display update when new data has become
  418. available.
  419. port.c Added PORT INITIALIZED and PORT UNINITIALIZED events, both
  420. can be prefixed with GAG to suppress the default system
  421. message.
  422. path.c Updated #path unzip to take the new speedwalk format.
  423. telopt_client.c Added IAC SB NAWS event, can be caught.
  424. split.c Added SCREEN SPLIT FILL event, which triggers on the
  425. split line drawing routine, can be caught.
  426. memory.c Added a custom memory stack, still a work in progress.
  427. utf8.c Added #config charset CP1251TOUTF8
  428. cursor.c Added #cursor {preserve macro} which when called from within
  429. a macro will preserve the macro state. Example:
  430. #macro {\cg} {#showme e: end\nh: home;#cursor preserve macro}
  431. #macro {\cge} {#showme end}
  432. #macro {\cgh} {#showme home}
  433. cursor.c Added #cursor {reset macro} which when called from within
  434. a macro will reset the macro state.
  435. path.c Added #path get {LENGTH|POSITION} <variable>
  436. Jan 2020 2.02.02
  437. ------------------------------------------------------------------------------
  438. config.c Added #config {packet patch} {auto} support which will
  439. result in automatic telnet eor/ga handling and automatic
  440. packet patching if #prompt is set correctly.
  441. help.c Added auto-link generation for #help when mouse tracking is
  442. enabled. Still experimental.
  443. mapper.c Added #map get/set direction/pathdir to get/set the current
  444. direction you are facing in numeric and alphabetic notation.
  445. tables.c Added italic and unitalic #highlight keywords.
  446. tables.c Pressing ctrl-delete will delete one word per default.
  447. mapper.c Fixed #map undo issues with #map insert and #map dig.
  448. mapper.c Now shows destination in #map exit <dir>
  449. base.c Added %+64b and %+64B support to #format to convert to and
  450. from base 64 encoding.
  451. Added %+64z and %+64Z support to #format to zip the string
  452. and convert it to base 64. May not compress it much but may
  453. have some utility to store passwords. Security through
  454. obscurity.
  455. Added experimental %+252b/z and %+252B/Z options for Base
  456. 252 encoding.
  457. draw.c Added FAT, CURSIVE, SCROLL, and SANSSERIF draw options.
  458. input.c ctrl-v will now correctly capture ctrl-alt-f and similar
  459. combinations. ctrl-v will also allow pasting blocks of text.
  460. Example added to the SCRIPTS file.
  461. event.c Added GAG SESSION CONNECTED, GAG SESSION CREATED,
  462. GAG SESSION DESTROYED, and GAG SESSION TIMED OUT events.
  463. mapper.c Added #map roomflag fog. Works like #map roomflag hide but
  464. the flag is auto cleared on entrance.
  465. line.c Added #line convert options.
  466. mapper.c Aded MAP CREATE ROOM and MAP DELETE ROOM events.
  467. utils.c Increased the entropy of the random number generator.
  468. list.c #list order sorts existing lists numerically.
  469. list.c #list sort sorts existing lists alphabetically.
  470. sort.c Added sorting routines utilizing quadsort.
  471. list.c Added #list reverse option.
  472. cursor.c Added default bindings for ctrl-left, ctrl-right, and
  473. ctrl-backspace
  474. screen.c Added advanced link support. To create an advanced link
  475. surround a keyword with the \e[4m keyword \e24m tags and
  476. prefix it with \e]68; code \a.
  477. #config mouse on
  478. #showme {\e]68;;1;test\a\e[4mthis is a test\e[24m}
  479. #event {SHORT-CLICKED LINK MOUSE BUTTON ONE} {#showme {[%4]}}
  480. screen.c Added basic link support. To create a basic link surround a
  481. keyword with the \e[4m keyword \e[24m tags. When clicked with
  482. mouse support enabled it'll spawn a LINK mouse event.
  483. mapper.c Added #map exitflag <dir> <option> GET <variable> support.
  484. event.c The %4 argument of mouse clicks once again reports the word
  485. that has been clicked, with %5 reporting the line. Under
  486. construction.
  487. screen.c Added #screen input <square> to define the input region.
  488. Currently only 1 line input regions are supported. Example:
  489. #screen input 1 1 1 -1 will put the input line at the top of
  490. the screen instead of the bottom. Under construction.
  491. Dec 2019 2.02.01
  492. ------------------------------------------------------------------------------
  493. data.c Added CWD field to #info system to get the current working
  494. directory.
  495. data.c Added the option to use #var var[\+1] to set and retrieve a
  496. literal +1 instead of referencing the first index. This
  497. behaves like the verbatim mode and the backslash is only
  498. valid at the start of the line.
  499. data.c Added #info unicode <character> option to display
  500. information about the provided character.
  501. Nov 2019 2.02.00
  502. ------------------------------------------------------------------------------
  503. regex.c Added support for using %+4s to match 4 spaces, or %+0..2d
  504. to match between 0 and 2 digits. Only works with letter
  505. arguments.
  506. regex.c Added %a regex as an alternative for %* because %+4* is
  507. not valid.
  508. regex.c Added %p regex which will match printable characters.
  509. regex.c Added %u regex which should match whole unicode characters.
  510. utf8.c Added BIG5toUTF8, KOI8toUTF8, ISO1toUTF8, ISO2toUTF8 charset
  511. config options.
  512. utf8.c Added GBK1TOUTF8 charset config option. When enabled 2 byte
  513. GBK codes are translated to unicode.
  514. utf8.c Added GBK-1 charset config option which should be able to
  515. handle GB18030.
  516. mapper.c Added a UNICODE GRAPHICS group to #map legend, this will
  517. allow you to customize most of the unicodegraphics symbols.
  518. variable.c Added #format <variable> %S option to do a spell check.
  519. Returns the number of errors found. Still a work in
  520. progress.
  521. People using %S to get the session name should switch to
  522. using #info session save.
  523. data.c Added #info session option, this data can be saved.
  524. draw.c Added #draw RAIN {<VARIABLE>} {[SPAWN]} {[FADE]} {[LEGEND]}
  525. Use tt++ -M for a default example.
  526. class.c Added #class clear, load, and save. See #help class.
  527. main.c Configurations and pathdirs are automatically assigned to
  528. the CONFIG and PATHDIR class on startup. Somewhat
  529. experimental as there may be unforseen complications.
  530. list.c Added #list <list> collapse.
  531. mapper.c Updated #map {} output.
  532. nest.c Added better #local support.
  533. variable.c Added #cat command. See #help cat.
  534. event.c Added SWIPED N/NE/E/SE/S/SW/W/NW events. These do not work
  535. on Termux yet, but I've asked the Termux dev to enable
  536. advanced mouse mode by default.
  537. draw.c Added #draw TABLE type which comes with the GRID option to
  538. change the drawing behavior. Requires a nested string
  539. argument. Under construction.
  540. mapper.c Added #map flag terrain on/off option to enable or disable
  541. terrain displaying. Default for new maps is on.
  542. mapper.c Added #map terrain <name> <symbol> [flag] and #map unterrain
  543. Creates a symbol, which can be colored, for the given
  544. terrain type. Density flags are DENSE, AMPLE, SPARSE, SCANT,
  545. omit for default density. Range flags are NARROW, STANDARD,
  546. WIDE, and VAST, omit for default.
  547. Decay flags are FADEIN and FADEOUT which speak for
  548. themselves. DOUBLE will expect the terrain symbol to be
  549. 2 characters or a double-width unicode character.
  550. variable.c Added %C format option to store the given number using
  551. chronological notation.
  552. People using %C to get the screen width should switch to
  553. using #screen get cols <var> and #screen get rows <var>
  554. mapper.c Added a 4th argument to landmarks which will indicate the
  555. distance from which the landmark will be visible in a future
  556. #map describe command.
  557. draw.c Added HUGE option to #draw. Only supports uppercase letters,
  558. numbers, and a few punctuations for now.
  559. cursor.c Added #cursor tab <list|scrollback> <backward|forward>
  560. option. Allows people with custom tab settings to upgrade
  561. to the new format before I start messing with it.
  562. list goes exclusively through the tab list, scrollback goes
  563. exclusively through the scrollback buffer, use both list and
  564. scrollback to go through both.
  565. line.c Added #line capture <variable> <command> option.
  566. mapper.c Added the MAP MOUSE LOCATION event to go along with the
  567. SCREEN MOUSE LOCATION event. MAP MOUSE LOCATION is more
  568. accurate than regular MAP click events. It needs to be
  569. trigged with #screen raise mouse location, which is not
  570. supported by all terminals.
  571. You'll need to use ./configure --enable-dec-locator for xterm
  572. to enable the MOUSE LOCATION events.
  573. list.c Added #list <var> shuffle
  574. mapper.c I'm working on a new speedwalk standard that will work with
  575. diagonal exits. Initial support is added to the #map at,
  576. #map goto, and the #map jump commands. Old speedwalk support
  577. is going to be left unchanged.
  578. The format is similar to old speed walks, except that
  579. speedwalks like 2ene need to be changed to 2e1n1e.
  580. #map jump and #map at will use virtual traversal, meaning you
  581. can move through walls as long as the destination is an actual
  582. location.
  583. #map move and #map goto will use physical traversal, meaning
  584. #map goto 10w only works if there is a straight line of 10
  585. rooms leading west, while #map move 10w will create 10 rooms
  586. if static mode is disabled. Keep in mind that #map move will
  587. trigger map movements events while #map goto will not.
  588. Regular #config SPEEDWALK speedwalks are unaffected.
  589. mapper.c Added MAP MOUSE LOCATION event which allows more accurate
  590. mouse clicking reports in unicode mode on terminals which
  591. support it. Appears to be some obscure compile time option
  592. on xterm.
  593. mapper.c AsciiGraphics and UnicodeGraphics mapping modes now report
  594. the exit that was clicked on MAP MOUSE click events in the
  595. %2 argument.
  596. screen.c Added #screen raise SCREEN MOUSE LOCATION, the SCREEN MOUSE
  597. LOCATION in turn will report row,col,-row,-col, as well as
  598. the row,col,-row,-col for the pixel position of the mouse
  599. within the character cell. %8 will report the pixel position
  600. as a 3x3 cell using values 1 through 9.
  601. mapper.c Added the BLOCK exit flag and room flag. Works like AVOID,
  602. but also prevents movement into the room.
  603. mapper.c Added #map landmark <name> <vnum> [desc] and #map unlandmark.
  604. Landmarks work as fast lookup aliases and to give tintin an
  605. idea of locations of interest to eventually describe the map
  606. in words for screen readers.
  607. mapper.c Added #map exit <dir> color <code> option.
  608. mapper.c Added exit coloring for avoid/hide/invis flagged exits.
  609. main.c Added -V startup option to show version number.
  610. daemon.c Added better link lost handling to daemons.
  611. cursor.c Fixed #help event section on {SCREEN FOCUS}.
  612. math.c Added metric suffix support to #math, see #help metric.
  613. variable.c Added #echo %M to print numbers using the metric system,
  614. supported suffixes are K M, m, and u.
  615. mapper.c Added #map sync <filename> which will try to synchronize the
  616. currently loaded map with the file being read. Should be a
  617. valid alternative to #map read at all times.
  618. Sep 2019 2.01.92
  619. ------------------------------------------------------------------------------
  620. mapper.c Added #map dig <exit> {{roomid}{<key>}} {NEW} support.
  621. Added #map goto {{roomid}{<key>}} {DIG} support.
  622. mapper.c Added the roomid field to map rooms. When using #map goto or
  623. #map run on a roomid regular expressions cannot be used.
  624. Roomid's are case sensitive, must be matched exactly, and
  625. are expected to be unique.
  626. daemon.c Added #daemon {kill|list}. See #help daemon.
  627. daemon.c Added #daemon {attach|detach}. See #help daemon.
  628. main.c Can launch tt++ with the -R argument to reattach.
  629. data.c Added #info MCCP option.
  630. draw.c Added TUBED drawing option.
  631. scan.c Added #scan FILE {commands} option. See #help scan.
  632. mapper.c Can provide multiple ; separated commands to #map move at
  633. once. For example: #map move {n;e;s;w}
  634. main.c Added support for starting tintin with telnet://host:port
  635. draw.c Added ANSI, UNICODE, JEWELED and FILLED prefixes.
  636. tables.c Removed #forall command.
  637. mapper.c Added #map center <x> <y> <z> to set the center of the map
  638. viewer, default is 0 0 0.
  639. split.c Added SCREEN SPLIT and SCREEN UNSPLIT events.
  640. nest.c Added VARIABLE UPDATED event.
  641. draw.c Added the BUMPED prefix to prefix a scroll region box with an
  642. enter. You create a scroll region box by using 0 as the top
  643. row argument. Treat the other arguments as if the top row
  644. is set to 1.
  645. draw.c Finished rounded box drawing, to get the old behavior use
  646. the CIRCLED prefix.
  647. config.c Added #config {mouse tracking} {on|off|debug|info|debug info}
  648. to enable/disable info/debugging for all mouse clicks.
  649. Use #config {mouse tracking} {on} to reset to normal.
  650. help.c Updated #help regex to state that %. and %+ should no longer
  651. be used. This will allow future expansion of tintin's regex
  652. syntax. Use {.} and {.+} and {.?+} instead.
  653. variable.c Added support for %+10w and %-10w to #format. Negative numbers
  654. subtract the given value from the screen width when wrapping.
  655. text.c Added initial tab displaying support.
  656. config.c Added TAB WIDTH config option.
  657. nest.c Added a notice for people still using $variable[] instead of
  658. *variable[]. I'll change $variable[] eventually to be
  659. identical to $variable[%*].
  660. math.c Added .. ellipsis support to define ranges in tables. It can
  661. also be used in #math to join two 32 bit integers into a 64
  662. bit integer.
  663. terminal.c Now initializing a more advanced keyboard mode upon startup,
  664. if a macro stops working check if you have to redefine it to
  665. a new sequence.
  666. math.c By default tintin does a string vs regex comparison when
  667. using == and !=. Added === and !== to do string vs string
  668. comparisons.
  669. config.c Made configurations less lazy, making it easier to detect
  670. when settings aren't properly inherited or changed globally.
  671. screen.c Added #screen scroll option, similar to #split but uses square
  672. notation to define the scroll region.
  673. screen.c Added #screen fill option.
  674. terminal.c Added SCREEN ROTATE PORTRAIT and SCREEN ROTATE LANDSCAPE
  675. events.
  676. mapper.c #map offset will now rescale along with the window.
  677. split.c The #split command has been changed to where it sets the
  678. number of top split lines if only one argument is given.
  679. The 2nd argument sets the number of bottom split lines which
  680. defaults to 1. The 3rd and 4th argument set the left and right
  681. split lines and when used will automatically enable vertical
  682. split mode.
  683. Split initalization will use unicode if #config charset is
  684. set to utf-8
  685. buffer.c The #buffer get syntax has been changed to treat 1 as the
  686. oldest line in the buffer, and -1 as the most recent.
  687. Unfortunately that's not backward compatible, but it's in
  688. line with the other row behavior changes, so at least it
  689. will be consistent.
  690. text.c With #split enabled and #config wordwrap set to a positive
  691. value tintin++ will attempt a vertical split.
  692. draw.c More feature complete, see #help draw.
  693. vt100.c Added better cursor save/restore handling.
  694. update.c Added support for centisecond delays (0.01) and moved ticks to
  695. deciseconds (0.1).
  696. Reduced input and session polling lag from 25 ms to 5 ms,
  697. which comes at a slight increase in cpu usage.
  698. draw.c Added TEED prefix for #draw, subsequently #draw middle and
  699. #draw center have been removed as they did the same and
  700. were somewhat confusing terms.
  701. misc.c Added some #bell options, see #help bell.
  702. #bell {flash|focus|margin|ring|volume} {argument}
  703. variable.c #format %X now will also take unicode characters as input.
  704. #echo %X ┓ displays 2513 and #showme \u2513 displays ┓
  705. path.c #path run no longer uses delays but uses its own timer system,
  706. you can use #path stop to stop running, and if you enter
  707. #path run again you'll continue where you stopped.
  708. trigger.c Named delays are now automatically converted to one shot
  709. tickers. #undelay will use #untick if the argument begins
  710. with a letter.
  711. mapper.c Changed #map destroy to #map destroy {area|world} {arg}
  712. files.c Added {READ ERROR} and {WRITE ERROR} events.
  713. trigger.c Added #line oneshot support to all triggers and variables.
  714. line.c Added #line oneshot to create oneshot triggers. Right now
  715. only works for #ticker.
  716. line.c Added #line debug to execute given line in debug mode.
  717. substitute.c #config color is now taken into account when displaying
  718. color codes, downgrading colors as needed.
  719. tables.c When using color names in highlights all lowercase color names
  720. will be dark by default, while capitalized color names
  721. will be light. So 'blue' is dark while 'Blue' is light. This
  722. allows using 'b Blue' for a light blue background.
  723. draw.c Added the ability to prefix a draw option with a color name
  724. or color code to draw colored lines and boxes.
  725. Aug 2019 2.01.91
  726. ------------------------------------------------------------------------------
  727. vt100.c Added %2 rows %3 cols arguments to the VT100 SCROLL REGION
  728. event to increase ease of use.
  729. mapper.c Changed #map at to also take an exit for the location.
  730. data.c No longer saving or displaying the priority of triggers which
  731. are set to the default priority.
  732. mapper.c Added #map map <rows> <cols> draw <square> to draw the map at
  733. the given location. This is no real alternative for using #map
  734. offset as #map offset allows mouse map events.
  735. draw.c Added unicode drawing options.
  736. line.c Added #line logmode {html|plain|raw} {argument} Allows you
  737. to execute a command with a temporary logging mode.
  738. mapper.c Now drawing + and - for muds using nu dn eu ed exits.
  739. macro.c Added ^ support to macros to make a macro only trigger at the
  740. start of input. If you want to macro a literal ^ use \^ at
  741. the start of the line. It behaves very similar to the ~ for
  742. color triggers.
  743. mapper.c Improved exit drawing in unicode mode.
  744. draw.c Added #draw command and #help file.
  745. mapper.c Added #map update option to force an update of the vtmap. Keep
  746. in mind the vtmap will only update once every 0.1 seconds.
  747. screen.c Added #screen clear {split|top|bottom} to clear split lines.
  748. config.c Added #config {wordwrap {on|off|number} when a number is given
  749. tintin will wrap at the given width, and will also report the
  750. given width to MUDs over TELNET.
  751. config.c Added #config {telnet} {on|off|debug} which allows enabling or
  752. disabling telnet support. The debug option is the same as
  753. #config {debug telnet} on and will eventually replace it. To
  754. disable debug mode use #config telnet on.
  755. help.c Added #help button
  756. button.c Added #button.
  757. Jul 2019 2.01.90
  758. ------------------------------------------------------------------------------
  759. mapper.c Added MAP FOLLOWED MAP event which triggers on map movement.
  760. %0 = new vnum %1 = old vnum %2 = exit name. Keep in mind
  761. that this event isn't triggered when using #map goto.
  762. config.c Added #config {PACKET PATCH {AUTO} option which currently
  763. only enables to 0.1 seconds when #split is enabled.
  764. msdp.c Added MAP_ROOM_INFO msdp event.
  765. math.c Strings in #if and #math can now be defined using {string}
  766. instead of "string". The quote syntax will remain valid.
  767. mapper.c Added #map offset <row> <col> <row> <col> to define a square
  768. within which the vt map will be printed.
  769. screen.c Added #screen clear option which allows clearing the screen,
  770. the scrolling region, or a <row> <col> <row> <col> square.
  771. For all square operations you must define the top left and
  772. bottom right corner. Negative numbers are allowed which
  773. behave identical to #showme.
  774. mapper.c #map map now allows a very large range and when logging will
  775. use the configured log mode. This allows generating a large
  776. html map.
  777. mapper.c Improved the #map legend interface and made it easier to
  778. update by using the index number. I haven't added special
  779. legends for ascii and unicode graphic modes yet.
  780. buffer.c Added #buffer up 1 and #buffer down 1 to scroll the buffer up
  781. or down by one line. Values of 2 and higher are allowed as
  782. well with the maximum set at the screen size.
  783. msdp.c Added some SCREEN based MSDP events to #port. Renamed a few
  784. #screen arguments / events to something I was happier with.
  785. chat.c Added #chat accept <buddy> [boost] option for faster file
  786. transfer. The boost value must be between 1 and 1000.
  787. screen.c Added #screen get <top_row|bot_row|top_split|bot_split> <var>
  788. vt100.c Added VT100 SCROLL REGION event.
  789. main.c Added SYSTEM ERROR and CATCH SYSTEM ERROR events.
  790. mapper.c Added #map color symbol option.
  791. files.c Added accidental overwrite protection when trying to write
  792. a command file to a .map file. Use {force} to force. It's
  793. suggested to use .tin files for command files.
  794. mapper.c Added accidental overwrite protection when trying to save a
  795. map to a .tin file. Can add the {force} argument to force
  796. writing anyways. It's suggested to use .map for map files.
  797. mapper.c Made all map search options require a perfect match. To look
  798. for a sub string one needs to use #map find {text%*} or
  799. #map find {%*text%*}
  800. mapper.c Exits created in the global room should now work without
  801. needing to set a special alias that performs a #map goto.
  802. This also means that if you set the exit command on an exit
  803. in the global room it ought to work.
  804. mccp.c Enabled MCCP3 for #port which allows two-way compression.
  805. This should be useful for people who send a lot of data back
  806. and forth. It uses TELNET option code 87.
  807. port.c Added initial telnet support to #port. This still needs some
  808. more work to get MSDP working, and I'm also working on
  809. the ability to use JSON syntax with MSDP event handling.
  810. telopt_server.c Enabled.
  811. parse.c Added a debug call for incorrect abbreviation checks.
  812. mapper.c Added invisible exit flag. It's intended to make exits
  813. invisible. If you want to make hidden rooms invisible try
  814. #map color hide <208>
  815. mapper.c Added up/down exit flag colors in unicodegraphics mode.
  816. screen.c Added some more screen stuff, see #help screen.
  817. parse.c Added experimental change where in command lookups a space
  818. can be substituted with a _ character. For example
  819. #config {COMMAND ECHO} ON equals #config COMMAND_ECHO ON.
  820. If this change causes unforseen problems it'll likely be
  821. reverted.
  822. telopt_client.c No longer sending proper telnet replies for echo due to
  823. infinite loop problems on a few muds that improperly
  824. handle telnet negotiations.
  825. mapper.c Improved void room handling in unicodegraphics mode.
  826. prompt.c Using #prompt or #showme without a column argument will
  827. clear the line.
  828. main.c Improved signal handling.
  829. update.c The %2 value of TIME events now holds the day of the week
  830. instead of the week of the year. The value is between 0 and 6
  831. and specific events for each week day are possible.
  832. update.c The %3 value of TIME events holds the day of the month. The
  833. value is between 0 and 31 and specific events for a day of the
  834. month are now possible.
  835. main.c Updated system error handling.
  836. mapper.c Improved #map color command.
  837. mapper.c Further improved unicodegraphics mode.
  838. mapper.c Further improved blockgraphics mode.
  839. mapper.c Added #map color avoid
  840. mapper.c Added #map color hide
  841. prompt.c Changed #prompt to use the new {row} {col} input.
  842. mapper.c Changed the #map map command which now has the syntax:
  843. #map map {rows} {cols} {append|write|list|variable} {arg}
  844. terminal.c Changed WINDOW RESIZE %0 to list rows, and %1 to list cols.
  845. event.c Changed all MOUSE events to %0=row %1=col %2=-row %3=-row
  846. *.c Currently there are two big problems that need to be addressed
  847. to continue smooth development.
  848. 1. In VT100 row 1 is the top line, while in tintin row 1 is
  849. the split line.
  850. 2. In VT100 row, col (y, x) notation is used, while I've been
  851. favoring col, row (x, y) notation.
  852. While this may seem like a minor issue, I'm utilizing VT100
  853. more often using more complex operations, and TinTin++ is
  854. currently pretty much mirrored in the way it behaves. This
  855. results in relatively simple math becoming weird unintuitive
  856. math, making already complex code even more complex, resulting
  857. in bugs and unreadable code that requires a lot of mental
  858. gymnastics to figure out.
  859. Subsequently I decided on a major interface change that will
  860. result in several compatibility issues.
  861. #split will stay the way it is.
  862. #showme {text} will stay the same
  863. #showme {text} {0} will become invalid.
  864. #showme {text} {1} will print on the top line.
  865. #showme {text} {-1} will print on the bottom line / input
  866. line.
  867. #showme {text} {-2} will print on the default split line.
  868. #prompt {text} {substitution} will stay the same and print
  869. on the default split line.
  870. #prompt {text} {substitution} {0} will become invalid.
  871. #prompt {test] {substitution} {1} will write to the top line.
  872. #prompt {text} {substitution} {-1} will write to the bottom
  873. line / input line.
  874. #prompt {text} {substitution} {-2} will write to the 2nd line
  875. from the bottom, which is the default split line.
  876. All code that takes {col} {row} as an argument will be changed
  877. to {row} {col}. The main reason for this change is consistency,
  878. and because I've repeatedly swapped row and col in VT100 which
  879. can be a tricky bug to track down.
  880. session.c Added the 'ats' keyword to the session find routine to return
  881. the active tintin session.
  882. mapper.c Fixed the #map map {<width> x <height>} calculations.
  883. buffer.c When using #snoop on a session #showme and a few other things
  884. were not displayed. This should be fixed now.
  885. nest.c Added basic syntax highlighting for variables, only works
  886. when using #var {variable>
  887. tokenize.c Added basic syntax highlight for lists, only works when
  888. using #<list> {list}
  889. help.c Added TIME help file.
  890. tokenize.c Fixed a bug with nested #while commands.
  891. port.c Changed #event {PORT MESSAGE} to {PORT RECEIVED MESSAGE}
  892. which triggers when a message is received from a connection.
  893. Added #event {PORT MESSAGE} and {PORT LOG MESSAGE} which
  894. trigger on internal messages.
  895. All these can be prefixed with CATCH.
  896. variable.c Fixed two crash bugs in #format, it remains a somewhat
  897. vulnerable command, so you should never allow a 3rd party
  898. argument to set the format string of #format or #echo, though
  899. parsing 3rd party arguments as a #format/echo argument is safe.
  900. Safest is to use #line ignore #showme {text} if you want to
  901. print text that is ignored by triggers.
  902. telopt_server.c Added a TELNET server for #port, it's not hooked up yet,
  903. but the code merge may have caused some telnet bugs. Please
  904. report any unusual telnet behavior.
  905. mapper.c Fixed some issues with #map legend, should be able to use it
  906. to change the legend now.
  907. buffer.c Fixed some more scrolling issues.
  908. README Updated the README file and added the NEWS and docs/syntax.txt
  909. files. The NEWS file primarily contains a list of changes that
  910. impact compatibility between versions.
  911. tel_client.c Fixed CHARSET REQUEST handling.
  912. buffer.c Fixed longstanding issue with the handling of long lines.
  913. Mar 2019 2.01.8
  914. ------------------------------------------------------------------------------
  915. update.c Added MAP UPDATED VTMAP event, triggers right after each
  916. vtmap redraw.
  917. config.c Added CHILD LOCK config option to disable tintin command
  918. input. This is useful for people who want to give third
  919. parties remote access to a tintin++ session.
  920. line.c Enabled the #line substitute arguments option which has a few
  921. limited usecases.
  922. main.c Added better #! hashbang support, with %0 in the PROGRAM START
  923. event holding all unrecognized launch arguments. %1 holds the
  924. 1st argument (program name), %2 the 2nd argument, etc.
  925. data.c Added #INFO SYSTEM option, with #INFO SYSTEM SAVE saving the
  926. data to the info[SYSTEM] variable. Current variables
  927. supported are CLIENT_NAME and CLIENT_VERSION.
  928. event.c Added %4 and %5 arguments to mouse click events which hold the
  929. word and line that was clicked. Under construction.
  930. net.c Slightly improved traditional prompt handling, but the code
  931. will need a proper update to work properly.
  932. parse.c Added UNKNOWN COMMAND event, triggers on #jklfdjl and other
  933. non-existent commands.
  934. screen.c Added the #screen command, still under development.
  935. telopt.c Added VT100 OSC en CATCH VT100 OSC events.
  936. port.c Fixed an issue with #port and #chat on Mac OS X.
  937. mapper.c Added #map global which allow setting the vnum of a room that
  938. contains exits for global transportation commands, like for
  939. example the recall location.
  940. mapper.c #added #map roomflag noglobal to indicate rooms that block
  941. global transportation commands, like norecall rooms.
  942. input.c Added CATCH RECEIVED INPUT event.
  943. Added RECEIVED KEYPRESS event.
  944. Added CATCH RECEIVED KEYPRESS event.
  945. mapper.c Added support for up/down displaying in blockgraphics mode.
  946. mapper.c Added #map flag direction to enable/disable the showing of the
  947. direction arrow in the mapper. Also includes a minor
  948. modification in the legend.
  949. utf8.c Added KOI-8 to UTF-8 conversion support, which is enabled with
  950. #config charset koi2utf
  951. mapper.c Added #map flag blockgraphics mode, still needs some more
  952. work.
  953. variable.c Updated %a to take a UTF-8 sequence and print the
  954. corresponding 21 bit decimal unicode value. This requires for
  955. #config CHARSET to be set to an UTF-8 mode to work.
  956. Updated %A to take a 32 bit decimal value and print the
  957. corresponding unicode UTF-8 sequence. This requires for
  958. #config CHARSET to be set to an UTF-8 mode to work.
  959. Added %x which takes a hexadecimal value and prints the
  960. corresponding unicode UTF-8 sequence.
  961. Added %X which convers a 64 bit unsigned decimal value to
  962. a 64 bit hexadecimal value.
  963. Added %D which converts a 64 bit hexadecimal value to
  964. a 64 bit unsigned decimal value.
  965. math.c Fixed an issue with 63-64 bit math.
  966. mapper.c Added #map flag unicodegraphics mode.
  967. utf8.c Added #config charset FANSI option that maps code page 437 to
  968. UTF-8. Requires an UTF-8 terminal to work and you can try out
  969. fansi art at 8bit.fansi.org 4201.
  970. main.c The -s startup option will start tt++ in screen reader mode.
  971. mapper.c Added support for direction displaying in mudfont mode.
  972. utf8.c UTF-8 character detection should be synched with xterm.
  973. mapper.c #map legend is now completely different and supports various
  974. default legends to choose from, namely:
  975. [ASCII NESW ] [ 1] [ 32]
  976. [UNICODE NESW ] [ 1] [ 32]
  977. [UNICODE NESW LINE ] [ 1] [ 16]
  978. [UNICODE NESW MISC ] [ 17] [ 24]
  979. [UNICODE NESW DIRS ] [ 25] [ 32]
  980. [UNICODE NESW TUBE ] [ 1] [ 32]
  981. [MUDFONT BRAILLE TUBE] [ 33] [164]
  982. [MUDFONT BRAILLE LINE] [ 33] [164]
  983. [MUDFONT PRIVATE ] [ 33] [164]
  984. [MUDFONT CURVED ] [161] [164]
  985. [RESET ] [ 1] [164]
  986. The legend exits of 164 characters and when setting for
  987. example UNICODE NESW DIRS you're only redefining 8 characters
  988. from position 17 to position 24.
  989. prompt.c #prompt and #showme now take a 3rd argument that sets the
  990. column number at which the text is printed. The column number
  991. must be between 1 and the maximum width of the screen. If a
  992. negative number is provided the distance is measured from the
  993. right. The line isn't automatically cleared when using
  994. #showme with a column argument.
  995. input.c Added support for fullwidth UTF-8 characters. This won't be
  996. working perfectly until unicode is better standardized.
  997. config.c Added #config CHARSET BIG2UTF. When enabled text you receive
  998. will be translated from BIG-5 to UTF-8, and data you send will
  999. be translated from UTF-8 to BIG-5. This should allow someone
  1000. to play a BIG-5 mud using an UTF-8 capable terminal.
  1001. path.c Added #path describe to give a basic description of the
  1002. mapped path. Might be of interesting for anyone using a
  1003. screen reader.
  1004. utf8.c Added UTF-8 character width detection.
  1005. mapper.c When #map list is used with a variable the variable is now
  1006. properly cleared. In addition #map list will report the
  1007. relative x y and z coordinates of the found rooms which can
  1008. be used with #map jump. This update changes the table
  1009. structure of the variable returned by #map list.
  1010. mapper.c Added #map legend reset option and fixed legend saving.
  1011. mapper.c Added new mudfont mode based on the braille unicode block.
  1012. mapper.c Changed the RIVER map room flag to CURVED and added support
  1013. for it in simple and mudfont mode.
  1014. mapper.c Added click events that trigger when clicking a room on the
  1015. vt map reporting the room vnum.
  1016. session.c More properly terminating zombie processes after using #run.
  1017. telopt.c Added support for the CHARSET telnet option. Currently
  1018. supporting UTF-8, BIG-5, and FANSI.
  1019. path.c Added #path save <length|position> <variable> options.
  1020. Feb 2019
  1021. ------------------------------------------------------------------------------
  1022. There was a question regarding copyright and licensing
  1023. recently so I made some changes and I'm writing this entry to
  1024. clarify a few things.
  1025. 1992 Peter Joachim Unold released TINTIN III with the implicit
  1026. right to create derived works and the request for derived
  1027. work to rename the client and clearly state the author. On
  1028. usenet Peter Unold later confirmed that he considered his
  1029. source code release to be public domain.
  1030. 1995 Bill Reiss released TinTin++ 1.5 without a copyright notice,
  1031. two mentions of authorship, and the implicit understanding
  1032. that the work is considered public domain with the exception
  1033. of the tintin15.txt manual which is explicitly copyrighted to
  1034. Joann Ellsworth. It is also made clear that derived works
  1035. should not use the name TinTin++.
  1036. 2001 David Chan released TinTin++ 1.85 without a copyright notice
  1037. just like all previous TinTin++ releases and 4 mentions of
  1038. having made changes in the source code.
  1039. 2001 David Chan and Robert Ellsworth released TinTin++ 1.86 under
  1040. the GPL 2 or later with the 2002 copyright assigned to David
  1041. Chan, Robert Ellsworth, and a reference to the CREDITS file
  1042. on July 12th, 2001.
  1043. David Chan would have been unable to do so legally without the
  1044. explicit permission of Bill Reiss and several other notable
  1045. contributors unless TinTin++ 1.85 which was released without
  1046. a copyright notice or license was considered by all parties to
  1047. be public domain software.
  1048. Subsequently David Chan nor Robert Ellsworth could
  1049. retroactively return copyright to previous authors. However,
  1050. David Chan and Robert Ellsworth could consider themselves,
  1051. and they in fact did, the copyright holders of the public
  1052. domain TinTin++ 1.85 derived GPL 2 licensed software they
  1053. titled TinTin++ 1.86.
  1054. The reason they did this can only be guessed at, but I assume
  1055. they were tired of hosting, developing, and answering
  1056. questions about TinTin++. The easiest way to get the source
  1057. code permanently hosted was by debianizing it, which required
  1058. licensing the code under GPL 2, which could only be done by the
  1059. copyright holder.
  1060. 2001 The TinTin++ 1.86 package was debianized by Jordi Mallach
  1061. <jordi@debian.org> on 22 Aug 2001.
  1062. 2001 Robert Ellsworth, aka Joann Ellsworth, as the copyright holder
  1063. licensed the tintin15.txt manual under the GPL on 28 Aug 2001.
  1064. 2004 Igor van den Hoven received permission from Bill Reiss to
  1065. release TinTin++ derived code under the name TinTin++.
  1066. 2004 Igor van den Hoven released TinTin++ 1.90 on March 13 under
  1067. the GPL 2 or later with the 2004 copyright notice referring
  1068. to the CREDITS file. Due to the inclusion of the tintin15.txt
  1069. file the code could only be legally released under the GPL
  1070. 2 or later.
  1071. Version 1.90 featured a new mathematics engine and regular
  1072. expression interpreter, telnet negotations, a scroll back
  1073. buffer, enhanced VT102 interpretation, a more standardized
  1074. TINTIN scripting language, a nifty string formatter, internal
  1075. color manipulation, and a back to basics command structure.
  1076. TinTin++ 1.90 contained no source code from TinTin++ 1.86 and
  1077. over 50% of the 1.85 code had been deleted or rewritten.
  1078. 2008 Igor van den Hoven released TinTin++ 1.98.3 under the GPL 2
  1079. or later with the copyrighted tintin15.txt manual removed.
  1080. At this point 90% of the code was rewritten and what remained
  1081. was primarily heavily modified code originally written by
  1082. Peter Unold and Bill Reiss.
  1083. 2019 Igor van den Hoven released TinTin++ 2.01.8 under the GPL 3
  1084. or later. The copyright of over 99% of the source code is
  1085. held by Igor van den Hoven with minimal contributions from
  1086. others, making him the sole copyright holder.
  1087. TinTin++, as of version 2.01.8, may not be distributed under
  1088. GPL 2, and can only be distributed under GPL 3 or later. The
  1089. reason for this is the exploitation of a serious loophole in
  1090. the GPL 2 license.
  1091. The TinTin++ software as of version 1.87 is NOT public domain,
  1092. as the GPL 2 & 3 licenses explicitly require a legal copyright
  1093. holder in order to legally enforce the license. Nor do I
  1094. desire to relinquish my rights to do as I please with software
  1095. that I've worked on for close to 20 years.
  1096. If anything is unclear feel free to contact me.
  1097. Feb 2019 2.01.7
  1098. ------------------------------------------------------------------------------
  1099. class.c Added proper class nesting. When closing the active class,
  1100. the last active class is activated. This change will cause
  1101. trouble for scripts that don't properly close classes.
  1102. class.c Added #class {class} SIZE {variable} option to store the size
  1103. of a class in a given variable.
  1104. event.c Added the SHORT-CLICKED mouse events. It triggers when the
  1105. time between pressing and releasing the mouse button is
  1106. less than 0.5 seconds. The event is not triggered when
  1107. double or triple clicks occure, but will trigger on the
  1108. first click of a double click, just like a triple click
  1109. event will be preceded by a double click event.
  1110. event.c All mouse events now report the inverse x and y position
  1111. using the %2 and %3 arguments.
  1112. event.c Added the LONG-CLICKED mouse event. It triggers when the time
  1113. between pressing and releasing the mouse button is greater
  1114. than 0.5 seconds.
  1115. variable.c Added better support for wrapping escaped characters with
  1116. #format %w.
  1117. path.c Added #path create, destroy, goto, move start, stop, swap, undo
  1118. which are somewhat document in #help path.
  1119. You can now have a position on a path, which is displayed
  1120. with #path map. This allows using #path move backward when a
  1121. #path walk forward is interrupted.
  1122. Jan 2019 2.01.6
  1123. ------------------------------------------------------------------------------
  1124. tinexp.c Using $$variable in #action triggers is no longer valid. Use
  1125. $variable instead. If the variable needs to be substituted
  1126. right away use:
  1127. #line sub var {#action {$var} {#loop 1 3 cnt #showme $$cnt}}
  1128. event.c Added {DOUBLE-CLICKED} and {TRIPLE-CLICKED} mouse events
  1129. these events trigger on 2 and 3 clicks within 0.5 seconds.
  1130. A triple click will reset the mouse state.
  1131. event.c Added {MOVED }, {PRESSED }, {RELEASED } and {SCROLLED } mouse
  1132. events. Use #INFO EVENT ON to see the full events. The row
  1133. position is reported using the same method as with #prompt.
  1134. For each click three events are generated, one generic one,
  1135. one with the row position as measured from the top, and one
  1136. with the row position as measured from the bottom.
  1137. The MOVED event only triggers when the mouse is moved while a
  1138. button is pressed.
  1139. %0 contains the column and %1 the row.
  1140. config.c Added MOUSE TRACKING config option which enables mouse
  1141. tracking events. While mouse tracking is
  1142. enabled shift needs to be hold in order to select text with
  1143. the mouse if you want to copy and paste text.
  1144. cursor.c Added WINDOW FOCUS IN and WINDOW FOCUS OUT events.
  1145. tick.c Fixed micro delays not getting properly sorted.
  1146. event.c Added #info {events} {on} option to display messages when
  1147. events are thrown. As this can get quite spammy these
  1148. messages can be gagged as well.
  1149. gag.c Added #debug and #info messages for gags.
  1150. telopt.c Renamed all telnet events that prevent the execution of the
  1151. default telnet handling code to CATCH IAC <TELNET CODE> adding
  1152. several events that did not yet exist.
  1153. Telnet events without default handling code like MSDP and GMCP
  1154. were not renamed.
  1155. telopt.c Added better telnet loop protection for echo negotiations.
  1156. scan.c Changed #scan syntax to #scan {ABORT|CSV|TSV|TXT} {filename}
  1157. CSV reads a comma separated file which triggers the
  1158. SCAN CSV HEADER (first line) and SCAN CSV LINE (subsequent
  1159. lines) events. Values containing spaces require quotes, and
  1160. two quotes "" are required to escape a quote.
  1161. TSV reads a tab separated file which triggers the
  1162. SCAN TSV HEADER and SCAN TSV LINE events.
  1163. TXT is an updated and faster version of the old #scan.
  1164. The old #scan syntax is no longer supported.
  1165. config.c Changed the random number generator to 64 bit with each
  1166. session having its own unique seed that can be set with
  1167. #config {random seed}.
  1168. Jan 2018 2.01.5
  1169. ------------------------------------------------------------------------------
  1170. math.c Fixed bug with floating point math.
  1171. line.c Added #line verbatim option.
  1172. cursor.c Added the #cursor brace open, and #cursor brace close
  1173. commands. This to easily insert the { and } characters from
  1174. within a macro, which currently is rather complicated.
  1175. tinexp.c Added support for <Fxxxxxx> and <Bxxxxxx> 24 bit color codes.
  1176. F stands for foreground, B for background, xxxxxx is a
  1177. hexadecimal RGB value. The terminal must support truecolor
  1178. for these to work.
  1179. session.c Added on|off option to #snoop.
  1180. data.c Added #info {list} {LIST|SAVE} option to list the content of a
  1181. list or save it to a variable.
  1182. tokenize.c Improved trailing space parsing.
  1183. mapper.c Added exit weights.
  1184. mapper.c Added #map get all <var> option.
  1185. main.c Added the -a <argument> startup option, which is passed to the
  1186. %2 variable of the PROGRAM start event.
  1187. buffer.c Added #buffer lock {on|off} option.
  1188. session.c Fixed #port session close being shown as a time out.
  1189. tinexp.c Added \UXXXXXX escape code which takes 6 hexedecimal digits.
  1190. tinexp.c Added \uXXXX escape code, XXXX must be a 4 digit hexadecimal
  1191. unicode index, which is translated to a UTF-8 sequence.
  1192. tinexp.c @ $ * and & characters send from the server are only escaped if
  1193. the key matches an existing variable. Keep in mind that ${ *{
  1194. and &{ are always escaped.
  1195. tinexp.c Added support for <Fxxx> and <Bxxx> 12 bit color codes. F
  1196. stands for foreground, B for background, xxx is hexadecimal RGB
  1197. value. For example <F0F0> will print in bright green. The
  1198. terminal must support truecolor for these to work.
  1199. To use 24 bit truecolor codes use \e[38;2;R;G;Bm where R G B
  1200. are decimal values between 0 and 255. \e[48;2;R;G;Bm will print
  1201. background colors.
  1202. path.c Added support for multiple arguments to #unpathdir.
  1203. line.c #line log {filename} {text} was extremely slow, at least on
  1204. cygwin, because it was opening and closing a file descriptor
  1205. for each log call. Multiple logs to the same file are much
  1206. faster now, with each session having its own dedicated file
  1207. descriptor to speed up consecutive writes to the same log
  1208. file.
  1209. config.c Added config RANDOM SEED option to set a custom seed for the
  1210. random number generator. Useful for machine learning scripts
  1211. and some other obscure stuff.
  1212. system.c Added popen failure check for #script.
  1213. mapper.c Fixed issue with #map undo not properly handling void rooms.
  1214. nest.c Fixed memory issue causing a crash on very large variables.
  1215. config.c Added #config INHERITANCE option. Default is on, set to off
  1216. to prevent triggers from getting inherited. Configurations
  1217. are still inherited from the startup session.
  1218. config.c Added #config CHARSET AUTO option. TinTin++ will try to
  1219. automatically detect UTF-8 and BIG5 encoding.
  1220. session.c SESSION CREATED now triggers after the filename provided with
  1221. #session, #ssl, #run, or #port has been read.
  1222. parse.c Removed dot notation support for variables. #var bla.bli blo
  1223. is no longer valid, nor is $bla.bli. The code didn't add any
  1224. functionality while it was causing all kinds of issues. Sorry
  1225. for the inconvenience, not one of my brightest ideas.
  1226. telopt.c Updated MTTS to report SCREEN READER setting.
  1227. config.c Added SCREEN READER config option.
  1228. telopt.c Updated MTTS to report the ANSI, 256, and TRUE color setting.
  1229. config.c Replaced 256 COLOR config with COLOR MODE config option,
  1230. options are AUTO, NONE, ANSI, 256, or TRUE.
  1231. vt102.c Added truecolor COLOR PATCH support. Not well tested so far.
  1232. log.c Added truecolor html logging.
  1233. input.c No longer spawning blank lines with #config {command echo}
  1234. off, if you want the old behavior you can set your command
  1235. color to <008> or <aaa>.
  1236. tinexp.c Added %! as a regular expression option to prevent the auto
  1237. capturing of a match. For example %!*, %!w, %!d etc.
  1238. %!{ } can be used to the same effect to embed a regular
  1239. expression without automatically adding paranthesis.
  1240. tinexp.c Added an exception so %*{text} is treated as a regular
  1241. expression instead of a variable. As of the last version
  1242. *{text} is a valid variable.
  1243. variable.c Added the %H #format option to generate a 32 bit hash for the
  1244. given string.
  1245. substitute.c Fixed argument substitution problem.
  1246. main.c Can use #end {\} to terminate tintin silently.
  1247. system.c Added #scan abort option
  1248. Oct 2017 2.01.4
  1249. --------------------------------------------------------------------------------
  1250. main.c Added proper greeting handling for narrow terminals, mainly for
  1251. people using tt++ on an android phone.
  1252. variable.c Added proper \ handling in string length calculations.
  1253. variable.c #unvariable takes additional arguments to unvar several
  1254. variables at once.
  1255. tinexp.c Added support for *{variable} to show variable/table keys. This
  1256. is useful when low level data processing is needed.
  1257. For example, *{+1} shows the key of the first variable.
  1258. list.c Added #list {var} simplify {variable} option which saves a
  1259. list (which internally is a table) as a semi-colon separated
  1260. list to the provided destination variable.
  1261. {{1}{bli}{2}{bla}{3}{blo}} becomes {bli;bla;blo}
  1262. May 2017 2.01.3
  1263. --------------------------------------------------------------------------------
  1264. mapper.c Added #map legend support to assign custom characters for
  1265. the #map flag MUD FONT display mode. By default they're set
  1266. to map to the unicode private use area.
  1267. mapper.c By default an UTF-8 #map legend is created for those who do
  1268. not use ASCII graphics. The ANSI legend was pretty much
  1269. unusable and most terminals are supporting UTF-8 now. Windows
  1270. does not support all box drawing characters, hopefully this
  1271. will be fixed in the future.
  1272. mapper.c Removed support for the vtgraphics drawing mode which worked
  1273. on very few terminals.
  1274. utils.c Verbosity is automatically enabled for debug mode to avoid
  1275. logging inconsistencies.
  1276. port.c Added #port command, similar to netcat.
  1277. chat.c #chat prefix works now
  1278. math.c Better #math debug through #debug VARIABLE on
  1279. mapper.c Added map exit <dir> dir <number> option.
  1280. action.c Fixed action crash bug that slipped in
  1281. telopt.c Added telnet events for IAC GA and IAC EOR
  1282. Jun 2015 2.01.2
  1283. --------------------------------------------------------------------------------
  1284. mapper.c Added map <radius> <variable name> {v} option to save the map
  1285. output to a variable.
  1286. log.c html log files now correctly set the charset to UTF-8 or big5
  1287. if applicable.
  1288. tokenize.c Added support for local variables with the #LOCAL command. Most
  1289. commands that manipulate variables will use a local variable
  1290. if it has been declared.
  1291. utils.c Fixed crash bug on substitutions on system messages.
  1292. session.c Showing all connect retry attempts and seconds left.
  1293. session.c Any manual input while connecting will cancel connect retry.
  1294. main.c Can create macros for ctrl-d and ctrl-z again.
  1295. mapper.c Added #map color background option to set a background color
  1296. for the map display.
  1297. variable.c Added optional width argument to #format %w. Also added UTF-8
  1298. support to %w.
  1299. variable.c Attempt to fix %p crash bug on OS X.
  1300. Fixed compilation issue for OS X.
  1301. Jan 2014 2.01.1
  1302. --------------------------------------------------------------------------------
  1303. chat.c Added CHAT MESSAGE event, %0 contains the chat color and prefix,
  1304. %1 omits chat color and prefix.
  1305. chat.c Added #chat prefix option.
  1306. mapper.c Can now provide multiple flags at once when using
  1307. #map roomflag and #map insert.
  1308. line.c Added #line quiet option.
  1309. cursor.c Fixed tab bug with multi-word tabs.
  1310. event.c Fixed bug with events defined in multiple sessions.
  1311. tinexp.c Added @<session name>{<substitution>} option to perform a
  1312. function-like substitution in another session and retreive
  1313. the result. Primarily useful for getting variables.
  1314. highlight.c Added no-blink no-underscore and no-reverse #highlight options.
  1315. highlight.c Added option to use escape codes in the #highlight color field.
  1316. class.c Added #class {<class>} list {<list>} option.
  1317. mapper.c Added #map list {roomflag} option.
  1318. list.c Fixed bug with using #list clear on a nested variable.
  1319. substitute.c Added patch by Nya to properly handle colored substitutions.
  1320. math.c Added // operator to calculate sqrt // 2 or cbrt // 3
  1321. math.c Added ** operator to calculate power
  1322. tinexp.c Added IGNORE options to variables and functions.
  1323. main.c The command history is automatically saved again.
  1324. ssl.c Added SSL support based on KBTin code by Adam Borowski.
  1325. tinex.c $ @ and & are now escaped when received as part of an action for
  1326. added security.
  1327. session.c Added SESSION CREATED event.
  1328. parse.c Fixed command echoing when executing commands in another session.
  1329. Mar 2013 2.01.0
  1330. --------------------------------------------------------------------------------
  1331. session.c #session takes a filename as an additional argument, if the
  1332. session succesfully connects the file will be read.
  1333. variable.c Fixed #echo {%f} {5 / 3} handling.
  1334. cursor.c Added #cursor get and #cursor set options.
  1335. parse.c Added support for nesting using the . argument.
  1336. mapper.c Added map_search_compile option, increasing search speed.
  1337. list.c Added #list TOKENIZE option.
  1338. cursor.c Fixed the cursor PASTE BUFFER option.
  1339. event.c Added the VARIABLE UPDATE <VAR> event.
  1340. cursor.c Added stripping of semi-colons when auto tabbing.
  1341. configure.in Better error handling by Slysven.
  1342. Mar 2012 2.00.9
  1343. --------------------------------------------------------------------------------
  1344. line.c Added a #line strip option to strip color and escape codes.
  1345. mapper.c Fixed the handling of colored symbols in the ascii map.
  1346. input.c RECEIVED INPUT now triggers before input is parsed.
  1347. mapper.c Fixed #map undo handling for #map insert.
  1348. nest.c Fixed crash when using #var a[b]c x
  1349. tokenize.c Fixed crash when using #case outside a #switch.
  1350. cursor.c Added stripping of tailing dots and commas when auto tabbing.
  1351. variables.c #format %A now properly handles BIG5 and UTF-8.
  1352. session.c Added SESSION TIMED OUT event.
  1353. variable.c Fixed substitution problem with #unvariable.
  1354. mapper.c Added support for a {variable} argument to #map list to store
  1355. the returned data into a variable. Using {roomname} and
  1356. other keywords from #map set will work as well.
  1357. mapper.c Added #map exit <dir> save to store exit data in a variable.
  1358. mapper.c Added basic color compression support.
  1359. mapper.c Fixed the #map legend display in vtgraphics mode.
  1360. mapper.c Added automatic initialization of a UTF-8 based legend when
  1361. creating a map with #config CHARSET set to UTF-8.
  1362. mapper.c Fixed unnecessary redrawing of the VT map.
  1363. list.c Now properly handles nested arguments.
  1364. telopt.c Disabled telnet handling when using #run.
  1365. mapper.c Added better UTF-8 handling for room symbols.
  1366. net.c Added the RECEIVED PROMPT event.
  1367. variable.c Fixed a bug in #format with left aligning meta text.
  1368. mapper.c Fixed a bug with path finding related to weighted rooms.
  1369. mapper.c Added #map flag symbolgraphics option to display the room symbol
  1370. instead of a drawing symbol when in non asciigrahpics mode.
  1371. mapper.c Added #map color here option to set the color of the current
  1372. location.
  1373. mapper.c Fixed a path finding issue related to the avoid flag.
  1374. Sep 2011 2.00.8
  1375. --------------------------------------------------------------------------------
  1376. main.c No more advertisements.
  1377. mapper.c Back to void rooms only being allowed two exits, as handling
  1378. multi-exit void rooms adds too much complexity.
  1379. mapper.c Updated the fill_map routine to use breadth-first initialization
  1380. which should significantly improve execution times.
  1381. prompt.c Added proper UTF-8 string length checking for prompt drawing.
  1382. mapper.c Room names are no longer automatically set on creation.
  1383. mapper.c Added the #map vnum command to change the current vnum.
  1384. mapper.c #map link now requires the 'both' argument for a two-way exit
  1385. to be created.
  1386. variable.c Added support to #format for %f to print floating point numbers.
  1387. variable.c Fixed color spacing bug in #format's %s handling.
  1388. mapper.c Added terrain as a searchable option to #map list, goto, find,
  1389. and run.
  1390. mapper.c Added roomweight to the #map get and #map set options. By
  1391. default the weight of a room is set to 1.0 and can be anywhere
  1392. from 0.001 to 1000. The path finder will favor rooms with a low
  1393. weight.
  1394. mapper.c Made the layout of #map info more aesthetically pleasing and
  1395. added the listing of entrances.
  1396. substitute.c Fixed bug where functions could overwrite the original
  1397. substitution's arguments.
  1398. highlight.c Added support for xterm 256 color names, dark azure, dark ebony,
  1399. dark jade, dark lime, dark orange, dark tan, dark silver, dark
  1400. violet, light azure, light ebony, light jade, light lime, light
  1401. orange, light tan, light silver, light violet.
  1402. variables.c Added the %A #format option which prints the corresponding ASCII
  1403. value of the given character. Useful for low level string
  1404. handling.
  1405. Apr 2011 2.00.7
  1406. --------------------------------------------------------------------------------
  1407. main.c Added -s option to launch tt++ with a custom seed, undocumented
  1408. till I get to think it over.
  1409. math.c Improvements to #switch.
  1410. telopt.c Added basic low level VT100 stripping for answer back codes.
  1411. telopt.c Added MSDP array support.
  1412. mapper.c Added a set and get option to #map exit that stores and
  1413. retrieves from a data field.
  1414. mapper.c Added the terrain and data fields to #map set and #map get. The
  1415. data field is intended to contain a table, eliminating the need
  1416. for future extensions.
  1417. system.c When using #run followed by #zap the created child process will
  1418. be properly killed instead of left to hang as a zombie process.
  1419. tick.c When setting a delay the final delay time is echoed.
  1420. event.c Added some extra security to event triggers.
  1421. telopt.c Added MTTS support. On a third TTYPE request MTTS will be
  1422. reported followed by a bitvector that indicates whether ANSI,
  1423. VT100, UTF-8, and 256 colors are enabled. The UTF-8 and 256
  1424. color settings can be configured by the user. VT100 is reported
  1425. as disabled if #split mode is enabled - this because the split
  1426. screen mode needs to be disabled for server side VT100
  1427. interfaces to work.
  1428. system.c Added some extra security to the #script command.
  1429. system.c Changed the #script command to behave like a two argument
  1430. command in preperation of removing the rather awkward
  1431. single argument support.
  1432. line.c Added #line ignore option to execute a command without
  1433. checking any triggers.
  1434. config.c Added a 256 COLOR option. When called with auto it'll guess at
  1435. the terminal's 256 color capabilities.
  1436. variable.c When setting a variable the final variable definition is echoed.
  1437. variable.c Added support for BIG5 and UTF8 string formatting.
  1438. cursor.c Added support for BIG5 and UTF8 input handling.
  1439. config.c Added session based BIG5 and UTF8 #config CHARSET option.
  1440. substitute.c Fixed word boundary matching for substitutions.
  1441. highlight.c Fixed word boundary matching for highlights.
  1442. nest.c Math is no longer performed on table keys, mainly to reduce
  1443. annoying false positives, and because the behavior can be
  1444. scripted with math functions. Math is still performed when
  1445. looking up an index.
  1446. path.c Renamed #path map to #path show, #path map still works, but it
  1447. doesn't properly describe what the command does.
  1448. path.c Added #path unzip option that'll load a speedwalk.
  1449. line.c #line logverbatim is now fully verbatim.
  1450. log.c Added a #log off option. #log append and overwrite can now be
  1451. called while logging is already enabled.
  1452. Jan 2011 2.00.6
  1453. --------------------------------------------------------------------------------
  1454. buffer.c Added better multi-line scroll back handling when word wrap is
  1455. disabled.
  1456. telopt.c Braces are now properly converted in raw gmcp data.
  1457. highlight.c Fixed a bug causing only the first highlight on a line to
  1458. trigger.
  1459. line.c Added a #line {verbose} {<commands>} option which forces
  1460. verbosity on the given commands.
  1461. buffer.c The first match for #buffer find is now 1 instead of 0.
  1462. buffer.c Added support for negative page numbers, causing #grep to search
  1463. from the beginning to the end of the scroll back buffer. The
  1464. first page is now page 1 instead of page 0.
  1465. buffer.c Added a NULL check to prevent possible crashes, not ideal as it
  1466. hides an underlying bug.
  1467. net.c Added the RECEIVED OUTPUT event with %0 containing the received
  1468. output from the server. Can be used to create multi-line
  1469. triggers, though it wouldn't be very efficient.
  1470. main.c No longer enabling DECCKM on startup so keypad mode works
  1471. correctly with MinTTY, it should also result in more reliable
  1472. cross-terminal behavior. This might change the sequence of key
  1473. presses on some systems, so remap macros that stop working.
  1474. mapper.c Added #map resize <size> option to increase the maximum number
  1475. of rooms.
  1476. mapper.c Added #map get worldsize option.
  1477. mapper.c Added #map get worldflags option and fixed some displaying issues
  1478. in the #map exit command.
  1479. update.c Added several time events, YEAR, MONTH, WEEK, DAY, HOUR, MINUTE,
  1480. SECOND, DATE mm-dd, DATE mm-dd hh:mm, TIME hh:mm, TIME hh:mm:ss.
  1481. Events like YEAR 2012, MONTH 04, HOUR 13, are valid as well.
  1482. %0 to %6 hold year, month, week, day, hour, minute, and second
  1483. for each event.
  1484. math.c Added support for automatic dd:hh:mm:ss time to second
  1485. conversion. For example, #math test 1:12:32:17 would store
  1486. 131537 in test. #delay 10:00 #bell would ring the terminal bell
  1487. after 10 minutes. This change will effect associative arrays
  1488. consisting of numbers and colons.
  1489. tinexp.c Updated #replace to support regular expressions. Like with the
  1490. #regex command the &1..&99 arguments can be used.
  1491. Oct 2010 2.00.5
  1492. --------------------------------------------------------------------------------
  1493. session.c Fixed split settings not getting properly inherited from the
  1494. startup session.
  1495. advertise.c Updated with 2011 sponsors.
  1496. system.c do_script() and do_system() now call refresh_terminal(), this
  1497. due to php calls messing up the terminal settings.
  1498. terminal.c Added the refresh_terminal() function which will reset the
  1499. terminal settings to the tintin default.
  1500. mapper.c Fixed the MAP EXIT ROOM event, it was reporting the next room
  1501. rather than the current room for %0. %1 now holds the new room,
  1502. and MAP ENTER ROOM will hold the old room in %1.
  1503. mapper.c Added the option to make vnum specific events, like MAP EXIT ROOM
  1504. 42 or MAP ENTER ROOM 27.
  1505. vt102.c Fixed bug in the VT102 state handler.
  1506. mapper.c Added the option to provide a vnum for #map delete.
  1507. tokenize.c Fixed a bug with the verbose state being lost when starting a
  1508. new session using an alias.
  1509. tinexp.c Fixed a bug with embedded variables not getting substituted when
  1510. used in nested variables.
  1511. Aug 2010 2.00.4
  1512. --------------------------------------------------------------------------------
  1513. tokenize.c Added a better verbatim and verbosity handler to more
  1514. generically deal with aliases and input triggered events.
  1515. mapper.c Several mapper messages are no longer displayed when used in
  1516. scripts.
  1517. vt102.c Added proper \e[0;0r VT100 handling.
  1518. telopt.c Added IAC DONT TTYPE handling, allowing servers to reset the
  1519. TTYPE negotiation state.
  1520. telopt.c Added support for cycling through terminal types. On the first
  1521. TTYPE request TINTIN++ is reported, on the second request the
  1522. TERM environment variable is reported.
  1523. misc.c #zap now takes an optional argument to zap a specific session.
  1524. text.c When UTF8 is defined in tintin.h UTF8 characters should get
  1525. wordwrapped correctly.
  1526. telopt.c Added support for module like MSDP events.
  1527. mapper.c Added #map uninsert <direction> command which does the exact
  1528. opposite of the insert command.
  1529. mapper.c Added #map at <location> <command> command which executes the
  1530. given commands at the given location.
  1531. variable.c Allowing math in #format %t time seeds.
  1532. path.c Fixed #path zip command.
  1533. prompt.c Added better #prompt {line} {substitution} {0} support to print
  1534. a mud prompt and pending input on the 0 line.
  1535. mapper.c Added #map map 80x20 <filename> {a} option to log in append
  1536. mode, by default an overwrite is performed.
  1537. path.c Added the option to use #path load {n;e;s;w;u;d}
  1538. path.c When using #path run {delay} you can remove pending run commands
  1539. (fairly) safely using: #undelay PATH %d
  1540. This will also work for #map run {location} {delay}
  1541. Jul 2010 2.00.3
  1542. --------------------------------------------------------------------------------
  1543. mapper.c When path finding the path will be highlighted on the map.
  1544. telopt.c Added support for GMCP events and JSON to TINTIN conversion.
  1545. mapper.c Merged the #map exit and #map exitdir into the #map exit command,
  1546. adding options for COMMAND, DIRECTION, FLAG, NAME, and VNUM.
  1547. mapper.c Added support for exit flags, no actual exit flags have been
  1548. implemented yet.
  1549. mapper.c Added #map goto {vnum} {dig} option to have goto dig a room
  1550. if the room does not exist.
  1551. mapper.c Added #map dig {dir} {<vnum>} option to dig an exit to the
  1552. specified vnum.
  1553. mapper.c Added NOFOLLOW flag support to stop auto following of the
  1554. mapper.
  1555. nest.c Fixed freeze bug caused by using a semi-colon between
  1556. associative array elements.
  1557. variables.c Statements like %+10s now ignore colors.
  1558. variable.c Escapes are now handled correctly by %L in #format.
  1559. input.c Fixed an issue in echo_command causing broken packets to
  1560. be echoed without triggering any actions or events.
  1561. mapper.c When setting an exit command it will work like an alias when
  1562. in that room.
  1563. list.c #list {var} add now allows semi-colon separated arguments.
  1564. list.c #list {var} create now allows semi-colon separated arguments.
  1565. variable.c #variable allows additional arguments which can be used to
  1566. merge nested variables.
  1567. nest.c Added add_nest_node function which is a copy of set_nest_node
  1568. except that it doesn't clear the variable.
  1569. telopt.c Added MSDP_OPEN and MSDP_CLOSE support.
  1570. telopt.c MSDP arrays no longer generate an event for each item, instead
  1571. a list is generated.
  1572. tintin.h Lowered BUFFER_SIZE to 20000 because of crash reports.
  1573. files.c #write now only saves triggers that do not belong to a class.
  1574. mapper.c Added MAP ENTER MAP and MAP EXIT MAP events.
  1575. split.c Redrawing the VTMAP whenever the split settings are reset,
  1576. typically on session switch and screen resize.
  1577. Apr 2010 2.00.2
  1578. --------------------------------------------------------------------------------
  1579. line.c Added the #line substitute options which allows the
  1580. substitution of variables, functions, colors, and
  1581. escape codes in the given argument.
  1582. config.c Added a config option to enable BIG5 support.
  1583. mapper.c Added an optional vnum argument to #map get and #map set,
  1584. calling #map get on an invalid vnum results in the variable
  1585. being set to 0 while #map set calls on invalid vnums do
  1586. nothing.
  1587. terminal.c Added SCREEN RESIZE event.
  1588. session.c Added SESSION ACTIVATED and SESSION DEACTIVATED events.
  1589. nest.c Nested variable calls to non existing nests now return
  1590. "" rather than "0", this to allow $var[%*] calls to work
  1591. correctly with empty variables. I originally added the "0"
  1592. response for if checks, but this is obsolete with the
  1593. much more reliable &variable[] call.
  1594. buffer.c Added a check to avoid a potential crash on displaying the
  1595. scrollback buffer in show_buffer(), needs a better fix but I
  1596. don't have the time and patience.
  1597. tables.c Removed #suspend command, #cursor suspend is available instead.
  1598. tokenize.c Added BIG5 handling for #parse
  1599. tintin.h Fixed an error in the SCROLL macro that determines whether
  1600. something is printed inside or outside of the scrolling region.
  1601. tinexp.c Function arguments are no longer space but semicolon separated.
  1602. mapper.c Updated messages to be non triggerable and to only echo on manual
  1603. input.
  1604. Feb 2010 2.00.1
  1605. --------------------------------------------------------------------------------
  1606. help.c Added documentation for #map exitdir
  1607. net.c Fixed a bug with color patch prepending the current line's color
  1608. rather than the previous line's color.
  1609. vt102.c Improved 256 color patching handling.
  1610. vt102.c Added better \b handling, so muds using backspaces won't cause
  1611. wrapping or scrollback issues.
  1612. path.c #path load and #path save now load and save to variables, rather
  1613. than aliases.
  1614. mapper.c Added #map dig {<direction>} {new} option.
  1615. mapper.c Added support for loading map files edited in Windows.
  1616. tinexp.c Added support for separating function arguments using semicolons.
  1617. buffer.c Now only stores a buffer line as a simple variable if no upper
  1618. bound argument is given. Added support for dealing with a
  1619. lower upper bound to store the lines in reverse.
  1620. math.c Fixed floating point handling.
  1621. data.c Fixed floating point associative array handling.
  1622. Jan 2010 2.00.0
  1623. --------------------------------------------------------------------------------
  1624. list.c Changed substitution order for #list add to substitute before
  1625. breaking up the arguments.
  1626. tinexp.c Added escaping of existing functions using @@
  1627. tokenize.c Added tokenization of #regex.
  1628. data.c A trigger's priority can now be a floating point numbers.
  1629. tinexp.c Fixed COMMAND_SEPARATOR related bug introduce in 1.99.9.
  1630. misc.c Added escape substitutions to vt row echo calls.
  1631. buffer.c Added #buffer get option.
  1632. Nov 2009 1.99.9
  1633. --------------------------------------------------------------------------------
  1634. update.c Fixed crash bug with delays.
  1635. math.c Fixed issue with negative numbers.
  1636. main.c Fixed infinite reconnect trigger loop with #end.
  1637. tintin.h Can now alter the COMMAND_SEPARATOR definition in tintin.h to
  1638. change the command separator character.
  1639. buffer.c Added #buffer clear option.
  1640. math.c Fixed bug with ~ handling.
  1641. tick.c Fixed a bug with delays not substituting variables right away.
  1642. Sep 2009 1.99.8
  1643. --------------------------------------------------------------------------------
  1644. math.c Added check to bypass inf and nan in tintoi.
  1645. update.c Fixed a potential memory overflow in the input parser.
  1646. misc.c Fixed displaying bug with semi-colons in echos.
  1647. nest.c Added support for $variable[regex] to return lists. For
  1648. example $variable[%*]
  1649. tinexp.c No longer required to escape literal ^ and $ signs.
  1650. So #regex {A ^ B} {A ^ B} returns true now instead of false.
  1651. net.c Instead of exiting, tintin tries for 1 second to write data
  1652. to a session before closing the session.
  1653. tinexp.c $$<string> only gets converted to $<string> if $<string> makes
  1654. a valid variable. Same for &&<string>.
  1655. tokenize.c Added support for using ; in #foreach.
  1656. misc.c Added support for using ; in #forall.
  1657. mapper.c Updated the map grid to allocate memory for a future
  1658. #map dump 99x99 <file> command.
  1659. Jul 2009 1.99.7
  1660. --------------------------------------------------------------------------------
  1661. mapper.c Added #map color <rooms|exits> <color> option.
  1662. mapper.c #map list uses all location fields now, displays distance, and
  1663. no longer displays exits.
  1664. mapper.c Added desc, area, and note field to rooms.
  1665. mapper.c Added checking for exits as well as desc, area, and note for
  1666. the map goto and map find commands.
  1667. tokenize.c Substituting the arguments of #return.
  1668. nest.c $variable[] returns "" if the variable exists but has no nests
  1669. *.c Updated triggers to substitute variables.
  1670. tinexp.c Added %i and %I to toggle case in-sensitive matching.
  1671. misc.c Added #echo {{spam}{row}} support.
  1672. parse.c Yet another attempt to get verbatim mode working properly.
  1673. variable.c Renamed #replacestring to #replace
  1674. tinexp.c All commands now use tintin regular expressions. Instead of
  1675. * and ? use %* and %? - for perfect matches uses ^string$.
  1676. This change affects the #regexp and #if commands.
  1677. tokenize.c Added #write support for #loop and #foreach.
  1678. tokenize.c Added #foreach {list} {variable} {commands}
  1679. tokenize.c #loop syntax is now: #loop {min} {max} {variable} {commands}
  1680. variables.c The argument list of #format and #echo are no longer nested,
  1681. this probably requires many scripts to be updated.
  1682. nest.c Now only showing non existing nested variables as 0, unnested
  1683. variables will be shown as $variable if they do not exist.
  1684. files.c Added support for saving nested variables.
  1685. list.c Updated list support for nested variables.
  1686. data.c The kill command now takes a 2nd argument allowing to kill
  1687. specific items in the chosen list.
  1688. nest.c Added support for math within brackets.
  1689. math.c Added get_alnum routine.
  1690. nest.c Added support for $variable[] showing all indices.
  1691. nest.c Added support for $variable showing all nested variables.
  1692. nest.c Can now assign nested variables directly nested pairs of braces.
  1693. nest.c Added support for &variable reporting the variable's index.
  1694. tokenize.c Added #else command.
  1695. parse.c brackets now provide nesting so #var bla[bli bli] x will
  1696. execute as #var {bla[bli bli]} instead of #var {bla[bli}
  1697. data.c Accessing an variable index now requires +1 instead of 1.
  1698. mapper.c Added MAP EXIT ROOM event.
  1699. tokenize.c Added #switch #case and #default commands.
  1700. math.c Fixed crash bug with #math.
  1701. list.c Added list srt and ins support for nested list variables.
  1702. data.c Sorting numeric variables as integers instead of as strings.
  1703. text.c Fixed crash bug in wordwrap code.
  1704. net.c Fixed double action triggering on prompts in split mode.
  1705. variables.c $1 now references the first variable, $2 the second, etc.
  1706. variable.c Uninitialized variables now return 0.
  1707. data.c Added nested variables. As in #var $bla[this][that] 1
  1708. data.c Changing from linked lists to sorted arrays.
  1709. cursor.c Replaced #cursor echo with 'echo on' and 'echo off'
  1710. cursor.c Modifying the input buffer while tabbing will reset the
  1711. tab finder.
  1712. May 2009 1.99.6
  1713. --------------------------------------------------------------------------------
  1714. cursor.c Added forward and backward tab completion patch by Ben Love.
  1715. forkpty.c Added forkpty patch by David Champion. It allows tintin to
  1716. run on Solaris and other systems that lack forkpty().
  1717. April 2009 1.99.5
  1718. --------------------------------------------------------------------------------
  1719. *.c Made code c++ compatible.
  1720. system.c Added 2nd argument to textin for a cumulative per line delay.
  1721. telopt.c Added event handlers for MSDP, NEW-ENVIRON, and ZMP.
  1722. substitute.c #sub {trigger} {.} no longer gags text, use #gag instead.
  1723. substitute.c Now allowing multiple substitutions per line which are
  1724. automatically substring substitutions.
  1725. March 2009 1.99.4
  1726. --------------------------------------------------------------------------------
  1727. utils.c Fixed 100 move map crash bug.
  1728. input.c Now sending \r on enter when using #run, seems to give the best
  1729. behavior.
  1730. log.c Added xterm 256 color html logging.
  1731. terminal.c Disabled default ctrl-s and ctrl-q behavior.
  1732. March 2009 1.99.3
  1733. --------------------------------------------------------------------------------
  1734. data.c Now properly inheriting triggers from the startup session.
  1735. net.c Now fetching IP address when connecting to a server.
  1736. variable.c Now possible to use escape codes in #replace
  1737. vt100.c Tabs are no longer stripped in the scrollback buffer.
  1738. help.c Updated event helpfile with event arguments.
  1739. telopt.c Added generic telnet subnegotiation event.
  1740. telopt.c Added better broken packet support for telnet negotiations.
  1741. variable.c now possible to use #var bla {} to set an empty variable.
  1742. event.c Extended the event handler to easily accept additional arguments.
  1743. tinexp.c Now possible to send NUL bytes with #send using \x00 or \c@.
  1744. This is as far as the support for non strings goes though.
  1745. tinexp.c Can use #regex on an empty string now.
  1746. input.c Resetting command color at end of command.
  1747. tinexp.c %%w, %%*, etc, should escape properly now.
  1748. parse.c Fixed VERBATIM behavior, aliases can now be used in verbatim
  1749. mode.
  1750. alias.c Now possible to #ignore aliases.
  1751. highlight.c Fixed highlights.
  1752. March 2009 1.99.2
  1753. --------------------------------------------------------------------------------
  1754. tinexp.c Added pre-compiler for triggers, making them execute much faster.
  1755. input.c Macros now default to \ca to \cz for control characters instead
  1756. of readline's \C-a to \C-z. This because PCRE uses \c and it
  1757. makes sense to use a universal system. Old control codes still
  1758. work.
  1759. mapper.c Can now use #map create {number of rooms}, by default the number
  1760. of rooms is set to 15000. World size is stored as C <number> in
  1761. map files.
  1762. February 2009 1.99.1
  1763. --------------------------------------------------------------------------------
  1764. telopt.c Added MSSP support, use: #config {debug telnet} on, to see the
  1765. output from a MUD server supporting MSSP.
  1766. tinexp.c Added pre-parser to convert tintin globs to regexps.
  1767. tinexp.c Now using PCRE (Perl Compatible Regular Expressions)
  1768. tinexp.c Added \cx "control-x", where x is any character.
  1769. tinexp.c Added \0xx, where x is an octal number.
  1770. February 2009 1.99.0
  1771. --------------------------------------------------------------------------------
  1772. misc.c #showme and #echo now can have a / as a suffix to stop a
  1773. linefeed from being added.
  1774. vt100.c Added an extra measure to prevent losing track of the cursor
  1775. position.
  1776. documentation Updated the credits file and my mods file.
  1777. tables.c Added a full telnet option table.
  1778. tables.c Added END OF PATH event.
  1779. tokenize.c Now shows debug info for triggers with #debug enabled.
  1780. buffer.c No longer reprinting screen using page-up at the top of the
  1781. scrollback buffer to stop refresh lag with slow terminals.
  1782. tinexp.c Fixed incorrect displaying of xterm 256 background colors.
  1783. config.c Removed timestamp config option, a scripted #event based
  1784. alternative has been added to the SCRIPT file.
  1785. cursor.c Added cursor option for auto tab.
  1786. config.c Added auto tab option to set the amount of lines of the scroll
  1787. back buffer used for auto tab completion.
  1788. January 2009 1.98.9
  1789. --------------------------------------------------------------------------------
  1790. variable.c Rewrote the 'd' format option to use a digit, mainly to enable
  1791. the + option of normal digit formatting.
  1792. parse.c Fixed speedwalk toggle bug.
  1793. tinexp.c Added <g00> to <g23> xterm 256 color codes to support the
  1794. greyscale colors.
  1795. history.c Updated history command with the list, size and character
  1796. options.
  1797. tokenize.c Fixed ; issue sending out enters in the pre-parser.
  1798. action.c Fixed ; issue in actions, which managed to unfixed itself.
  1799. history.c Updated the history command, now takes #history list to view
  1800. the command history.
  1801. buffer.c Updated the buffer command to use generic command interface.
  1802. December 2008 1.98.8
  1803. --------------------------------------------------------------------------------
  1804. tokenize.c New pre-parser to deal with nesting issues.
  1805. misc.c Added #while {var} {commands} command.
  1806. misc.c #loop no longer works like a while loop.
  1807. misc.c The $loop, $parse, and $forall variables are no longer
  1808. automatically set.
  1809. Makefile.in Added tokenize.o
  1810. files.c #write now formats its output.
  1811. tinexp.c Casting regex arguments to integers so it works properly on os x.
  1812. config.c Added a config option to enable/disable MCCP support.
  1813. variable.c Changed %t format option to use a strftime format instead to
  1814. print the current time.
  1815. telopt.c Streamlined telopt handling slightly to deal with MCCP errors.
  1816. October 2008 1.98.7
  1817. --------------------------------------------------------------------------------
  1818. alias.c Variables can be used in alias triggers, working pretty much
  1819. the same way as they do in actions.
  1820. mapper.c When leaving a map a last room is set, which can be returned
  1821. to with #map return. The last room is stored when saving a map,
  1822. and #map return will work as well after reading in a map.
  1823. help.c Updated the math helpfile with available bit operations.
  1824. misc.c #echo no longer triggers actions.
  1825. help.c Updated the showme and echo help entries.
  1826. mapper.c #map map now takes an optional <x>x<y> size argument and an
  1827. optional filename argument to log the map output to file.
  1828. Useful for people who want to tail -f -s 0.1 a map window.
  1829. config.c Added a timestamp config option to add timestamps to log
  1830. files using the strftime format.
  1831. September 2008 1.98.6
  1832. --------------------------------------------------------------------------------
  1833. mapper.c No longer need braces to use the delay option in map travel
  1834. and map run.
  1835. mapper.c Added static room flag.
  1836. mapper.c Can now specify on/off for setting global flags and room flags.
  1837. mapper.c Added breadth first support for the map drawing routine, based
  1838. on code by Bryan Turner.
  1839. mapper.c Added support for 3 letter room symbols.
  1840. alias.c Variables passed along as an alias argument now go by value
  1841. instead of by reference.
  1842. mapper.c Added the asciivnums flag which displays room vnums in the ascii
  1843. map.
  1844. August 2008 1.98.5
  1845. --------------------------------------------------------------------------------
  1846. mapper.c Added #map jump <x> <y> to goto rooms using coordinates
  1847. relative to the user's current room.
  1848. list.c Added #script {var} {command} option.
  1849. input.c Fixed bug with the first input character being ignored in
  1850. character mode.
  1851. tinexp.c Can now escape variables using 2 or more dollar signs.
  1852. cursor.c Fixed bug with ctrl-w
  1853. cursor.c Fixed bug with ctrl-r's input offset.
  1854. mapper.c When using #map find, run, and goto and there are multiple
  1855. matching rooms the nearest room will be returned.
  1856. July 2008 1.98.4
  1857. --------------------------------------------------------------------------------
  1858. cursor.c Added glob/regex support to reverse history searches.
  1859. tinexp.c wildcard searches should work as old again, and regexp searches
  1860. work more like old wildcard searches.
  1861. tick.c Can use variables for ticker names.
  1862. mapper.c Changed #map exit to #map exitcmd
  1863. mapper.c Added #map exitdir command, which allows setting a direction
  1864. for unusual exits so they can be displayed on the map.
  1865. mapper.c Changed #map walk to #map run, and fixed the optional delay
  1866. argument.
  1867. mapper.c Fixed optional delay argument for the #map travel command.
  1868. mapper.c Void rooms can have more than two exits again if the exits form
  1869. a straight line.
  1870. mapper.c Fixed going through void rooms with #map travel.
  1871. variable.c #format will use the current time if no time value is provided
  1872. for the %M %Y %D %d and %t arguments.
  1873. mapper.c asciigraphics is now the default map display setting.
  1874. terminal.c Enabled the ISIG flag allowing ctrl-c to be mapped.
  1875. cursor.c Updated ctrl-d to allow exiting tintin.
  1876. cursor.c Updated ctrl-c to clear the line rather than exiting tintin.
  1877. config.c Changed #config {echo command} to #config {command echo}
  1878. config.c Added the #config {command color} {<000>} option.
  1879. mapper.c #map insert now allows adding a roomflag as the 2nd argument.
  1880. tinexp.c Can now use %{variable} besides %0 - %99 in actions.
  1881. June 2008 1.98.3
  1882. --------------------------------------------------------------------------------
  1883. mapper.c It's now possible to use strings in the map legenda, mainly for
  1884. terminals supporting UTF-8.
  1885. mapper.c Void rooms now work with unusual exits as well.
  1886. mapper.c Added some unlisted map commands to the #map and #help listing.
  1887. input.c Verbatim mode now only works on manual input, actions and macros
  1888. will have their commands processed normally.
  1889. mapper.c #map map now accepts a given radius.
  1890. config.c #config packet patch now takes a floating point seconds argument
  1891. instead of milli seconds. The valid input range is between 0.00
  1892. and 10.00 seconds.
  1893. config.c Added the #config regexp on/off option.
  1894. input.c Added the RECEIVED INPUT event.
  1895. tinexp.c Added the match function to work with #config regexp.
  1896. cursor.c Added support for deleting words forwards using alt-d
  1897. path.c Added #path zip option to format a created path into
  1898. speedwalk notation.
  1899. tinexp.c \[ and \] no longer escape to { and }, instead \x can
  1900. be used, the values are shown in #help escape.
  1901. tinexp.c All regexp's should substitute escape codes.
  1902. tintin19.txt Rewrote the large manual file to contain a brief up to date
  1903. manual instead. #help remains the primary help source.
  1904. tintin15.cr Removed the tintin15.txt copyright notice as the documentation
  1905. by Robert Ellsworth is no longer used.
  1906. May 2008 1.98.2
  1907. --------------------------------------------------------------------------------
  1908. tables.c Home and End now use cursor home and end.
  1909. input.c Added support for \x and \b in macros.
  1910. net.c Fixed a bug with stacking prompts.
  1911. cursor.c Pressing ctrl-r (history search) while searching will place
  1912. the found search in the input field.
  1913. cursor.c Added left_word and right_word for alt b and f behavior.
  1914. March 2008 1.98.1
  1915. --------------------------------------------------------------------------------
  1916. main.c Command history is no longer automatically saved and loaded.
  1917. history.c Added history read and write option.
  1918. cursor.c Fixed displaying of ctrl-r reverse command history search.
  1919. *.c Added punctuation to most messages.
  1920. *.c Fixed function arguments overwriting action arguments.
  1921. tinexp.c { and } in triggers will be translated to \x codes.
  1922. line.c Added the line command to group #gagline and #logline.
  1923. tables.c Added the 'program termination' and 'received line' events.
  1924. February 2008 1.98.0
  1925. --------------------------------------------------------------------------------
  1926. cursor.c Added the #cursor enter option
  1927. input.c Fixed #macro usage in character mode.
  1928. chat.c Fixed an exploit to erase files with #chat.
  1929. chat.c Fixed a crash bug in the negatiation routine, apparently
  1930. sscanf doesn't check line feeds.
  1931. chat.c Lowered the maximum read from socket size to half of
  1932. BUFFER_SIZE to prevent buffer overflows.
  1933. log.c Fixed a coloring bug with html logging.
  1934. alias.c Fixed a bug with alias parsing.
  1935. December 2007 1.97.9
  1936. --------------------------------------------------------------------------------
  1937. highlight.c Added 'dark' as a valid color name.
  1938. vt102.c Added get_color_codes function.
  1939. text.c Now printing the previous color code on each new line.
  1940. config.c Added a color patching option.
  1941. log.c Fixed append logging in html mode for cygwin.
  1942. parse.c Went back to the more robust old school memory usage with
  1943. some changes to still allow for recursion.
  1944. telopt.c re-enabled GA prompt handling.
  1945. main.c Fixed a bug with the startup argument routine.
  1946. November 2007 1.97.8
  1947. --------------------------------------------------------------------------------
  1948. input.c Fixed some chinese character related issues.
  1949. parse.c Fixed some chinese character related issues.
  1950. tinexp.c Added the option to use %00 to %99
  1951. tinexp.c Must now escape using %% rather than %%90
  1952. path.c Added #path run <delay> option.
  1953. highlights.c #highlight now colors all matches on a line.
  1954. tinexp.c Functions now only use %0 to %99 rather than &*
  1955. October 2007 1.97.7
  1956. --------------------------------------------------------------------------------
  1957. variable.c Fixed some coloring issues with the %w format option.
  1958. input.c Macros no longer trigger with config convert meta enabled.
  1959. net.c Fixed prompt handling issue for triggers in split mode.
  1960. tinexp.c Added the regexp command to use regexp string comparisons.
  1961. August 2007 1.97.6
  1962. --------------------------------------------------------------------------------
  1963. input.c Fixed some server side VT issues with command echoing.
  1964. text.c Tintin no longer line wraps when word wrap is disabled, this to
  1965. fix pasting issues, and assuming that most terminals will line
  1966. wrap correctly.
  1967. history.c No longer add input with less than 2 bytes to the history.
  1968. cursor.c Added prefix history searching.
  1969. files.c Fixed verbose behavior when reading a file which reads a file.
  1970. net.c Fixed address reporting in #session.
  1971. variable.c Added %w option to wrap text.
  1972. August 2007 1.97.5
  1973. --------------------------------------------------------------------------------
  1974. Fixed some bugs in socket handling.
  1975. #run now shows the stderr when failing to run.
  1976. Fixed a bug with #config {packet patch}.
  1977. July 2007 1.97.4
  1978. --------------------------------------------------------------------------------
  1979. Added the #run command to run various applications inside tintin.
  1980. Added packet defragmentation at the socket level.
  1981. Fixed a buffer overflow in the scrollback buffer's prompt
  1982. handling.
  1983. July 2007 1.97.3
  1984. --------------------------------------------------------------------------------
  1985. Added the #script command to run any kind of script client side.
  1986. Fixed a variety of minor bugs.
  1987. June 2007 1.97.2
  1988. --------------------------------------------------------------------------------
  1989. Fixed buffer overflow with receiving several prompts.
  1990. Fixed bug with scrollback lines not being properly deleted.
  1991. Added #map explore and #map travel options.
  1992. May 2007 1.97.1
  1993. --------------------------------------------------------------------------------
  1994. Added #map insert
  1995. Fixed bug with #list fnd
  1996. Fixed bug with prompts in buffer
  1997. Set #delay {name} {command} {delay} as alternative syntax
  1998. opposed to #delay {delay} {command}
  1999. April 2007 1.97.0
  2000. --------------------------------------------------------------------------------
  2001. chat.c Configure now detects a missing pthread library.
  2002. tick.c Delay now takes a name argument as the 3rd argument.
  2003. tick.c Added #undelay command.
  2004. cursor.c Added the option to paste deleted input with ctrl-y
  2005. March 2007 1.96.9
  2006. --------------------------------------------------------------------------------
  2007. list.c Added #list {list} clr option to empty a list.
  2008. list.c Added #list {list} srt option to insert in alphabetic order.
  2009. parse.c Defined a COMMAND_SEPARATOR variable instead of ';' checks.
  2010. utils.c Fixed some display issues for #showme and untriggered prompts
  2011. in split mode.
  2012. session.c Now uses #session {name} {host} {port}
  2013. tinexp.c Can now use %0 (all args) and %1 to %9 in functions.
  2014. memory.c Increased the maximum internal memory size from 10 to 50KB.
  2015. debug.c Set the maximum number of iterations to 10K.
  2016. February 2007 1.96.7
  2017. --------------------------------------------------------------------------------
  2018. mapper.c Fixed fast forwarding shortest path searches through void rooms.
  2019. mapper.c Fixed #map link not deleting old links.
  2020. mapper.c Fixed drawing of void rooms.
  2021. help.c Added a cleaned up version by Simon.
  2022. cursor.c History next and prev now put the cursor at the end of the line.
  2023. gag.c Seperated gags from substitutions.
  2024. files.c Inproved accuracy of #read's error report.
  2025. path.c Merged all path commands into one generic path command.
  2026. March 2007 1.96.8
  2027. --------------------------------------------------------------------------------
  2028. main.c Added getopt supported command-line argument handling.
  2029. main.c Added [-t title] option to set the title bar.
  2030. files.c Now stripping all trailing spaces and tabs in #read.
  2031. utils.c Added show_debug command to display debug messages a bit easier.
  2032. net.c Added IPv6 support.
  2033. cursor.c Added cursor_echo function to toggle local echo.
  2034. cursor.c Added cursor_insert function to toggle insert mode.
  2035. tinexp.c Using $variable[index] now works with lists.
  2036. variable.c Can set list indexes with #var {variable[index]} {text}
  2037. January 2007 1.96.6
  2038. --------------------------------------------------------------------------------
  2039. cursor.c Fixed behavior of ctrl-e for osx.
  2040. log.c Fixed newly introduced crashbug with #logline
  2041. highlight.c Now parses <###> color codes to allow for 256 colors.
  2042. function.c Can now use undescores in function names.
  2043. tables.c Added map list for #map undo and message handling.
  2044. main.c Added pathdirs for diagonal exits and spatial coordinate info.
  2045. mapper.c Now using spatial coordinates from pathdirs. This requires
  2046. users to reset their saved pathdirs. If used correctly mapping
  2047. should work for muds with a non standard exit system.
  2048. mapper.c Added movement history for #map undo
  2049. mapper.c Updated #map undo to use the map movement history
  2050. cursor.c Fixed bug in ctrl-e behavior
  2051. misc.c Removed old debug message in #send.
  2052. mapper.c Added room symbols.
  2053. mapper.c Added #map set to set various attributes
  2054. mapper.c Added #map get to get various attributes and store them as
  2055. variables.
  2056. mapper.c #map walk {location} {0.5} will now run to the location with
  2057. 0.5 second delays between commands.
  2058. input.c Added input_printf for consistent echo handling
  2059. tables.c Added generic variable and function substitution for #map
  2060. input.c Now checking for negative characters when converting meta
  2061. characters. Should fix issues when creating macros with
  2062. swedish and german characters.
  2063. buffer.c Can now use #buffer f with negative numbers to find the first
  2064. instead of last occurance of a string. Also made the no match
  2065. found string triggerable.
  2066. mapper.c Can now use case insenstive room finding with wildcards in
  2067. #map find and other room search related commands.
  2068. tintin.h Placed lists in alphabetical order.
  2069. event.c Added a basic event system, check #event
  2070. December 2006 1.96.5
  2071. --------------------------------------------------------------------------------
  2072. buffer.c fixed up color handling of commands.
  2073. *.c Put on my dirty boots and annihilated all lib readline related
  2074. stuff. Readline sucks donkey balls. You can quote me on that.
  2075. terminal.c Merger of echo.c and scrsize.c
  2076. terminal.c Added init_terminal to force character mode for input handling.
  2077. terminal.c Added custom screensize handling.
  2078. rl.c Now forwarding data on stdin to input.c
  2079. input.c Added basic command parsing options.
  2080. history.c Added tintin-esque command history support.
  2081. cursor.c Deals with cursor handling for input.c
  2082. tables.c Added a command table for cursor.c
  2083. cursor.c Added support for some readline-esque input handling.
  2084. tab.c Added my own (improved) tab handling.
  2085. tab.c Moved tab handling to cursor.c
  2086. vt102.c Made some improvements to the VT102 support.
  2087. cursor.c Added history browsing with up, down, ctrl-p and ctrl-n. Made
  2088. some minor improvements over the readline version.
  2089. utils.c Added ins_sprintf function that properly inserts a string
  2090. within another strong. Has formatting capabilities.
  2091. input.c Added process_input as the main input function.
  2092. input.c Added read_line function for default command parsing.
  2093. input.c Added read_key function for character mode.
  2094. main.c Moved suspend and exit functions to main.c
  2095. main.c Fixed #suspend handling.
  2096. split.c Now adjusting NAWS when changing split screen.
  2097. cursor.c Added do_cursor for using cursor features in macros.
  2098. history.c Added do_history for history manipulation.
  2099. rl.c Moved to update.c
  2100. *.c Tintin is now officially lib readline free. Good riddance.
  2101. The binaries are 40% smaller.
  2102. tinexp.c Added 256 xterm color support using <aaa> to <fff> with rgb
  2103. values. Background colors are set with <AAA> to <FFF>
  2104. tintin.h Added gtd->flags for global flags instead of using cludgy
  2105. flags on gts->flags.
  2106. cursor.c Added cursor_redraw_line routine which adds readline input
  2107. scrolling behavior. Tintin will probably work quite poorly on
  2108. non VT100 terminals now.
  2109. tables.c Added list flags to work around the fact that I use lists for
  2110. stuff they weren't originally intended for. Updated list parsers
  2111. throughout the source code.
  2112. main.c Added a signal handler for SIG_TSTP to handle ctrl-z smoothly.
  2113. input.c Escaped unmatched sequences are now automagically meta converted.
  2114. cursor.c history prev and next can now be used in combination with the
  2115. history search function.
  2116. mapper.c Improved map drawing by using virtual coordinates.
  2117. mapper.c Added a flag to enable vt graphics mode. A hopefully universal
  2118. legenda is: 250 223 222 200 220 186 201 204 221 188 205 202 187
  2119. 185 203 206 246
  2120. mapper.c Added a flag to draw 6x3 ascii graphics which allows displaying
  2121. rooms going ne, nw, se, sw, u, and d.
  2122. misc.c Can no longer use commas in #loop. When using 1 argument with
  2123. #loop it's assumed
  2124. misc.c Can now use math in delays, as in #delay 1d5 smile.
  2125. mapper.c Added the void roomflag which can be used to turn rooms into
  2126. links. This is mainly useful to fit overlapping areas on the
  2127. same map without using the hide flag.
  2128. December 2006 1.96.4
  2129. --------------------------------------------------------------------------------
  2130. class.c classes are now properly inherited from the main session.
  2131. misc.c fixed chinese character issue with #parse.
  2132. parse.c fixed parsing issues introduced in 1.96.3.
  2133. mapper.c debugged and updated alpha mapping code to beta.
  2134. tables.c added a mapping related sub-command table.
  2135. November 2006 1.96.3
  2136. --------------------------------------------------------------------------------
  2137. telopt.c Updated telopts to login on globalvillage bbs.
  2138. buffer.c Added buffer find option, which works much like grep but instead
  2139. places the scrollback buffer at the given search string.
  2140. tinexp.c Can now add lists of keywords between square brackets divided
  2141. by seperators, for example [his|her|its] in actions. The actual
  2142. text is stored in the next %0-9. Cannot be used for highlights.
  2143. list.c array_fnd function allows searching for words in lists.
  2144. path.c can now save loaded paths backward.
  2145. August 2006 1.96.2
  2146. --------------------------------------------------------------------------------
  2147. variables.c Removed #getitemnr, obsolete with the #list command.
  2148. variables.c Removed #getlistlength, obsolete with the #list command.
  2149. variables.c Removed #removestring, obsolete with the #replacestring command.
  2150. math.c Added tineval to properly evaluate == and !=
  2151. chat.c Now setting NONBLOCK on the chat port due to reports about
  2152. disconnects hanging tintin.
  2153. config.c Added #config {log level} {low|high} which is a hidden config
  2154. option. Defaults to high, when set to low tintin will log the
  2155. raw mud output.
  2156. August 2006 1.96.1
  2157. --------------------------------------------------------------------------------
  2158. misc.c Fixed a spacing issue in do_showme.
  2159. mapper.c Fixed map drawing.
  2160. telopt.c Fixed telnet negotations to login on ISCA BBS.
  2161. math.c Commas are now stripped from numbers.
  2162. math.c Added support for floating point math.
  2163. tick.c Can use 1d10 etc for the times in #delay.
  2164. main.c Added -h and -e as startup options.
  2165. June 2006 1.96.0
  2166. --------------------------------------------------------------------------------
  2167. data.c Rewrote #killall to accept arguments to kill specific lists.
  2168. chat.c Added #chat unitialize.
  2169. chat.c Added basic support for group chats.
  2170. chat.c Added support for colored names.
  2171. highlight.c Fixed crash bug for invalid highlights.
  2172. class.c Fixed crash bug with #killall related to classes.
  2173. chat.c Added #chat send which allows sending custom chat commands.
  2174. chat.c Fixed link lost crash bug.
  2175. April 2006 1.95.9
  2176. --------------------------------------------------------------------------------
  2177. input.c Fixed some bugs in the character mode support.
  2178. misc.c Placed the functions in alphabetic order and added #SEND which
  2179. will send the given argument directly to the mud. Useful for
  2180. sending escape sequences because you cannot start a mud
  2181. command with an escape sequence.
  2182. scrsize.c If in character mode tintin depreps the terminal temporarily
  2183. when sending NAWS. Yet another annoying readline bug.
  2184. chat.c Added DND (do not disturb) feature. When enabled tintin will
  2185. no longer accept new chat connections.
  2186. Fixed a bug in the DNS lookup routine for addresses starting
  2187. with a number.
  2188. Can now chat to people by entering their ip address. Useful to
  2189. deal with auto ip bans.
  2190. parse.c Complex multi words aliasses are now possible.
  2191. data.c Priority lists are now sorted alphabetically per priority level
  2192. class.c #class class read <file> no longer parses files for the given
  2193. class. The code was too messy to maintain. Instead it'll open
  2194. the class, read the file, and close the file.
  2195. alias.c Added support for complex multi word aliasses.
  2196. chat.c Added #chat public option, accepts the all argument.
  2197. chat.c Added #forward all which included session output
  2198. chat.c Added #color which sets the default color
  2199. chat.c Added a boost option for #chat accept to quadruple download
  2200. speeds, might cause file corruption on bad connections.
  2201. class.c Rewrote some code, #unclass should work now.
  2202. data.c Issueing #tick {name} twice will now reset the ticker.
  2203. math.c Fixed invalid input handling.
  2204. misc.c Snooping a non existant session no longer crashes tintin.
  2205. March 2006 1.95.8
  2206. --------------------------------------------------------------------------------
  2207. buffer.c While the concept works the code should be more solid. Fixed
  2208. some bugs in the buffer code causing scrolling to crash
  2209. on long help files.
  2210. buffer.c Added a #buffer lock option which resembles scroll lock.
  2211. log.c Fixed a bug in #log append which caused it to not generate
  2212. html headers.
  2213. chat.c Modified the threaded chat functions to minimize accessing
  2214. global data.
  2215. chat.c Fixed formatting bug causing chat messages containing %s to
  2216. crash the client.
  2217. chat.c #chat who now shows user flags
  2218. parse.c Removed old code that allowed using " " instead of { } in
  2219. a couple of commands such as #format. While I used it in
  2220. some example scripts the code is causing problems.
  2221. data.c Can now use #unmacro by exactly matching the macro instead of
  2222. having to use \\ for a single \.
  2223. input.c TinTin now enables character mode with echo off and SGA enabled.
  2224. December 2005 1.95.7
  2225. --------------------------------------------------------------------------------
  2226. main.c Added a command reference table to speed up the processing of
  2227. commands slightly.
  2228. tinexp.c The body of a by braces surrounded variable name will be
  2229. substituted now, allowing variables as variable names.
  2230. parse.c No longer sending message spam when using an alias
  2231. buffer.c Fixed a long standing crash bug in the buffer cleanup routine.
  2232. tinexp.c Now matching arguments in triggers like the old tintin did. This
  2233. will interfere with a couple of triggers but shouldn't be too
  2234. big a problem. %0 to %9 will capture the smallest possible
  2235. amount of text instead of the biggest.
  2236. telopt.c IAC EOR and GA spams are dealt with better with {debug telnet}
  2237. enabled.
  2238. telopt.c Dealing with packet fragmentation in the odd case an IAC EOR or
  2239. GA code is split, not sure if it works since it's hard to test.
  2240. October 2005 1.95.6
  2241. --------------------------------------------------------------------------------
  2242. chat.c Added multi threading for opening new chat connections.
  2243. parse.c Added protection for infinite loops.
  2244. utils.c Added hex_number translation function.
  2245. tinexp.c Can now use \x?? where ?? is a hexadecimal number.
  2246. *.c Changed usage of \e with \033 since \e isn't supported on all
  2247. systems.
  2248. misc.c #debug all log, logs debug info without displaying it.
  2249. Makefile.in make install now copies tt++ to /usr/bin
  2250. parse.c Can now disable verbatim mode after enabling it.
  2251. tables.c Got rid of unneeded table size for the command, help, and
  2252. config table.
  2253. variable.c Added %D %M %Y options to print the day month year.
  2254. misc.c Added parse command to parse strings.
  2255. misc.c Fixed double variable substitution for #echo.
  2256. August 2005 1.95.5
  2257. --------------------------------------------------------------------------------
  2258. chat.c Added some extra chat functionality: paste, serve, forward,
  2259. ignore and peek.
  2260. tinexp.c Fixed parsing of function arguments some more.
  2261. list.c Added #list command with basic list support.
  2262. August 2005 1.95.4
  2263. --------------------------------------------------------------------------------
  2264. tinexp.c Fixed some bugs in substitute that slipped in.
  2265. tinexp.c Added skipping of chinese characters in regexp functions.
  2266. data.c Fixed crash bug with killing classes
  2267. function.c Fixed an issue with #return in fuctions stopping the execution
  2268. of multiple commands.
  2269. rl.c pressing control-c while connecting will abort the connection
  2270. instead of exiting the program.
  2271. chat.c Added back the chat module that was originally included with
  2272. version 1.86. I pretty much rewrote it while at it.
  2273. configure BIG5 configuration was giving me issues on slackware.
  2274. Since I didn't feel like figuring out how the script works
  2275. I changed it from --enable-big5 to --big5 and fiddled with
  2276. the script till it seemed to work again.
  2277. July 2005 1.95.3
  2278. --------------------------------------------------------------------------------
  2279. tinexp.c Now substituting functions and arguments (if needed) in a
  2280. function's argument list.
  2281. tinexp.c Ending a command with \ will escape the EOL (\r\n) which won't
  2282. be appended to the end of the line. Same story for #showme.
  2283. telopt.c Added negotiating of EOR (end of record).
  2284. telopt.c IAC GA and EOR will now be seen as prompt markers.
  2285. files.c Now skipping chinese characters in #read
  2286. July 2005 1.95.2
  2287. --------------------------------------------------------------------------------
  2288. data.c Added option to use 'all' in #message, #ignore, and #debug to
  2289. toggle everything at once.
  2290. files.c Removed the #writesession command, it's obsolete with the new
  2291. #class command.
  2292. class.c #class write now adds #class open/close to the begin and end
  2293. of the file.
  2294. files.c Cleaned up a bunch of confirmation messages and made them
  2295. gaggable.
  2296. tab.c Variables and functions in a #tab are now substituted at
  2297. evaluation time.
  2298. Juny 2005 1.95.1
  2299. --------------------------------------------------------------------------------
  2300. files.c If the bracing level is off in the last line tintin reports
  2301. the correct line instead of 0.
  2302. rl.c reading the default readline init file when leaving tintin.
  2303. Should help with a couple of shells not handling this properly.
  2304. echo.c removed some experimental code that ended up causing double
  2305. echoing when switching between sessions.
  2306. split.c fixed screen switching for muds with native vt102 interfaces.
  2307. session.c added #session {-|+|number} options to switch between sessions.
  2308. files.c no longer showing output while using #scan to speed things up
  2309. for huge log files.
  2310. misc.c Added #return which used in an #if check allows bailing out of
  2311. a semicolon seperated command string. If used in a #function
  2312. you can also add an argument to it to set the result, as
  2313. opposed to setting the $result variable directly.
  2314. June 2005 1.95.0
  2315. --------------------------------------------------------------------------------
  2316. macro.c Added prompt handling for macro's. Still not perfect.
  2317. scrsize.c Fixed resetting of split data when resizing the screen.
  2318. split.c Now drawing split lines on all static regions to increase
  2319. clarity for newbies.
  2320. misc.c Can now use #showme {text} {row}, with a row number given
  2321. #showme will act like #prompt.
  2322. misc.c Can use #echo {{format} {row}} {{arguments}} as well.
  2323. rl.c Fixed #snoop messing up in #split mode.
  2324. parse.c Got rid of the code seperating high and low priority actions,
  2325. no longer valid with the #gagline command.
  2326. antisubstitute Removed antisubstitutions since there seems little reason to
  2327. ever need them.
  2328. rl.c Checking internal messages for prompt gags now
  2329. May 2005 1.94.9
  2330. --------------------------------------------------------------------------------
  2331. files.c Added #scan {filename} which will read in a file and send it to
  2332. the screen as if it was send by a mud. This allows one to view
  2333. raw color logs, turn on logging and save the file in a different
  2334. format, as well as adding gags and other text filters to make
  2335. things more readable. I set the default logging mode to raw
  2336. since ansi log files can now be converted to html ones.
  2337. data.c updatenode_list was acting odd, fiddled with it till it stopped
  2338. crashing. Not sure what the problem was.
  2339. May 2005 1.94.8
  2340. --------------------------------------------------------------------------------
  2341. rl.c Fixed packet patch, and added a default patcher for split mode.
  2342. Fixed the displaying of #alias, #action, etc.
  2343. May 2005 1.94.7
  2344. --------------------------------------------------------------------------------
  2345. main.c Fixed #split mode being handled correctly when suspending a
  2346. session.
  2347. data.c Removed excessive color usage when displaying triggers which was
  2348. resulting in crashes.
  2349. rl.c No longer clearing the screen when exiting tintin++.
  2350. table.c Added flags for commands, so far only automatically substituting
  2351. variables and functions for commands that have the sub flag.
  2352. May 2005 1.94.6
  2353. --------------------------------------------------------------------------------
  2354. rl.c Now adding all keyboard input to the scrollback buffer.
  2355. rl.c When in #split mode with no #prompt defined tintin tries to
  2356. mimic normal behavior, which includes placing input at the
  2357. end of the prompt.
  2358. prompt.c #prompt matched lines are now written to the scrollback buffer,
  2359. to simulate the old behavior make an #action executing #gagline.
  2360. May 2005 1.94.5
  2361. --------------------------------------------------------------------------------
  2362. rl.c Fixed a bug that caused prompts to be printed twice.
  2363. debug.c Fixed possible crash from overloading the debug stack.
  2364. variable.c Added #debug messages for #replacestring and #format.
  2365. split.c Fixed various #split bugs when creating or switching sessions.
  2366. buffer.c #buffer {i} will now give some info about the scrollback buffer.
  2367. tick.c #delay now works in the startup session. Tickers are still
  2368. disabled.
  2369. class.c #class <class> read <file>, now only reads in stuff that belongs
  2370. to the given class name. Hence in order for this to work you
  2371. need #class <class> open, and #class <class> close, calls in
  2372. the file itself for this to work.
  2373. help.c Removed David Chan from the credit screen shown when starting
  2374. up TinTin++. I'm sure he had the best intentions, but he spend
  2375. two years making insignificant changes, fiddling with variables,
  2376. adding patches written by others, before vanishing into thin air.
  2377. April 2005 1.94.4
  2378. --------------------------------------------------------------------------------
  2379. tintin.h Now using strtoll instead of atoll since old platforms only
  2380. support strtoll.
  2381. telopt.c With #config {CONVERT META} set to ON mud output will have
  2382. it's meta characters translated, this to aid in making color
  2383. triggers.
  2384. split.c Using #split 0 0 will create an input line without the split
  2385. line. Useful for people who don't use #prompt.
  2386. April 2005 1.94.3
  2387. --------------------------------------------------------------------------------
  2388. log.c Now flushing the log stream after every call so tailing a log
  2389. file is an option.
  2390. class.c Finished the #class command.
  2391. split.c placed #prompt stuff in prompt.c.
  2392. tinexp.c Added option to start a trigger with ~ in which case colors
  2393. are included in string comparisons and substitutions.
  2394. buffer.c Removed the #writebuffer command, must now use:
  2395. #buffer {write} {filename}
  2396. May 2005 1.94.2
  2397. --------------------------------------------------------------------------------
  2398. rl.c Internal messages are now printed to both the logfile and
  2399. scrollback buffer.
  2400. rl.c Fixed internal messages bumping the screen while scrolling in
  2401. locked mode.
  2402. rl.c Fixed a bug with displaying text that slipped in.
  2403. buffer.c Added the option to use #buffer h/u/d/e for scrolling.
  2404. tintin.h Removed unused macro DEFAULT_FILE_DIR.
  2405. utils.c utime() function doesn't work correctly on cygwin, changed it's
  2406. behavior to guarantee unique time stamps.
  2407. buffer.c No longer writing #grep output the the scrollback buffer
  2408. main.c Now clearing last command (often quit) when starting up tintin++
  2409. config.c Turned #debugtelnet command into a hidden config option.
  2410. Added a hidden config option named CONVERT META, which turns key
  2411. presses into macro readable keyboard input.
  2412. class.c Added basic support for classes, which is grouping for real.
  2413. tables.c Set substitute priority to save correctly.
  2414. May 2005 1.94.1
  2415. --------------------------------------------------------------------------------
  2416. log.c Added the option for a second argument to the #logline command.
  2417. If second argument is used it will instead print the given line
  2418. to file.
  2419. variable.c Added %G thousandgroupingstring function to format to change
  2420. for example 1000 into 1,000.
  2421. May 2005 1.94.0
  2422. --------------------------------------------------------------------------------
  2423. rl.c mainloop now uses a threaded call for the old mainloop. This
  2424. because the readline() function is blocking and I'm too lazy
  2425. to code the stuff readline takes care of.
  2426. The new mainloop tries to go at 100 loops per second.
  2427. session.c Got rid of connect_delay for connecting sessions. Now using
  2428. 1 timer.
  2429. tick.c Changed #ticker to use floating point precision.
  2430. Added delay command: #delay {seconds delay} {command}
  2431. variable.c #format, added %L to print the argument's string length, and
  2432. %U to print the number of micro seconds since epoch, increased
  2433. the number of arguments from 10 to 20.
  2434. misc.c Removed the #sleep command, never worked well and should be
  2435. obsolete with the #delay command.
  2436. misc.c #gagline, when called within an action it will gag the line.
  2437. rl.c The #snoop code wasn't working, fixed it up.
  2438. data.c Increased the buffer of show_list a little to avoid an overflow
  2439. macro.h Changed how macros work, fixing problems like needing a \n at
  2440. the end, needing an empty line, macros being added to the
  2441. command history. Still can't find a way to have rl erase macros.
  2442. Players can enter a command within a line of text using
  2443. [[ command ]].
  2444. Example: tell bubba (long line) [[chat hi bibbi]] (more text)
  2445. rl.c Added the option to delay displaying and parsing possibly broken
  2446. packets. Delay in micro seconds can be set with the PACKET PATCH
  2447. config option. By default it's set to 0 (disabled).
  2448. variables.c Fixed #replacestring which got messed up while I added variable
  2449. substitution to it.
  2450. rl.c Fixed echoing of commands in split mode.
  2451. split.c Changes split and prompt to work more logical, people might
  2452. have to change their scripts, new syntax:
  2453. #split {number of top lines} {number of bottom lines}
  2454. default equals: #split {0} {1}
  2455. Fixed possible color bleeding in the split line, this for noobs
  2456. who don't know how to use tintin's color codes.
  2457. files.c /* and */ now only work when used outside braces.
  2458. rl.c No more threading, made tintin crashy as well.
  2459. variable.c Added %n (name) to #format, which capitalizes the first letter
  2460. of the given string.
  2461. buffer.c No longer resetting the buffer if the new scrollback size
  2462. is the same as the old one.
  2463. rl.c prompts automatically get a newline added in split mode.
  2464. session.c Fixed problem with aliasses changing focus.
  2465. rl.c Made #snoop output non triggerable.
  2466. misc.c Added the $loop and $forall variables set in the #loop and
  2467. #forall commands. Avoids dodgy &0 behavior in #functions.
  2468. telopt.c Added dynamic allocation of buffer space for mccp and the
  2469. normal output buffer.
  2470. rlhist.c 1 character long commands are once again added to the command
  2471. history.
  2472. files.c If a bracket is missing TinTin gives a hint at what line the
  2473. error might be.
  2474. tinexp.c Added option to surround a variable with brackets.
  2475. variables.c Removed restrictions on variable names.
  2476. math.c Fixed bug with #if returning the wrong session pointer.
  2477. log.c Added #logline command for actions to log 1 line of text
  2478. rlhist.c If no repeat match is found an error message is printed.
  2479. parse.c Added a check to ingore a trailing ';'.
  2480. data.c Increased buffer size for displaying aliasses.
  2481. config.c Changed packet patch config option from micro to milli seconds.
  2482. files.c Changed calls to isblank() (GNU only) with isspace()
  2483. files.c Only stripping leading spaces now, so #var bla { } will work
  2484. once again.
  2485. files.c I got tired of confusing readnew and readold, so I removed
  2486. readold.
  2487. February 2005 1.93.9
  2488. --------------------------------------------------------------------------------
  2489. split.c Fixed infinite loop in do_unprompt
  2490. rl.c Added the option to call show_message() with a NULL argument
  2491. for more generic usage.
  2492. tintin.h Set BUFFER_SIZE to 10000 OUTPUT_SIZE to 65000
  2493. and FILE_SIZE to 150000
  2494. files.c Added option to #read and #write using a variable.
  2495. buffer.c Fixed some dodgy behavior of the scroll back buffer, it should
  2496. scroll ultra fast as well now.
  2497. The buffer command now only prints the last screen worth of
  2498. text, too lazy to re-code floating screen indexes atm.
  2499. Added scroll lock to the config menu, to freeze the screen
  2500. while scrolling.
  2501. February 2005 1.93.8
  2502. --------------------------------------------------------------------------------
  2503. tick.c Took care of uninitalized tickers firing prematurely.
  2504. session.c Added option to make a trigger on session termination.
  2505. files.c Added a check for #read being used on a directory.
  2506. rl.c Fixed home/end keys being bound correctly.
  2507. split.c Allowing multiple prompt triggers to fire on the same line
  2508. Fixed split line being 4 '-' short
  2509. December 2004 1.93.7
  2510. --------------------------------------------------------------------------------
  2511. tinexp.c Now only converting ; to : for actions, not for aliasses etc.
  2512. path.c Made END OF PATH message triggerable.
  2513. variable.c added the do_internal_variable command, which does the same
  2514. as do_variable, but allows to set a blank variable. Used by
  2515. do_format and do_replacestring.
  2516. rl.c added the show_message function which only shows messages from
  2517. setting aliasses, variables, etc when called from the command
  2518. line, unless debug is enabled.
  2519. rl.c Now using the more_output buffer previously only used by the
  2520. scrollback buffer to double check actions.
  2521. December 2004 1.93.6
  2522. --------------------------------------------------------------------------------
  2523. net.c Fixed a crash bug that slipped in with hiding passwords.
  2524. net.c Commands are now added to the buffer/log files while in split
  2525. mode.
  2526. highlight.c Fixed bug with variables and functions not being used.
  2527. Finished highlight code, it no longer messes up old colors.
  2528. October 2004 1.93.5
  2529. --------------------------------------------------------------------------------
  2530. files.c Added the option to comment using /* comment */ in script files.
  2531. math.c Upgraded to do 64 bit instead of 32 bit operations.
  2532. variables.c Added the replacestring command.
  2533. mapper.c Added the function find_coord, which tries to find a room at the
  2534. given coordinate, starting room being 0,0,0
  2535. October 2004 1.93.4
  2536. --------------------------------------------------------------------------------
  2537. math.c Fixed a crash bug that slipped in.
  2538. tinexp.c Set \[ to escape as { and \] to escape as }.
  2539. main.c Now setting application keypad mode and ESC 0 prefix on startup.
  2540. telopt.c Changed dont_oldenviron response to wont_oldenviron response,
  2541. reported to fix the ability to login on some server types.
  2542. September 2004 1.93.3
  2543. --------------------------------------------------------------------------------
  2544. log.c Fixed a typo that broke the log command, as well as adding
  2545. newlines to plain logging.
  2546. rlhist.c one letter commands are no longer added to the history.
  2547. August 2004 1.93.2
  2548. --------------------------------------------------------------------------------
  2549. mapper.c added the redit command, for basic mapper manipulation, still
  2550. needs a bit more work.
  2551. telopts.c Added a telnet patch from Julia Longtin which adds the basic
  2552. telopt negotiations to initialize a telnet session when
  2553. connecting to port 23.
  2554. rl.c Seeming the readline_echoing_p is reset to TRUE whenever
  2555. something is written to the terminal, so I simply set it to
  2556. whatever it should be several times a second now in the main
  2557. loop.
  2558. July 2004 1.93.1
  2559. --------------------------------------------------------------------------------
  2560. tintin.h added a room and exit structure for an auto mapper.
  2561. mapper.c added a creation functions for rooms and exits.
  2562. files.c added the #readmap function to read in a map.
  2563. mapper.c added a routine to display an ascii map.
  2564. mapper.c added an algorithm to calculate the shortest path between two
  2565. rooms.
  2566. main.c the verbatimchar is set as \\ instead of \ as default, this to
  2567. allow escaping braces at a later date with this config option
  2568. causing trouble.
  2569. June 2004 1.93.0
  2570. --------------------------------------------------------------------------------
  2571. log.c added variable substitution to *arg.
  2572. misc.c added variable substitution to *arg.
  2573. parse.c changed escape character behavior, #format will need %+4s
  2574. instead of %4s if used in an argument or action. Used to
  2575. be possible to use \%4s but that's no good.
  2576. tinexp.c \a \e \n \r \t are now translated to the according characters.
  2577. (\a equals what #bell does, \r\n would equal #cr, \e is ESC)
  2578. parse.c removed premature stripping of '\' character in the parsing
  2579. routines. Escaped characters are dealt with when data is send
  2580. to the mud or screen.
  2581. April 2004 1.92.0
  2582. --------------------------------------------------------------------------------
  2583. misc.c removed speedwalk command, it's a config option anyways.
  2584. March 2004 1.91.0
  2585. --------------------------------------------------------------------------------
  2586. parse.c made sure $variables are substituted in the parsing command,
  2587. as well as $vars being substituted as session A passes a
  2588. command to session B. Otherwise variables remain variable
  2589. untill the final execution stage.
  2590. data.c Added nesting syntax highlighting for lists.
  2591. math.c Added support for "T" and "F" (feature was lost in rewrite)
  2592. math.c Added the 'd' operator for a random dice roll
  2593. config.c rewrote some basic stuff in the configuration routines,
  2594. the original setup was a bit dodgy.
  2595. highlight.c Added priorities to highlighting
  2596. substitute.c Added priorities to substitutions
  2597. split.c Added check so a prompt isn't shown for background sessions.
  2598. variable.c Added %R and %C to #format for nr of rows and columns
  2599. March 2004 1.90.0
  2600. -------------------------------------------------------------------------------
  2601. misc.c added a higher precision to the #sleep command, you can now
  2602. enter #sleep 0.5 to sleep for half a second, precision is in
  2603. miliseconds. Also using nanosleep now, with additional support
  2604. to continue sleeping.
  2605. variables.c added %t to #format, which will print the epoch time.
  2606. added %T to #format, which will print the military time
  2607. of the provided number as: hours:minuts
  2608. added %d to #format, which will print the military data of the
  2609. provided number as: day:month:year (if there's no such thing
  2610. as a military date I hope you still know what I mean).
  2611. rl.c set tintin to 100 loops per second, might seem too much, but
  2612. it doesn't matter cpu wise, and it's always fun when tintin's
  2613. triggers beat those of most other client.
  2614. math.c added + - ! and ~ to the mathexp interpreter.
  2615. regexp.c added color support. codes are entered as <abc> and is pretty
  2616. much translated as : \e[a;b+30;c+40m with '8' counting as
  2617. a skipped color code. People can write their own functions to
  2618. make tintin display colors of their own choice.
  2619. variables.c added %R to #format, which will print a number between 1 and
  2620. the given number in the argument. Removed #random command.
  2621. added %m to #format, which will do the same as #math
  2622. regexp.c added option for end of line terminator ^ so adding ^ to the
  2623. end of the line will make tintin return false if the regexp
  2624. returns with an unfinished match string.
  2625. main.c I update the credit screen, figured it would appropriate to
  2626. put my own name on it after all this work. I turned it into
  2627. a helpfile while at it, #help credits should show it.
  2628. regexp.c made the substitute recursively double check variables and
  2629. functions if they hold a variable of a different kind, useful
  2630. for variables or functions holding color codes.
  2631. misc.c added ignore and debug commands, debug won't do an aweful lot
  2632. as of yet though.
  2633. variable.c figured I should add some more color support, so added a way
  2634. to format tintin color names, using #format %c {name}
  2635. variable.c #format again, %h will create a tintin header line.
  2636. variable.c fixed how variable assignment was being dealt with in triggers,
  2637. can now change and display variables correctly on the fly.
  2638. rlhist.c changed command repeation behavior.
  2639. rlhist.c removed the history command, no longer needed to look up the
  2640. index, just a working short memory.
  2641. config.c added repeat on enter option in config.
  2642. parse.c the command part of a line received by parse input
  2643. has vars and functions substituted right away.
  2644. If passing a command to another session the functions and
  2645. variables are substituted as well, setting the values of
  2646. the controlling session.
  2647. math.c Added the tintoi and tincmp functions, which are enhanced
  2648. versions of atoi and strcmp.
  2649. net.c Added some code to stop enters being written to the scrollback
  2650. buffer, useful for people using #cr to bust a prompt.
  2651. rl.c Got rid of the prompt saving stuff, now using brute force,
  2652. refresh the prompt everytime the screen is updated. This to
  2653. work around a bug in readline that gives odd behavior with
  2654. cursor movement.
  2655. March 2004 1.89.0
  2656. -------------------------------------------------------------------------------
  2657. math.c Added a close to complete mathematical expression routine.
  2658. Needs some work still but it works. Also allows for comparing
  2659. strings <= >= == != if you enclose the strings in " ". It's
  2660. quite a bit better than the old one, though it's not supporting
  2661. T, F, and '!' since it's string based, shouldn't be too hard
  2662. adding some better string support.
  2663. ivars.c stripped all the stuff that is now covered by math.c or
  2664. variables.c only leaving #ifexits. And then it occured to me
  2665. that #if {"$variable" != "$*"} {true} {false} would
  2666. very well replace the 'ifexits' check. So ivars.c is no more.
  2667. data.c deletenode_list now properly keeps track of a global update
  2668. node. Can only use one noderoot->update per program state.
  2669. session.c cleanup_session now properly keeps track of a global update
  2670. node. Can only use one gtd->update per program state.
  2671. rl.c fixed up the split screen behavior, should be a stable prompt
  2672. and correct text presentation in split mode now.
  2673. February 2004 1.88.0
  2674. -------------------------------------------------------------------------------
  2675. net.c added telopt negotiations in net.c for naws, terminal type,
  2676. and mccp (version 2)
  2677. tintin.h added the zlib library and a session buffer for mccp
  2678. tintin.h added a 64KB output buffer, I'll just asume that the mud
  2679. output contains a linefeed before BUFFER_SIZE is reached. This
  2680. should make output processing a bit smoother, and saves me
  2681. from fiddling too much with chopped up data.
  2682. rl.c added the tintin_printf and tintin_printf2 functions which
  2683. format the argument list and pass the data on to tintin_puts
  2684. or tintin_puts2
  2685. tintin.h changed the node list struct to work with a head/tail pointer,
  2686. and turned it into a double linked list, updated all .c files
  2687. affected by this change.
  2688. *.c cleaned up the code, using tabs instead of spaces and aligning
  2689. the brackets.
  2690. main.c switched from rand to rand48, it's seeded once upon startup
  2691. which is sufficient.
  2692. main.c added a global tintin session (gts) the idea is to get rid of
  2693. most global variables.
  2694. tintin.h added a bitvector to the session structure which will contain
  2695. all session flags, various changes throughout the code changing
  2696. global variables into flags.
  2697. rl.c fixed up the cursor positioning for split mode and fixed the
  2698. linewrap routine which was off by 1 character, resulting in
  2699. extra lines on a perfect match.
  2700. added a special flag for mud output for split mode, to avoid
  2701. color loss when restoring the cursor (which also restores the
  2702. cursor color, hence the color loss)
  2703. tables.c new c file, which will contain some tables, the current setup
  2704. is a bit tedious.
  2705. tintin.h moved all header files into tintin.h cause the old setup with
  2706. 40 headerfiles was giving me a headache (literally).
  2707. Grouped it into typedefs, globals, constants, macros,
  2708. structures and functions
  2709. tintin.h changed all commands to use the COMMAND typedef, as well as
  2710. all commands now use universal arguments and naming, this to
  2711. make a command table.
  2712. *.c There's always a session now, with a few checks for gts (global
  2713. tintin session) which cannot send or receive data. Passing
  2714. session data along with a couple of functions which should
  2715. make background sessions less spammy.
  2716. strhash.c Added a simple string hash routines which I'll be using for a
  2717. scroll back buffer. It uses a bit of memory, but should save a
  2718. lot more for big scroll back buffers.
  2719. main.c changed tstphandler to call kill with a null pid, otherwise it
  2720. wouldn't work when tintin was started from a script
  2721. ivars.c removed backwards compatibility for fixedmath
  2722. buffer.c scroll back buffer and a grep command added
  2723. rl.c made the init_readline function actually initilize readline,
  2724. added 4 default keybinds for the scrollback buffer.
  2725. tintin.h added a keymap to the tintin_data structure, which will be
  2726. used for keybinding.
  2727. text.c got rid of the linewrapper in rl.c and added a word wrap
  2728. routine instead.
  2729. log.c all vt102 codes cept the linefeed are stripped for logged data,
  2730. the lowlog thingie can still be used.
  2731. chat.c Removed this entirely, it's a mess and there are many stand
  2732. alone p2p chat programs available.
  2733. *.c moved some more global data to the session and data structures
  2734. rltick.c removed entirely
  2735. ticks.c removed entirely
  2736. tick.c wrote a new ticker from scratch, uses alarm(1) to sleep 1
  2737. second, the user can now define a list of tickers, pretty much
  2738. like aliasses, they'll trigger when the timer expires. Added
  2739. the 'tick' and 'untick' command for manipulation.
  2740. macro.c added 'macro' and 'unmacro' commands for keybinding, I couldn't
  2741. figure out how to actually undo the real macros though
  2742. without using a messy hack, so I just skipped that till later
  2743. for now.
  2744. session.c Got rid of the zombi code, will try to add a better connection
  2745. handler at a later data, but the zombi code is not the answer.
  2746. tintin.h Changed architecture further turning the lists from individual
  2747. lists into an array of lists. Added an array in tables.c for
  2748. additional data.
  2749. substitute.c Changed the default #gag char from '.' to character 255, this
  2750. to prevent weird behavior when a dot is displayed on an empty
  2751. line for any kind of reason.
  2752. config.c Added a configuration menu, defaults are loaded upon startup.
  2753. walk.c Removed, didn't really look into it deeply, but I adjusted
  2754. path.c to allow user progged walking using a ticker.
  2755. parse.c Added 2 action checkers, first one checks priority 0 to 4,
  2756. after that substitutions are checked, priority 5 to 9 is
  2757. checked after substitutions.
  2758. parse.c do_one_line now strips colors per default before passing the
  2759. text on to check_one_action
  2760. action.c rewrote the %0 - %9 check_one_action regexp routine, it's
  2761. a bit cleaner and slightly faster now.
  2762. action.c rewrote substitute_vars, ';' is changed to : per default
  2763. variable.c rewrote subsitute_myvariables, no longer supporting $number
  2764. variables. ';' is stripped per default. This also easily
  2765. allows a change so variables can contain numbers.
  2766. variable.c #format {variable} {format} {arguments}
  2767. This allows string formatting, numbers are not supported.
  2768. Added a format parser for further functionality, for now %l
  2769. will lowercase, %u will upper, and %r will reverse the
  2770. argument given. There's a maximum of 10 arguments.
  2771. variable.c Due to the format command, prepad, postpad, tolower, and
  2772. toupper are no longer required, so I removed the commands.
  2773. I realise this generates a backward compatibility issue, but
  2774. it's easier to find the new commands without 70 old commands
  2775. spamming the help files and command lists.
  2776. split.c moved the split screen stuff from rl.c to this new file, and
  2777. placed the prompt commands/routines there as well.
  2778. January 2004 1.87.0
  2779. ------------------------------------------------------------------------------
  2780. After getting tired of seeing my favorite mud client being
  2781. trashed on TMC or simply not having the required functionality
  2782. that is expected nowadays to be worth mentioning, I figured it
  2783. was time to see what I could do. So I downloaded the latest
  2784. official tintin++ release v1.86b and started an evaluation.
  2785. It didn't take long to find out the main problems. Over
  2786. functionality, inconsistant command syntax, total chaos,
  2787. anarchistic implementation views, all in all enough to end up
  2788. deleting about 33% of the code, and rewriting over 50% of what
  2789. remained. Halfways during that process I ran into Bill on the
  2790. wintin forum and I promptly asked him permission to release an
  2791. official tintin++ derivative. And it was agreed that I could,
  2792. if he liked what I came up with. To make a long story short, I
  2793. finished a beta version several weeks later and got Bill's
  2794. permission to name it tintin++.
  2795. The next step was getting permission for the manual, I googled
  2796. up a notification from the authors which said the manual had
  2797. been GPL'ed, see tintin15.cr, last issue fixed.
  2798. August 2001 tintin15.cr
  2799. ------------------------------------------------------------------------------
  2800. This package was debianized by Jordi Mallach <jordi@debian.org> on
  2801. Wed, 22 Aug 2001 03:23:36 +0200.
  2802. It was downloaded from http://mail.newclear.net/tintin/archive.htm.
  2803. Upstream Authors: Davin Chan <davinchan@earthlink.net>
  2804. Robert Ellsworth <rse@newclear.net>
  2805. See the CREDITS document for the full list of contributors.
  2806. Copyright:
  2807. Tintin++ was relicensed under the GNU General Public License on
  2808. July 12th, 2001, when version 1.86 was released. The full text
  2809. of the GNU GPL can be found in /usr/share/common-licenses/GPL on
  2810. Debian systems.
  2811. Additionally, the Tintin++ manual was placed under the GPL at my request
  2812. by Robert Ellsworth, it's author. The following is the mail in which he
  2813. granted me permission to publish it under the new license:
  2814. > From: "Robert Ellsworth" <rellsworth@wattsup.com>
  2815. > Subject: RE: Tintin install mess
  2816. > To: "'Davin Chan'" <davinchan@earthlink.com>,
  2817. > "'Jordi Mallach'" <jordi@sindominio.net>
  2818. > Date: Tue, 28 Aug 2001 09:53:50 -0400
  2819. > In-Reply-To: <3B8AF5A5.557E35E0@earthlink.com>
  2820. > X-Mailer: Microsoft Outlook, Build 10.0.2627
  2821. >
  2822. > Well,
  2823. >
  2824. > RE #1) Well, being that I am the author, then yes, I have no problem
  2825. > with the changing of the manual to GPL. :-)