ChangeLog.pre-1-0 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330
  1. Tue Jun 2 16:40:33 PDT 1998 Manish Singh <yosh@gimp.org>
  2. * Made 1.0.0 release
  3. Tue Jun 2 16:15:51 PDT 1998 Manish Singh <yosh@gimp.org>
  4. * Makefile.am: install gtkrc.forest2 in $prefix/share/gimp
  5. * plug-ins/CEL/CEL.c: change bzero to memset for portability
  6. * plug-ins/gfli/fli.c: #include <glib.h> to get inline defintion
  7. Mon Jun 1 01:05:52 EDT 1998 Matthew Wilson <msw@gimp.org>
  8. * plug-ins/grid.c: fix a comment. :)
  9. * ChangeLog: fix my last entry
  10. Sun May 31 21:50:12 EDT 1998 Matthew Wilson <msw@gimp.org>
  11. * plug-ins/deinterlace/deinterlace.c: patch from sjburges
  12. to prevent out of bounds indexing array (anyone see a pattern
  13. here?)
  14. Sun May 31 15:35:33 PDT 1998 Manish Singh <yosh@gimp.org>
  15. * gimptool.in: use test -r instead of test -e for portability
  16. Sun May 31 08:03:54 EDT 1998 Matthew Wilson <msw@gimp.org>
  17. * plug-ins/exchange/exchange.c: fix from sjburges to stop
  18. out of bounds indexing of array.
  19. Sun May 31 01:58:36 PDT 1998 Manish Singh <yosh@gimp.org>
  20. * README
  21. * INSTALL: make info a bit more current
  22. * gimptool.in: update usage message
  23. * gtkrc.forest2: sample gtkrc file with cool stuff from tigert
  24. * gimp.1
  25. * gimptool.1: updated/rewrote some
  26. * app/fileops.c: removed the "might have tried to save an RGB
  27. image with an indexed plugin" since g_message gives nice user
  28. feedback now
  29. * app/interface.c: fix the mem leak properly
  30. Sat May 30 23:42:12 PDT 1998 Manish Singh <yosh@gimp.org>
  31. * app/interface.c: plug mem leak in message_box
  32. * plug-ins/mail/mail.c: use g_message
  33. * plug-ins/script-fu/scripts/carve-it.scm: fix for gimp-layer-new
  34. params from Kevin Cozens <kcozens@interlog.com>
  35. * plug-ins/CEL/CEL.c
  36. * plug-ins/pcx/pcx.c
  37. * plug-ins/tiff/tiff.c: updates from author
  38. * plug-ins/png/png.c: correct copyright
  39. * plug-ins/print/print.h: use correct version
  40. Fri May 29 23:54:42 PDT 1998 Manish Singh <yosh@gimp.org>
  41. * more changes to use g_message. All of app uses it now, plus
  42. the major file plugins.
  43. * plug-ins/CEL/CEL.c: update from author
  44. * INSTALL: info about why optional plugins won't build
  45. Sat May 30 02:03:19 EDT 1998 Matthew Wilson <msw@gimp.org>
  46. * plug-ins/grid/grid.c: fix by sjburges to fix grid on selections.
  47. Fri May 29 23:34:07 EDT 1998 Matthew Wilson <msw@gimp.org>
  48. * plug-ins/gaus_iir/gauss_iir.c: fix by sjburges to fix horiz
  49. only blur. Funky bug!
  50. Fri May 29 21:36:36 MEST 1998 Sven Neumann <sven@gimp.org>
  51. * app/xcf.c: changed fopen parameters for better portability
  52. Thu May 28 20:12:02 MEST 1998 Sven Neumann <sven@gimp.org>
  53. * scripts/blend-anim.scm: use gimp-message to output an
  54. error message
  55. Thu May 28 19:05:13 MEST 1998 Sven Neumann <sven@gimp.org>
  56. * plug-ins/rotate/rotate.c
  57. * plug-ins/screenshot/screenshot.c: adapted to the new
  58. way of error message handling
  59. Thu May 28 01:16:26 PDT 1998 Manish Singh <yosh@gimp.org>
  60. * redid the error message handling. g_message now calls
  61. message_box or prints to console depending on whether the
  62. no_interface is set or not. gimp-message is also exported
  63. to the PDB as a wrapper to g_message, and libgimp has a new
  64. API: gimp_message. libgimp also overrides g_message for all
  65. plugins. Converted lots of messages in app/* to g_message.
  66. Made script-fu a little friendlier.
  67. * updated the regex code from grep 2.2
  68. Wed May 27 11:22:46 MEST 1998 Sven Neumann <sven@gimp.org>
  69. * plug-ins/ifscompose/ifscompose.h: removed definition of TRUE
  70. and FALSE
  71. Tue May 26 17:20:26 EDT 1998 Adrian Likins <adrian@gimp.org>
  72. * plug-ins/sript-fu/scripts/predator.scm: made insensitive on
  73. greyscale images
  74. Tue May 26 12:03:07 PDT 1998 Manish Singh <yosh@gimp.org>
  75. * app/batch.c: do "-" to "_" conversion after an failed pdb
  76. lookup, just to make sure
  77. * app/paint_core.c: fix for some uninitialized vars
  78. Tue May 26 01:17:14 PDT 1998 Manish Singh <yosh@gimp.org>
  79. * gimptool.in: added --install-script. Use @INSTALL@ stuff
  80. * libgimp/gimpimage.c
  81. * libgimp/gimplayer.c: fixes for silly errors from Marc Lehmann
  82. * libgimp/gimpchannel.c: implemented gimp_channel_set_show_masked
  83. and gimp_channel_get_show_masked (already in gimp.h)
  84. * plug-ins/blinds/blinds.c
  85. * plug-ins/bmp/bmp.h
  86. * plug-ins/mosaic/mosaic.c
  87. * plug-ins/ripple/ripple.c
  88. * plug-ins/tga/tga.c
  89. * plug-ins/tileit/tileit.c: remove definitions of TRUE and FALSE
  90. since glib does it for us
  91. Sun May 24 08:41:34 EST 1998 Stephen Norris <srn@fn.com.au>
  92. * plug-ins/displace/displace.c: Fix to GUI bug.
  93. Fri May 22 19:23:59 MEST 1998 Sven Neumann <sven@gimp.org>
  94. * docs/gimp_quick_reference.*: some small fixes and additions
  95. Fri May 22 00:46:18 EDT 1998 Matthew Wilson <msw@gimp.org>
  96. * app/batch.c: removed global conversion from '-' to '_'
  97. Thu May 21 13:03:50 PDT 1998 Manish Singh <yosh@gimp.org>
  98. * updated Adam's stuff
  99. * app/app_procs.c: squleched warning
  100. * gimptool.in: quote stuff to be flexible about our CC settings
  101. Wed May 20 20:21:45 EST 1998 Stephen Norris <srn@fn.com.au>
  102. * plug-ins/bz2/bz2.c: Check return code from fopen.
  103. * plug-ins/gz/gz.c: Check return code from fopen.
  104. Tue May 19 14:02:41 MET DST 1998 Sven Neumann <sven@gimp.org>
  105. * added a new script from Wolfgang Hofer (fade-outline.scm)
  106. Mon May 18 20:30:44 MEST 1998 Sven Neumann <sven@gimp.org>
  107. * updated the gfli plug-in to the version on the registry and
  108. folded the "chunk-type-7-bug"-patch back in
  109. Sun May 17 23:06:38 EDT 1998 Matthew Wilson <msw@gimp.org>
  110. * app/app_procs.c: applied patch from Michael Sweet to correct
  111. NULL deref in splash screen.
  112. Mon May 18 02:50:03 MEST 1998 Sven Neumann <sven@gimp.org>
  113. * plug-ins/tiff/tiff.c: updated tiff plug-in
  114. Sun May 17 17:31:05 PDT 1998 Manish Singh <yosh@gimp.org>
  115. * plug-ins/maze: updated maze plugin
  116. * plug-ins/script-fu/scripts/circuit.scm: reflected maze pdb
  117. interface change
  118. Sun May 17 14:44:32 PDT 1998 Manish Singh <yosh@gimp.org>
  119. * app/gimage.c: fix for merging indexed and indexed-alpha
  120. layers (from Raph)
  121. Sun May 17 14:02:44 PDT 1998 Manish Singh <yosh@gimp.org>
  122. * app/app_procs.c: reverted the splash screen idle loop changes
  123. since they expose some weird GtkLabel redraw bugs
  124. Sun May 17 00:15:40 PDT 1998 Manish Singh <yosh@gimp.org>
  125. * Made 0.99.31 release
  126. * updated print plugin
  127. Fri May 15 23:35:43 PDT 1998 Manish Singh <yosh@gimp.org>
  128. * app/fileops.c: made url plugin autodetect work again
  129. Fri May 15 03:54:48 EDT 1998 Matthew Wilson <msw@gimp.org>
  130. * gimp_tips.txt: fixed typo
  131. Fri May 15 03:03:00 EDT 1998 Matthew Wilson <msw@gimp.org>
  132. * app/iscissors.c: fixed bezierify on offset layers
  133. Thu May 14 21:18:27 EDT 1998 Matthew Wilson <msw@gimp.org>
  134. * app/iscissors.c: a very sad attempt to fix some iscissors
  135. lockups/segfaults
  136. Thu May 14 18:10:38 EDT 1998 Matthew Wilson <msw@gimp.org>
  137. * app/app_procs.c: made the splash screen a GTK_WINDOW_POPUP,
  138. changed the hackish gtk_main_iteration with a null idle
  139. loop to a more stylish while (gtk_events_pending())
  140. gtk_main_iteration();
  141. Wed May 13 23:58:20 EDT 1998 Matthew Wilson <msw@gimp.org>
  142. * app/fileops.c (file_overwrite_yes_callback): destroy the
  143. Overwrite dialog's window before running the save.
  144. Wed May 13 17:31:27 PDT 1998 Manish Singh <yosh@gimp.org>
  145. * app/frac.c: stubbed out nonworking code
  146. * updated print plugin
  147. Wed May 13 00:03:18 MEST 1998 Sven Neumann <sven@gimp.org>
  148. * added nine new scripts from Chris Gutteridge
  149. (asc2img.scm, camo.scm, coffee.scm, distress_selection.scm,
  150. fuzzyborder.scm, old_photo.scm, rendermap.scm
  151. spinning_globe.scm, tileblur.scm)
  152. * added two gradients that are used by the new scripts
  153. (Coffee, Land_and_Sea)
  154. Tue May 12 02:49:12 PDT 1998 Manish Singh <yosh@gimp.org>
  155. * app/app_procs.c: create tips dialog after loading files on the
  156. command line, instead of in an idle function. Lamer hack, but it
  157. works better.
  158. * app/gdisplay_ops.c: fix for new view on zoomed image
  159. * Makefile.am
  160. * gimptool.1: added man page for gimptool by Ben Gertzfield
  161. Mon May 11 16:59:18 PDT 1998 Manish Singh <yosh@gimp.org>
  162. * gimptool.in: added --install-bin options for installing already
  163. built plugins
  164. * app/convolve.c: check for indexed images properly
  165. * app/layer.c: fix tile refcount oversight
  166. * app/text_tool.c: fix for unlikely memleak
  167. * libgimp/gimpimage.c: stupid ytpo ;)
  168. * plug-ins/gfli/gfli.c: applied gimp-wh-980507-0 to fix
  169. "chunk-type-7-bug"
  170. Mon May 11 23:28:20 MEST 1998 Sven Neumanns <sven@gimp.org>
  171. * added two new scripts from Hrvoje Horvat
  172. (glossy.scm, 3d-outline.scm)
  173. Mon May 11 21:40:25 MEST 1998 Sven Neumann <sven@gimp.org>
  174. * updated print plug-in
  175. Fri May 8 20:51:24 PDT 1998 Manish Singh <yosh@gimp.org>
  176. * plug-ins/script-fu/script-fu-console.c: workaround for text
  177. widget crash from Owen
  178. Thu May 7 16:32:15 PDT 1998 Manish Singh <yosh@gimp.org>
  179. * gimptool.in: added --install and --install-admin options
  180. to build and install a plug-in automagically
  181. Thu May 7 15:24:31 EDT 1998 Matthew Wilson <msw@gimp.org>
  182. * app/fileops.c: more changes to fileselection
  183. Tue May 5 11:40:28 PDT 1998 Manish Singh <yosh@gimp.org>
  184. * plug-ins/psd/psd.c: updates from Adam
  185. * plug-ins/script-fu/scripts/text-circle.scm: new version
  186. Mon May 4 21:24:03 PDT 1998 Manish Singh <yosh@gimp.org>
  187. * Made 0.99.29 release
  188. Mon May 4 19:32:54 PDT 1998 Manish Singh <yosh@gimp.org>
  189. * app/plug_in.c: make repeat last and re-show plugin menu
  190. sensitive to image type
  191. Mon May 4 04:12:54 PDT 1998 Manish Singh <yosh@gimp.org>
  192. * configure.in: define and export version number parts. Check for
  193. gtk 1.0.1
  194. * gimptool.in: do some arg check for --build
  195. * app/fileops.c: handle file overwrite dialog too
  196. Sun May 3 22:10:05 EDT 1998 Matthew Wilson <msw@gimp.org>
  197. * app/fileops.c: make fileselectors insensitive during
  198. loading and saving
  199. Sun May 3 00:24:31 MEST 1998 Sven Neumann <sven@gimp.org>
  200. * app/channels_dialog.c: minimalistic change to the interface,
  201. makes it possible to set the channel opacity to 100.0%
  202. (was 99.0% before)
  203. Sat May 2 14:31:46 PDT 1998 Manish Singh <yosh@gimp.org>
  204. * app/about_dialog.c
  205. * app/app_procs.c
  206. * app/main.c: use GIMP_VERSION from config.h now
  207. * gimptool made to ease plug-in development and installation
  208. Sat May 2 16:10:05 EDT 1998 Matthew Wilson <msw@gimp.org>
  209. * app/channels_dialog.c: removed my broken fix, put in a fix
  210. that works
  211. Sat May 2 15:20:54 EDT 1998 Matthew Wilson <msw@gimp.org>
  212. * app/channels_dialog.c: check to be sure that the gimage still
  213. exists when editing a channel - fixes bug report from Sven
  214. Sat May 2 00:59:23 PDT 1998 Manish Singh <yosh@gimp.org>
  215. * gimp.1: spelling corrections from Tamito Kajiyama
  216. Sat May 2 00:41:36 PDT 1998 Manish Singh <yosh@gimp.org>
  217. * plug-ins/tiff/tiff.c: another special case fix from Nick Lamb.
  218. I said it before, and I'll say it again: TIFF sucks
  219. * app/fuzzy_select.c: find_boundary works nicer in indexed mode
  220. (from Adrian)
  221. * app/paint_funcs.c: generate dissolve random number table better
  222. (thanks Owen)
  223. * README: bring up to date
  224. Fri May 1 23:09:33 EDT 1998 Matthew Wilson <msw@gimp.org>
  225. * app/channels_dialog.c: handle double click on our own since
  226. channels_dialog_flush nukes the widgets and we never get
  227. 2BUTTON events
  228. Fri May 1 13:22:21 1998 Tim Janik <timj@gtk.org>
  229. * app/channels_dialog.c: keep the channel list uptodate
  230. on position changes. unref list items on destruction.
  231. the app/channels_dialog.c app/layers_dialog.c code for dealing
  232. with GtkList is a MESS, it needs to be completely reworked
  233. somewhen. this is *no* fun: the selection is changed so update
  234. the list (causing the selection to change again: the selection
  235. is changed so update the list (causing the selection to change
  236. again: the selection is changed so update the list (.... oops,
  237. sorry got caught in a recursive loop there ;) ))).
  238. Thu Apr 30 16:49:41 PDT 1998 Manish Singh <yosh@gimp.org>
  239. * app/channels_dialog.c: fix for off-by-one error in channel
  240. position from Andy Thomas
  241. Thu Apr 30 16:38:59 PDT 1998 Manish Singh <yosh@gimp.org>
  242. * updated randomize and blur plugins, split out libgpc into
  243. it's own dir
  244. Thu Apr 30 14:32:16 PDT 1998 Manish Singh <yosh@gimp.org>
  245. * upgraded to libtool 1.2
  246. Thu Apr 30 01:45:03 PDT 1998 Manish Singh <yosh@gimp.org>
  247. * plug-ins/xd/xd.c: selection logic fix from Gordon
  248. Matzigkeit
  249. Thu Apr 30 03:15:51 EDT 1998 Matthew Wilson <msw@gimp.org>
  250. * app/curves.c: Another small change to keep the segfaults away
  251. * app/disp_callbacks.c: An attempt to squelch some warnings
  252. Thu Apr 30 02:08:23 EDT 1998 Matthew Wilson <msw@gimp.org>
  253. * app/channels_dialog.c
  254. * app/layers_dialog.c: Modified event handlers to bring up the
  255. popup menu anywhere on layer/channel widget
  256. Wed Apr 29 22:29:16 PDT 1998 Manish Singh <yosh@gimp.org>
  257. * app/app_procs.c: make splash screen honor gtkrc
  258. Wed Apr 29 16:49:27 PDT 1998 Manish Singh <yosh@gimp.org>
  259. * plug-ins/CEL/CEL.c: reverted gimp-joke-980427-0 changes, they
  260. broke things
  261. Wed Apr 29 15:38:55 PDT 1998 Manish Singh <yosh@gimp.org>
  262. * plug-ins/tiler/tiler.c: fix width > height case
  263. * plug-ins/blinds/blinds.c
  264. * plug-ins/convmatrix/convmatrix.c
  265. * plug-ins/tileit/tileit.c: removed spurious gtk_container_add's
  266. Wed Apr 29 07:50:26 EDT 1998 Adrian Likins <adrian@gimp.org>
  267. * gimp.1: updated man page to reflect new --debug-handlers
  268. argument
  269. Wed Apr 29 04:05:34 PDT 1998 Manish Singh <yosh@gimp.org>
  270. * configure.in: tightened png header check
  271. Wed Apr 29 03:46:44 PDT 1998 Manish Singh <yosh@gimp.org>
  272. * plug-ins/animationplay/animationplay.c
  273. * plug-ins/gif/gif.c
  274. * plug-ins/psd/psd.c: updates from Adam
  275. Wed Apr 29 01:43:30 PDT 1998 Manish Singh <yosh@gimp.org>
  276. * app/text_tool.c: don't die on corrupted fonts. Give some
  277. error messages instead.
  278. Tue Apr 28 23:17:37 PDT 1998 Manish Singh <yosh@gimp.org>
  279. * app/gradient.c: enable adjustment of the gradient list box
  280. for scrolling
  281. Wed Apr 29 00:56:19 1998 Tim Janik <timj@gtk.org>
  282. * app/text_tool.c (text_create_dialog): enable adjustment of the
  283. scrolled window to keep the focused font visible.
  284. Tue Apr 28 15:09:02 PDT 1998 Manish Singh <yosh@gimp.org>
  285. * plug-ins/CEL/CEL.c
  286. * plug-ins/psd/psd.c: portability fix for SunOS 4
  287. Mon Apr 27 20:43:14 PDT 1998 Manish Singh <yosh@gimp.org>
  288. * plug-ins/animationplay/animationplay.c
  289. * plug-ins/CEL/CEL.c
  290. * plug-ins/psd/psd.c
  291. * plug-ins/xd/xd.c: applied gimp-joke-980427-0, warning cleanups
  292. * app/temp_buf.c: applied gimp-entity-980427-0, temp_buf swap
  293. speedups and more robust tempfile handling
  294. Mon Apr 27 20:57:26 1998 EDT Matthew Wilson <msw@gimp.org>
  295. * app/curves: Initialize data that is referenced in event handlers
  296. in the curves_new_dialog function. Be on the look out for this
  297. kind of stuff in other dialogs.
  298. Tue Apr 28 00:16:31 1998 Tim Janik <timj@gtk.org>
  299. * app/channels_dialog.c (channels_dialog_create): adjust the scrolled
  300. window to always show the currently focused channel item.
  301. * app/layers_dialog.c (layers_dialog_create): adjust the scrolled
  302. window to always show the currently focused layer item.
  303. Mon Apr 27 23:29:10 MEST 1998 Sven Neumann <sven@gimp.org>
  304. * updated despeckle and sharpen plug-ins
  305. Mon Apr 27 18:09:01 MEST 1998 Sven Neumann <sven@gimp.org>
  306. * updated bmp plug-in
  307. Sun Apr 26 16:31:06 PDT 1998 Manish Singh <yosh@gimp.org>
  308. * Made 0.99.28 release
  309. Sun Apr 26 16:17:46 PDT 1998 Manish Singh <yosh@gimp.org>
  310. * app/procedural_db.c
  311. * app/text_tool.c: applied mem leak patch from Mattias Gronlund
  312. * plug-ins/tiff/tiff.c: fix for indexed save from Dan Mitchell
  313. Sun Apr 26 15:11:06 PDT 1998 Manish Singh <yosh@gimp.org>
  314. * plug-ins/oilify/oilify.c: folded optimizations back in
  315. Sun Apr 26 18:14:28 MEST 1998 Sven Neumann <sven@gimp.org>
  316. * gimp_tips.txt: added yet another tip
  317. Sun Apr 26 17:50:36 MEST 1998 Sven Neumann <sven@gimp.org>
  318. * updated engrave plug-in
  319. * updated oilify plug-in
  320. * changed the call to plug-in-oilify in circuit.scm and lava.scm
  321. Sun Apr 26 03:06:16 PDT 1998 Manish Singh <yosh@gimp.org>
  322. * oh goodie, the PSD plugin doesn't relay on endian junk anymore
  323. Sun Apr 26 02:34:21 PDT 1998 Manish Singh <yosh@gimp.org>
  324. * updated CEL plugin
  325. * added PSD plugin and autoconf for byte order
  326. Thu Apr 23 19:08:16 PDT 1998 Manish Singh <yosh@gimp.org>
  327. * Added sharpen to stable dist
  328. * updated sgi and despeckle plugins
  329. * plug-ins/xd/xd.c: works with xdelta 0.18. The use of xdelta
  330. versions prior to this is not-supported.
  331. * plug-in/gfig/gfig.c: spelling corrections :)
  332. * app/fileops.c: applied gimp-gord-980420-0, fixes stale save
  333. procs in the file dialog
  334. * app/text_tool.c: applied gimp-egger-980420-0, text tool
  335. optimization
  336. Thu Apr 23 21:27:23 EDT 1998 Matthew Wilson <msw@gimp.org>
  337. * app/gimage.c: set srcPR2.[xy] to srcPR1.[xy] in
  338. gimage_construct_composite_preview (fixes hangs in preview creation)
  339. Tue Apr 21 15:11:21 EDT 1998 Matthew Wilson <msw@gimp.org>
  340. * app/disp_callbacks.c: removed the tool reset when changing gdisplays
  341. * app/bezier_select.c: stop draw_core when changing gdisplays
  342. Tue Apr 21 01:59:12 EDT 1998 Matthew Wilson <msw@gimp.org>
  343. * app/iscissors.c: Remove the iscissors outline by stopping the
  344. draw_core before bezierifying the selection. There may be
  345. memory leaks here (the iscissors stuff does not appear to be freed
  346. on bezierify)
  347. Mon Apr 20 18:15:54 PDT 1998 Manish Singh <yosh@gimp.org>
  348. * app/main.c
  349. * app/errors.c: added --debug-handlers switch to get stack traces
  350. on all signals again (not all sigabrts and sigpipes are normal
  351. things)
  352. * plug-ins/animoptimize/animoptimze.c: updated
  353. 1998-04-20 Marc Ewing <marc@redhat.com>
  354. * added RPM/* files and use them in gimp.spec
  355. Mon Apr 20 01:24:10 PDT 1998 Manish Singh <yosh@gimp.org>
  356. * plug-ins/faxg3/g3.h
  357. * plug-ins/faxg3/run_tbl.c: commented out #ident's, since some
  358. compilers complain
  359. Mon Apr 20 00:01:26 PDT 1998 Manish Singh <yosh@gimp.org>
  360. * app/disp_callbacks.c: we get events in a funny order sometimes,
  361. so don't try to remove nonexistent signal handlers
  362. Sun Apr 19 20:18:29 PDT 1998 Manish Singh <yosh@gimp.org>
  363. * added screenshot plug-in
  364. * plug-ins/animationplay/animationplay.c: fix sigsegv on close
  365. Sun Apr 19 14:16:44 MEST 1998 Sven Neumann <sven@gimp.org>
  366. * app/app_procs.c: truncate labels in the splash screen if they
  367. are too long to be displayed without resizing the window; this
  368. should fix the problems with 100dpi fonts
  369. Sat Apr 18 22:19:10 PDT 1998 Manish Singh <yosh@gimp.org>
  370. * app/gimprc.c: don't dereference NULL pointer when a gimprc
  371. variable is used before it's defined. Exit gracefully
  372. Sat Apr 18 11:45:04 PDT 1998 Manish Singh <yosh@gimp.org>
  373. * Made 0.99.27 release
  374. Sat Apr 18 11:37:46 PDT 1998 Manish Singh <yosh@gimp.org>
  375. * plug-ins/dbbrowser/dbbrowser_util.c: make text entry for function
  376. name read-only
  377. * plug-ins/film/film.c
  378. * plug-ins/animationplay/animationplay.c: minor cleanups
  379. Thu Apr 16 19:46:46 MEST 1998 Sven Neumann <sven@gimp.org>
  380. * plug-ins/script-fu/interp_slib.c: changed the link to
  381. the script-fu resources to point to www.gimp.org
  382. Wed Apr 15 13:18:47 EDT 1998 Matthew Wilson <msw@gimp.org>
  383. * app/disp_callbacks.c: restart current tool when changing
  384. gdisplays
  385. Wed Apr 15 17:40:55 MEST 1998 Sven Neumann <sven@gimp.org>
  386. * app/iscissors.c: changed toggle_buttons to check_buttons since
  387. all tools use them in the options dialog
  388. Wed Apr 15 02:44:58 1998 George Lebl <jirka@5z.com>
  389. * plug-ins/film/film.c: del_list_item_callback was calling
  390. gtk_widget_destroy on an already unrefed widget
  391. Wed Apr 15 02:03:25 PDT 1998 Manish Singh <yosh@gimp.org>
  392. * app/disp_callbacks.c: disable keyboard accelerators
  393. during mouse image operations, so nothing funky happens
  394. in the middle of a motion (like converting image types
  395. or running a plugin)
  396. Wed Apr 15 01:58:12 EDT 1998 Matthew Wilson <msw@gimp.org>
  397. * app/gdisplay.c: made a change to gdisplays_update_area to
  398. update _all_ gdisplays that point at the gimage ID. This
  399. (should) fix the paint on the second layer of a second view bug.
  400. Tue Apr 14 16:15:52 PDT 1998 Manish Singh <yosh@gimp.org>
  401. * app/iscissors.c: partially applied gimp-monniaux-980413-0,
  402. corrects nonfunctional interface elements
  403. Tue Apr 14 18:01:50 EDT 1998 Matthew Wilson <msw@gimp.org>
  404. * app/gdisplay.c: Set active_tool->drawable to NULL when destroying
  405. the gdisplay that the active tool points to.
  406. * app/giamge.c: Fixed spacing...
  407. Tue Apr 14 13:40:07 PDT 1998 Manish Singh <yosh@gimp.org>
  408. * gradient.c: handle delete_event for color selector properly
  409. * plug-ins/webbrowser/web-browser.scm: updated link to the bugs
  410. page
  411. Tue Apr 14 20:36:26 MEST 1998 Sven Neumann <sven@gimp.org>
  412. * gimp_tips.txt: applied gimp-quinet-980414-0; adds new tips
  413. * plug-ins/pagecurl/pagecurl.c: applied gimp-quinet-980414-1;
  414. defines M_PI
  415. * app/app_procs.c: applied gimp-quinet-980414-2; adds more
  416. information to the startup screen
  417. * app/regex.c
  418. * plugins/script-fu/regex.c: partially applied
  419. gimp-jbuhler-980412-0; adds braces to nested if/else
  420. Tue Apr 14 10:11:04 MEST 1998 Sven Neumann <sven@gimp.org>
  421. * app/global_edit.c: Named cut and copy are now performed after
  422. the user is asked for a name, so cancelling the dialog works
  423. correctly.
  424. Mon Apr 13 15:17:51 PDT 1998 Manish Singh <yosh@gimp.org>
  425. * moved man page from docs to top-level so it's always installed
  426. Mon Apr 13 23:48:31 MEST 1998 Sven Neumann <sven@gimp.org>
  427. * app/histogram_tool.c: changed the Ok and Cancel buttons in the
  428. histogram dialog to a simple Close, because that's what they were
  429. actually doing
  430. Mon Apr 13 13:09:32 EDT 1998 Matthew Wilson <msw@gimp.org>
  431. * app/commands.c: Fixed prefs to save stingy memory
  432. Mon Apr 13 16:22:38 MEST 1998 Sven Neumann <sven@gimp.org>
  433. * app/convert.c: converting an empty image from grayscale to
  434. indexed used to crash the gimp
  435. Mon Apr 13 15:37:42 MEST 1998 Sven Neumann <sven@gimp.org>
  436. * app/gdisplay.c: correctly update the menu-sensitivity; you can't
  437. paste into an empty image
  438. * global_edit.c: flush the displays when pasting from a named buffer
  439. Mon Apr 13 13:40:50 MEST 1998 Sven Neumann <sven@gimp.org>
  440. *docs/gimp.1: fixes and updates to the man-page
  441. Mon Apr 13 13:00:20 MEST 1998 Sven Neumann <sven@gimp.org>
  442. * gimp_tips.txt: more tips and nicer line wrap
  443. * app/tips_dialog.c: the last character (the final dot) was cut off
  444. Mon Apr 13 02:12:21 PDT 1998 Manish Singh <yosh@gimp.org>
  445. * app/xcf.c: fix a tiny bug in the xcf loader that would have
  446. caused gimp to crash on a corrupt xcf file
  447. Mon Apr 13 01:47:22 PDT 1998 Manish Singh <yosh@gimp.org>
  448. * plug-ins/flarefx/flarefx.c: applied gimp-timecop-980412-0
  449. and tweaked it a bit to make it have proper behavior
  450. * plug-ins/snoise/snoise.c: updated plug-in
  451. Sun Apr 12 22:31:11 PDT 1998 Manish Singh <yosh@gimp.org>
  452. * Changed address for FSF in all .h and .c files
  453. * app/configure.in: check for freebsd tiff libs
  454. Mon Apr 13 00:41:50 EDT 1998 Matthew Wilson <msw@gimp.org>
  455. * app/command.c: Duh. We have a message_box. Why not use it for
  456. the prefs code.
  457. Mon Apr 13 00:27:45 EDT 1998 Matthew Wilson <msw@gimp.org>
  458. * app/gdisplay.c: Set the current tool's gdisplay pointer to NULL
  459. when destroying a gdisplay
  460. * app/interface.c: Use "clicked" as the signal to handle for menu
  461. based tools. This lets us pop by_color_select back up.
  462. Sun Apr 12 22:51:31 MEST 1998 Sven Neumann <sven@gimp.org>
  463. * gimp_tips.txt: added a few more tips
  464. * plugins/webbrowser/webbrowser.scm: updated the URL to the
  465. GIMP Bugs page
  466. Sun Apr 12 15:49:25 MEST 1998 Sven Neumann <sven@gimp.org>
  467. * app/palette.c: fixed a typo in the menu
  468. * gimprc.in: removed the systemwide palettes directory from the
  469. palettes searchpath
  470. Sun Apr 12 02:23:05 PDT 1998 Manish Singh <yosh@gimp.org>
  471. * configure.in: I guess it didn't end... an attempt to try to
  472. recognize all types of tiff configs
  473. * app/gdisplay_ops.c: resize on zoom fix for naught window
  474. positioning from Kevin Cozens <kcozens@interlog.com>
  475. * app/errors.c: gdk_exit needs to be prototyped
  476. Sun Apr 12 01:19:35 PDT 1998 Manish Singh <yosh@gimp.org>
  477. * configure.in: more fixes... when will it all end...
  478. * plug-ins/xd/xd.c: compile with >= 0.15 now
  479. * app/transform.[ch]: applied gimp-alt-980412, fixes control
  480. point selection for transforms
  481. Sat Apr 11 15:23:26 PDT 1998 Manish Singh <yosh@gimp.org>
  482. * Made 0.99.26 release
  483. Sat Apr 11 15:03:43 PDT 1998 Manish Singh <yosh@gimp.org>
  484. * app/gdisplay.c: reverted cosmetic fix below, broke zoomed
  485. updates
  486. * configure.in: changes to xdelta and jpeg checks
  487. * updated bmp plugin
  488. * portability patch for polar
  489. * minor bugfix to vpropagate
  490. * fix for memory problem in xwd
  491. Sat Apr 11 00:03:33 PDT 1998 Manish Singh <yosh@gimp.org>
  492. * Made 0.99.25 release
  493. Fri Apr 10 21:59:18 PDT 1998 Manish Singh <yosh@gimp.org>
  494. * app/app_procs.c: fixed up idle handler for file open
  495. (look like testgtk idle demo)
  496. * app/colomaps.c: fixup for visual test and use of gdk_color_alloc
  497. for some fixed colors (from Owen Taylor)
  498. * app/errors.h
  499. * app/errors.c
  500. * app/main.c
  501. * libgimp/gimp.c: redid the signal handlers so we only get a
  502. debug prompt on SIGSEGV, SIGBUS, and SIGFPE.
  503. * applied gimp-jbuhler-980408-0 and gimp-joke-980409-0 (warning
  504. fixups)
  505. * applied gimp-monnaux-980409-0 for configurable plugin path for
  506. multiarch setups
  507. Fri Apr 10 00:17:23 EDT 1998 Matthew Wilson <msw@gimp.org>
  508. * app/commands.c: Fixed (hopefully) the preferences code. Added
  509. a warning to restart GIMP for those changes that require restarts.
  510. Fri Apr 10 01:55:50 MEST 1998 Sven Neumann <sven@gimp.org>
  511. * added three new logo-scripts from keebler@wco.com:
  512. bovinated-logo.scm, comic-logo.scm and gradient-bevel-logo.scm
  513. Thu Apr 9 09:28:04 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  514. * libgimp/gimp.c (gimp_main): strict C requires that function
  515. pointers be preceded by '&'. SGI compilers seem to not like it
  516. when they're not.
  517. * app/gdisplay.c: fixed updating to not clip display updates to
  518. image boundary (so that layer boundaries that hang over will be
  519. erased properly when the layer is removed); fixes a long-standing
  520. cosmetic bug.
  521. Thu Apr 9 01:54:19 PDT 1998 Manish Singh <yosh@gimp.org>
  522. * configure.in: fix jpeg check. Add config for sendmail
  523. * plug-ins/mail/Makefile.am: use autoconf MAILER
  524. * plug-ins/script-fu: s/\<err\>/my_err/g for portability
  525. Thu Apr 9 02:53:14 EST 1998 Matthew Wilson <msw@gimp.org>
  526. * app/app_procs.c: Added a little wrapper when loading files from
  527. command line that loads the files after gtk_main starts. This
  528. fixes the segfault from the tips dialog when you load images on
  529. the command line. Cudos to Owen for the fix.
  530. Wed Apr 8 23:47:59 PDT 1998 Manish Singh <yosh@gimp.org>
  531. * configure.in: add AC_FUNC_ALLOCA for regex
  532. Wed Apr 8 21:12:01 PDT 1998 Manish Singh <yosh@gimp.org>
  533. * configure.in: redid libjpeg check to make sure old versions
  534. aren't used. Also #undef PACKAGE and VERSION since some
  535. jconfig.h's define it
  536. * updated included regex.[ch] to the one in GNU grep
  537. * plug-ins/script-fu/interp_regex.c: we don't need to kludge
  538. around OSF1 anymore, since we use our own regex stuff
  539. Wed Apr 8 17:55:38 EDT 1998 Adrian Likins <adrian@gimp.org>
  540. *plugins/script-fu/scripts/grid-system.scm
  541. *plugins/script-fu/scripts/hsv-graph.scm
  542. *plugins/script-fu/scripts/image-structure.scm
  543. *plugins/script-fu/scripts/line-nova.scm
  544. *plugins/script-fu/scripts/text-circle.scm
  545. *plugins/script-fu/scripts/unsharp-mask.scm:
  546. *data/palettes/Named_colors:
  547. script and palette updates from Shuji Narazaki
  548. Wed Apr 8 00:14:29 PDT 1998 Manish Singh <yosh@gimp.org>
  549. * Made 0.99.24 release
  550. Wed Apr 8 00:04:31 PDT 1998 Manish Singh <yosh@gimp.org>
  551. * app/batch.c: fixup for script-fu in batch mode from
  552. Christian Maegaard <cc@chaos.dk>
  553. * added pagecurl plug-in
  554. Wed Apr 8 01:40:45 EDT 1998 Matthew Wilson <msw@gimp.org>
  555. * app/by_color_select.c: Don't destroy tool.
  556. Tue Apr 7 22:36:22 PDT 1998 Manish Singh <yosh@gimp.org>
  557. * added regex.[ch] to app/ and plug-ins/script-fu/ so we REALLY
  558. have proper regex functions on all platforms
  559. * updated gfig plugin
  560. Mon Apr 6 20:38:49 PDT 1998 Manish Singh <yosh@gimp.org>
  561. * configure.in: fix for $srcdir != $builddir for data. Tightened
  562. check for random() and add -lucb on systems that need it. Fix for
  563. xdelta.h check. Find xemacs as well as emacs. Properly define
  564. settings for print plugin.
  565. * app/Makefile.am: ditch -DNDEBUG, since nothing uses it
  566. * plug-ins/flame/Makefile.am
  567. * plug-ins/flame/cmap.c
  568. * plug-ins/flame/flame.c
  569. * plug-ins/flame/libifs.c: properly handle random() and friends
  570. * plug-ins/pnm/pnm.c: workaround for systems with old sprintfs
  571. * plug-ins/print/Makefile.am
  572. * plug-ins/print/print-escp2.c
  573. * plug-ins/print/print-pcl.c
  574. * plug-ins/print/print-ps.c
  575. * plug-ins/print/print-util.c
  576. * plug-ins/print/print.c: fold in portability fixes with the new
  577. source. Handle defs from configure in the Makefile
  578. * plug-ins/sgi/sgi.c
  579. * plug-ins/sgi/sgi.h: fold in portability fixes with the new source
  580. * plug-ins/threshold_alpha/threshold_alpha.c: properly get params
  581. in non-interactive mode
  582. * updated bmp plugin, folded in portability fixes
  583. Sun Apr 5 17:43:50 EDT 1998 Matthew Wilson <msw@gimp.org>
  584. * app/bezier_select.c: Destroy the tool when changing displays.
  585. * app/command.c: initialize pointers to drawables when selecting
  586. tools
  587. * app/disp_callbacks.c: initialize pointers to drawables on first
  588. click of a gdisplay
  589. * app/gimage.c: removed extra tool destruction
  590. * app/tools.c: make a fallback case when starting tools so that
  591. you'll always have an active tool.
  592. Sat Apr 4 15:43:28 MEST 1998 Sven Neumann <sven@gimp.org>
  593. * app/ops_buttons.[c|h]
  594. * app/channels_dialog.c
  595. * app/layers_dialog.c: The sensitivity of the buttons wasn't set
  596. correctly when deleting an image.
  597. Fri Apr 3 13:49:38 MEST 1998 Sven Neumann <sven@gimp.org>
  598. * app/menus.c
  599. * app/gdisplay.c
  600. * app/commands.[c|h]: Added a "Add Alpha Channel" menu-entry to
  601. the Image-menu. Now it is possible to work on a single-layer image
  602. without opening the Layers-dialog for adding an alpha channel.
  603. Fri Apr 3 12:22:40 MEST 1998 Sven Neumann <sven@gimp.org>
  604. * app/Makefile.am
  605. * tools/*.xpm
  606. * app/ops_buttons.[c|h]
  607. * app/channels_dialog.c
  608. * app/layers_dialog.c: Added buttons to access the menu functions
  609. in the Layers&Channels-dialog more directly. They are connected to
  610. the menu-item-callback-functions.
  611. Thu Apr 2 04:06:50 EST 1998 Matthew Wilson <msw@gimp.org>
  612. * app/disp_callbacks.c: Always ungrab the pointer on button release.
  613. This is a quick and dirty hack to try to nuke the pointer grab
  614. bug.
  615. Thu Apr 2 01:49:34 EST 1998 Matthew Wilson <msw@gimp.org>
  616. * app/transform_core.c: added a change to make a note of the
  617. current drawable in the button_release. This prevents the tool
  618. from being restarted when the transform_core makes a floating
  619. selection.
  620. * app/tools.c: Initialize the current drawable to NULL if
  621. there is gdisp == NULL.
  622. Thu Apr 2 23:52:54 EST 1998 Matthew Wilson <msw@gimp.org
  623. * app/gimage.c
  624. * app/tools.c: Made changes to restart tools properly when
  625. the current drawable changes.
  626. Thu Apr 2 20:09:06 MEST 1998 Sven Neumann <sven@gimp.org>
  627. * app/channels_dialog.c: the impossibility of duplicating a
  628. non-auxillary channel is now reflected by the menu-sensitivity
  629. Thu Apr 2 15:34:22 MEST 1998 Sven Neumann <sven@gimp.org>
  630. * updated iwarp to the version on the registry and reapplied
  631. (hopefully) all portability-patches that were applied in between
  632. Wed Apr 1 11:10:15 EST 1998 Matthew Wilson <msw@gimp.org>
  633. * app/brightness_contrast.c
  634. * app/by_color_select.c
  635. * app/color_balance.c
  636. * app/color_picker.c
  637. * app/curves.c
  638. * app/histogram_tool.c
  639. * app/hue_saturation.c
  640. * app/levels.c
  641. * app/posterize.c
  642. * app/threshold.c
  643. * app/transform_core.c: modified to call the cancel callback
  644. instead of the ok callback when freed. modified to save the
  645. last used drawable so that we might be able to check later
  646. and restart the tool if need be.
  647. * app/disp_callbacks.c
  648. * app/gimage.c: modified tool restart/destruction code
  649. * app/tools.c
  650. * app/tools.h: added tools_initialize, made changes to
  651. be able save the last used drawable in the tool.
  652. Wed Apr 1 23:14:42 MEST 1998 Sven Neumann <sven@gimp.org>
  653. * configure.in: added checks for print-systems as suggested by
  654. Michael Sweet
  655. * plugins/print
  656. * plugins/sgi: updated to the version on the registry
  657. Wed Apr 1 20:04:26 MEST 1998 Sven Neumann <sven@gimp.org>
  658. * app/layers_dialog.c: applied gimp-simon-980331-0
  659. * app/blend.c: change the repeat_mode_menu to insensitive when
  660. gradient_type is Shapeburst*
  661. Wed Apr 01 04:07:29 EST 1998 Matthew Wilson <msw@gimp.org>
  662. * app/disp_callbacks.c: Only destroy the current tool if you change
  663. gdisplays and the tool caches image data.
  664. Wed Apr 01 03:40:15 EST 1998 Matthew Wilson <msw@gimp.org>
  665. * app/disp_callbacks.c: If the current gdisp->ID does not match
  666. the ID of the gdisp_ptr in the active_tool, restart it.
  667. Tue Mar 31 03:10:12 EST 1998 Matthew Wilson <msw@gimp.org>
  668. * app/iscissors.c: Set tool->preserve to TRUE in tools_new_iscissors.
  669. Tue Mar 31 02:21:15 EST 1998 Matthew Wilson <msw@gimp.org>
  670. * app/gimage.c
  671. * app/tools.c
  672. * app/tools.h: Added a field in the Tools struct, preserve.
  673. During gimage_dirty, if this flag is not set the tool will be
  674. reset. This is good for tools that keep a copy of the image
  675. in cache for local manipulation like transform_core.
  676. * app/bezier_select.c
  677. * app/blend.c
  678. * app/brightness_contrast.c
  679. * app/bucket_fill.c
  680. * app/color_balance.c
  681. * app/color_picker.c
  682. * app/crop.c
  683. * app/curves.c
  684. * app/ellipse_select.c
  685. * app/free_select.c
  686. * app/histogram_tool.c
  687. * app/hue_saturation.c
  688. * app/levels.c
  689. * app/move.c
  690. * app/paint_core.c
  691. * app/posterize.c
  692. * app/rect_select.c
  693. * app/text_tool.c
  694. * app/transform_core.c: Set the preserve flag to the correct
  695. values in the new functions and wrapped calls to functions that
  696. dirty the gimage to prevent tool restarts.
  697. * app/disp_callbacks.c
  698. * app/menus.c: Removed Nether's tool patch.
  699. Mon Mar 30 21:58:34 PST 1998 Manish Singh <yosh@gimp.org>
  700. * app/brush_select.c
  701. * app/iscissors.c: get rid of unused variable warnings
  702. * app/fileops.c: refresh the filesel better
  703. * app/plug_in.c: make sure everything gets initialized to something
  704. in the plug-in struct
  705. Mon Mar 30 13:52:50 EST 1998 Adrian Likins <adrian@gimp.org>
  706. *plug-ins/png/png.c: changed nparams it expected
  707. so it would work non-ineractively
  708. Mon Mar 30 14:04:26 MEST 1998 Sven Neumann <sven@gimp.org>
  709. * app/by_color_select.c: now checks if the image it is
  710. operating on still exists.
  711. Sun Mar 29 14:29:34 PST 1998 Manish Singh <yosh@gimp.org>
  712. * plug-ins/sparkle/sparkle.c: fixed improper use of types;
  713. works now
  714. Sun Mar 29 11:47:02 EST 1998 Adrian Likins <adrian@gimp.org>
  715. *app/brushes.c: changed gimp-brushes-refresh so
  716. that it actually refreshes again after i broke it.
  717. Sat Mar 28 22:42:49 1998 Owen Taylor <owt1@cornell.edu>
  718. * configure.in (gimpdir): Removed duplicate saving of
  719. cflags. Add GTK_CFLAGS to CPPFLAGS for library tests,
  720. instead of to CFLAGS.
  721. Fri Mar 27 13:41:55 EST 1998 Matthew Wilson <msw@gimp.org>
  722. * app/floating_sel.c: Always update the drawable when converting
  723. a floating selection to a layer
  724. Fri Mar 27 11:41:30 EST 1998 Adrian Likins <adrian@gimp.org>
  725. *plug-ins/palette/*: added the save palette plugin
  726. Fri Mar 27 14:33:42 MET 1998 Sven Neumann <sven@gimp.org>
  727. * plugins/dbbrowser/dbbrowser_utils.c
  728. * plugins/sparkle/sparkle.c: small changes to make it compile
  729. on irix-6.4 with the native compiler.
  730. Fri Mar 27 00:19:38 PST 1998 Manish Singh <yosh@gimp.org>
  731. * Made 0.99.23 release
  732. Fri Mar 26 03:13:15 EST 1998 Matthew Wilson <msw@gimp.org>
  733. * app/paint_core.c: Offset brush buffer when painting on edges
  734. of the canvas.
  735. * app/text_tool.c: Set window to auto_shrink = FALSE
  736. Fri Mar 26 01:30:45 EST 1998 Matthew Wilson <msw@gimp.org>
  737. * app/iscissors.c
  738. * app/bezier_select.c: Change to select the bezier tool properly
  739. when converting from iscissors to bezier
  740. Thu Mar 26 17:41:55 MST 1998 Nathan Summers <rock@gimp.org>
  741. * app/iscissors.c: fixed the sigsegv if the layer is offset!
  742. Thu Mar 26 16:32:05 MST 1998 Nathan Summers <rock@gimp.org>
  743. * app/iscissors.c: fix a typo (i where a j should be)
  744. Thu Mar 26 15:26:18 MST 1998 Nathan Summers <rock@gimp.org>
  745. * app/iscissors.c: This version works much better.
  746. outstanding bugs <VERY IMPORTANT>:
  747. 1. the edgemap does not seem to be constructed quite right
  748. (construct_edge_map) -- uncomment #define
  749. ISCISSORS_STILL_DOES_NOT_WORK and take a look at the edgemap -- it
  750. will be saved to the file "dump"
  751. 2. sigsegvs if the layer offset isn't 0,0. dunno why.
  752. 3. convert to bezier still does not work! Any tools experts wanna
  753. help me with it? (it converts to bezier fine, it just doesn't set
  754. the active tool to bezier currectly.)
  755. Thu Mar 26 12:15:38 MST 1998 Nathan Summers <rock@gimp.org>
  756. * app/iscissors.c: fixes the display artifact where the preview
  757. outline of the selected area would not appear or would appear in the
  758. wrong place or have the wrong shape
  759. Thu Mar 26 12:00:47 MST 1998 Nathan Summers <rock@gimp.org>
  760. * app/iscissors.c: This should hopefully fix most of the UMRs
  761. (uninitialized memory reads) found with Purify. No noticable
  762. change in iscissors's behavior, unfortunately.
  763. Thu Mar 26 13:03:18 EST 1998 Adrian Likins <adrian@gimp.org>
  764. * app/app_procs.c app/brush_select.c app/brushes.c
  765. app/brushes.h app/convert.c app/gradient.c app/gradient.h
  766. app/palette.c app/palette.h app/pattern_select.c app/patterns.c
  767. app/patterns.h: Fixed up --no-data so that the various *_init()
  768. routines always get called, and so that when in interactive mode
  769. the data can be loaded by the user even when started with --no-data.
  770. Fixes the blend bug too...
  771. Thu Mar 26 18:38:54 MET 1998 Sven Neumann <sven@gimp.org>
  772. app/gradient.c: fixed another --no-data problem; also the
  773. editor now behaves better when it is resized
  774. Wed Mar 25 22:46:36 MST 1998 Nathan Summers <rock@gimp.org>
  775. * app/iscissors.c: fixed a problem with unintialized variables
  776. Wed Mar 25 19:29:09 PST 1998 Manish Singh <yosh@gimp.org>
  777. * app/gimprc.c: support for parsing env vars in gimprc
  778. Wed Mar 25 18:06:39 PST 1998 Manish Singh <yosh@gimp.org>
  779. * applied gimp-quinet-980122-0 and tweaked the tests a bit,
  780. this makes the optional library tests in configure.
  781. * applied gimp-jbuhler-980321-0, fixes more warnings in plug-ins
  782. 1998-03-25 Federico Mena Quintero <federico@nuclecu.unam.mx>
  783. * app/asupsample.c (adaptive_supersample_area): Removed Sopwith's
  784. "speed optimizations", as they introduced bugs (exposed by using a
  785. high threshold value for supersampling). They weren't much of a
  786. speed improvement, anyway (memcpy on very small regions, etc.).
  787. Also, assuming that all-bytes-zero is a floating-point 0 value is
  788. not portable.
  789. Wed Mar 25 16:22:00 EST 1998 Matthew Wilson <msw@gimp.org>
  790. * app/app_procs.c: now prints messages when starting up --no-splash
  791. * app/gimprc.c: now prints messages when starting up --no-splash
  792. * app/plug-in.c: does not print messages when starting up with
  793. splash screen
  794. Tue Mar 24 20:32:53 PST 1998 Manish Singh <yosh@gimp.org>
  795. * app/fileops.c: refresh the open/save as dialogs upon open
  796. * applied gimp-quinet-980323-0, fixing more M_PI madness
  797. * applied gimp-quinet-980323-1 which fixes redundant inline
  798. checks
  799. * plug-ins/gfig/gfig.c: changed stipple to type unsigned char to
  800. quell warnings
  801. Tue Mar 24 18:03:37 PST 1998 Manish Singh <yosh@gimp.org>
  802. * configure.in: corrected test for libXmu for some systems; added
  803. test for difftime
  804. * app/main.c: use glib ATEXIT macro
  805. * app/text_tool.c: applied gimp-stric-980321-0 (text preview
  806. refresh)
  807. * plug-ins/script-fu/script-fu-console.c: don't need to init
  808. gtkpreview stuff, since we don't use them
  809. * plug-ins/script-fu/*: many portability fixes
  810. * plug-ins/pnm/pnm.c: sprintf portability patch
  811. * plug-ins now #define RAND_MAX if needed
  812. * plug-ins/sparkle/sparkle.c: applied gimp-joke-980322-1
  813. Tue Mar 24 04:19:55 PST 1998 Manish Singh <yosh@gimp.org>
  814. * app/convert.c: fix for fencepost error from Adam
  815. Mon Mar 23 18:08:59 PST 1998 Manish Singh <yosh@gimp.org>
  816. * app/gimage_mask.c
  817. * app/paint_core.c: applied patch from Ben Jackson to fix
  818. fractional pixel errors and reverted the old fix.
  819. * app/paint_funcs.h: changed the #defines for ERASE_MODE and
  820. REPLACE_MODE to correctly match layer_modes[]
  821. Mon Mar 23 20:51:53 1998 Owen Taylor <owt1@cornell.edu>
  822. * INSTALL configure.in: Added some documentation
  823. about why the configuration for GTK could be failing,
  824. and pointed to it in the failure message.
  825. Sun Mar 22 18:27:57 EST 1998 Adrian Likins <adrian@gimp.org>
  826. * plugins/dbbrowser/dbbrowser_utils.c:
  827. * plugins/dbbrowser/dbbrowser_utils.h: Fix from
  828. Matt Wilson (msw) to fix the crash with script-fu
  829. pdbs in dbbrowser.
  830. * app/fileops.c: another patch from matt, this one to
  831. fix the bug with saving images with no layers.
  832. Sun Mar 22 14:23:03 EST 1998 Adrian Likins <adrian@gimp.org>
  833. * app/iscissors.c, app/tips_dialog.c, app/gradient.c,
  834. libgimp/gimp.c, plug-ins/AlienMap/AlienMap.c,
  835. plug-ins/bmp/bmp.c, plug-ins/fits/fitsrw.h,
  836. plug-ins/fits/fitsrw.c, plug-ins/flarefx/flarefx.c,
  837. plug-ins/gfig/gfig.c, plug-ins/gfli/gfli.c,
  838. plug-ins/gicon/gicon.c, plug-ins/gqbist/gqbist.c,
  839. plug-ins/gtm/gtm.c, plug-ins/hot/hot.c,
  840. plug-ins/ifscompose/ifscompose.c,
  841. plug-ins/ifscompose/ifscompose_utils.c
  842. plug-ins/max_rgb/max_rgb.c, plug-ins/nlfilt/nlfilt.c,
  843. plug-ins/pat/pat.c, plug-ins/pcx/pcx.c, plug-ins/rotate/rotate.c,
  844. plug-ins/script-fu/script-fu-server.c, plug-ins/snoise/snoise.c,
  845. plug-ins/threshold_alpha/threshold_alpha.c,
  846. plug-ins/zealouscrop/zealouscrop.c :gimp-joke-980321
  847. plug-ins/CML_explorer, plug-ins/autocrop,
  848. plug-ins/align_layers, plug-ins/blinds,
  849. plug-ins/bmp, plug-ins/megawidget: gimp-joke-980322
  850. Applied gimp-joke-980322-0.patch and gimp-joke-980321-0.patch
  851. from Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp>. Mostly
  852. portability for DEC osf1's cc. Lots of MAIN();'s, trailing
  853. commas in enums, and guchar/gchar madness.
  854. Sun Mar 22 01:59:31 PST 1998 Manish Singh <yosh@gimp.org>
  855. * autoconfed for random/lrand48/rand madness
  856. * dbbrowser uses clist now, thanks to msw
  857. * gfig.c: minor fix for buggy compilers
  858. * plasma.c, snoise.c: applied gimp-kmt-980321-[0,1]
  859. * tiff.c: minor fix
  860. Sat Mar 21 18:34:56 MET 1998 Sven Neumann <sven@gimp.org>
  861. * fixed ripply-anim.scm and readded it
  862. Sat Mar 21 16:26:08 MET 1998 Sven Neumann <sven@gimp.org>
  863. * docs/gimp.1
  864. * app/install.c: small changes to reflect the fact that a gfig
  865. directory is created in the users gimp-directory.
  866. Sat Mar 21 15:43:34 MET 1998 Sven Neumann <sven@gimp.org>
  867. * gimprc.in
  868. * app/commands.c: removed auto-save from preferences and marked
  869. it as not implemented in gimprc. The code is still there for later
  870. reuse.
  871. * app/gdisplay_ops.c: changed the WMCLASS on the image close
  872. confirmation dialog to 'really_close'
  873. Sat Mar 21 14:43:06 MET 1998 Sven Neumann <sven@gimp.org>
  874. * docs/gimp_quick_reference.[ps|tar.gz]:
  875. Changes to the reference sheet.
  876. Fri Mar 20 18:15:06 PST 1998 Manish Singh <yosh@gimp.org>
  877. * s/bzero/memset/ and s/bcopy/memcpy/ in plug-ins
  878. Fri Mar 20 16:54:47 EST 1998 Adrian Likins <adrian@gimp.org>
  879. * app/palette.c:
  880. * app/palette.h:
  881. * app/internal_procs.c: Fixed some brokenness in palette refreshing.
  882. Mar 19 21:36:41 PST 1998 Manish Singh <yosh@gimp.org>
  883. * Made 0.99.22 release
  884. * app/undo.c: handle exposure correctly
  885. Thu Mar 19 22:05:56 CST 1998 Larry Ewing <lewing@gimp.org>
  886. * app/palette.c: fixed out of bounds reference in pallete_create.
  887. The dialogs are a mess.
  888. Thu Mar 19 18:36:09 PST 1998 Manish Singh <yosh@gimp.org>
  889. * ltmain.sh: libtool patch for Solaris
  890. * added libgck, MapObject, and gfig back in
  891. * gimprc.in: entry for gfig patterns
  892. Thu Mar 19 14:13:33 EST 1998 Adrian Likins <adrian@gimp.org>
  893. * applied patch from Andy Thomas to brushes.c to
  894. improve brush loading via pdb. Fixes problems with
  895. bruses of the same name.
  896. *plugins/script-fu/scripts/ripply-anim.scm: removed
  897. until someone fixes it.
  898. Thu Mar 19 13:21:28 MET 1998 Sven Neumann <sven@gimp.org>
  899. * docs/gimp_quick_reference.[tex|ps]: added a
  900. single-paged reference sheet with most of the hotkeys
  901. Thu Mar 19 03:28:29 PST 1998 Manish Singh <yosh@gimp.org>
  902. * plug-ins/script-fu/script-fu-scripts.c: handle delete
  903. event for colorsel correctly
  904. * plug-ins/polar/polar.c: minor cleanups
  905. Thu Mar 19 01:04:56 PST 1998 Manish Singh <yosh@gimp.org>
  906. * applied gimp-jbuhler-980315-0 (quelled warnings)
  907. Wed Mar 18 20:57:55 EST 1998 Adrian Likins <adrian@gimp.org>
  908. * AlienMap/AlienMap.c CEL/CEL.c CML_explorer/CML_explorer.c
  909. align_layers/align_layers.c animationplay/animationplay.c
  910. bmp/bmpwrite.c dbbrowser/dbbrowser.c emboss/emboss.c
  911. exchange/exchange.c faxg3/faxg3.c faxg3/g3.c gbr/gbr.c
  912. gif/gif.c gqbist/gqbist.c hot/hot.c ifscompose/ifscompose.c
  913. iwarp/iwarp.c max_rgb/max_rgb.c maze/maze_face.c
  914. megawidget/megawidget.c mpeg/mpeg.c nlfilt/nlfilt.c pcx/pcx.c
  915. plasma/plasma.c pnm/pnm.c print/print-escp2.c
  916. print/print-pcl.c print/print.c scatter_hsv/scatter_hsv.c
  917. script-fu/script-fu-scripts.c script-fu/script-fu.c
  918. sinus/sinus.c tga/tga.c tileit/tileit.c
  919. vpropagate/vpropagate.c xpm/xpm.c:
  920. More picky picky ansi type
  921. stuff from gimp-hpux-980316.patch.
  922. Wed Mar 18 15:06:13 PST 1998 Manish Singh <yosh@gimp.org>
  923. * define M_PI if it's not already defined in lots of
  924. source files
  925. Wed Mar 18 16:57:52 EST 1998 Adrian Likins <adrian@gimp.org>
  926. * blend.c brightness_contrast.c brush_select.c brushes.c
  927. bucket_fill.c by_color_select.c channels_dialog.c
  928. color_balance.c convolve.c crop.c curves.c eraser.c fileops.c
  929. frac.c gradient.c histogram_tool.c hue_saturation.c
  930. image_render.c indexed_palette.c layers_dialog.c levels.c
  931. move.c paintbrush.c pattern_select.c pencil.c
  932. perspective_tool.c posterize.c rect_select.c scale_tool.c
  933. threshold.c tips_dialog.c:
  934. appied most of gimp-hpux-980316-0.patch
  935. from ???? Mostly added static's here and there
  936. and casting stuff.
  937. * app/indexed_palette.c: made dialog non-resizeable
  938. Wed Mar 18 21:16:14 MET 1998 Sven Neumann <sven@gimp.org>
  939. * app/crop.c: fixed an indented #define
  940. Wed Mar 18 19:11:01 MET 1998 Sven Neumann <sven@gimp.org>
  941. * app/app_procs.c: split the "Brought to you by S&P" line in
  942. two to avoid problems with 100dpi fonts
  943. Wed Mar 18 00:06:50 MET 1998 Sven Neumann <sven@gimp.org>
  944. * gradient.c: fixed a problem in the gradient editor
  945. when gimp is started with the no-data option and no
  946. gradients are load.
  947. Tue Mar 17 01:38:18 PST 1998 Manish Singh <yosh@gimp.org>
  948. * updated gif, animationplay, animoptimize, and bmp plugins
  949. Mon Mar 16 21:52:46 CST 1998 Larry Ewing <lewing@gimp.org>
  950. * app/convert.c (indexed_ok_callback): added gimage_ID to the
  951. dialog struct to check if the gimage was still around.
  952. * app/commands.c: fixed border/grow/shrink to check for valid
  953. gimage. (Once again object if you don't like this method).
  954. Mon Mar 16 16:31:11 PST 1998 Manish Singh <yosh@gimp.org>
  955. * updated xpm plugin
  956. Mon Mar 16 15:57:08 PST 1998 Manish Singh <yosh@gimp.org>
  957. * app/iscissors.c: more iscissors fun
  958. Mon Mar 16 17:05:54 CST 1998 Larry Ewing <lewing@gimp.org>
  959. * app/commands.c: changed select_feather_cmd_callback to pass the
  960. gimage->ID rather than the gimage to prevent a fatal error. If
  961. you have objections to this speak now.
  962. Mon Mar 16 17:50:56 EST 1998 Adrian Likins <adrian@gimp.org>
  963. * plugins/illusion/illusion.c:
  964. * plugins/papertile/papertile.c:
  965. * plugins/fractaltrace/fractaltrace.c:
  966. * plugins/flame/flame.c: Changed MAIN(); to MAIN()
  967. *gimprc_user: added a commented out (install-colormap)
  968. option
  969. *app/install.c: comsetic update to show info about .gimp/scripts
  970. *plugins/sparkle/sparkle.c:
  971. *plugins/despeckle/despeckle.c: made a local MIN/MAX instead
  972. of redefining the normal one (causes problems on some compilers)
  973. Mon Mar 16 05:12:00 CST 1998 Larry Ewing <lewing@gimp.org>
  974. * app/move.c:
  975. * app/gdisplay.c:
  976. * app/gimage.c: Reworked the guide drawing and picking code to
  977. remove all known guide artifacts.
  978. Mon Mar 16 12:20:12 EET 1998 Lauri Alanko <la@iki.fi>
  979. * app/menus.c: Fixed the tool options disappearing at undo.
  980. Mon Mar 16 02:03:47 PST 1998 Manish Singh <yosh@gimp.org>
  981. * updated gif and animationplay plugins
  982. Sun Mar 15 22:32:17 PST 1998 Manish Singh <yosh@gimp.org>
  983. * all plugins parse gtkrc now
  984. * configure.in: save CFLAGS properly
  985. Mon Mar 16 00:28:16 CST 1998 Larry Ewing <lewing@gimp.org>
  986. * app/undo.c: added back in the "extra" update I removed earlier.
  987. Sun Mar 15 20:39:12 CST 1998 Larry Ewing <lewing@gimp.org>
  988. * app/undo.c (undo_pop_layer_displace): removed what seemed to be
  989. an extra call to drawable_update on the layer, and added a call to
  990. update the layer->mask.
  991. Sun Mar 15 14:50:21 CST 1998 Larry Ewing <lewing@gimp.org>
  992. * app/fileops.c (file_save_as_callback): fixed file Save As
  993. cancel callback to use gtk_signal_connect_object.
  994. Sun Mar 15 13:37:22 MET 1998 Sven Neumann <sven@gimp.org>
  995. * libgimp/gimpwire.c: applied Raphael Quinet's patch that
  996. changes the wire_read error message to something slightly more
  997. useful.
  998. Sun Mar 15 01:12:06 PST 1998 Manish Singh <yosh@gimp.org>
  999. * made 0.99.21 release
  1000. Sun Mar 15 02:06:18 CST 1998 Larry Ewing <lewing@gimp.org>
  1001. * app/layers_dialog.c: pass layer_ID instead of layer_widget to
  1002. rename funtion to prevent dereferencing freed mem. Fixes layer
  1003. rename bug.
  1004. Sun Mar 15 06:15:37 1998 Tim Janik <timj@gimp.org>
  1005. * app/gimage.c (gimage_remove_layer): check whether the removed layer
  1006. is floating_sel *and* check whether it is active_layer.
  1007. * plug-ins/exchange/exchange.c (doDialog): also destroy the main dialog
  1008. if the "Cancel" button is clicked.
  1009. * plug-ins/flame/flame.c: use gtk_quit_add_destroy instead of
  1010. gtk_quit_add (,gtk_widget_destroy,), i should have really known
  1011. better since i wrote gtk_quit_add_destroy() exclusively for the gimp ;)
  1012. * app/tips_dialog.c (tips_dialog_create): likewise.
  1013. * app/indexed_palette.c (indexed_palette_create): likewise.
  1014. * app/fileops.c (file_open_callback): likewise.
  1015. * app/fileops.c (file_save_as_callback): likewise.
  1016. Sun Mar 15 03:54:58 1998 Tim Janik <timj@gimp.org>
  1017. * plug-ins/AlienMap/AlienMap.c: show/hide about dialog, don't affect
  1018. the main dialog.
  1019. * plug-ins/flame/flame.c (edit_callback): hide the dialog on delete.
  1020. (make_file_dlg): hide the dialog on delete.
  1021. * plug-ins/ifscompose/ifscompose.c (ifs_options_dialog): hide the dialog
  1022. on delete.
  1023. * app/interface.c (toolbox_delete): handle WM delete of toolbox
  1024. correctly.
  1025. (gdisplay_delete): don't close image window without confirmation.
  1026. Sat Mar 14 18:38:26 PST 1998 Manish Singh <yosh@gimp.org>
  1027. * app/iscissors.c: new, improved, still buggy iscissors!
  1028. * app/fileops.c: correctly hide the file selector
  1029. * app/transform_core.c: a better fix for the display artifacts
  1030. * added aa plugin back in
  1031. Sat Mar 14 20:52:06 EST 1998 Adrian Likins <adrian@gimp.org>
  1032. * doc/gimp.1
  1033. * app/main.c: some updates to reflect that none of
  1034. "valid debugging options" do anything anymore
  1035. Sat Mar 14 15:14:16 PST 1998 Manish Singh <yosh@gimp.org>
  1036. * updated to use libtool 1.1
  1037. * app/transform_core.c: fixed display artifacts for the
  1038. transform tools, sorta.
  1039. * plug-ins/pcx/pcx.c: updated pcx plug-in
  1040. Sat Mar 14 18:50:29 MET 1998 Sven Neumann <sven@gimp.org>
  1041. * app/main.c: applied gimp-ovchinnikov-970312-0.patch which
  1042. initializes locale.
  1043. Sat Mar 14 17:17:31 MET 1998 Sven Neumann <sven@gimp.org>
  1044. * app/internal_procs.c
  1045. * app/text_tool.c
  1046. * app/text_tool.h: applied gimp-edas-980305-0.patch (after a small
  1047. fix). Now registry and encoding can be choosen in the text tool
  1048. and two new pdb-functions are available to access this
  1049. functionality.
  1050. * plugins/script-fu/scripts/i26-gunya2.scm: changed to make it
  1051. follow the naming-convention
  1052. Fri Mar 13 21:11:59 PST 1998 Manish Singh <yosh@gimp.org>
  1053. * configure.in: use gtk-config now
  1054. * app/gimage.c: gtk is paranoid. Must appease the warning gods.
  1055. Sat Mar 14 00:50:31 1998 Tim Janik <timj@gimp.org>
  1056. * plug-ins/script-fu/script-fu-scripts.c: only destroy the dialog at
  1057. the end of gtk_main() if it still exists.
  1058. Fri Mar 13 16:54:12 CST 1998 Larry Ewing <lewing@gimp.org>
  1059. * app/image_render.c: added some g_return_if_fails to the render
  1060. funcs until I can come up with a better fix.
  1061. Fri Mar 13 12:53:22 1998 Tim Janik <timj@gimp.org>
  1062. * app/layers_dialog.c: proper destruct at the end of gtk_main().
  1063. (layer_widget_delete): unreference the layer widget's list item.
  1064. (layers_dialog_free): instead of destroying the menu, sink it since
  1065. it is still floating because we didn't attach it to some other widget.
  1066. (layers_dialog_free): sink the preview, destroy doesn't work since it's
  1067. still floating. wonder what the preview is created for if it is never
  1068. used?.
  1069. * app/channels_dialog.c (channel_widget_delete): unreference the channel
  1070. widget's list item.
  1071. * app/channels_dialog.c (channels_dialog_free): sink the menu.
  1072. * app/channels_dialog.c (channels_dialog_free): sink the preview.
  1073. * app/indexed_palette.c (indexed_palette_create): update the image list
  1074. even on initial creation. fixed the option menu warning.
  1075. * plug-ins/script-fu/script-fu-console.c (script_fu_browse_callback):
  1076. properly destroy the browser when gtk_main() quits.
  1077. * plug-ins/dbbrowser/dbbrowser_utils.c (gimp_db_browser): pass a widget
  1078. pointer back to our caller, for enabling proper destruction.
  1079. * plug-ins/script-fu/script-fu-console.c (script_fu_console_interface):
  1080. only destroy the dialog on exit if it is still existing.
  1081. Fri Mar 13 17:22:46 MET 1998 Sven Neumann <sven@gimp.org>
  1082. * docs/gimp.1: fixed some typos in the man-page
  1083. Fri Mar 13 10:21:21 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1084. * app/convert.c (generate_histogram_rgb): fixed buffer overrun in
  1085. convert.c correctly; the previous "fix" forced quantization when
  1086. it wasn't necessary in some cases (and made Adam very mad).
  1087. Fri Mar 13 00:51:37 PST 1998 Manish Singh <yosh@gimp.org>
  1088. * app/color_picker.c: added display of hex triplets for HTML
  1089. people
  1090. Thu Mar 12 18:51:09 PST 1998 Manish Singh <yosh@gimp.org>
  1091. * app/gdisplay.c
  1092. * app/by_color_select.c: Fix for indexed selection for multiple
  1093. layers by Ben Jackson. Reenabled select by color for indexed
  1094. images
  1095. Thu Mar 12 21:25:51 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1096. * app/undo.c (undo_pop_layer_mod): Fixed a desynch bug when
  1097. undoing "add alpha layer".
  1098. Thu Mar 12 22:52:47 1998 Tim Janik <timj@gimp.org>
  1099. * about_dialog.c:
  1100. * app_procs.c:
  1101. * brightness_contrast.c:
  1102. * brush_select.c:
  1103. * by_color_select.c:
  1104. * channel_ops.c:
  1105. * channels_dialog.c:
  1106. * color_balance.c:
  1107. * color_select.c:
  1108. * commands.c:
  1109. * convert.c:
  1110. * curves.c:
  1111. * fileops.c:
  1112. * gdisplay_ops.c:
  1113. * global_edit.c:
  1114. * gradient.c:
  1115. * histogram_tool.c:
  1116. * hue_saturation.c:
  1117. * indexed_palette.c:
  1118. * info_dialog.c:
  1119. * install.c:
  1120. * interface.c:
  1121. * layers_dialog.c:
  1122. * levels.c:
  1123. * main.c:
  1124. * palette.c:
  1125. * pattern_select.c:
  1126. * posterize.c:
  1127. * text_tool.c:
  1128. * threshold.c:
  1129. * tips_dialog.c:
  1130. * tools.c:
  1131. fixed a lot of the destroy handlers and delete_event handlers, still
  1132. not everything perfect, though.
  1133. Wed Mar 11 22:02:03 PST 1998 Manish Singh <yosh@gimp.org>
  1134. * Made 0.99.20 release
  1135. Wed Mar 11 21:42:15 PST 1998 Manish Singh <yosh@gimp.org>
  1136. * app/iscissors.c: another iscissors patch, don't know
  1137. if it does any good though
  1138. Wed Mar 11 19:30:54 EST 1998 Adrian Likins <adrian@gimp.org>
  1139. *docs/gimp.1: added gimp man page
  1140. *app/gdisplay.c: disables by-color-select for indexed images
  1141. *plugins/webbrowse/web-browser.scm: updated some urls
  1142. *plugins/script-fu/sripts/circuit.scm: update for change in maze
  1143. Wed Mar 11 18:03:38 CST 1998 Larry Ewing <lewing@gimp.org>
  1144. * app/disp_callbacks.c: added checks to recreate the active tool
  1145. if need be.
  1146. Wed Mar 11 02:49:14 PST 1998 Manish Singh <yosh@gimp.org>
  1147. * app/fileops.c: no need to hide the help button for fileops,
  1148. since it doesn't exist anymore
  1149. Wed Mar 11 02:26:51 PST 1998 Manish Singh <yosh@gimp.org>
  1150. * added animoptimize plugin
  1151. Wed Mar 11 00:27:35 PST 1998 Manish Singh <yosh@gimp.org>
  1152. * app/convert.c: fixed memory overrun error
  1153. * app/gdisplay.c
  1154. * app/menus.c: reapplied the tools patch from Nether, looks
  1155. like it doesn't trip up anymore. Added some sanity checks
  1156. anyway
  1157. * app/disp_callbacks.c
  1158. * app/transform_core.c: plugged some harmless build warnings
  1159. 1998-03-11 Larry Ewing <lewing@discord.isc.tamu.edu>
  1160. * app/undo.c
  1161. * app/gimage.h
  1162. * app/gimage.c: added a simple reference count to the guides so that
  1163. undo does not free them too early...
  1164. Tue Mar 10 21:31:21 PST 1998 Manish Singh <yosh@gimp.org>
  1165. * app/interface.c: scrollbars in the drawing area shouldn't
  1166. autofocus
  1167. Tue Mar 10 17:09:27 PST 1998 Manish Singh <yosh@gimp.org>
  1168. * app/app_procs.c
  1169. * app/colormaps.c: Do the preview_reset properly this time
  1170. Tue Mar 10 00:38:31 PST 1998 Manish Singh <yosh@gimp.org>
  1171. * app/transform_core.c: transform tools add alpha channel
  1172. properly, fixing that really nasty painting bug
  1173. Sun Mar 8 17:44:05 PST 1998 Manish Singh <yosh@gimp.org>
  1174. * app/app_procs.c: fix for (install-colormap) and splash screen
  1175. using gtk_preview_reset()
  1176. * configure.in: on some platforms libXmu doesn't require libSM and
  1177. libICE. configure should know this now.
  1178. * app/gradient.c: corrected WM_CLASS typo
  1179. * plug-ins/gfli/gfli.c: fix for load handler magic
  1180. * plug-ins/gtm/gtm.c: don't use naughty gccisms.
  1181. * plug-ins/gqbist
  1182. * plug-ins/maze: updated from registry
  1183. Tue Mar 3 01:02:30 1998 Larry Ewing <lewing@discord.isc.tamu.edu>
  1184. * app/scale.c: Fixed a long standing bug in the scale factor
  1185. computation so that the scale labels all agree.
  1186. Sun Mar 1 18:45:09 PST 1998 Manish Singh <yosh@gimp.org>
  1187. * Made 0.99.19 release
  1188. Sun Mar 1 20:28:54 MET 1998 Sven Neumann <sven@gimp.org>
  1189. * app/internal_procs.c
  1190. * app/palette.c
  1191. * app/palette.h
  1192. * app/commands.c
  1193. * app/commands.h
  1194. * app/menus.c
  1195. * libgimp/gimppalette.c:
  1196. implemented gimp_palette_set_default_colors and
  1197. gimp_palette_swap_colors as pdb-calls and bound menu-entries and
  1198. keybindings to them (gimp-sven-980216-0.patch)
  1199. Sat Feb 28 22:05:15 PST 1998 Manish Singh <yosh@gimp.org>
  1200. * autoconfed the data stuff
  1201. Sat Feb 28 23:38:30 EST 1998 Adrian Likins <adrian@gimp.org>
  1202. * at yosh's suggestion, merged gimp-data-min
  1203. back into the main gimp tree under gimp/data
  1204. Sat Feb 28 16:57:49 PST 1998 Manish Singh <yosh@gimp.org>
  1205. * Makefile.am: don't do docs generation by default
  1206. * configure.in: -lXt for webbrowser plugin
  1207. * libgimp/gimp.c
  1208. * libgimp/gimpprotocol.c
  1209. * libgimp/gimptile.c
  1210. * libgimp/gimpwire.c
  1211. * app/plug_in.c: applied memory leak patch from Mattias Gronlund
  1212. * app/eraser.c
  1213. * app/eraser.h
  1214. * app/internal_procs.c
  1215. * app/paintbrush.c
  1216. * app/paintbrush.h: incremental modes for eraser and paintbrush,
  1217. as well as a "hard eraser"
  1218. * plug-ins/ifscompose/ifscompose.c: pixmap visual fixups
  1219. Sat Feb 28 00:09:46 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1220. * app/gimage_cmds.c (duplicate): Duplicate image wasn't copying
  1221. channels to the new image. Fixed.
  1222. Fri Feb 27 23:02:10 MET 1998 Sven Neumann (sven@gimp.org)
  1223. * app/about_dialog.c: (about_dialog_load_logo)
  1224. use a correct gc
  1225. 1998-02-26 Federico Mena Quintero <federico@nuclecu.unam.mx>
  1226. * app/app_procs.c (make_initialization_status_window): Push/pop
  1227. correct visuals for drawing area creation.
  1228. (splash_logo_load): Use a correct gc.
  1229. Thu Feb 26 12:19:44 EET 1998 Lauri Alanko <la@iki.fi>
  1230. * Another patch in gimp.h to name more GParam-types for gimple.
  1231. Wed Feb 25 02:46:28 PST 1998 Manish Singh <yosh@gimp.org>
  1232. * added webbrowser plugin for gimp help
  1233. Tue Feb 24 22:14:06 PST 1998 Manish Singh <yosh@gimp.org>
  1234. * plug-ins/xpm/xpm.c: update. Hopefully this fixes all
  1235. those problems we were having
  1236. Tue Feb 24 04:14:36 PST 1998 Manish Singh <yosh@gimp.org>
  1237. * configure.in: change to detect GTK 0.99.4 or higher
  1238. Sun Feb 22 02:43:12 PST 1998 Manish Singh <yosh@gimp.org>
  1239. * app/text_tool.c: use our own sort function to appease
  1240. the gtk gods
  1241. Sat Feb 21 16:40:47 EST 1998 Adrian Likins <adrian@gimp.org>
  1242. * plugins/destripe/detripe: updated destripe
  1243. *plugins/gtm/*:
  1244. plugins/semiflatten/*: added these plugins
  1245. Fri Feb 20 02:38:24 PST 1998 Manish Singh <yosh@gimp.org>
  1246. * initial plug-in stable/unstable split
  1247. Wed Feb 18 16:46:37 1998 Owen Taylor <owt1@cornell.edu>
  1248. * plug-ins/ifscompose/ifscompose.c: refcounting fixups
  1249. plug-ins/ifscompose/REAMDE.ifscompose: changed web address
  1250. Wed Feb 18 17:56:40 MET 1998 Sven Neumann <sven@gimp.org>
  1251. * app/app_procs.c: fixed refcounting for the splash-image
  1252. Tue Feb 17 21:23:20 MET 1998 Sven Neumann <sven@gimp.org>
  1253. * app/fileops.c: hide the help buttons since we have no
  1254. help (yet)
  1255. Tue Feb 17 20:55:12 MET 1998 Sven Neumann <sven@gimp.org>
  1256. * gimp_splash.ppm: added the splash-screen image drawn
  1257. by Jens Lauterbacher to the distribution
  1258. * app/appenv.h
  1259. * app/app_procs.c
  1260. * app/main.c: added the splash-image to the startup-window;
  1261. new command-line options: --no-splash, --no-splash-image
  1262. * ps_menurc: changed to reflect changes to the
  1263. menu-structure
  1264. Tue Feb 17 09:24:44 EST 1998 Adrian Likins <adrian@gimp.org>
  1265. * updated all of Sven Neumanns scripts. Including
  1266. blend-anim.scm, waves-anim.scm, drop-shadows.scm,
  1267. perspective-shadow.scm, round-corners.scm, slide.scm,
  1268. and selection-round.scm.
  1269. Sat Feb 14 15:34:08 PST 1998 Manish Singh <yosh@gimp.org>
  1270. * app/iscissors.c: iscissors released for initial public
  1271. consumption
  1272. Sat Feb 14 15:01:46 PST 1998 Manish Singh <yosh@gimp.org>
  1273. * Fixed up docs and autoconf interaction (part of
  1274. gimp-rrh-980125-0)
  1275. Fri Feb 13 02:00:01 PST 1998 Manish Singh <yosh@gimp.org>
  1276. * libgimp/gimp.c
  1277. * app/menus.c: fixes for the g_string -> g_str change in glib
  1278. * updated gfig
  1279. Thu Feb 12 13:10:50 EST 1998 Adrian Likins <adrian@gimp.org>
  1280. *libgimp/gimp.h
  1281. applied a patch from Lauri Alanko to make
  1282. libgimp/pdb bindings for some languages a little easier
  1283. Wed Feb 4 19:04:35 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1284. * channel.c
  1285. * channel.h
  1286. * disp_callbacks.c
  1287. * gimage.c
  1288. * layer.c
  1289. * layer.h
  1290. * layers_dialog.c
  1291. * undo.c: More GTK refcount-related changes. (We're not there
  1292. yet, but we're getting closer.)
  1293. Tue Feb 3 17:52:34 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1294. * app/interface.[ch] app/app_procs.[ch]: Changes to deal with new
  1295. GTK refcounting regime.
  1296. Mon Feb 2 19:19:16 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1297. * app/channels_dialog.c:
  1298. * app/layers_dialog.c: Added gtk_widget_ref and gtk_widget_unref
  1299. calls to keep channel & layer widgets from dying when reordering
  1300. the channel/layer stacks.
  1301. Sat Jan 31 20:49:11 EST 1998 Adrian Likins <adrian@gimp.org>
  1302. * plug-ins/edge.c: added a check so it wouldnt segfault when
  1303. passed a non-existent drawable
  1304. * plug-ins/threshold_alpha.c: added a non-interactive mode
  1305. * app/brightness_contrast.c
  1306. * app/color_balance.c
  1307. * app/colormaps.c
  1308. * app/curves.c
  1309. * app/hue_saturation.c
  1310. * app/posterize.c
  1311. * app/threshold.c : added a check so it wouldnt except
  1312. a indexed drawable. This was previosly possible via the pdb.
  1313. Sat Jan 31 00:16:22 PST 1998 Manish Singh <yosh@gimp.org>
  1314. * plug-ins/xpm/xpm.c: Changed to use g_strcasecmp
  1315. Fri Jan 30 13:47:57 1998 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1316. * app/gradient.c: Applied patch from Wolfgang Hofer
  1317. <hof@ws6310.gud.siemens.at> to let the user load the segment
  1318. endpoint color from the current foreground color. It also makes
  1319. the preview un-resizable, which is not a complete fix for the
  1320. preview resizing bug.
  1321. Fri Jan 30 11:48:04 EST 1998 Adrian Likins <adrian@gimp.org>
  1322. * More plugin non-interactive fixes:
  1323. DigitalSignature, hot, sinus, smooth_palette
  1324. Thu Jan 29 19:25:52 EST 1998 Adrian Likins <adrian@gimp.org>
  1325. * fixed the non-iteractive modes for plugins:
  1326. exchange, holes, grid, deinterlace
  1327. (mainly expecting wrong number of arguments or just ingome
  1328. non-interactive mood entirely)
  1329. Thu Jan 29 01:05:10 PST 1998 Manish Singh <yosh@gimp.org>
  1330. * updated refract and warp plugins
  1331. * changed the INSTALL file to reflect the fact that gtk is a
  1332. separate package
  1333. * app/text_tool.c: small patch for indexed images and
  1334. antialiased toggle
  1335. Thu Jan 29 00:00:54 PST 1998 Manish Singh <yosh@gimp.org>
  1336. * removed all usage of linked.[ch] and switched to GSLists
  1337. Wed Jan 28 22:03:42 EST 1998 Adrian Likins <adrian@gimp.org>
  1338. * Fixed carve-it.scm and circuit.scm (circuit broke due
  1339. to a plugin update, carve-it broke due to the add-layer stuff)
  1340. * Added a close button to the color picker info window
  1341. * changed index_palette.c a bit...now if you click with
  1342. MB11, it changes the current active color, clicking with MB3
  1343. opens the color in the color selector for editing
  1344. * Made some of the <Image>/Color/* menus sensitive to the image
  1345. type (gdisplay.c)
  1346. Wed Jan 28 13:17:06 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1347. * app/gimage.c (gimage_add_channel): Added safety code for add
  1348. channel so you can't add a channel twice or to the wrong image.
  1349. (Same thing as I did for layers a few months ago.)
  1350. Tue Jan 27 22:31:00 PST 1998 Raph Levien <raph@acm.org>
  1351. * app/gimage_mask.c: hacked around fractional pixel errors in
  1352. paint_core_subsample_mask, fixing the "Stroked pixel bug" posted
  1353. by Ben Jackson on 14 Jan 1998 to gimp-developer.
  1354. Tue Jan 27 10:21:00 PST 1998 Raph Levien <raph@acm.org>
  1355. * app/gimage.c: fixed bug in image display with all channels
  1356. turned off
  1357. Tue Jan 27 00:18:28 PST 1998 Manish Singh <yosh@gimp.org>
  1358. * app/xcf.c: fixes an off by one error in xcf_tile_save_rle()
  1359. Sun Jan 25 18:41:17 PST 1998 Manish Singh <yosh@gimp.org>
  1360. * app/about_dialog.c: Added a couple names here
  1361. * app/color_area.c
  1362. * app/color_panel.c
  1363. * app/color_select.c
  1364. * app/color_select.h
  1365. * app/indexed_palette.c
  1366. * app/palette.c: Changed COLOR_UPDATE functionality, along with
  1367. cosmetic changes (gimp-quinet-980120-0)
  1368. * .cvsignore
  1369. * Makefile.am
  1370. * configure.in
  1371. * gimprc.in
  1372. * gimprc_user.in
  1373. * user_install: makes gimprc_user, splitting user and system-wide
  1374. settings. (gimp-quinet-980121-1)
  1375. Sun Jan 25 16:56:49 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1376. * app/gimage.c (gimage_merge_layers): Added a missing call to
  1377. drawable_offsets, fixing the "merge bug".
  1378. * app/gimage_cmds.c (duplicate): Fixed a bug in duplicate that was
  1379. entirely my fault. :)
  1380. Sun Jan 25 16:51:56 EST 1998 Adrian Likins <adrian@gimp.org>
  1381. * added the gtk_window_set_wmclass to most of the gimp
  1382. dialogs so they set the XA_WM_CLASS properties.
  1383. Sun Jan 25 13:28:28 PST 1998 Manish Singh <yosh@gimp.org>
  1384. * libgimp/gimppixelrgn.c
  1385. * plug-ins/iwarp/iwarp.c
  1386. * plug-ins/sparkle/sparkle.c: Misc portability fixes for
  1387. DEC OSF1 (gimp-joke-980109-0)
  1388. Sun Jan 25 02:24:03 PST 1998 Manish Singh <yosh@gimp.org>
  1389. * libgimp/*: Placed libgimp under the LGPL
  1390. Sun Jan 25 01:25:55 PST 1998 Manish Singh <yosh@gimp.org>
  1391. * plugin updates from the registry (align_layers,
  1392. despeckle, mathmap, print)
  1393. * plug-ins/script-fu/script-fu-scripts.c
  1394. * plug-ins/script-fu/scripts/copy-visible.scm:
  1395. Applied Sven's no arguments script patch and copy-visible
  1396. fix
  1397. Sun Jan 25 00:12:15 EST 1998 Adrian Likins <adrian@gimp.org>
  1398. * added plug-ins/script-fu-scripts/chip-away.scm
  1399. Sat Jan 24 18:16:35 PST 1998 Manish Singh <yosh@gimp.org>
  1400. * applied Sven's menu patch
  1401. Sat Jan 24 17:23:13 PST 1998 Manish Singh <yosh@gimp.org>
  1402. * app/indexed_palette.c: fix for wrong color selected in indexed
  1403. palette dialog
  1404. * app/xcf.c: don't crash on bad input (0 byte files)
  1405. * app/plug_in.h
  1406. * app/plug_in.c: fixes Gimp's most obscure bug. Failed plugin
  1407. queries are handle correctly now
  1408. * app/commands.c: added marching ants speed to preferences
  1409. * plug-ins/tiff/tiff.c: correction for inversion for MINISWHITE
  1410. images without alpha
  1411. * plug-ins/pcx/pcx.c: updated to new version
  1412. * app/paint_funcs.h: changed OPAQUE and TRANSPARENT to
  1413. OPAQUE_OPACITY and TRANSPARENT_OPACITY to avoid possible
  1414. conflicts. All affects .c files changed.
  1415. Sat Jan 24 15:16:40 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1416. * app/app_procs.c (make_initialization_status_window): Changed
  1417. resize policy of the init status window so it doesn't constantly
  1418. resize itself.
  1419. Wed Jan 21 23:59:02 PST 1998 Manish Singh <yosh@gimp.org>
  1420. * Fixed up the change below to use the SetArg/GetArg stuff
  1421. Thu Jan 22 01:54:17 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1422. * Rework of drawables, images, and layers to use GtkObjects. Lots
  1423. and lots of secondary changes.
  1424. Sun Jan 18 18:07:23 EST 1998 Adrian Likins <adrian@gimp.org>
  1425. * added plugins/gflare/gflares and edited the makefiles
  1426. so that the gfalres and gfig-examples would get installed
  1427. into share/gimp/gflares and share/gimp/gfig
  1428. Tue Jan 13 21:36:07 PST 1998 Manish Singh <yosh@gimp.org>
  1429. * ltconfig
  1430. * ltmain.sh: downgraded to libtool 1.0f at Jay's suggestion
  1431. * plug-ins/fractaltrace/fractaltrace.c (query): ymax argument was
  1432. listed twice. Fixed.
  1433. Fri Jan 9 01:15:51 PST 1998 Manish Singh <yosh@gimp.org>
  1434. * INSTALL: updated to properly reflect installation procedure
  1435. * app/text_tool.c: Fixed bad string in tool description
  1436. * libgimp/gimppixelrgn.c: tiles aren't marked dirty in
  1437. gimp_pixel_rgn_get_pixel
  1438. * plug-ins/edge/edge.c
  1439. * plug-ins/edge/emboss.c
  1440. * plug-ins/edge/laplace.c
  1441. * plug-ins/edge/sobel.c: DEC OSF1 cannont handle reference to
  1442. array element with a negative arugment with an unsigned int
  1443. (gimp-joke-980108-0)
  1444. * plug-ins/sinus/sinus_logo.h: got rid of really long string
  1445. * plug-ins/refract/Makefile.am
  1446. * plug-ins/refract/refmain.c: fixed megawidget reference
  1447. * plug-ins/xpm/xpm.c: made our own case-insenstive strcmp
  1448. for checking for transperancy
  1449. Tue Jan 6 14:17:02 PST 1998 Manish Singh <yosh@gimp.org>
  1450. * configure.in: make it *really* check for gtk >= 0.99.1 this
  1451. time
  1452. * plug-ins/gbr/gbr.c: check image type before save to prevent
  1453. image corruption. Only allow saves to non-alpha grayscale images
  1454. * app/install.c: reduce the size of the install info dialog so it
  1455. fits better on 640x480 screen
  1456. Mon Jan 5 19:30:38 PST 1998 Manish Singh <yosh@gimp.org>
  1457. * app/by_color_select.c: fix for indexed images
  1458. * plug-ins/script-fu/scripts/i26-gunya2.scm: proper registration
  1459. * plug-ins/xpm.c: fix for transparent images
  1460. * Updated to libtool 1.0h
  1461. * libgimp/Makefile.am: removed spurious -rpath
  1462. Sun Jan 4 17:43:32 PST 1998 Manish Singh <yosh@gimp.org>
  1463. * app/by_color_select.c: Prevent divide-by-zero error when
  1464. fuzzy threshold in select by color is 0
  1465. * app/tile_swap.c: Minor bugfix for tile saves
  1466. * app/text_tool.c: better handling when there are no fonts
  1467. * Updated PNG plugin from registry
  1468. * Added the FlareFX plugin
  1469. Sun Jan 4 14:24:05 1998 Scott Goehring <scott@poverty.bloomington.in.us>
  1470. * plug-ins/despeckle/despeckle.c: realloc buffers when the radius
  1471. of effect changes; save all values (not just radius) in plugin
  1472. data store; adjusted parameter handling to match PDB registration.
  1473. The algorithm still generates artifacts in the top rows of the
  1474. image.
  1475. Sat Jan 3 16:48:02 PST 1998 Manish Singh <yosh@gimp.org>
  1476. * app/colormaps.c: check for NULL pointer access when not enough
  1477. colormaps for standard colormaps (gimp-joke-971219-0)
  1478. * app/fileops.c: fix for saving files in the wrong place
  1479. * app/fuzzy_select.c: now less aggressive (doesn't grab the whole
  1480. image with diagonal 1-pixel wide line) Too conservative now?
  1481. * app/text_tool.c: negative border-value disables autocropping
  1482. of text
  1483. * libgimp/gimplayer.c: gimp_layer_copy pdb called with correct args
  1484. * docs/Wilber.xcf.gz: added logo to docs dir :)
  1485. * Added DigitalSignature, FractalExplorer (not made by default),
  1486. facesaver (not made by default), and Stegano plugins
  1487. * Updated Encrypt_Decrypt, changing the dir name (no more
  1488. Encript_Decript)
  1489. * Updated plugins with their new registry versions
  1490. Thu Dec 25 23:04:00 PST 1997 Manish Singh <yosh@gimp.org>
  1491. * Updates from the plugin registry: Compose, Film, FITS, ps,
  1492. refract, sunras, twist
  1493. Thu Dec 18 11:15:17 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1494. * app/main.c (main): Freeing arguments to putenv afterwards is
  1495. naughty. Fixed. Plug-ins work now.
  1496. Wed Dec 17 23:51:30 CST 1997 Shawn T. Amundson <amundson@gimp.org>
  1497. * All these changes are from Owen Taylor to make GIMP work
  1498. with reference changes make in GTK. This mainly affects
  1499. functions gtk_pixmap_destroy, gdk_colormap_destroy,
  1500. gdk_font(set)_free; they have disappeared and where
  1501. changed to *_unref. These simple changes affected:
  1502. app/about_dialog.c, app/channels_dialog.c,
  1503. app/curves.c, app/gradient.c, app/layer_select.c,
  1504. app/text_tool.c, plug-ins/gfig/gfig.c,
  1505. plug-ins/ifscompose/ifscompose.c,
  1506. plug-ins/libgck/gck/gckcolor.c,
  1507. plug-ins/libgck/gck/gcknotebook.c
  1508. * app/color_area.c: check for initial expose before drawing
  1509. * app/disp_callbacks.c: gc for scrolling
  1510. * app/gdisplay.c: destroy gc, event now pointer
  1511. * app/scroll.c: use scroll_gc, make sure graphics expose events
  1512. are processed before scrolling again
  1513. * gimp/app/gdisplay.h: add scroll_gc to struct
  1514. Wed Dec 17 23:23:05 1997 Ray Lehtiniemi <rayl@netrover.com>
  1515. * app/brush_select.c (brush_popup_open): fix memory leak
  1516. * app/pattern_select.c (pattern_popup_open): fix memory leak
  1517. Wed Dec 17 15:33:23 PST 1997 Manish Singh <yosh@gimp.org>
  1518. * plug-ins/pcx/pcx.c: Applied patch to fix PCX saving from
  1519. Nicholas Lamb
  1520. * app/main.c: Plugins now get a proper DISPLAY through
  1521. gdk_get_display
  1522. Wed Dec 17 13:24:48 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1523. * app/convert.c (convert_image): Closed a rather nasty memory
  1524. leak.
  1525. * plug-ins/xpm/xpm.c (run): Added access to the alpha cutoff via
  1526. the PDB. Added a missing break in the run_mode switch.
  1527. Tue Dec 16 16:55:04 PST 1997 Manish Singh <yosh@gimp.org>
  1528. * app/convert.c: no more crashes with indexed conversion and no
  1529. palettes
  1530. Tue Dec 16 15:24:36 EST 1997 Adrian Likins <adrian@gimp.org>
  1531. * modified user-isntall to make a scripts and gflares dir
  1532. * added path to gflares in the gimprc
  1533. Tue Dec 16 12:32:30 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1534. * app/xcf.c (xcf_load_invoker): Shuji's xcf load close patch.
  1535. Mon Dec 15 19:03:59 EST 1997 Adrian Likins <adrian@gimp.org>
  1536. * fixed a few broken tips in gimp_tips.txt
  1537. * updated add-bevel.scm
  1538. Sun Dec 14 19:47:59 PST 1997 Manish Singh <yosh@gimp.org>
  1539. * Configured in the flame plugin by default
  1540. * updated the ripply-anim script (still broken though)
  1541. Sun Dec 14 20:57:46 1997 Ray Lehtiniemi <rayl@netrover.com>
  1542. * app/tools.c (tools_options_dialog_show): fix a problem where
  1543. the tools options dialog will appear empty because the
  1544. active tool was destroyed by menus_activate_callback().
  1545. * app/blend.c fixed cores when using custom gradients with
  1546. offset of 100
  1547. Sun Dec 14 16:56:33 PST 1997 Manish Singh <yosh@gimp.org>
  1548. * backed out of the tools fix, cause problems with
  1549. rmb script-fu
  1550. Sun Dec 14 03:41:27 PST 1997 Manish Singh <yosh@gimp.org>
  1551. * Support for dithering to custom palettes
  1552. * a proper PDB entry for indexed conversion
  1553. (gimp-convert-indexed-palette)
  1554. Sun Dec 14 00:08:00 PST 1997 Raph Levien <raph@acm.org>
  1555. * a minor patch to make the file selection dialog not always
  1556. select the first file in a directory
  1557. Sat Dec 13 23:37:59 PST 1997 Manish Singh <yosh@gimp.org>
  1558. * mkbrush.scm updated
  1559. * Added support for tooltips in preferences
  1560. Sun Dec 14 00:06:00 CST 1997 Shawn T. Amundson <amundson@gimp.org>
  1561. * configure.in: Changed gimp lib dir to lib/gimp/MAJOR.MINOR
  1562. instead of lib/gimp/MAJOR.MINOR.MICRO
  1563. * script-fu/scripts: removed piechart, kanji-circle, kanji-neon
  1564. * configure.in: change check for EMACS to allow emacs to not
  1565. exist (in which case, no error results, but pdb docs don't
  1566. get made)
  1567. Sat Dec 13 19:41:35 CST 1997 Shawn T. Amundson <amundson@gimp.org>
  1568. * plug-ins/fuse/Makefile.am: fuse.c couldn't find gck/gck.h
  1569. Fri Dec 12 02:07:26 PST 1997 Manish Singh <yosh@gimp.org>
  1570. * Updated gif and animationplay with the new versions
  1571. Thu Dec 11 20:56:09 PST 1997 Manish Singh <yosh@gimp.org>
  1572. * Removed dgimp (it never worked anyway)
  1573. Wed Dec 10 16:59:56 PST 1997 Manish Singh <yosh@gimp.org>
  1574. * Added gimprc option for enabling/disabling tooltips
  1575. * Fixed up about dialog
  1576. * Added Fractaltrace plugin
  1577. Tue Dec 9 15:26:48 PST 1997 Manish Singh <yosh@gimp.org>
  1578. * Added Lauri Alanko's tools patch
  1579. * Clarified the units in the tile cache size field in the
  1580. preferences dialog
  1581. Tue Dec 9 15:21:16 PST 1997 Raph Levien <raph@acm.org>
  1582. * app/gimprc.c, app/commands.c: committed the preferences patch I
  1583. posted to gimp-developer on 4 Nov 1997. This patch fixes some
  1584. stability problems, as well as makes the preferences saving
  1585. functionality more complete.
  1586. Tue Dec 9 00:52:15 EST 1997 Adrian Likins <adrian@gimp.org>
  1587. * added illusion, papertile, colorify, and glasstile
  1588. plugins
  1589. * updated despeckle, and math map
  1590. Mon Dec 8 21:59:03 PST 1997 Manish Singh <yosh@gimp.org>
  1591. * updated CML_explorer
  1592. Mon Dec 8 16:30:29 EST 1997 Adrian Likins <adrian@gimp.org>
  1593. * udpdate gqbist, warp, randomize, fuse, gfig plugins
  1594. * removed gflare-tar.gz from the plugins dir
  1595. Mon Dec 8 11:43:17 EST 1997 Adrian Likins <adrian@gimp.org>
  1596. * updated iwarp to latest version
  1597. * added Sven Neumans patch for 32-bit color in gck
  1598. * fixed gimp_tips.txt (the tip about the "add alpha")
  1599. Mon Dec 8 02:13:36 PST 1997 Manish Singh <yosh@gimp.org>
  1600. * app/about_dialog.c: Added Nathan Summers patch to make it
  1601. work better
  1602. * app/menus.c: Added Michael Natterer's patch to save menu
  1603. accelerators with chars that need to be escaped properly
  1604. * app/undo.c: Added Andy Thomas's patch to check for a NULL
  1605. active_tool in the undo (so it can work with plugins)
  1606. Sun Dec 7 17:05:32 PST 1997 Manish Singh <yosh@gimp.org>
  1607. * added Sven Neumann's patch to the scale and resize dialogs for ratio input fields (app/resize.h, app/resize.c)
  1608. * added Raph Levien's patch for the transperancy blur problem
  1609. (app/convolve.c, app/gimage.h, app/gimage.c, paint_core.h,
  1610. paint_core.c, paint_funcs.h, paint_funcs.c)
  1611. Sun Dec 7 15:27:14 EST 1997 Adrian Likins <adrian@gimp.org>
  1612. * fixed refract.c to look for megawidget.h in the proper place
  1613. * fixed the makefile.am in plugins/script-fu/script to install
  1614. the texture files too
  1615. * added a check in channels_dialog.c to make the aspect ratio
  1616. really go away
  1617. * fixed a minor error in the alien-glow-* scripts with an
  1618. extra parenthesis
  1619. * added the new wilber.h
  1620. * patched convert.c with Adam D. Moss's patch to avoid color counting when
  1621. not needed
  1622. * patched gif.c with Adam D. Moss's patch to fix some weirdness with
  1623. transparncy in anim gifs
  1624. Sat Dec 6 15:27:23 EST 1997 Adrian Likins <adrian@gimp.org>
  1625. * Added a check in some of the layer/channel preview code
  1626. to keep stuff from breaking when it got ) values for size
  1627. * Removed all the old stale *.[ch] files fom plug-ins/ dir
  1628. * Added a work around for the weirdness resulting from
  1629. rezing the palette dialog
  1630. Wed Nov 26 14:38:30 1997 Larry Ewing <lewing@isc.tamu.edu>
  1631. * Added a bounds check to undo_push_image* to fix drawing
  1632. outside the image undo bug
  1633. * Desensitized Add Layer Mask when layer has no alpha channel
  1634. * Wrapped the calls to gtk_list_clear_items with
  1635. suspend_gimage_notify in app/channels_dialog.c to prevent
  1636. erroneously deactivating channels. Fixes "out of paint" bug
  1637. * replaced calls to info_window_update in app/magnify.c and
  1638. app/scale.c with a single call in gdisplay_flush () so that
  1639. the info window reflects the current status
  1640. Wed Nov 19 13:22:09 EST 1997 Adrian Likins <adrian@gimp.org>
  1641. * updated vpropagate.c and align_layers.c
  1642. Tue Nov 18 16:40:22 1997 Christoph Hoegl <darkwing@bsddmail.franken.de>
  1643. * Larry Ewing fixed a bug which caused multible confirm-on close
  1644. Windows to appear and took GIMP with them on close
  1645. * plug-ins/iwarp added
  1646. Mon Nov 17 14:29:00 1997 Christoph Hoegl <darkwing@bsddmail.franken.de>
  1647. * plug-ins/gqbist/gqbist.c updated from registry
  1648. * plug-ins/fuse/fuse.c updated from registry
  1649. * plug-ins/fp/fp.c fixed buggy feature list
  1650. (now handles also layered images, patch resubmitted by
  1651. Daniel R Risacher <risacher@worldnet.att.net>)
  1652. Mon Nov 17 15:14:14 EST 1997 Adrian Likins <adrian@gimp.org>
  1653. * Finally fixed the scripts that broke with the last
  1654. release. This includes crystal-logo.scm, sota-chrome-logo.scm,
  1655. and chome-it.scm.
  1656. Sun Nov 16 20:39:26 1997 Christoph Hoegl <darkwing@bsddmail.franken.de>
  1657. * applied all patches of these Mails (or improved ones)
  1658. <0000094A.1892@dril-quip.com>
  1659. (special thanks to Art_Haas@dril-quip.com (Art HAAS)
  1660. addresses bzero and other compatibility/style problems)
  1661. * speedup of script-fu start
  1662. <199710312031.MAA05318@callisto.hip.berkeley.edu>
  1663. (thanks to Raph Levien <raph@acm.org>)
  1664. * fixes a PI to M_PI in twist.c
  1665. (not sure if this is what we want))
  1666. <Pine.LNX.3.96.971103021445.10834A-200000@s9412a.steinan.ntnu.no>
  1667. (thanks to Trond Eivind Glomsrxd <teg@pvv.ntnu.no>)
  1668. * fixes preview for megawidgetbased plug-ins / speed up
  1669. <19971105154336.33004@dca.fee.unicamp.br>
  1670. <19971105155848.26367@dca.fee.unicamp.br>
  1671. <19971105160238.05244@dca.fee.unicamp.br>
  1672. (big thanks to Marcelo Malheiros <malheiro@dca.fee.unicamp.br>)
  1673. * fixes some "returning pointers to stack"
  1674. <00000A37.1892@dril-quip.com>
  1675. (special thanks to Art_Haas@dril-quip.com (Art HAAS)
  1676. and Nathan Carl Summers <summersn@cs.byu.edu>)
  1677. * moved all plug-ins to dirs of their own (finally)
  1678. and reconfigured
  1679. Fri Nov 14 23:27:01 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1680. * app/tools.c (tools_options_dialog_show): Fixed the tool dialog
  1681. raise code to only raise it if its shown, and only show if it's
  1682. not already shown. (Probably not important, but can't hurt.)
  1683. * app/interface.c (create_toolbox): Fixed an uninitialized static
  1684. variable error, was causing the "raise toolbox" menu option to
  1685. fail miserably. (Not sure when this happened; option used to
  1686. work.)
  1687. Tue Nov 11 14:57:16 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1688. * app/xcf.c (xcf_save_image): Added versioning for XCF file
  1689. format. Coded support for XCF version 1, which fixes the problem
  1690. in version 0 with only saving 1/3 of the colormap of images with
  1691. colormaps (i.e. indexed images).
  1692. Fri Nov 7 00:27:44 CST 1997 Adrian Likins <adrian@gimp.org>
  1693. * added docs/cheat_sheet.txt and docs/keybindings.txt
  1694. Thu Nov 6 14:08:35 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1695. * configure.in (gimpdatadir): Changed gimpdatadir to be
  1696. $datadir/$PACKAGE instead of $datadir/$PACKAGE/$VERSION.
  1697. Datafiles are version-independent.
  1698. Tue Nov 4 08:46:19 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1699. * app/commands.c app/gimprc.c: Patch from Raph Levien to fix the
  1700. preferences and gimprc mechanism.
  1701. * app/convert.c: Adam's patch to fix web and mono palette modes.
  1702. * app/selection.h app/selection.c: Updated the USE_XDRAWPOINTS patch.
  1703. * plug-ins/script-fu/script-fu.c (init_procedures): Patch from
  1704. Raph Levien to do fast loading of the pdb procedures.
  1705. * app/gdisplay.c app/menus.c: Another patch from Lauri Alanko to
  1706. fix the tools mechanism.
  1707. * app/tips_dialog.c: New look for the tip-of-the-day dialog, by
  1708. Raphael Quinet and Tuomas Kuosmanen.
  1709. * app/interface.c: Patch from Andreas Dilger to enable tooltips.
  1710. * INSTALL: Updated INSTALL file from Owen Taylor.
  1711. * plug-ins/displace.c (displace_dialog): Removed printf() of PID.
  1712. * plug-ins/emboss.c: Patch from Spencer to fix grayscale images
  1713. and number of arguments in non-interactive mode.
  1714. Thu Oct 30 14:57:32 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1715. * configure and makefile tweaking for christoph's new plugins
  1716. Wed Oct 29 17:52:57 1997 Christoph Hoegl <darkwing@bsddmail.franken.de>
  1717. * added and autoconfigured plug-ins/{twist,fuse,refract,warp,struc}
  1718. (Keep in mind that these are new, alpha plug-ins (esp. warp which
  1719. is not yet ready for general consumption according to author
  1720. John Beale <beale@best.com>)
  1721. * added plug-ins/{flame,mathmap,rcm,user_filter}
  1722. * plug-ins/gqbist.c: updated to v1.7
  1723. Tue Oct 28 22:30:32 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1724. * plug-ins/MapObject/mapobject_main.c (run): removed an
  1725. inappropriate cast of radius from float to int
  1726. Mon Oct 27 07:45:23 EST 1997 Adrian Likins ,adrian@gimp.org
  1727. * updated title-header.scm to not add a layer twice
  1728. * remove t-o-p.scm, it was a duplicate of t-o-p-logo.scm
  1729. jsut registered under a different name
  1730. Sun Oct 26 22:28:15 EST 1997 Adrian Likins <adrian@gimp.org>
  1731. * added Spencer's patch to the brush and patterns dialog. Now
  1732. instead of scrolling the object around to see all of, a small
  1733. window popups showing the entire brush or pattern.
  1734. * added Spencers patch to add pop-up help to the toolbar.
  1735. Sun Oct 26 18:01:36 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1736. * configure: finished adding the xpm plug-in (someone else added
  1737. it to the makefiles, but forgot to ensure that its makefile was
  1738. built...)
  1739. * app/about_dialog.c (about_dialog_create): About dialog now shows
  1740. "true" version (instead of 1.0) and randomizes the names in the
  1741. scrollbar instead of showing them in alphabetical order.
  1742. Sat Oct 25 14:53:27 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1743. * plug-ins/MapObject/mapobject_main.c: Eliminated use of
  1744. FLOATARRAYs in arguments due to shortcoming of argument passing
  1745. protocol.
  1746. * app/plug_in.c (plug_in_handle_proc_install): Added code to
  1747. sanitize plugins for compliance with the array passing
  1748. convention restriction. Noncompliant plugins will be rejected.
  1749. * app/layers_dialog.c: Fixed layers dialog resize bug - now
  1750. resizes interior of dialog instead of the close button. :)
  1751. Sat Oct 25 02:56:15 1997 Scott Goehring <scott@poverty.bloomington.in.us>
  1752. * Added auto-raise for most dialogs (if selected when already
  1753. "visible"). Also added a "Toolbox" menu entry to the Tools menu
  1754. that raises the Toolbox (no default binding cuz I can't think of
  1755. one). Fixed the off-by-one-month timestamp bug.
  1756. Fri Oct 24 21:45:11 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1757. * Made 0.99.15 release.
  1758. Fri Oct 24 17:54:54 EDT 1997 Adrian Likins <adrian@gimp.org>
  1759. * Applied a patch by Josh Parsons <josh@coombs.anu.edu.au>
  1760. by way of Adam Moss to gif.c so that it works while
  1761. trying to save non-interactively. The comment string
  1762. wasnt being handled well in non-interactive mode.
  1763. Fri Oct 24 11:49:55 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1764. * app/fileops.c: Will Wagner's patch to fix the file dialog.
  1765. * app/convert.c: Adam Moss's patch to add color counting.
  1766. * Applied Lauri Alanko's patches to fix the curves tool and some of
  1767. the general tools mechanism.
  1768. * plug-ins/blinds.c plug-ins/sharpen.c: Art Haas's patch to clean
  1769. up several warnings in plug-ins.
  1770. * libgimp/gimppixelrgn.c: #ifndef'ed out some variables according
  1771. to Adam's MEMCPY_IS_NICE stuff so that the compiler emits no
  1772. warnings about unused variables.
  1773. * plug-ins/header.c: Raphael Quinet's patch to fix green channel
  1774. and save reasonably-sized lines instead of a single enormous
  1775. string. Broken compilers barf on them.
  1776. * app/layers_dialog.c (lc_dialog_create): Patch to raise the
  1777. layers dialog if it is invoked when it was already shown.
  1778. * app/commands.c (file_new_cmd_callback): Patch to not let the
  1779. file/new dialog create indexed images.
  1780. * app/tips_dialog.c (read_tips_file): Added fclose(fp).
  1781. * app/gimprc.c (save_gimprc): Added g_free(cur_line). It was
  1782. missing and thus causing a memory leak.
  1783. * README: Added reference to the plug-in registry.
  1784. Thu Oct 23 11:20:05 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1785. * app/layers_dialog.c: Removed layer_widget_raise_callback() and
  1786. layer_widget_lower_callback(), they were not used.
  1787. * app/frac.c (xcf_save_compress_frac_init): Fixed double printf format.
  1788. (xcf_save_frac_compressed_tile): Fixed pointer printf args.
  1789. * Fixed a *lot* of uninitialized variables in the app/ directory,
  1790. mainly in the pdb function invoker procedures. This should
  1791. supress a trillion compiler warnings.
  1792. * app/brush_select.c: removed brush_select_cancel_callback(); it
  1793. was never being used.
  1794. * app/disp_callbacks.c (gdisplay_canvas_events): Changed the type
  1795. of tmask to be GdkModifierType.
  1796. * app/channels_dialog.c: Removed channel_widget_raise_callback()
  1797. and channel_widget_lower_callback(); they were not being used.
  1798. * app/brushes.c: Removed the declaration of int_value (it is never used).
  1799. * app/gimprc.c app/gimprc.h app/commands.c app/tips_dialog.c:
  1800. save_gimprc() may modify the lists it gets passed (by
  1801. adding/removing elements). Changed the prototype to take GList**
  1802. values instead of just GList*. Changed the calls to save_gimprc()
  1803. accordingly.
  1804. Thu Oct 23 01:46:28 CDT 1997 Shawn T. Amundson <amundson@gimp.org>
  1805. * app/menus.c: applied patch malheiro-970917 which
  1806. prevents installing bogus accelerator handlers for the
  1807. menu separators.
  1808. * All the rest of these are from Eiichi Takamori
  1809. <taka@ma1.seikyou.ne.jp>
  1810. * plug-ins/gicon.c: fixed the number of return values on save
  1811. * plug-ins/gicon.c: fixed the number of return values on save
  1812. * libgimp/gimpprotocol.c fixed GPProcrun/GPProcReturn typo and
  1813. freed params in _gp_params_destroy()
  1814. * libgimp/gimp.c: gimp_run_procedure() now frees proc_run.params,
  1815. since it is allocated in that function and no longer used
  1816. * app/plug_in.c: fixed memory overrun in plug_in.c when
  1817. nargs < current_return_nvals, in case the plug-in returns bad
  1818. number of return values.
  1819. * app/plug_in.c: destroy arguments when PDB lookup failed.
  1820. * app/plug_in.c: fixed memory leak in plug_in_params_destroy()
  1821. and plug_in_args_destroy()
  1822. Wed Oct 22 20:38:46 EDT 1997 Adrian Likins <adrian@gimp.org>
  1823. * Added the www.gimp.org web page look scripts (gimp-labels.scm
  1824. and gimp-headers.scm)to the dist
  1825. * also added a handful of scripts (predator.scm, circuit.scm,
  1826. xach-effect.scm, copy-visible.scm, select_to_brush.scm,
  1827. select_to_image.scm, and glow.scm).
  1828. see www.gimp.org/~adrian/scripts.html
  1829. * patched maze.c to work better interactively
  1830. * patched noisify.c to show more informative labels and to
  1831. correct a bug with values of 0 for a channel still allowing
  1832. some noise to be added.
  1833. * changed some of the alien-glow-* scripts to have better defaults
  1834. * moving script-fu wasnt entirely my idea :-)
  1835. Wed Oct 22 18:48:28 1997 Shawn T. Amundson <amundson@gimp.org>
  1836. * this was actually all Adrian's idea -- moved all the
  1837. scripts from <Image>/Filters/Script-Fu to just
  1838. <Image>/Script-Fu
  1839. Fri Oct 17 15:59:58 1997 Christoph Hoegl <darkwing@bsdd.regensburg.com>
  1840. * changed and autoconfigured gimptcl (needs further integration,
  1841. works only with -ldl), gfig (click 2 buttons bug)
  1842. * plug-ins/gimptcl/gtclenums.h: fixed a typo
  1843. * added gimptcl (1.0), gfig (0.9)
  1844. Thu Oct 16 17:05:32 1997 Christoph Hoegl <darkwing@bsdd.regensburg.com>
  1845. * translated c++-style comments to c-style ones
  1846. * plug-ins/{CentralReflection,Anamorphose}: update to 1.02
  1847. * plug-ins/rotate.c: Sven Neumanns update to 0.4 (selection support)
  1848. Wed Oct 22 11:42:50 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1849. * plug-ins/polar.c: Updates by Sven Neumann.
  1850. * app/about_dialog.c (scroll_text): Added missing people to the
  1851. credits list. This is still incomplete, though.
  1852. * Raphael Quinet's and Tristan Tarrant's big patch to add
  1853. preferences saving, tip of the day, and some bugfixes to the
  1854. gimprc code. Thanks!
  1855. * Adam Moss's patch to fix scaling of indexed images and the
  1856. transform tool.
  1857. * app/main.c: Miles O'Neal's patch to send error when an invalid
  1858. command line switch is used.
  1859. * app/paintbrush.c (paintbrush_invoker): Removed division by 2 of
  1860. num_strokes. This fixes calls to the paintbrush from the pdb
  1861. (patch by Andy Thomas).
  1862. * plug-ins/MapObject/mapobject_preview.c: Added prototype for
  1863. clear_wireframe().
  1864. * app/gimage.c: Scott Goehring's patch to disallow adding a layer
  1865. to the wrong image, or adding the same layer twice to the same image.
  1866. * app/global_edit.c: Applied Owen Taylor's patch to fix edit_clear
  1867. when the image has no layers.
  1868. * app/app_procs.c: Applied Jason Riedy's patch to fix gimpdir checking.
  1869. * app/layers_dialog.c: Applied Scott Goehring's patch to avoid
  1870. desensitizing the Close button when there are no images.
  1871. Fri Oct 17 13:34:22 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1872. * plug-ins/emboss.c: Applied Eric Hernes's patch to fix the
  1873. crashes in the plug-in.
  1874. Thu Oct 16 10:30:15 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1875. * app/channel.c app/paint_funcs.c app/paint_funcs.h: Applied Scott
  1876. Goehring's patch to fix the feathering with 0 radius.
  1877. * plug-ins/waves.c: Applied Lauri Alanko's patch to make the
  1878. plug-in not store its past drawable and image and operate in the
  1879. "normal" way.
  1880. * app/xcf.c (xcf_save_image): Applied Scott Goehring's patch to
  1881. fix "disk full" error.
  1882. * plug-ins/script-fu/script-fu-scripts.c (script_fu_interface):
  1883. Applied Adrian Likins's patch to fix the toggle buttons with
  1884. incorrect state.
  1885. * app/disp_callbacks.c: Applied Lauri Alanko's patch to reset the
  1886. tool when the active drawable changes (this fixes the flip tool
  1887. bug, for example).
  1888. * app/color_area.c: Applied Lauri Alanko's patch to fix the cancel
  1889. function on the color dialog.
  1890. * plug-ins/destripe.c plug-ins/emboss.c plug-ins/gfli.c
  1891. plug-ins/nlfilt.c plug-ins/sinus.c plug-ins/zealouscrop.c: fixed
  1892. "inline" functions. PLEASE DO NOT USE THIS.
  1893. * plug-ins/dgimp/dgimp.c: Added inclusion of <sys/select.h> if necessary.
  1894. * libgimp/gimp.c: Added inclusion of <sys/select.h> if necessary.
  1895. * plug-ins/emboss.c (run): Fixed the check for the number of
  1896. parameters --- this was causing the plug-in to crash when being
  1897. called non-interactively. Also changed accepted drawable types to
  1898. RGB*; it was missing the *.
  1899. Wed Oct 15 08:52:23 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1900. * plug-ins/png/Makefile.am (LDADD): Added -lm to LDADD.
  1901. * plug-ins/AlienMap/AlienMap.c plug-ins/Curtain/Curtain.c
  1902. plug-ins/Encript_Decript/Encript_Decript.c plug-ins/Julia/Julia.c
  1903. plug-ins/Mandelbrot/Mandelbrot.c: Removed C++-style comments.
  1904. PLEASE DON'T PUT IN THIS KIND OF COMMENTS!
  1905. * plug-ins/MapObject/mapobject_preview.c: Added prototypes for
  1906. draw_wireframe_plane() and draw_wireframe_sphere().
  1907. * Added -I$(includedir) to the Makefile.am's in all directories.
  1908. * plug-ins/fp.c plug-ins/engrave.c plug-ins/hot.c
  1909. plug-ins/magiceye.c plug-ins/universal.c: Changed registered
  1910. procedure names to follow the plug-in convetion.
  1911. * app/magnify.c: Added "info_window.h" to #includes.
  1912. * app/app_procs.c (really_quit_delete_callback): casted widget to
  1913. GTK_BUTTON to avoid warning.
  1914. * plug-ins/tiff/tiff.c plug-ins/gqbist.c plug-ins/sgi.c
  1915. plug-ins/snp.c plug-ins/tileit.c plug-ins/sharpen.c
  1916. plug-ins/sgilib.c plug-ins/ifscompose_utils.c: Added <string.h> to
  1917. includes to avoid warnings.
  1918. * libgimp/gimpwire.c: Added <string.h> to includes to avoid warnings.
  1919. * app/convert.c (compute_color_rgb): Applied Adam's patch to fix
  1920. division by zero on completely transparent images.
  1921. * libgimp/gimpenums.h (enum): Fixed SUBTRACT_MODE typo. Oops :-)
  1922. Mon Oct 13 14:28:20 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1923. * libgimp/gimpmenu.h libgimp/gimp.h: Applied Tom Bech's patch to
  1924. make ld not puke on plug-ins written in C++.
  1925. Sun Oct 12 09:19:19 1997 Tim Janik <timj@psynet.net>
  1926. * acconfig.h:
  1927. * configure.in:
  1928. * app/plug_in.c: Added configure check for IPC_RMID_DEFERRED_RELEASE,
  1929. because shmat() fails after a shmctl(..., IPC_RMID,...) for OSF1 V3.2,
  1930. SunOS 4.1.1, 5.5, 5.5.1, 5.6, IRIX 5.2 and 6.2.
  1931. Sat Oct 11 11:03:30 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1932. * app/gdisplay_ops.c: Applied Shuji Narazaki's patch to fix the
  1933. behavior of shrink-wrap and auto-resize window.
  1934. * plug-ins/script-fu/script-fu.c (init_constants): Applied Shuji
  1935. Narazaki's patch to replace SUBTRACTION for SUBTRACT, to be
  1936. consistent with the rest of the program.
  1937. Thu Oct 9 19:32:17 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1938. * app/fileops.c (file_open_callback): Applied Tom Bech's patch to
  1939. fix disappearing file list items.
  1940. * app/gimprc.c (gimp_directory): Applied Raphael Quinet's patch to
  1941. fix NULL home directory.
  1942. * app/brush_select.c, app/pattern_select.c: Applied Tom Bech's
  1943. patch to allow proper resizing of the windows.
  1944. Wed Oct 8 21:33:50 1997 Christoph Hoegl <darkwing@bsdd.regensburg.com>
  1945. * plug-ins/
  1946. added MapObject (0.32) plugin (still requires libgck to be installed)
  1947. written by Tom Bech <tomb@gimp.org>
  1948. added, updated (all 1.01 now) and autoconfigured (ADUPAC) following
  1949. AlienMap, Anamorphose, CentralReflection, Curtain, Encript_Decript,
  1950. Julia, Mandelbrot by Daniel Cotting (CSP) <cotting@mygale.org>
  1951. plug-ins/aa/aa.c: upgraded to v1.0
  1952. plug-ins/xd: noticed upgrade by Josh
  1953. applied inline patch by Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>
  1954. (reduces gcc-ism a bit and makes use of autoconf features)
  1955. reflecting plugin changes within managementfiles (configure.in)
  1956. Mon Oct 6 13:22:01 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1957. * plug-ins/pat.c, plug-ins/gbr.c: Applied Lauri Alanko's patch to
  1958. fix number of returned arguments.
  1959. * configure.in: Applied Tim Mooney's patch to allow passing of
  1960. extra linker options to X and Gtk tests.
  1961. Applied Kaz Sasayama's patch to allow use of the srcdir option in
  1962. configure.
  1963. Mon Oct 6 01:15:21 CDT 1997 Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>
  1964. * configure.in, config.h.in, plug-ins/destripe.c, plug-ins/emboss.c,
  1965. plug-ins/gfli.c, plug-ins/nlfilt.c, plug-ins/sinus.c,
  1966. plug-ins/zealouscrop.c: added a call to AC_C_INLINE in configure.in
  1967. to test for the appropriate flavor of the inline keyword, and changed
  1968. all plug-ins currently using __inline__ to use just `inline', which will
  1969. be defined to something in the toplevel config.h
  1970. Fri Oct 3 19:36:50 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1971. * app/fileops.c: Applied Kevin Turner's patch to fix resizing of
  1972. the file open/save dialogs.
  1973. Thu Oct 2 17:41:51 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1974. * app/color_select.c (color_select_update_hue_value): Applied
  1975. Laury Alanko's patch to fix hue calculation.
  1976. * libgimp/gimppixelrgn.c: Applied Adam Moss's patch to use
  1977. memcpy() instead of for() loops to copy tile data.
  1978. Wed Oct 1 01:25:38 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1979. * app/gdisplay_ops.c: Applied Lauri Alanko's patch for optional
  1980. confirmation when closing dirty images.
  1981. Tue Sep 30 17:18:52 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1982. * plug-ins/sinus.c: replaced rint() by the ROUND_TO_INT() macro.
  1983. * app/commands.c (file_new_ok_callback): Applied Lauri Alanko's
  1984. patch to mark new images as non-dirty.
  1985. * app/color_select.c: Applied Lauri Alanko's patch to make color
  1986. selection update immediate.
  1987. * libgimp/gimplayer.c (gimp_layer_copy): fixed pdb run procedure.
  1988. * main.c (main): Applied Miles O'Neal's patch to change the help output.
  1989. Mon Sep 29 13:08:47 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1990. * configure.in: Applied Jason Riedy's patch for non-GNUish systems.
  1991. * configure.in: Changed second function for testing of libtiff so
  1992. that the previous cached result is not used.
  1993. * plug-ins/Makefile.am: Fixed linking of libraries for some
  1994. plug-ins (Peter).
  1995. * configure.in: Changed linking order of gtk and X libraries (Peter).
  1996. Fri Sep 26 14:57:12 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  1997. * Made 0.99.12 release. Whew! :-)
  1998. * app/paint_core.c (paint_core_button_press): Applied Ray
  1999. Lehtiniemi's patch for pointer motion tracking when pressing MOD1.
  2000. * app/disp_callbacks.c (gdisplay_canvas_events): Applied Owen
  2001. Taylor's patch (sent by Adam Moss) to fix pointer tracking.
  2002. Thu Sep 25 17:16:47 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2003. * plug-ins/lic.c: added the LIC plug-in.
  2004. * plug-ins/tga.c: updated the TGA plug-in to the new version.
  2005. * Added the xd plug-in by Josh MacDonald.
  2006. * Separated Gtk+ from GIMP. Hope the chainsawing was correct :-)
  2007. * plug-ins/apply_lens.c: Morten Eriksen authorized the removal of
  2008. the additional licensing restriction, so I removed it. Thanks!!!
  2009. * plug-ins/gflare/gtkmultioptionmenu.c: Changed "restrict" to
  2010. "restrict_area" to avoid name collision.
  2011. Wed Sep 24 13:47:31 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2012. * plug-ins/script-fu/script-fu-scripts.c: Applied Owen Taylor's
  2013. patch to avoid multiple initializations of the Gtk.
  2014. * plug-ins/smooth_palette.c: srandom(), random() replaced by
  2015. srand() and rand().
  2016. * plug-ins/sinus.c: PI replaced by M_PI.
  2017. * plug-ins/gqbist.c: srandom(), random() replaced by srand() and rand().
  2018. * plug-ins/laplace.c: ROUND_TO_INT() macro removed because it is
  2019. not used.
  2020. * plug-ins: Removed MIN/MAX/BOUNDS macros and replaced them by the
  2021. appropriate ones from glib.h.
  2022. * Now plug-ins that require special libraries reside in their own
  2023. subdirectories. This is sort of a kluge to make optional
  2024. compilation work.
  2025. * app/: Applied Larry Ewing's big patch to properly handle
  2026. delete_event in all windows.
  2027. * app/about_dialog.c: Applied Owen Taylor's patch to avoid eating
  2028. infinite CPU time when the about dialog is resized.
  2029. Tue Sep 23 12:22:52 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2030. * libgimp/gimp.c: From Tim Janik's patch; now _shm_ID = -1.
  2031. * app/plug_in.c: Applied Tim Janik's patch to mark shm segments
  2032. with IPC_RMID so that they are automatically removed always.
  2033. * app/gdisplay.c (gdisplay_delete): Applied Nick Lamb's patch to
  2034. fix file/open bug.
  2035. * plug-ins/psd.c: Commented out "#include <endian.h>". It does
  2036. not seem to be required, but I'm not sure.
  2037. * app/procedural_db.c (procedural_db_execute): Applied Gordon
  2038. Matzigkeit's patch to avoid memory leak when calling plug-ins.
  2039. * app/plug_in.h: Applied Gordon Matzigkeit's patch to avoid memory
  2040. leak when calling plug-ins.
  2041. * app/plug_in.c: Applied Gordon Matzigkeit's patch to avoid memory
  2042. leak when calling plug-ins.
  2043. * app/fileops.c (file_open): Applied Gordon Matzigkeit's patch to avoid
  2044. memory leak when freeing arguments.
  2045. * app/plug_in.c: Applied Gordon Matzigkeit's patch for plug-in return args.
  2046. * plug-ins/dbbrowser/dbbrowser.c: Removed the X includes; they are
  2047. not needed.
  2048. * plug-ins/maze.c (run): Removed string from putchar() call and
  2049. replaced it with fprintf().
  2050. * app/layers_dialog.c (layers_dialog_set_menu_sensitivity): Fixed
  2051. bug which would lead to crashes when layer == NULL.
  2052. * plug-ins/script-fu/scripts/clothify.scm: Fixed "gratuitous
  2053. vulgarity". Bleh.
  2054. * Fixed calls to plug-in-bump-map in all scripts that needed it.
  2055. * app/brushes.c (brushes_refresh_brush_proc =): Fixed unterminated
  2056. strings.
  2057. * plug-ins/mblur.c (mblur): Fixed bad default case on switch().
  2058. * plug-ins/hot.c: Fixed unterminated strings.
  2059. * plug-ins: removed trailing semicolon from all MAIN() macro calls.
  2060. * plug-ins/dbbrowser/dbbrowser.c (run): Changed values[0] to values[1].
  2061. * plug-ins/sgi.c: Updated the sgi plug-in.
  2062. * plug-ins/png.c: Updated the png plug-in.
  2063. * Applied Lauri Alanko's patch to remove gcc-isms.
  2064. Mon Sep 22 21:19:14 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2065. * Added the mpeg plug-in.
  2066. * Made configure.in and plug-ins/Makefile.am properly detect
  2067. whether file format libraries are installed and thus decide
  2068. whether to build some plug-ins or not.
  2069. Wed Sep 24 13:47:31 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2070. * plug-ins/script-fu/script-fu-scripts.c: Applied Owen Taylor's
  2071. patch to avoid multiple initializations of the Gtk.
  2072. * plug-ins/smooth_palette.c: srandom(), random() replaced by
  2073. srand() and rand().
  2074. * plug-ins/sinus.c: PI replaced by M_PI.
  2075. * plug-ins/gqbist.c: srandom(), random() replaced by srand() and rand().
  2076. * plug-ins/laplace.c: ROUND_TO_INT() macro removed because it is
  2077. not used.
  2078. * plug-ins: Removed MIN/MAX/BOUNDS macros and replaced them by the
  2079. appropriate ones from glib.h.
  2080. * Now plug-ins that require special libraries reside in their own
  2081. subdirectories. This is sort of a kluge to make optional
  2082. compilation work.
  2083. * app/: Applied Larry Ewing's big patch to properly handle
  2084. delete_event in all windows.
  2085. * app/about_dialog.c: Applied Owen Taylor's patch to avoid eating
  2086. infinite CPU time when the about dialog is resized.
  2087. Tue Sep 23 12:22:52 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2088. * libgimp/gimp.c: From Tim Janik's patch; now _shm_ID = -1.
  2089. * app/plug_in.c: Applied Tim Janik's patch to mark shm segments
  2090. with IPC_RMID so that they are automatically removed always.
  2091. * app/gdisplay.c (gdisplay_delete): Applied Nick Lamb's patch to
  2092. fix file/open bug.
  2093. * plug-ins/psd.c: Commented out "#include <endian.h>". It does
  2094. not seem to be required, but I'm not sure.
  2095. * app/procedural_db.c (procedural_db_execute): Applied Gordon
  2096. Matzigkeit's patch to avoid memory leak when calling plug-ins.
  2097. * app/plug_in.h: Applied Gordon Matzigkeit's patch to avoid memory
  2098. leak when calling plug-ins.
  2099. * app/plug_in.c: Applied Gordon Matzigkeit's patch to avoid memory
  2100. leak when calling plug-ins.
  2101. * app/fileops.c (file_open): Applied Gordon Matzigkeit's patch to avoid
  2102. memory leak when freeing arguments.
  2103. * app/plug_in.c: Applied Gordon Matzigkeit's patch for plug-in return args.
  2104. * plug-ins/dbbrowser/dbbrowser.c: Removed the X includes; they are
  2105. not needed.
  2106. * plug-ins/maze.c (run): Removed string from putchar() call and
  2107. replaced it with fprintf().
  2108. * app/layers_dialog.c (layers_dialog_set_menu_sensitivity): Fixed
  2109. bug which would lead to crashes when layer == NULL.
  2110. * plug-ins/script-fu/scripts/clothify.scm: Fixed "gratuitous
  2111. vulgarity". Bleh.
  2112. * Fixed calls to plug-in-bump-map in all scripts that needed it.
  2113. * app/brushes.c (brushes_refresh_brush_proc =): Fixed unterminated
  2114. strings.
  2115. * plug-ins/mblur.c (mblur): Fixed bad default case on switch().
  2116. * plug-ins/hot.c: Fixed unterminated strings.
  2117. * plug-ins: removed trailing semicolon from all MAIN() macro calls.
  2118. * plug-ins/dbbrowser/dbbrowser.c (run): Changed values[0] to values[1].
  2119. * plug-ins/sgi.c: Updated the sgi plug-in.
  2120. * plug-ins/png.c: Updated the png plug-in.
  2121. * Applied Lauri Alanko's patch to remove gcc-isms.
  2122. Mon Sep 22 21:19:14 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2123. * Added the mpeg plug-in.
  2124. * Made configure.in and plug-ins/Makefile.am properly detect
  2125. whether file format libraries are installed and thus decide
  2126. whether to build some plug-ins or not.
  2127. Mon Sep 22 17:34:09 1997 Federico Mena <federico@bananoid.nuclecu.unam.mx>
  2128. * Made 0.99.11 release. See the files NOTES and TODO-DIST for
  2129. more info.