ChangeLog 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404
  1. 18-OCT-2016: 5.7.2-0
  2. - Switches to semantic versioning
  3. - Uses mxGraph 3.7.0.0 beta 6
  4. - Adds experimental sql plugin
  5. 13-OCT-2016: 5.7.1.3
  6. - Fixes mxFile import with page disabled
  7. 07-OCT-2016: 5.7.1.2
  8. - Adds import for multiple pages
  9. - Fixes german spelling errors
  10. 06-OCT-2016: 5.7.1.1
  11. - Adds warning for model size limit exceeded error
  12. 05-OCT-2016: 5.7.1.0
  13. - Adds support for pages in embed mode
  14. - Embed save uses mxFile rather than GraphModel in pages mode
  15. 04-OCT-2016: 5.7.0.9
  16. - Adds experimental tags plugin
  17. - Fixes page scale in print preview
  18. - Adds new colorset
  19. 03-OCT-2016: 5.7.0.8.2
  20. - Adds tolerance, uses fewer cells in scissors tool
  21. 27-SEP-2016: 5.7.0.7
  22. - Adds filename for editors in Atlassian cloud plugins
  23. - Fixes encoding of filenames in Atlassian cloud plugins
  24. - Adds optional title parameter to load message
  25. - Uses mxGraph 3.7.0.0 beta 5
  26. - Fixes possible empty pages in PDF export
  27. 27-SEP-2016: 5.7.0.6
  28. - Fixes redirect error in IE
  29. 26-SEP-2016: 5.7.0.5
  30. - Adds publish to Facebook, Twitter
  31. 21-SEP-2016: 5.7.0.4
  32. - Minor logging changes
  33. 21-SEP-2016: 5.7.0.3
  34. - Uses mxGraph 3.7.0.0 beta 4
  35. - Logging changes to use standard Java logging
  36. 21-SEP-2016: 5.7.0.2
  37. - Uses mxGraph 3.7.0.0 beta 3
  38. - Fixes possible NPE for markup editor
  39. 20-SEP-2016: 5.7.0.1
  40. - Fixes minor bug with autosave
  41. - Uses mxGraph 3.7.0.0 beta 2
  42. 20-SEP-2016: 5.7.0.0
  43. - Sets initial state of sidebar to invisible
  44. - Adds support for scratchpad in Chrome App
  45. - Disables default value for exporting selection only
  46. - Adds square and circle shapes, hints for special searches
  47. - Uses mxGraph 3.7.0.0 beta 1
  48. - Creates temporary blank diagram if splash dialog is closed
  49. - Removes "all changes saved" message for device files
  50. - Adds snapToPoint custom attribute
  51. - Fixes enabled state of publish menu and link item
  52. - Adds scope to set and get placeholder variable
  53. - Fixes current revision in dialog during autosave
  54. 13-SEP-2016: 5.6.0.5
  55. - Adds multiple (previous) predefined color sets
  56. - Adds Alt+(Shift+)Tab for select parent/child
  57. 12-SEP-2016: 5.6.0.4
  58. - Uses mxGraph 3.6.0.1 beta 1
  59. - Adds reset for undo history of in-place editor
  60. - Fixes inconsistent selection check for cursor keys
  61. - Adds hash listener for pages with url parameters
  62. - Fixes PDF, image with XML export for multiple pages
  63. - File ID has precedence over create, url parameters
  64. - Adds validation for grid size in page setup dialog
  65. - Fixes fullscreen toggle in embed mode for Kennedy
  66. - Adds keyboard shortcuts in toolbar tooltips
  67. - Uses mxfile wrapper for embedded HTML files
  68. - Adds optional callback argument in App.main
  69. 07-SEP-2016: 5.6.0.3
  70. - Uses mxGraph 3.6
  71. - Fixes authentication error in Dropbox
  72. - Adds workaround for Confluence cloud expand macro in Chrome
  73. 06-SEP-2016: 5.6.0.2
  74. - Fixes Confluence Cloud plugin
  75. 06-SEP-2016: 5.6.0.1
  76. - Uses mxGraph 3.5.1.6 beta 6
  77. 06-SEP-2016: 5.6.0.0
  78. - Fixes cursor scrolling for empty selection
  79. - Adds Alt+Shift+Cursor to connect and clone
  80. - Adds placeholders for custom shape text
  81. - Ctrl+A selects all cells recursively
  82. - Uses new (de)compression algorithm
  83. - Adds language option in Chrome App
  84. - Enables relative links in labels
  85. - Shift+Escape cancels editing
  86. - Uses mxGraph 3.5.1.6 beta 5
  87. - Pre-loads custom libraries
  88. - Fixes object error in IE6
  89. 01-SEP-2016: 5.5.6.2
  90. - Adds new predefined color schemes
  91. 30-AUG-2016: 5.5.6.1
  92. - Uses mxGraph 3.5.1.6 beta 4
  93. - Escape while editing applies new text value
  94. - Fixes bounds for zoomed markup in-place editor
  95. - Fixes JIRA cloud integration for Safari
  96. 25-AUG-2016: 5.5.6.0
  97. - Uses mxGraph 3.5.1.6 beta 3
  98. - Ignores scale for guides
  99. - Fixes ignored background image in realtime
  100. - Removes clipping for general text in grapheditor example
  101. - Adds workaround for image printing in Chrome
  102. - Fixes cropped labels in sidebar tooltips
  103. - Adds entries argument in MoreShapes dialog
  104. - Removes unused code and resources
  105. - Simplified licensing check
  106. - Adds new office, archimate3 shapes
  107. - Finnish translation improvements
  108. - Persian translation improvements
  109. 12-AUG-2016: 5.5.5.8
  110. - i18n updates
  111. 10-AUG-2016: 5.5.5.7
  112. - Minor changes
  113. 08-AUG-2016: 5.5.5.6
  114. - Fixes malformed XHTML meta element used in HTML save
  115. 07-AUG-2016: 5.5.5.5
  116. - Adds encoding for new HTML file format
  117. 04-AUG-2016: 5.5.5.4
  118. - Marketing text changes
  119. 02-AUG-2016: 5.5.5.3
  120. - Fixes export via Advanced dialog
  121. 29-JUL-2016: 5.5.5.2
  122. - Fixes cloud export for UTF characters
  123. 29-JUL-2016: 5.5.5.1
  124. - Mousewheel zoom centered around mouse cursor
  125. 28-JUL-2016: 5.5.5.0
  126. - Adds embedded image support for .vsdx import
  127. - Adds File, Publish submenu, GitHub option
  128. - Fixes capitalized keys in tooltips
  129. - Uses mxGraph 3.5.1.6 beta 2
  130. 26-JUL-2016: 5.5.4.0
  131. - Adds placeholder metadata variable
  132. 25-JUL-2016: 5.5.3.8
  133. - Fixes templates for new HTML file format
  134. - Fixes image export for new HTML file format
  135. - Uses mxGraph 3.5.1.6 beta 1
  136. 23-JUL-2016: 5.5.3.7
  137. - Uses Ctrl+Shift+Z for redo on Linux
  138. - Adds Ctrl+,/. for subscript/superscript
  139. - Uses new embed code for HTML files and export
  140. - Fixes embed iframe dialog
  141. 21-JUL-2016: 5.5.3.6
  142. - Fixes lazy loading of shapes in Chrome App
  143. 21-JUL-2016: 5.5.3.5
  144. - Simplifies footer
  145. 20-JUL-2016: 5.5.3.4
  146. - Adds Contact Us link in footer
  147. 20-JUL-2016: 5.5.3.3
  148. - Uses mxGraph 3.5.1.5
  149. - Adds browser in splash for offline mode
  150. - Fixes splash screen in offline mode
  151. - Adds padding for pages in print preview
  152. - Removes voice assistant in Extras menu
  153. 15-JUL-2016: 5.5.3.2
  154. - Uses mxGraph 3.5.1.5 beta 2
  155. - Fixes waiting for clients in Create dialog
  156. 11-JUL-2016: 5.5.3.1
  157. - Adds tag for RSS feed
  158. - Adds page scale to realtime model
  159. - Page scale change triggers autosave
  160. 09-JUL-2016: 5.5.3.0
  161. - Adds elbow and isometric edge styles
  162. - Uses single redirect for non-SSL apex domain
  163. - Adds View, Page scale option
  164. - Uses letter paper size in US, Canada and Mexico
  165. 08-JUL-2016: 5.5.2.8
  166. - Adds timeout for clients in splash screen
  167. - Fixes loading of JS shapes in new embed mode
  168. - Fixes loading of unused clients in chromeless mode
  169. - Adds embed link dialog, simplifies embed html dialog
  170. - Renames responsive to fit in embed dialogs
  171. - Removes image, adds retina option in embed image dialog
  172. - Updates French, Taiwanese translations
  173. - Fixes enterGroup action for normal groups
  174. 06-JUL-2016: 5.5.2.7
  175. - Fixes selection of child cells in groups
  176. 06-JUL-2016: 5.5.2.6
  177. - Adds navigation for all groups
  178. - Fixes spinner for unsupported clients
  179. - Adds redirect for cdn.draw.io in splash screen
  180. 06-JUL-2016: 5.5.2.5
  181. - Adds lazy loading for clients with splash screen
  182. 04-JUL-2016: 5.5.2.4
  183. - Fixes to .vsdx import
  184. 23-JUN-2016: 5.5.2.3
  185. - Fixes loading of Drive files with disabled splash screen
  186. 23-JUN-2016: 5.5.2.2
  187. - Improves startup time for Chrome App
  188. 23-JUN-2016: 5.5.2.1
  189. - Adds Citrix networking shapes
  190. - Fixes possible loop for autosize in graph viewer
  191. - Removes zoom buttons in viewer for JIRA Cloud add-on
  192. - Fixes inline hover state, position for toolbar in graph viewer
  193. - Removes open image button in Confluence Cloud add-on toolbar
  194. 19-JUN-2016: 5.5.2.0
  195. - Adds open image button in Confluence Cloud add-on toolbar
  196. - Adds links for selected label text in P2 add-on
  197. - Adds fullscreen toggle in P2 add-on
  198. - Fixes default storage for make copy in Google Drive
  199. - Adds template json message, dialogs in connect plugins
  200. - Fixes ignored grid for image drop location
  201. - Adds new templates dialog for creating diagrams
  202. - Fixes image export if math enabled in Chrome App
  203. - Fixes drag preview in library dialog for Google Chrome
  204. - Fixes paste for images from Lucidchart
  205. - Adds Ctrl+N, Ctrl+O in Chrome App
  206. - Adds new print dialog with custom zoom
  207. 08-JUN-2016: 5.5.1.6
  208. - Fixes horizontal/vertical flip in mxText
  209. - Fixes handling of fill/stroke with no shape
  210. - Fixes version string in about dialog
  211. - Uses mxGraph 3.5.1.5 beta 1
  212. 07-JUN-2016: 5.5.1.5
  213. - Moves grid color from Extras menu to format panel
  214. - Fixes gradients for print/PDF output in Chrome App
  215. 06-JUN-2016: 5.5.1.4
  216. - Fixes loading of client libraries in atlas.min.js
  217. - Simplifies build for Chrome App, app.min.js
  218. 05-JUN-2016: 5.5.1.3
  219. - Fixes insert of diagram via {drawio} macro name
  220. - Fixes utf8 characters in Confluence cloud add-on
  221. 02-JUN-2016: 5.5.1.2
  222. - Disables revision parsing in Confluence Cloud
  223. - Uses mxGraph 3.5.1.4
  224. 01-JUN-2016: 5.5.1.1
  225. - Fixes Confluence cloud expand macro integration
  226. 01-JUN-2016: 5.5.1.0
  227. - Adds fullscreen button, persistent libraries in embed mode
  228. - Adds new viewer for JIRA cloud integration
  229. - Removes collapse/expand option in HTML embed dialog
  230. - Adds filename in toolbar for Confluence cloud viewer
  231. - Enables folding in Confluence cloud integration
  232. 31-MAY-2016: 5.5.0.2
  233. - Fixes layers button in Confluence cloud lightbox toolbar
  234. - Fixes custom protocol absolute links in embedded HTML
  235. - Lightbox no longer shows layers button for single layer
  236. - Fixes click handling for embedded HTML on touch devices
  237. 13-MAY-2016: 5.5.0.1
  238. - Fixes dynamic shape loading in Confluence Cloud viewer
  239. - Enables Extras, Edit Diagram in embed mode
  240. - Add shift-hover in chromeless mode to hide toolbar
  241. - Adds highlight, target URL params for chromeless mode
  242. - Adds link handling in chromeless mode
  243. 12-MAY-2016: 5.5.0.0
  244. - Uses new HTML embed code and dialog
  245. - Adds viewer for Confluence cloud
  246. - Adds fullscreen and format switch in Atlas theme
  247. - Adds transparency for layers dialog in embedded and lightbox mode
  248. - Uses mxfile in PNG/SVG+XML file formats
  249. - Adds parsing for new embedded HTML files
  250. - Fixes lightbox click for links in embedded SVG
  251. - Fixes relative images in new HTML embed
  252. - Uses mxGraph 3.5.1.4 beta 1
  253. 09-MAY-2016: 5.4.4.5
  254. - Adds fullscreen button
  255. - Blocks possible javascript: shape links
  256. - Fixes handling of edit URL parameter
  257. - Uses mxGraph 3.5.1.3
  258. 06-MAY-2016: 5.4.4.4
  259. - Fixes UI language in Chrome App
  260. - Fixes File, Make Copy in IE9-
  261. - Allows non-integer font sizes
  262. - Uses mxGraph 3.5.1.3 beta 6
  263. 04-MAY-2016: 5.4.4.3
  264. - Fixes persistence of current libraries
  265. 04-MAY-2016: 5.4.4.2
  266. - Removes debug output
  267. 04-MAY-2016: 5.4.4.1
  268. - Fixes binary file export in Chrome App
  269. - Fixes SVG namespace for groups in svgdata plugin
  270. 02-MAY-2016: 5.4.4.0
  271. - Writing files in Chrome app replaces existing content
  272. - Adds layers option in iframe/SVG/image embed dialogs
  273. - Adds layers URL parameter in chromeless mode
  274. - Adds ctrl+shift+connect to disable connections
  275. - Uses mxGraph 3.5.1.3 beta 5
  276. 30-APR-2016: 5.4.3.9
  277. - Moves application code to JS files
  278. - Adds icon for help link in menus
  279. 29-APR-2016: 5.4.3.8
  280. - Removes gridcolor attribute in file, URL parameter
  281. - Adds peristent grid color option in Extras menu
  282. - Fixes resize of background page in outline dialog
  283. - Disables context menu on touch devices on folding icon
  284. - Fixes hover icons for overlapping cell in all directions
  285. - Adds logging for file loading errors
  286. - Uses mxGraph 3.5.1.3 beta 4
  287. 27-APR-2016: 5.4.3.7
  288. - Switches JIRA Cloud to attachment writes via client
  289. - Fixes ignored config in embed script
  290. - Renames File to DrawioFile
  291. - Uses mxGraph 3.5.1.3 beta 3
  292. 26-APR-2016: 5.4.3.6
  293. - Fixes version in about dialog
  294. 26-APR-2016: 5.4.3.5
  295. - Fixes possible bug with cached JS and uncached HTML
  296. 25-APR-2016: 5.4.3.4
  297. - Removes old stylesheet
  298. - Fixes bug for edges between layers
  299. - Fixes embedding with custom shapes
  300. - Fixes logging of domains with database entry
  301. - Moves createSpinner, setFileData to EditorUi
  302. - Adds lightbox parameter for chromeless mode
  303. - Uses single click for lightbox in embed
  304. 22-APR-2016: 5.4.3.3
  305. - Fixes naming issues in PlantUML render mode
  306. 22-APR-2016: 5.4.3.2
  307. - Adds render mode to PlantUML
  308. 18-APR-2016: 5.4.3.1
  309. - Fixes Confluence Cloud new page diagram insertion
  310. - Uses mxGraph 3.5.1.3 beta 2
  311. 17-APR-2016: 5.4.3.0
  312. - Removes macro parameter from plantUML
  313. 17-APR-2016: 5.4.2.5
  314. - Adds previous UML shapes
  315. 15-APR-2016: 5.4.2.4
  316. - Fixes double click on layer to rename
  317. - Uses mxGraph 3.5.1.2
  318. 13-APR-2016: 5.4.2.3
  319. - Changes plant export URL to https
  320. 13-APR-2016: 5.4.2.2
  321. - Changes baseURL of plantUML to plant.draw.io
  322. 13-APR-2016: 5.4.2.1
  323. - Changes baseURL of plantUML to https
  324. 13-APR-2016: 5.4.2.0
  325. - Adds tooltips, svgdata plugin (p=tips;svgdata)
  326. - Uses standard print dialog in Chrome App
  327. - No longer repaints label while editing
  328. - Uses mxGraph 3.5.1.1
  329. 11-APR-2016: 5.4.1.8
  330. - Adds line height in text format panel
  331. - Fixes possible NPE when updating shapes
  332. - Uses mxGraph 3.5.1.1 beta 4
  333. 11-APR-2016: 5.4.1.7
  334. - Fixes font size change with no text selection
  335. - Fixes isConsumed not defined in MS Edge
  336. - Fixes change of text opacity
  337. - Uses mxGraph 3.5.1.1 beta 3
  338. 09-APR-2016: 5.4.1.6
  339. - Changes default edge length to 80
  340. - Fixes anchor links for embedded HTML and SVG
  341. - Adds expiry to license logging
  342. - Adds Alt+/Shift+/Ctrl+Click in sidebar
  343. 08-APR-2016: 5.4.1.5
  344. - Adds imgur redirect servlet
  345. - Fixes offline mode
  346. - Fixes reset of comic style in connect preview
  347. 08-APR-2016: 5.4.1.4
  348. - Fixes global spacing ignored if overridden
  349. - Adds logging in JIRA servlet to avoid data loss
  350. - Fixes click on unselected edge label moves label
  351. - Fixes thumbnail for disabled autosave in Drive
  352. - Adds recovery from backup in revision history
  353. - Uses mxGraph 3.5.1.1 beta 2
  354. 06-APR-2016: 5.4.1.3
  355. - Uses mxGraph 3.5.1.1 beta 1
  356. - Fixes File, Publish menu item
  357. - Fixes iOS app icons
  358. 06-APR-2016: 5.4.1.2
  359. - Uses mxGraph 3.5.1.0
  360. - Uses new logo with no black bar
  361. - Fixes export for certain AWS 3D shapes
  362. - Fixes action states for read-only and restricted files
  363. 05-APR-2016: 5.4.1.1
  364. - Adds comic, text background color to default style
  365. - Adds outline keyboard shortcut in chromeless mode
  366. - Adds labelMovable style for vertex labels
  367. - Uses mxGraph 3.5.1.0 beta 6
  368. - Adds selection only option for XML export
  369. - Adds persistent settings for Chrome App
  370. 03-APR-2016: 5.4.1.0
  371. - Removes certain AWS 3D shapes
  372. 01-APR-2016: 5.4.0.9
  373. - Adds isometric AWS shapes
  374. 01-APR-2016: 5.4.0.8
  375. - Adds more dotted line styles
  376. - Adds isometric shapes and connectors (beta)
  377. - Updates handler after style change of cell
  378. - Uses mxGraph 3.5.1.0 beta 5
  379. 31-MAR-2016: 5.4.0.7
  380. - Hides toolbar after mouse move in chromeless mode
  381. - Adds keyboard shortcuts in read-only and chromeless mode
  382. - Fixes highlight in realtime for large strokewidths
  383. - Fixes update of text shape after change of overflow style
  384. - Uses mxGraph 3.5.1.0 beta 5
  385. - Fixes vertical alignment for Component shape
  386. - Enables comic style for various shapes
  387. - Uses filename for dropped files in libraries
  388. 26-MAR-2016: 5.4.0.6
  389. - Removes shadow URL parameter
  390. - Smaller jiggle effect for diamond shapes
  391. - Adds global shadow option in View menu (beta)
  392. - Removes bug tracking code for MS Edge
  393. 25-MAR-2016: 5.4.0.5
  394. - Adds image option in embed SVG dialog
  395. - Fixes embedded images in HTML labels
  396. 24-MAR-2016: 5.4.0.4
  397. - Restores bug tracking code for Edge
  398. - Adds app icons for various devices
  399. 24-MAR-2016: 5.4.0.3
  400. - Uses mxGraph 3.5.1.0 beta 4
  401. - Fixes word wrap change for existing text
  402. - Removes bug tracking code for MS Edge
  403. 23-MAR-2016: 5.4.0.2
  404. - Fixes possible NPE for import
  405. - Removes crc32 for email logging
  406. - Adds bug tracking code for MS Edge
  407. 23-MAR-2016: 5.4.0.1
  408. - Adds Extras, Show Start Screen option
  409. - Uses mxGraph 3.5.1.0 beta 3
  410. - Resets text shape state before using new style
  411. - Removes extension from published diagram title
  412. - Fixes rendering of comic rectangles in VML
  413. - Fixes expand of Misc sidebar in IE6/8
  414. 22-MAR-2016: 5.4.0.0
  415. - Uses XML to convert from old realtime
  416. - Fixes gradients for certain URLs in IE11/Edge
  417. - Adds comic style and shapes
  418. - Fixes move preview offset
  419. - Uses mxGraph 3.5.1.0 beta 2
  420. - Fixes library title editing on iOS
  421. - Makes autosave optional in Chrome App
  422. 18-MAR-2016: 5.3.5.2
  423. - Adds delete URL to publish confirmation
  424. - Adds warning dialog before Publish
  425. - Adds File, Embed, Image menu option
  426. - Adds Email address to Drive user info
  427. - Click on app icon opens Drive folder
  428. 17-MAR-2016: 5.3.5.1
  429. - Simplifies status messages for saving
  430. - Adds UI for editing sidebar titles
  431. - Disables publish action in IE9-
  432. - Fixes possible infinite loop in Drive client
  433. 17-MAR-2016: 5.3.5.0
  434. - Adds File, Publish for uploading to Imgur
  435. - Moves moreShapes from File to View menu
  436. - Moves createShape from File to Extras menu
  437. - Removes create shape option from sidebar
  438. - Adds confirmation after copy in SVG embed
  439. - Adds copy button in embed iframe dialog
  440. 16-MAR-2016: 5.3.4.3
  441. - Enables licensing for Confluence Cloud
  442. - Removes second macro for GDrive Connector
  443. - Fixes custom shapes for embedded diagrams
  444. - Updates MS Azure, Cloud + Enterprise icons
  445. 15-MAR-2016: 5.3.4.2
  446. - Adds File, Embed, SVG menu option
  447. - Uses client mode for making a copy
  448. - Hash has precedence over client parameter
  449. 14-MAR-2016: 5.3.4.1
  450. - Adds support for embedded PNG data URI in client mode
  451. - Fixes ignored grid for XML drag and drop
  452. - Fixes decoding of base64 encoded embedded SVG
  453. - Fixes embedded PNG character encoding in Safari
  454. 10-MAR-2016: 5.3.4.0
  455. - Uses mxGraph 3.5.1.0 beta 1
  456. 09-MAR-2016: 5.3.3.9
  457. - Uses mxGraph 3.5.0.1 beta 3
  458. 09-MAR-2016: 5.3.3.8
  459. - Fixes double encoding for PNG+XML in embed mode
  460. 08-MAR-2016: 5.3.3.7
  461. - Uses mxGraph 3.5.0.1 beta 2
  462. 04-MAR-2016: 5.3.3.6
  463. - Fixes insertTextAt call in importFile()
  464. 04-MAR-2016: 5.3.3.5
  465. - Uses mxGraph 3.5.0.1 beta 1
  466. - Redirects apex domain to www.draw.io
  467. - Fixes loading spinner for converted Dropbox files
  468. 03-MAR-2016: 5.3.3.4
  469. - Fixes offset of imports with no mouse event
  470. - Adds configurable edit button in chromeless mode
  471. - Ignores public URL for Drive files in public folders
  472. - Adds upload tab in Google picker dialog
  473. - Makes hierarchical folder picker default
  474. - Puts new Google files into root folder
  475. - Adds folder picker for new libraries
  476. 03-MAR-2016: 5.3.3.3
  477. - Changes BaseURL for Google Drive Connector
  478. 02-MAR-2016: 5.3.3.2
  479. - Adds responsive UI for small screens
  480. - Adds voice assistance for text input
  481. 01-MAR-2016: 5.3.3.1
  482. - Fixes grid rounding errors for common cases
  483. 01-MAR-2016: 5.3.3.0
  484. - Uses mxGraph 3.5.0.0
  485. - Adds voice assistant in Extras menu
  486. - Adds experimental shadow URL parameter
  487. - Ignores transparent stroke color for default style
  488. 29-FEB-2016: 5.3.2.3
  489. - Adds Ctrl+Shift+Drag to create/remove space
  490. - Fixes licensing in chromeless mode
  491. - Fixes bug in reset graph
  492. 28-FEB-2016: 5.3.2.2
  493. - Uses mxGraph 3.4.1.3 beta 9
  494. - Removes Export PNG+XML menu item
  495. - Uses MathJax from CDN, lighter config
  496. - Adds selection option for remote export
  497. - Fixes timing problem for printing with math
  498. - Adds text fallback for SVG export (experimental)
  499. - Improved text rendering for image and SVG export
  500. - Fixes artifacts for embedded math diagrams in Chrome
  501. - Fixes Open in new window for IE10/11, MS Edge, Safari
  502. 26-FEB-2016: 5.3.2.1
  503. - Uses MathJax 2.6 to fix artifacts in Chrome
  504. - Fixes import of edges in separate layers
  505. - Import of file appends multiple layers
  506. - Changes logging for Google accounts
  507. - Fixes drop of file URL into editor
  508. - Uses mxGraph 3.4.1.3 beta 8
  509. 25-FEB-2016: 5.3.2.0
  510. - Adds licensing server and client
  511. 25-FEB-2016: 5.3.1.0
  512. - Uses mxGraph 3.4.1.3 beta 7
  513. - Adds gridcolor URL parameter
  514. - Adds scaled grid, replaces grid dots with grid lines
  515. - Fixes anchors open in same page for embedded diagrams
  516. - Moves Search, Scratchpad from Extras menu to View menu
  517. 22-FEB-2016: 5.3.0.6
  518. - Updates Confluence Connect to use new page context mechanism
  519. - Uses mxGraph 3.4.1.3 beta 6
  520. - Adds rt, grid parameters for chromeless mode
  521. - Fixes export dialog width, adds help button
  522. - Detects data URI with XML in drag source
  523. - Enables embed image menu in test mode
  524. 07-FEB-2016: 5.3.0.5
  525. - Fixes direction, align, distribute menu states
  526. - Adds tap and hold to add to selection
  527. 06-FEB-2016: 5.3.0.4
  528. - Fixes possible NPE in plugins warning dialog
  529. 06-FEB-2016: 5.3.0.3
  530. - Adds delayed quick start footer ad
  531. - Removes voice assistant from help menu
  532. - Moves ctrl+shift+j shortcut to two pages
  533. - Disables hover icons while space is pressed
  534. - Adds tooltips for buttons in format panel
  535. - Fixes button label overflow in sidebar
  536. 05-FEB-2016: 5.3.0.2
  537. - Replaces numeric keyboard shortcuts
  538. 05-FEB-2016: 5.3.0.1
  539. - Fixes asynchronous loading of plugins
  540. 05-FEB-2016: 5.3.0.0
  541. - Adds optional converter argument for canvas export
  542. - Adds asynchronous loading for resources
  543. - Uses mxGraph 3.4.1.3 beta 5
  544. 03-FEB-2016: 5.2.9.1
  545. - Changes Confluence Cloud footer
  546. 03-FEB-2016: 5.2.9.0
  547. - Ignores panning trigger to change edges
  548. - Fixes sidebar rendering in math mode
  549. - Uses mxGraph 3.4.1.3 beta 4
  550. 01-FEB-2016: 5.2.8.9
  551. - Updates AWS icons
  552. 01-FEB-2016: 5.2.8.8
  553. - Fixes offset for drag and drop of diagram data
  554. - Fixes drop of SVG data URI with embedded XML
  555. - Fixes download and export SVG to new window in Safari
  556. - Fixes SVG export in older versions of IE
  557. - Fixes drop shadow in SVG export for Safari
  558. - Adds control-resize for centered resize of vertices
  559. - Fixes import of SVG with embedded XML graph model
  560. - Adds selection, transparent background for SVG export
  561. - Adds include diagram option for image and SVG export
  562. - Fixes open library file as diagram in Google Drive
  563. - Adds pseudo-hierarchical view in Google library picker
  564. 29-JAN-2016: 5.2.8.7
  565. - Fixes ignored background color for image export
  566. - Fixes update of outline after changing page format
  567. - Fixes edit shape button after insert of new shape
  568. 27-JAN-2016: 5.2.8.6
  569. - Adds shadow option for image and SVG export
  570. 26-JAN-2016: 5.2.8.5
  571. - Adds pseudo-hierarchical view in Google file picker
  572. - Adds fallback for failed local image export
  573. - Fixes lost connect preview after remote change
  574. - Uses mxGraph 3.4.1.3 beta 3
  575. 25-JAN-2016: 5.2.8.4
  576. - Fixes disabled transparent background export option
  577. - Adds touch support for Microsoft Edge
  578. - Adds pseudo-hierarchical view in Google folder picker
  579. - Clean up for templates and more shapes dialog
  580. - Adds selection only option in image export dialog
  581. - Ungroup no longer deletes non-transparent groups
  582. - Fixes paste via menu after ctrl/cmd+c
  583. - Fixes hiding of all sidebar entries
  584. - Uses mxGraph 3.4.1.3 beta 2
  585. 19-JAN-2016: 5.2.8.3
  586. - Fixes collapse/expand for sidebars
  587. 19-JAN-2016: 5.2.8.2
  588. - Fixes concurrent loading of custom libraries
  589. - Improves initial sidebar rendering speed
  590. 18-JAN-2016: 5.2.8.1
  591. - Uses mxGraph 3.4.1.4 beta 1
  592. - Adds File, Move to Folder for OneDrive files
  593. - Adds File, Rename menu item for all files
  594. - Fixes spinner status for create revision
  595. - Fixes edit as new for remote embedded diagrams
  596. - Fixes minor bugs in search sidebar
  597. - Fixes open in new window for save dialog
  598. - Fixes edit diagram, search in Chrome app menubar
  599. - Adds support for HTML tooltips in embedded diagrams
  600. - Adds transparent background option for image export
  601. 15-JAN-2016: 5.2.8.0
  602. - Uses mxGraph 3.4.1.3 beta 1
  603. - Adds timeout for save revision in Drive
  604. - Fixes spinner for retry after error
  605. - Fixes handling of leading # in color dialog
  606. - Increases size limit for background image
  607. - Fixes minor bugs in library dialog
  608. - Fixes image size for scratchpad
  609. 14-JAN-2016: 5.2.7.9
  610. - Changes Connect footer text for Conf/JIRA
  611. 14-JAN-2016: 5.2.7.8
  612. - Removes remote condition check in JIRA cloud
  613. - Fixes outline connect for backbone, lifeline shapes
  614. 12-JAN-2016: 5.2.7.7
  615. - Updates Polish translation
  616. - Removes incorrect header from Confluence Connect [DS-249]
  617. - Fixes encoding of filename in JIRA Connect [DFJC-3]
  618. 08-JAN-2016: 5.2.7.6
  619. - Uses mxGraph 3.4.1.2
  620. - Fixes inconsistent loop routing
  621. - Fixes possible page scroll for embedded iframe
  622. - Restores spacer in UML sidebar
  623. - Uses UML 2.5 interface notation
  624. 06-JAN-2016: 5.2.7.5
  625. - Uses mxGraph 3.4.1.1
  626. - Adds interface in UML sidebar
  627. - Adds fit page in print dialog
  628. - Adds crop option for PDF export
  629. - Merges image export menu items
  630. 02-JAN-2016: 5.2.7.4
  631. - Adds support for title attribute in library files
  632. - Adds optional sidebar search in Extras, Search
  633. - Adds custom client-side image export option
  634. 31-DEC-2015: 5.2.7.3
  635. - Adds new spinner while autosaving files
  636. - Uses simplified UI for search sidebar
  637. - Adds library file menu items on iOS
  638. 28-DEC-2015: 5.2.7.2
  639. - Inserts new auto-layouted diagrams into current page
  640. - Disables pinch to zoom, ctrl+wheel for Chrome on Mac
  641. - Uses shorter delay for showing hover icons
  642. - Shows hover icons after drop from sidebar
  643. - Adds status after save from draft state
  644. - Fixes default extension in create dialog
  645. - Fixes save after change of storage file extension
  646. - Fixes menubar height in atlas UI
  647. - Uses parser for checking XML strings
  648. - Shows spinner while sending feedback
  649. 22-DEC-2015: 5.2.7.1
  650. - Adds automatic jetty size for orthogonal edges
  651. - Fixes loop routing for fixed connection points
  652. - Labels for locked cells are no longer editable
  653. - Fixes auto-delete for empty non-deletable text
  654. - Handles oversize labels on buttons in sidebars
  655. - Fixes clipping in dropdown menu with scrollbars
  656. - Uses mxGraph 3.4.1.1 beta 1
  657. 11-DEC-2015: 5.2.7.0
  658. - Fixes encoding for JIRA Connect
  659. - Ignores ancestor collisions for connection arrows
  660. - Uses mxGraph 3.4.1.0
  661. 09-DEC-2015: 5.2.6.9
  662. - Opens PNG+XML data uri via drag and drop
  663. - Adds thin open, async open markers
  664. - Updates UML sidebar, adds cross marker
  665. - Fixes markers in connect preview
  666. - Uses smaller hover icons
  667. - Uses mxGraph 3.4.0.4 beta 10
  668. 08-DEC-2015: 5.2.6.8
  669. - Adds all markers to edge format panel
  670. - Adds thin block and thin classic markers
  671. - Adds async, circle, circlePlus markers
  672. - Hides overlapping connection arrows
  673. 07-DEC-2015: 5.2.6.7
  674. - Uses mxGraph 3.4.0.4 beta 9
  675. - Adds vsdx support for unconnected edges
  676. - Adds entity relation shapes and connectors
  677. - Adds default styles in connect preview
  678. - Fixes dynamic loading for registered default shapes
  679. - Hides disabled connection points while connecting
  680. - Uses dotted highlight border for active drop targets
  681. - Adds dropzone with description in editable sidebars
  682. - Adds app identifier and current version in mxfile
  683. - Fixes sidebar button event handling for IE8/quirks
  684. - Fixes library dialog for quirks mode
  685. 03-DEC-2015: 5.2.6.6
  686. - Fixes possible scroll to origin after paste in FF
  687. - Fixes copy/paste in older versions of IE
  688. - Adds export image to new window in IE
  689. - Adds storage dialog for export in IE
  690. - Uses mxGraph 3.4.0.4 beta 8
  691. 02-DEC-2015: 5.2.6.5
  692. - Updates AWS icons to latest set
  693. - Adds delay for connection arrows
  694. 02-DEC-2015: 5.2.6.4
  695. - Fixes select all after paste of large amounts of text
  696. - Fixes update of label preview during vertical resize
  697. - Fixes click on resize handles while editing label
  698. - Fixes certain label positions and sizes
  699. - Fixes menubar style in atlas UI
  700. - Uses mxGraph 3.4.0.4 beta 7
  701. 27-NOV-2015: 5.2.6.3
  702. - Fixes IME input for i18n in FF
  703. - Uses mxGraph 3.4.0.4 beta 6
  704. - Adds experimental doors plugin
  705. 25-NOV-2015: 5.2.6.2
  706. - Fixes edge move preview for scaled tolerance
  707. - Fixes new waypoint for drag of edges with bends
  708. - Fixes ignored folder for new OneDrive files
  709. - Fixes download, adds options in Save dialog
  710. - Adds padding to handles while editing
  711. - Adds spacing to copied styles
  712. - Enables glass effect switch for process shape
  713. - Migrates Docs add-on to new API
  714. - Adds dblclick in more shapes dialog
  715. - Fixes color dialog for font (background) color
  716. - Uses mxGraph 3.4.0.4 beta 5
  717. 20-NOV-2015: 5.2.6.1
  718. - Adds link to scratchpad FAQ entry
  719. - Handles possible missing root cell in realtime
  720. 20-NOV-2015: 5.2.6.0
  721. - Removes local storage option from splash screen
  722. - Adds browser=1 URL parameter for local storage
  723. - Adds double click to keyboard shortcuts
  724. 19-NOV-2015: 5.2.5.8
  725. - Adds US-Legal paper size
  726. - Handles file not found for local storage
  727. - Handles domain policy errors in Drive client
  728. - Restores timer for fixed connection points with mouse
  729. 17-NOV-2015: 5.2.5.7
  730. - Removes page reload after create from Drive
  731. - Hash has precedence over state URL parameter
  732. - Handles removed App folder in Dropbox
  733. - Fixes handling of existing mxfile node
  734. - Redirects 5% of reviews to Docs Add-on
  735. - Adds support for extracting diagram nodes
  736. - Adds spinner action in JSON protocol
  737. - Fixes click and drag on edges in groups
  738. - Fixes ignored scale for connect live preview
  739. - Removes unused image files from Chrome App
  740. - Resets constraint focus after root change
  741. - Adds repaint of hover icons after root change
  742. - Fixes offset for terminal point in VML
  743. - Uses mxGraph 3.4.0.4 beta 4
  744. 17-NOV-2015: 5.2.5.6
  745. - Uses mxGraph 3.4.0.4 beta 2
  746. - Uses new draw.io logo and colors
  747. - Fixes hit detection for outline connect and grid
  748. - Removes timer for fixed points with non-touch devices
  749. - Adds live preview for new connections
  750. - Fixes replacement of PNG extension in IE
  751. - Adds autosave if gridsize is changed
  752. - Removes Draw.io for Work action and menu item
  753. - Fixes loading of plugins from mxSettings
  754. 13-NOV-2015: 5.2.5.5
  755. - Fixes new diagram creation in Chrome Packaged App
  756. - Fixes delete operation (DELETE verb changed to POST)
  757. 12-NOV-2015: 5.2.5.4
  758. - Fixes context path for JIRA Connect
  759. 11-NOV-2015: 5.2.5.3
  760. - Fixes mxUtils.getFunctionName()
  761. 11-NOV-2015: 5.2.5.2
  762. - Fixes creating blank diagram files in createFile
  763. 11-NOV-2015: 5.2.5.1
  764. - Adds error handling for invalid diagram files
  765. 10-NOV-2015: 5.2.5.0
  766. - Fixes embed preview in Microsoft Edge
  767. - Adds default connections for backbone shape
  768. - Adds number checks for custom zoom dialog
  769. 05-NOV-2015: 5.2.4.4
  770. - Reverts Connect viewer
  771. 05-NOV-2015: 5.2.4.3
  772. - Improvements for JIRA Connect
  773. 05-NOV-2015: 5.2.4.2
  774. - Improvements for JIRA Connect
  775. 04-NOV-2015: 5.2.4.1
  776. - Adds workaround for NS_ERROR_FAILURE in FF
  777. - Adds network shapes library
  778. - Fixes editorUi is not defined for help link
  779. - Uses mxGraph 3.4.0.4 beta 1
  780. 04-NOV-2015: 5.2.4.0
  781. - Changes items in format panel and menubar
  782. - Renames editFile, editMetadata, connect actions
  783. - Handles invalid image bounds in Graph.getSvg
  784. 03-NOV-2015: 5.2.3.9
  785. - Fixes possible NPE
  786. 03-NOV-2015: 5.2.3.8
  787. - Adds separate switch to disable connection points
  788. - Uses mxGraph 3.4.0.2
  789. 02-NOV-2015: 5.2.3.7
  790. - Corrects JIRA connect plugin key in descriptor
  791. 02-NOV-2015: 5.2.3.6
  792. - Fixes ads in footer after Google login
  793. 02-NOV-2015: 5.2.3.5
  794. - Fixes possible NPE
  795. 02-NOV-2015: 5.2.3.4
  796. - Splits edges for drop from sidebar (shift to disable)
  797. - Uses mxGraph 3.4.0.2 beta 13
  798. 28-OCT-2015: 5.2.3.3
  799. - Adds missing function for Confluence OnDemand
  800. - Adds refresh in format panel after root change
  801. - Changes page size units from px to pt
  802. 28-OCT-2015: 5.2.3.2
  803. - Fixes shape search for non-existing tags
  804. - Removes GMDL library from default sidebars
  805. - Adds link to user manual in help menu
  806. - Removes click to speak button in header
  807. 25-OCT-2015: 5.2.3.1
  808. - Adds separate files for GMDL, SysML sidebars
  809. - Creates Drive revisions with autosave disabled
  810. - Fixes scrollbar for fit page (width) actions
  811. - Fixes delayed reset of scrollbar positions
  812. - Fixes background page shadow color in VML
  813. - Fixes terminal handle transparency in VML
  814. - Uses Metarial Design for GMDL library title
  815. - Uses mxGraph 3.4.0.2 beta 12
  816. 23-OCT-2015: 5.2.3.0
  817. - Adds GMDL (Google Media Design Library) sidebar
  818. - Fixes offset for repeated copy paste in Safari
  819. - Fixes download after creating new device file
  820. - Fixes keyboard shortcut ctrl+0 for reset view
  821. - Fixes div has no click in more shapes dialog
  822. - Adds horizontal/vertical page center guides
  823. - Hides word wrap option for autosize labels
  824. - Fixes initial size of new text labels
  825. - Uses mxGraph 3.4.0.2 beta 11
  826. 21-OCT-2015: 5.2.2.2
  827. - Fixes flow in voice plugin
  828. - Fixes title collapse/expand icon color
  829. - Fixes sidebar title font size
  830. 20-OCT-2015: 5.2.2.1
  831. - Fixes dialog for read-only realtime files
  832. 19-OCT-2015: 5.2.2.0
  833. - Improves voice recognition in plugin
  834. - Fixes print output in Microsoft Edge
  835. - Uses mxGraph 3.4.0.2 beta 10
  836. 18-OCT-2015: 5.2.1.9
  837. - Fixes unlink in label with edit dialog
  838. - Fixes html and svg URLs for embedding
  839. - Intercepts links that change page URL
  840. - Fixes remote selection highlight color
  841. - Uses mxGraph 3.4.0.2 beta 9
  842. 18-OCT-2015: 5.2.1.8
  843. - Adds dynamic loading for lucid chart import
  844. - Adds voice label for missing speech input
  845. 17-OCT-2015: 5.2.1.7
  846. - Fixes dynamic loading of voice plugin
  847. - Fixes overflow for voice button
  848. 17-OCT-2015: 5.2.1.6
  849. - Prepares Extensions.js for refactoring into dynamic plugins
  850. - Adds share button for drive files, voice assistant button
  851. - Adds transaction for connecting dangling edge in voice plugin
  852. 17-OCT-2015: 5.2.1.5
  853. - Adds select, select source/target in voice plugin
  854. - Insert shape connects connecting dangling edge
  855. - Adds connect vs clone command in voice plugin
  856. 16-OCT-2015: 5.2.1.4
  857. - Adds persistent current voice setting for plugin
  858. - Adds autostart option item in voice menu for plugin
  859. - Adds voice assistant item in main help menu
  860. - Hides voice assistant footer if not supported
  861. - Fixes edge clipping in print and PDF export
  862. - Uses mxGraph 3.4.0.2 beta 8
  863. 15-OCT-2015: 5.2.1.3
  864. - Fixes possible NPE in graph.connectVertex
  865. - Uses levenshtein distance in voice plugin
  866. - Next/previous moved to select prefix in voice
  867. 15-OCT-2015: 5.2.1.2
  868. - Adds variable and timestamp in Misc sidebar
  869. - Adds voice commands in voice plugin
  870. - Fixes segment offsets after change of parent
  871. - Uses mxGraph 3.4.0.2 beta 7
  872. 14-OCT-2015: 5.2.1.1
  873. - Fixes bugs, adds commands, uses footer in voice plugin
  874. - Adds promo link to voice assistant (beta) in Chrome
  875. 14-OCT-2015: 5.2.1.0
  876. - Removes enable/disable command in voice plugin
  877. - Fixes possible duplicate connection inserted
  878. - Fixes lifeline perimeter for undefined strokewidths
  879. - Improved tags for standard shapes
  880. 13-OCT-2015: 5.2.0.9
  881. - Adds continuous speech input in voice plugin
  882. - Adds scrollbars in voice type menu
  883. - Fixes duplicate insert of same plugin
  884. - Fixes drop for PNG+XML data URIs
  885. - Adds help link in voice plugin menu
  886. 13-OCT-2015: 5.2.0.8
  887. - Adds menu for voice plugin
  888. - Fixes keyboard shortcuts for voice plugin on Windows
  889. - Adds hello, help and quick start for voice plugin
  890. - Fixes hover icon focus for touch devices
  891. 12-OCT-2015: 5.2.0.7
  892. - Adds experimental voice plugin (id voice)
  893. - Fixes hover icon click for relative cells
  894. - Fixes local save of large client-side export
  895. - Adds recently used colors in color dialogs
  896. - Fixes dragging labels for unselected edges
  897. - Fixes pending timer after drop from sidebar
  898. - Adds insert for new edges before source cell
  899. - Changes label position and background for images
  900. - Fixes drop of images with invalid file extension
  901. - Uses mxGraph 3.4.0.2 beta 6
  902. 10-OCT-2015: 5.2.0.6
  903. - Fixes sidebar tooltip after drop cells to library
  904. - Allows 1px move of start segment in edge style
  905. - Restores moving of selected container via child
  906. - Fixes padding for new rows in UML table shape
  907. - Clones west hover icon in stack before source cell
  908. - Fixes click on hover icon in stack with near cell
  909. - Allows group/ungroup to (de)containerize vertices
  910. - Fixes 1px handle offset, adds terminal handle with dot
  911. - Adds backbone shape, fixes lifeline perimeter
  912. - Fixes drop resize if source smaller than 45px
  913. - Adds Draw.io for Work link in Help menu
  914. - Adds modified, saveAndExit in load JSON message
  915. - Avoids unnecessary image resampling
  916. - Uses mxGraph 3.4.0.2 beta 5
  917. 09-OCT-2015: 5.2.0.5
  918. - Changes image resize condition to over 100K
  919. - Fixes font size stepper for multiple values
  920. - Adds edit metadata to context menu
  921. - Adds date{format} placeholder option
  922. - Adds link to file extensions FAQ entry
  923. 08-OCT-2015: 5.2.0.4
  924. - Fixes vertical alignment for footer
  925. 08-OCT-2015: 5.2.0.3
  926. - Adds Draw.io for Work link in footer
  927. - Fixes update of child placeholders after undo
  928. - Replaces PNG extension for url parameter with XML
  929. - Adds shift for keeping original image size
  930. - Adds edit metadata option in format panel
  931. 08-OCT-2015: 5.2.0.2
  932. - Fixes change of font size on multiple cells
  933. - Fixes Ctrl+B/U/I while editing in FF/Safari
  934. - Ignores default style for copy via hover icon
  935. - Applies only basic text styles for new labels
  936. - Ignores default style for custom library entries
  937. - Fixes repaint performance after metadata change
  938. - Improves speed for deleting large number of cells
  939. - Removes page unload warning for url parameter
  940. - Uses mxGraph 3.4.0.2 beta 4
  941. 08-OCT-2015: 5.2.0.1
  942. - Fixes copy-paste in non-Chrome browsers
  943. 07-OCT-2015: 5.2.0.0
  944. - Adds link from Chrome App to online app
  945. - Fixes inconsistent child selection for selected swimlanes
  946. - Fixes PDF export for math without page view
  947. - Increases size of metadata dialog
  948. - Adds placeholders for labels and tooltips
  949. - Fixes encoding for cross-platform clipboard
  950. - Improves repaint performance for text labels
  951. - Improves drag and drop for links and images
  952. - Uses mxGraph 3.4.0.2 beta 3
  953. 06-OCT-2015: 5.1.1.1
  954. - Fixes math PDF export
  955. 06-OCT-2015: 5.1.1.0
  956. - Fixes filename, advanced export to new window
  957. - Renames main macro for Confluence Connect
  958. - Adds error handling for invalid PDF export
  959. - Adds timer for grouping cursor operations
  960. - Hover icon click ignores locked layers
  961. - Locked cells are no longer connectable
  962. - Fixes change of fontSize for certain nodes
  963. - Fixes paste for large diagrams
  964. - Shows link tooltip only for single selection
  965. - Fixes print offset for negative origins
  966. - Fixes remote parsing for paste of ASCII 160
  967. - Adds GraphML import (beta)
  968. - Adds Cmd+Drag on Mac for cloning
  969. - Improves client-side print performance
  970. - Uses mxGraph 3.4.0.2 beta 2
  971. 05-OCT-2015: 5.1.0.3
  972. - Enables drag and drop and open for library files
  973. - Constrains proportions for images in libraries
  974. - Adds drop of library files to sidebar, dialog
  975. - Fixes template not found error message
  976. - Fixes mouse cursor for entity relation
  977. - Uses custom handles only for single selection
  978. - Adds notitle URL parameter
  979. - Removes extension for url parameter filename
  980. - Adds logging for help search via menu
  981. - Uses mxGraph 3.4.0.2 beta 1
  982. 02-OCT-2015: 5.1.0.2
  983. - Checks leading dots for storage files
  984. - Maintains sidebar order after save of library
  985. - Removes remoteAlert, uses version for scratchpad
  986. - Adds drag and drop of files to custom libraries
  987. - Fixes preview and drag to library in IE11/10
  988. - Adds folder picker for new files
  989. 01-OCT-2015: 5.1.0.1
  990. - Fixes possible NPE for chromeless mode
  991. - Fixes restore of scratchpad if empty
  992. 01-OCT-2015: 5.1.0.0
  993. - Adds scratchpad option in Extras menu
  994. - Adds tooltip, dblclick for custom libraries
  995. - Adds drag and drop to custom libraries
  996. - Edge drag uses handles if edge selected
  997. - Uses mxGraph 3.4.0.1
  998. 30-SEP-2015: 5.0.6.4
  999. - Adds small, closable footer in Chrome App
  1000. - Adds client status message in File menu
  1001. - Adds previously selected in Google picker
  1002. - Click on background closes Google picker
  1003. - Fixes possible 401 in Google picker
  1004. - Adds improved error logging
  1005. 29-SEP-2015: 5.0.6.3
  1006. - Fixes connecting edges with elbow edge style
  1007. 29-SEP-2015: 5.0.6.2
  1008. - Persists page format as default for new diagrams
  1009. - Fixes connecting edges with entity edge style
  1010. - Adds ctrl+drag to move and clone edges
  1011. - Uses mxGraph 3.4.0.1 beta 13
  1012. 29-SEP-2015: 5.0.6.1
  1013. - Fixes cursor for edges with entity edge style
  1014. - Adds link, link color and tooltip option in embed dialog
  1015. - Adds mxClientOnCreate callback for embedded diagrams
  1016. - Fixes atomic undo for new waypoints when dragging edge
  1017. - Adds labels for cloud option buttons in save dialog
  1018. - Removes open in new window for edit file in Chrome App
  1019. - Adds help menu items, FAQ search in Chrome App
  1020. - Redirect exportPdf to print action in Chrome App
  1021. 27-SEP-2015: 5.0.6.0
  1022. - Fixes hover icon focus for mouse and touch events
  1023. - Fixes move of edge label with selected parent edge
  1024. - Drag connected edge adds waypoint (shift+drag moves)
  1025. - Disables loading of draft files from local storage
  1026. 26-SEP-2015: 5.0.5.8
  1027. - Uses mxGraph 3.4.0.1 beta 12
  1028. 26-SEP-2015: 5.0.5.7
  1029. - Fixes ensureDataSaved in chromeless mode
  1030. - Adds experimental connect edge mode
  1031. 26-SEP-2015: 5.0.5.6
  1032. - Adds save dialog for Google Drive and OneDrive
  1033. - Adds storage buttons in Save dialogs
  1034. - Adds Open in new window option for PDF export
  1035. - Changes default background to white
  1036. - Fixes attempt to load realtime after export
  1037. 26-SEP-2015: 5.0.5.5
  1038. - Adds print support in Chrome App (beta)
  1039. - Fixes PROXY_URL not defined in Chrome App
  1040. - Fixes click on links after panning
  1041. - Uses mxGraph 3.4.0.1 beta 11
  1042. 25-SEP-2015: 5.0.5.4
  1043. - Adds export for selection cells
  1044. - Fixes possible 404 for default-style2 when switching files
  1045. - Fixes reset of background image when switching files
  1046. - Adds pagination in PDF export
  1047. - Updates zoom in toolbar after edit file dialog
  1048. - Fixes background color in print output
  1049. - Uses mxGraph 3.4.0.1 beta 10
  1050. - Waits for images in HTML labels in export
  1051. - Fixes background image for PDF export
  1052. - Connectable style overrides connectable property
  1053. - Adds nowarn URL parameter for local files
  1054. - Fixes possible NPE In HoverIcons.drag
  1055. - Added support for links in Gliffy diagrams
  1056. 23-SEP-2015: 5.0.5.3
  1057. - Removes preferred mode based on domain
  1058. 23-SEP-2015: 5.0.5.2
  1059. - Uses www for new, legacy for old Google Drive app
  1060. - Ignores quota exceeded errors in mxSettings
  1061. - Uses mxGraph 3.4.0.1 beta 9
  1062. 23-SEP-2015: 5.0.5.1
  1063. - Adds connectable style
  1064. - Persists current edge and vertex style, copy on connect
  1065. - Fixes partial rectangle in VML
  1066. - Adds review link in Chrome App splash screen
  1067. - Fixes import of VDX files from Google Drive
  1068. - Adds File, Close menu item
  1069. - Fixes member not found in IE8- after paste
  1070. - Disables move, resize and delete of locked cells
  1071. - Adds delete protection for locked cells
  1072. - Removes preview for embed iframe in IE8-
  1073. - Fixes possible NPE in HoverIcons.drag
  1074. 22-SEP-2015: 5.0.5.0
  1075. - Adds paste for images from clipboard in Chrome
  1076. - Fixes paste from Word, Excel while editing labels
  1077. - Fixes VDX/Gliffy conversion for read-only folders in Drive
  1078. - Fixes paste from Lucidchart in modern browsers
  1079. - Uses mxGraph 3.4.0.1 beta 8
  1080. 21-SEP-2015: 5.0.4.6
  1081. - Replaces connectionPoints with global connect switch
  1082. - Deletes empty text cells with no fill/stroke color
  1083. - Adds select none menu item and keyboard shortcut
  1084. - Increases/checks max size for imported images
  1085. - Fixes background image aspect for SVG export
  1086. - Fixes mouse event handling errors
  1087. - Removes rounded toolbar button
  1088. - Uses mxGraph 3.4.0.1 beta 7
  1089. 20-SEP-2015: 5.0.4.5
  1090. - Changes autosave delay for local storage files to 2s
  1091. - Restores hover icons after cancel drag from sidebar
  1092. - Adds hover icons after panning, drop from sidebar
  1093. - Fixes hover icons for overlapping cells, adds timer
  1094. - Selects edge under hover icon only if connected to vertex
  1095. - Scrolls to new vertex after click on hover icon
  1096. - Uses mxGraph 3.4.0.1 beta 6
  1097. 19-SEP-2015: 5.0.4.4
  1098. - Exports files to same folder in Google Drive
  1099. - Adds format panel toggle button in toolbar
  1100. - Cursor keys move child cells in stack layouts
  1101. - Selects edges under hover icon on single click
  1102. - Scrolls cells to visible after shift+click in sidebar
  1103. - Hover icon click no longer connects in stack layouts
  1104. - Hides hover icons with shift/meta, keeps with ctrl
  1105. - Hides hover icons after shift/meta/ctrl+click
  1106. - Selects new target vertex after hover icon click
  1107. 18-SEP-2015: 5.0.4.3
  1108. - Uses transparent shadows
  1109. - Hides hover icons during drag from sidebar
  1110. - Fixes connect to ancestors for hover icon click
  1111. - Adds shift+click in sidebar to change selection
  1112. - Hover icons ignore popup menu trigger events
  1113. - Uses ctrl+click for clone, shift+click for connect
  1114. - Adds lazy loading for state URL parameter
  1115. 18-SEP-2015: 5.0.4.2
  1116. - Fixes dialog for automatic layout
  1117. - Fixes hover icons not reachable with nearby cells
  1118. - Adds hover icons for dangling edges
  1119. - Fixes possible NPE for dragging hover icons
  1120. 18-SEP-2015: 5.0.4.1
  1121. - Fixes possible NS_ERROR_FAILURE in Firefox
  1122. - Fixes shadow color for embedded diagrams
  1123. - Fixes selection of images after drop
  1124. - Adds more aggressive image resizing
  1125. - Uses mxGraph 3.4.0.1 beta 5
  1126. 18-SEP-2015: 5.0.4.0
  1127. - Fixes deleting cells with loops, terminals in groups
  1128. - Increases size for local storage open dialog
  1129. - Fixes mouse event on scrollbar after rubberband in IE 11
  1130. - Fixes image dialog size for older browsers
  1131. - Fixes possible parseRequestText is not a function in OneDrive
  1132. - Fixes handling of linefeeds in non-formatted labels
  1133. - Makes import and replace faster in Edit file dialog
  1134. - Autosize sets height for cells with word wrapping
  1135. - Adds link to open via Drive UI if file not found
  1136. - Uses label background while editing edge labels
  1137. - Fixes right/bottom padding for scaled page view
  1138. - Adds Ctrl+Shift-Mouse wheel for zoom on Mac
  1139. - Adds fallback to server for image export
  1140. - Parser errors are now handled separately
  1141. - Adds Ctrl+Shift+Click on connect handles
  1142. - Replaces connect icon with arrow icons
  1143. - Disables word wrap option for edges
  1144. - Fixes spelling of English resources
  1145. - Improves error handling for export
  1146. - Renames actual size to reset view
  1147. - Uses mxGraph 3.4.0.1 beta 4
  1148. 12-SEP-2015: 5.0.3.7
  1149. - Handles permission change during collaboration
  1150. - Adds toggle selection in shortcuts.svg
  1151. - Adds Shift+Click to toggle selection state
  1152. 11-SEP-2015: 5.0.3.6
  1153. - Fixes language in Confluence Connect
  1154. - Removes shadow and glass in quick styles
  1155. - Fixes possible URL undefined error
  1156. - Fixes possible DocumentClosedErrors
  1157. - Fixes foreignObjects in shortcuts.svg
  1158. 11-SEP-2015: 5.0.3.5
  1159. - Improves error handling for realtime collaboration
  1160. - Fixes switch to custom from landscape in format panel
  1161. - Fixes paper size for print output
  1162. - Removes shapeeditor.html
  1163. - Fixes update of page size after edit file
  1164. - Fixes drop of XML into empty diagram creates new file
  1165. - Restores xml default extension for files in Chrome App
  1166. - Fixes spinner after cancel of library save in Chrome App
  1167. - Fixes extension for libraries in Chrome App
  1168. - Fixes status after autosave in Chrome App
  1169. - Removes foreignObjects in shortcuts.svg
  1170. 10-SEP-2015: 5.0.3.4
  1171. - Fixes translations in Connect
  1172. - Adds mxReader.js to atlas.min.js
  1173. - Adds dropbox client to app.min.js
  1174. - Adds error message for busy state
  1175. - Fixes cursor in viewer for Connnect
  1176. - Handles modifications while saving
  1177. - Uses common mxProperties in Connect
  1178. - Fixes modified check for local files
  1179. 09-SEP-2015: 5.0.3.3
  1180. - Fixes label for recent OneDrive files
  1181. - Adds common resources from Confluence
  1182. - Fixes toolbar for viewer in Connect
  1183. - Adds support for expand macro in Connect
  1184. - Fixes Google Drive client API in Opera
  1185. - Adds lazy loading for OneDrive client API
  1186. - Fixes startup in quirks and IE8 standards
  1187. 07-SEP-2015: 5.0.3.2
  1188. - Makes autosave optional in Google Drive
  1189. - Adds adaptive autosave delay in Google Drive
  1190. - Fixes relative URLs in Confluence connect
  1191. - Moves atlas.min.js to war/js, uses in connect
  1192. - Adds lazy loading for sidebar search index
  1193. 05-SEP-2015: 5.0.3.1
  1194. - Fixes single click on connector handle
  1195. 05-SEP-2015: 5.0.3.0
  1196. - Fixes import from Dropbox, import for images
  1197. - Adds backlink to keyboard-shortcuts file
  1198. - Adds error handling for invalid URL parameter
  1199. 05-SEP-2015: 5.0.2.11
  1200. - Updates atlas.min to 5.0.2.11 in Confluence connect
  1201. - Fixes handling of utf8 chars in Confluence connect
  1202. - Updates search index to include new built-in shapes
  1203. - Save dialog no longer overrides existing extension
  1204. - Use URL for filename with url and no title parameter
  1205. - Adds diagram data to shortcuts.svg, moves to root
  1206. - Uses mxGraph 3.4.0.1 beta 3
  1207. 04-SEP-2015: 5.0.2.10
  1208. - Adds SVG version for keyboard shortcuts
  1209. - Adds ctrl+(shift+)cursor keys for resize
  1210. - Uses oauth2 token in sharing dialog
  1211. - Removes sharing error handling
  1212. - Uses mxGraph 3.4.0.1 beta 2
  1213. 04-SEP-2015: 5.0.2.9
  1214. - Uses capability check for client-side export
  1215. 03-SEP-2015: 5.0.2.8
  1216. - Fixes sharing timeout error handling
  1217. 03-SEP-2015: 5.0.2.7
  1218. - Fix save diagram for new page in Confluence connect
  1219. - Shows error message if sharing dialog times out
  1220. 03-SEP-2015: 5.0.2.6
  1221. - Adds clearWaypoints for multiple selection cells
  1222. - Removes wire-compression in proxy servlet
  1223. - Uses mxGraph 3.4.0.1 beta 1
  1224. 31-AUG-2015: 5.0.2.5
  1225. - Fixes directory name for keybase.io auth
  1226. 31-AUG-2015: 5.0.2.4
  1227. - Uses PNG+XML as default for Chrome App
  1228. - Adds PNG+XML export in Chrome App
  1229. - Uses client-side PNG+XML export in embed mode
  1230. - Fixes ctrl+drag on connector handle in FF
  1231. - Adds client-side PNG+XML file format
  1232. - Fixes possible NPE in Sidebar
  1233. 28-AUG-2015: 5.0.2.3
  1234. - Increases max zoom to 160x
  1235. - Fixes possible overwrite for storage file after DnD
  1236. - Uses base64 encoding for SVG data URIs
  1237. - URI encoded content attribute for SVG+XML files
  1238. - Adds faster startup for loading with url parameter
  1239. - Fixes App.loadUrl for binary files in IE9/10
  1240. 27-AUG-2015: 5.0.2.2
  1241. - Restores format for export JSON protocol event
  1242. 27-AUG-2015: 5.0.2.1
  1243. - Fixes possible NPE in App.saveLibrary, createFile
  1244. - Uses utf8 for imported SVG files
  1245. - Moves canvas export to EditorUi
  1246. - Fixes click method missing on div
  1247. - Uses mxGraph 3.4 beta 12
  1248. 27-AUG-2015: 5.0.2.0
  1249. - Fixes possible graph.createCurrentEdgeStyle undefined
  1250. - Fixes possible gapi.load is undefined error
  1251. - Changes color of normal unsaved status message
  1252. - Fixes possible NPE in OneDrive error handling
  1253. - Uses Youtube icon for quick start video link
  1254. - Uses numeric width and height for inserted text
  1255. - Fixes possible NPE in App.convertImages
  1256. - Fixes possible unsanitized HTML output
  1257. - Uses mxGraph 3.4 beta 11
  1258. 26-AUG-2015: 5.0.1.5
  1259. - Uses client-side export for PNG in embed mode
  1260. - Fixes character encoding for PNG export in embed mode
  1261. - Adds error handling in App.saveRequest, saveLocalFile
  1262. - Adds open in new window button in export dialog
  1263. - Fixes initialization for Dropbox client
  1264. - Updates keyboard shortcuts
  1265. - Uses mxGraph 3.4 beta 10
  1266. 25-AUG-2015: 5.0.1.4
  1267. - Uses mxGraph 3.4 beta 9
  1268. 25-AUG-2015: 5.0.1.3
  1269. - Fix ctrl+drag of container with selected children
  1270. - Fix move of edge label with selected terminals
  1271. - Adds tooltip for sidebar sections
  1272. - Uses mxGraph 3.4 beta 8
  1273. 24-AUG-2015: 5.0.1.2
  1274. - Fixes label for recent Google Drive files
  1275. - Uses mxGraph 3.4 beta 7
  1276. 24-AUG-2015: 5.0.1.1
  1277. - Adds open recent menu
  1278. - Removes debugging output in open.html
  1279. - Adds lazy loading for Dropbox client API
  1280. 23-AUG-2015: 5.0.1.0
  1281. - Keeps state URL parameter after open from Google Drive
  1282. - Fixes default window bounds for new files in Chrome App
  1283. 23-AUG-2015: 5.0.0.9
  1284. - Adds lazy loading for Google Drive client API
  1285. - Adds open in new window option for local export
  1286. 23-AUG-2015: 5.0.0.8
  1287. - Disables paste of empty string via keyboard shortcut
  1288. - Fixes slow ctrl-key handling with large clipboard data
  1289. - Sets default for adding plugins to p URL parameter
  1290. - Adds short key, handles escape in explore plugin
  1291. 21-AUG-2015: 5.0.0.7
  1292. - Ignores shape for default vertex styles
  1293. - Hides background image option in Chrome App
  1294. - Removes background image option in Chrome App
  1295. - Minor fix for logo in Chrome App
  1296. 21-AUG-2015: 5.0.0.6
  1297. - Fixes possible flickering for connector target drop
  1298. - Fixes logo position in Chrome App
  1299. - Fixes initial Chrome App window position
  1300. - Uses mxGraph 3.4 beta 6
  1301. 21-AUG-2015: 5.0.0.5
  1302. - Uses case insensitive sorting for browser file list
  1303. - Shows drop targets for drag on connector handle
  1304. - Fixes timer for shape drop target updates
  1305. - Fixes default window size and position for Chrome App
  1306. - Uses mxGraph 3.4 beta 6
  1307. 20-AUG-2015: 5.0.0.4
  1308. - Adds timer for update of shape drop targets
  1309. - Adds tooltips for shape drop targets
  1310. - Uses mxGraph 3.4 beta 5
  1311. 19-AUG-2015: 5.0.0.3
  1312. - Opens dropped XML in same window for empty diagram
  1313. - Fixes import of non-PNG images in Chrome App
  1314. - Improves error messages for OneDrive
  1315. - Merges view and options section in format panel
  1316. - Removes copy on connect option in format panel
  1317. - Fixes menus and action states in Chrome App
  1318. 19-AUG-2015: 5.0.0.2
  1319. - Fixes XML via drag and drop overwrites local storage file
  1320. - Fixes client-side export in Firefox, disables in Edge
  1321. - Fixes SVG for embed mode in Safari and Firefox
  1322. - Uses mxGraph 3.4 beta 4
  1323. 18-AUG-2015: 5.0.0.1
  1324. - Disables client-side image export in Firefox
  1325. - Fixes invalid characters for image export in Chrome
  1326. 18-AUG-2015: 5.0.0.0
  1327. - Uses mxGraph 3.4 beta 3
  1328. - Adds embedImages switch (default true) for SVG and SVG+XML in JSON protocol
  1329. - Changes autosave interval in Drive to 6 seconds
  1330. - Adds text labels for Google Drive previews in Firefox and Chrome
  1331. - Disables Google Drive in Opera
  1332. - Fixes export of binary files to cloud in IE 10
  1333. - Adds download button in revision history dialog
  1334. - Uses client-side PNG export in Firefox, Chrome and Opera
  1335. - Adds PNG image export in Chrome App
  1336. - Removes JPG export option
  1337. - Adds handling for invalid characters in Dropbox
  1338. - Fixes encoding of XML files in IE 9
  1339. - Adds error handling for large image export
  1340. - Cuts shapes and connections separately
  1341. - Deletes layers and connections separately
  1342. - Enables connections for text labels
  1343. - Fixes restore button state in revision dialog
  1344. - Uses untitled layer as name for new layers
  1345. - Adds rename layer button in layers window toolbar
  1346. 06-AUG-2015: 4.9.0.9
  1347. - Moves copy on connect option to after background
  1348. - Fixes initial value of foldingEnabled in realtime
  1349. - No longer hides handles while editing label
  1350. 06-AUG-2015: 4.9.0.8
  1351. - Improvements to Confluence connect functionality
  1352. 06-AUG-2015: 4.9.0.7
  1353. - Improvements to Confluence connect functionality
  1354. 06-AUG-2015: 4.9.0.6
  1355. - Improves error handling in Chrome App
  1356. - Adds top/bottom+left/right label position
  1357. - Adds import for local images in Chrome App
  1358. - More image resizing to reduce file size
  1359. - Chrome app no longer enforces file extension
  1360. - Adds handling for storage quota exceeded error
  1361. 05-AUG-2015: 4.9.0.5
  1362. - Fixes binary base64 data in JSON protocol for IE10
  1363. - Fixes handling of 403 error in Google client
  1364. - Adds legacy.draw.io for old drive app
  1365. - Ignores errors for native undo/redo
  1366. 05-AUG-2015: 4.9.0.4
  1367. - Improvements to Confluence connect functionality
  1368. 04-AUG-2015: 4.9.0.3
  1369. - Adds connect plugin
  1370. - Improvements to Confluence connect functionality
  1371. - Fixes possible NPE, handles table action errors
  1372. 04-AUG-2015: 4.9.0.2
  1373. - Uses mxGraph 3.4 beta 2
  1374. - Adds p URL parameter for app customization plugin IDs
  1375. - Fixes unexpected end of input, CSS in save status message
  1376. - Adds ctrl+backspace to delete shape with connections
  1377. 03-AUG-2015: 4.9.0.1
  1378. - Fixes initial char for immediate editing
  1379. - Fixes text size drop down in toolbar
  1380. 03-AUG-2015: 4.9.0.0
  1381. - Uses mxGraph 3.4 beta 1
  1382. - Adds xml to export event in JSON protocol
  1383. - Fixes rendering of trailing newlines in HTML labels
  1384. - Fixes repaint for in-place editor while zooming
  1385. - Fixes font size in format panel for zoomed text
  1386. - Adds rounded to copy style and default style
  1387. - Fixes paste into active layer and locked layers
  1388. - Adds ctrl+connect to copy source terminal
  1389. - Adds ctrl+mouse wheel to zoom on Windows and Linux
  1390. - Adds ctrl+delete to delete shape with connections
  1391. - Deletes shapes and connections separately
  1392. - Changes connect (plus) icon to arrow icon
  1393. - Copy on connect is now disabled by default
  1394. - Adds cross-browser Ctrl-/Cmd+B/I/U for bold, italic, underline
  1395. - Adds shift in keyboard shortcut for ungroup, toBack
  1396. - Fixes update of page view option in format panel
  1397. - Adds message with save link for new unsaved files
  1398. - Fixes math rendering while editing and zooming
  1399. - Adds splash=0 URL parameter to bypass splash screen
  1400. - Fixes reset while entering URL in background image dialog
  1401. - Adds link to unsaved data status message for saving
  1402. 27-JUL-2015: 4.8.5.14
  1403. - Improvements to Confluence connect functionality
  1404. 24-JUL-2015: 4.8.5.13
  1405. - Improvements to Confluence connect functionality
  1406. 24-JUL-2015: 4.8.5.12
  1407. - Adds autosave option to load message in JSON protocol
  1408. - Adds randomized Chrome App and Docs Add-on link in footer
  1409. - Removes link to WordPress plugin in footer
  1410. 23-JUL-2015: 4.8.5.11
  1411. - Removes development code for in-place editing
  1412. 23-JUL-2015: 4.8.5.10
  1413. - Corrects Hebrew and Arabic resources base directions
  1414. 22-JUL-2015: 4.8.5.9
  1415. - Replaces technology with wordpress plugin in footer
  1416. - Fixes saving of local library files to device
  1417. - Changes alignment of social icons in footer
  1418. - Removes debugging output in More Shapes dialog
  1419. 21-JUL-2015: 4.8.5.8
  1420. - Adds html export format option in JSON protocol
  1421. - Fixes exporting in embed mode
  1422. - Fixes splash screen after cancel import from browser in embed mode
  1423. - Restores social icons in footer
  1424. - Disables import menu for read-only files
  1425. - Fixes enabled state of grid menu item
  1426. - Fixes enabled state of view toolbar items in embed mode
  1427. 20-JUL-2015: 4.8.5.7
  1428. - Uses new more shapes dialog in quirks mode
  1429. - Fixes special characters for filename in OpenServlet
  1430. - Adds error message for invalid file encoding in OpenServlet
  1431. - Fixes enabled state of Extras menu if no file open
  1432. - Adds fileId for redirect to realtime if no file open
  1433. - Removes Google file menu items if no file is open
  1434. 18-JUL-2015: 4.8.5.6
  1435. - Adds filter for license checks
  1436. 18-JUL-2015: 4.8.5.5
  1437. - Fixes initial state for toolbar items, share action
  1438. - Adds local URL parameter for device app mode
  1439. - Remember me in auth dialog is now checked by default
  1440. 18-JUL-2015: 4.8.5.4
  1441. - Fixes lost Google authentication cookie
  1442. - Adds error handler in JS response from OpenServlet
  1443. 17-JUL-2015: 4.8.5.3
  1444. - Restores i18n resources in Chrome App
  1445. 16-JUL-2015: 4.8.5.2
  1446. - Restores lost arrange menus
  1447. 16-JUL-2015: 4.8.5.1
  1448. - Adds error message for import of local images in Chrome App
  1449. - Fixes width of filename element in header
  1450. - Adds xmlsvg format, xml for all formats in export message
  1451. - Adds support for disabled export options in Google Drive
  1452. - Improves error handling in DropboxClient and DriveClient
  1453. - Fixes various actions and menus for read-only files
  1454. - Uses new more shapes dialog in Chrome App
  1455. - Removes unused files from Chrome App package
  1456. 15-JUL-2015: 4.8.5.0
  1457. - Fixes timing issue in revision dialog after restore
  1458. - Reduces size of keyboard-shortcuts.png
  1459. - Adds new more shapes dialog with preview in online mode
  1460. - Moves actual size action from toolbar to zoom dropdown
  1461. - Uses mxGraph 3.3.1.2 beta 5
  1462. 13-JUL-2015: 4.8.4.2
  1463. - Removes gradient, adds connection type in toolbar
  1464. 13-JUL-2015: 4.8.4.1
  1465. - Adds PNG export for offline mode in Google Chrome
  1466. - Fixes creating files via create button in Drive
  1467. - Changes footer, moves social links to help menu
  1468. 11-JUL-2015: 4.8.4.0
  1469. - Avoids closing closed document in DriveRealtime
  1470. - Uses mxGraph 3.3.1.2 beta 4
  1471. - Fixes possible NPE in mxEdgeStyle.SegmentConnector
  1472. - Moves handling of decideLater to callback
  1473. 11-JUL-2015: 4.8.3.9
  1474. - Fixes handling of decide later in create dialog
  1475. - Click on collaborator in realtime shows last selection
  1476. - Ignores empty selection to reduce history size in realtime
  1477. - Ignores possible quota exceeded in DriveClient.setUserId
  1478. - Fixes possible NPE in StorageDialog, local file save
  1479. 10-JUL-2015: 4.8.3.8
  1480. - Updates keyboard shortcuts for touch devices
  1481. - Fixes translation for copyOf in RTL languages
  1482. - Fixes DIV for embedded diagrams in quirks, IE8 standards mode
  1483. - Ignores User cancelled errors in Chrome App
  1484. - Uses mxGraph 3.3.1.2 beta 3
  1485. - Fixes accidental inserts of labels with double click
  1486. - Fixes initial value, clear icon in shape search for IE8
  1487. - Removes Azure from default sidebars
  1488. - Adds networkshapes URL parameter for testing
  1489. - Fixes insert location for created shapes
  1490. - Adds styled table, title in misc section
  1491. - Replaces circles with ellipses in general section
  1492. 08-JUL-2015: 4.8.3.7
  1493. - Fixes file extensions for saving via servlet
  1494. - Fixes save of browser file as device file
  1495. - Disables local save in FF11, IE6, IE7, IE8
  1496. - Fixes handling of invalid state args
  1497. - Fixes encoding for cross-browser use of OpenServlet
  1498. - Fixes navigate dialog for click on filename in IE8
  1499. - Fixes ignored bottom and right border for export
  1500. - Disables vertical scroll for fit page width
  1501. - Disables insert, layout menu for locked layers
  1502. - Disables insert, paste for locked layers
  1503. - Adds keyboard shortcuts in help menu
  1504. 06-JUL-2015: 4.8.3.6
  1505. - Updates French and Arabic i18n
  1506. 02-JUL-2015: 4.8.3.5
  1507. - Fixes NPE in insert menu
  1508. 02-JUL-2015: 4.8.3.4
  1509. - Fixes possible NPE for insert dropdown in toolbar
  1510. 02-JUL-2015: 4.8.3.3
  1511. - Uses simple menu, toolbar and sidebar
  1512. - Rearranges various menus
  1513. 30-JUN-2015: 4.8.3.2
  1514. - Disables cleanup of selection state in realtime
  1515. - Allows decimal values for size and position in arrange panel
  1516. - Changes search label in Help menu to English
  1517. - Fixes swimlane selection on mouse up
  1518. - Adds tooltip for small spinner in Google Drive
  1519. - Fixes double click text insert in locked layers
  1520. - Fixes position for user element
  1521. - Adds fallback for moving layers on touch devices
  1522. 30-JUN-2015: 4.8.3.1
  1523. - Removes Computer Networks from More shapes dialog
  1524. 30-JUN-2015: 4.8.3.0
  1525. - Fixes save action in non-embedded mode
  1526. - Adds locking for layers, updates dialog
  1527. - Enables edit metadata for diagram
  1528. - Moves small file spinner to menubar
  1529. - Improves various labels in the UI
  1530. - Adds view menu in simple mode
  1531. - Improves German translation
  1532. 29-JUN-2015: 4.8.2.5
  1533. - Aligns language menu with UI elements
  1534. - Moves formatPanel in normal view menu
  1535. - Adds toBack/toFront in simple toolbar
  1536. - Fixes anti aliasing for rounded icon
  1537. 27-JUN-2015: 4.8.2.4
  1538. - Fixes embed buttons in text toolbar mode
  1539. - Fixes dropdown location for toolbar in normal mode
  1540. - Fixes update of font and size after toolbar switch
  1541. 27-JUN-2015: 4.8.2.3
  1542. - Fixes font name and size in toolbar
  1543. - Adds text format toolbar in simple mode
  1544. - Adds gradient, toggle rounded for toolbar in simple mode
  1545. - Adds special i18n language bundle
  1546. - Removes GIF image export option
  1547. 26-JUN-2015: 4.8.2.2
  1548. - Add embedded image support for .vsdx import
  1549. - Rearranges help menu, changes 10 tips video
  1550. 25-JUN-2015: 4.8.2.1
  1551. - Fixes cursor for menubar, toolbar, sidebar items
  1552. - Uses current mouse location for Ctrl(+Shift)+K
  1553. - Adds shift+tab to select previous cell
  1554. - Adds zoom, format toolbar buttons in simple mode
  1555. - Moves layout from advanced to main menubar in simple mode
  1556. - Uses Atlas 5.7 CSS style for toolbar items
  1557. - Uses mxGraph 3.3.1.2 beta 2
  1558. 24-JUN-2015: 4.8.2.0
  1559. - Moves language menu to top, right corner
  1560. - Adds insert text, rectangle, ellipse
  1561. - Fixes location for single click inserts
  1562. - Adds simple=1 URL parameter (experimental)
  1563. - Fixes numeric key shortcuts for numeric keypad
  1564. - Fixes minimum height for exported images
  1565. - Fixes zoom button mouse clicks in embedded diagrams on touchscreens
  1566. - Adds space+drag for panning, handles tab while editing
  1567. - Uses mxGraph 3.3.1.2 beta 1
  1568. 23-JUN-2015: 4.8.1.4
  1569. - Adds saveAndExit, modified URL parameters for embed mode
  1570. - Adds status messages, modified flags, resource keys
  1571. - Fixes SVG export via messages
  1572. - Uses mxGraph 3.3.1.1
  1573. 19-JUN-2015: 4.8.1.3
  1574. - Improves Atlassian Connect integration
  1575. 18-JUN-2015: 4.8.1.2
  1576. - Improves Atlassian Connect integration
  1577. 18-JUN-2015: 4.8.1.1
  1578. - Shows embed buttons after loading diagram
  1579. - Adds xmlpng format for export and load message
  1580. - Adds modified parameter in exit event message
  1581. 18-JUN-2015: 4.8.1.0
  1582. - Adds export messages in JSON protocol, png export
  1583. - Fixes loading HTML files with ampersand in title
  1584. - Uses mxGraph 3.3.1.0
  1585. 18-JUN-2015: 4.8.0.6
  1586. - Adds proto, spin URL parameters for embed mode
  1587. - Fixes import of Gliffy files
  1588. 17-JUN-2015: 4.8.0.5
  1589. - Renames image export servlet
  1590. 16-JUN-2015: 4.8.0.4
  1591. - Click on plus icon in stack does no longer connect to clone
  1592. - Fixes import of VSDX files via drag and drop
  1593. - Fixes broken images, hardcoded delay for image export
  1594. - Fixes child order for moving selected cells in stacks
  1595. - Fixes demo mode, decide later option for iOS devices
  1596. - Uses mxGraph 3.3.1.0 beta 6
  1597. 15-JUN-2015: 4.8.0.3
  1598. - Uses (shift) click on plus icon to (connect and) clone
  1599. - Click on selected child in swimlane selects swimlane
  1600. - Uses chooser for exporting files in Chrome App
  1601. - Fixes demo mode for persistent backend choice
  1602. - Fixes size of replace shape for touch devices
  1603. - Removes decide later option in Splash screen
  1604. - Reduces file size for dummy PNG images
  1605. - Fixes Google Drive, OneDrive in IE11
  1606. - Enter key starts editing like F2 key
  1607. - Uses move cursor for sidebar items
  1608. - Click on sidebar stops editing
  1609. - Adds logging for shape search
  1610. - Uses mxGraph 3.3.1.0 beta 5
  1611. 08-JUN-2015: 4.8.0.2
  1612. - Uses new export servlet URL
  1613. - Fixes font for math export
  1614. - Updates Hungarian and Russian translation
  1615. - Limits zoom to 20x
  1616. - Sets initial state of general sidebar to expanded
  1617. - Fixes delete action during interactive operation
  1618. - Remember in splash defaults to true
  1619. - Fixes scaled drop connect to edge
  1620. 05-JUN-2015: 4.8.0.1
  1621. - Improves mousewheel zoom performance
  1622. - Fixes orthogonal edge router
  1623. - Uses mxGraph 3.3.1.0 beta 4
  1624. 03-JUN-2015: 4.8.0.0
  1625. - Adds caching for formatted text labels and math
  1626. - Fixes initial svg/html save in undefined mode
  1627. - Uses mxGraph 3.3.1.0 beta 3
  1628. - Fixes printing with math
  1629. 02-JUN-2015: 4.7.0.4
  1630. - No longer sends local save to server if supported
  1631. - Adds status pass-through for proxied requests
  1632. - Fixes ignored filenames for bitmap export
  1633. - Adds export for SVG with embedded XML
  1634. - Fixes import of files in Chrome App
  1635. - Adds support for embedded SVG files
  1636. 01-JUN-2015: 4.7.0.3
  1637. - Adds cloud support in advanced export dialog
  1638. - Hides toolbar for print in chromeless mode
  1639. - Fixes modified state in embed mode
  1640. - Fixes row drop location on lists
  1641. - Adds returnbounds URL parameter
  1642. - Adds ER schema row shapes
  1643. 30-MAY-2015: 4.7.0.2
  1644. - Fixes click required for connect on iOS
  1645. - Fixes replace shape delay for images
  1646. - Fixes i18n Dropbox app folder check
  1647. 29-MAY-2015: 4.7.0.1
  1648. - Adds export to Google Drive, Dropbox and OneDrive
  1649. - Fixes paste of Gliffy data into diagram
  1650. - Fixes lost connections for duplicate cells
  1651. - Fixes changing points in unconnectable groups
  1652. - Runs layouts for groups and finds tree roots
  1653. - Adds edit link in arrange format panel
  1654. - Adds Dropbox and OneDrive options in Link Dialog
  1655. - Fixes moved edge labels when zoom is changed
  1656. - Changes initial mode to undefined in client mode
  1657. - Updates format panel state in embed mode
  1658. - Tidies up format panel in Atlas theme
  1659. - Adds tooltip for rightclick pan
  1660. - Uses mxGraph 3.3.1.0 beta 2
  1661. 28-MAY-2015: 4.7.0.0
  1662. - Uses mxGraph 3.3.1.0 beta 1
  1663. - Adds list, dimension, collate and sort in advanced sidebar
  1664. - Moves text shapes from Advanced to General sidebar
  1665. - Shift-click on plus icon creates new connection
  1666. - Adds 'clear waypoints' in arrange format panel
  1667. - Fixes incremental selection of cell hierarchies
  1668. - Fixes NS_ERROR_NOT_IMPLEMENTED in Firefox 3.6
  1669. - Sets orthogonal direction for fields and rows
  1670. - Drop on lifelines replaces participant shape
  1671. - Direct child selection for UML and ER shapes
  1672. - Fixes text rendering with overflow=fill
  1673. - Adds delay for replace shape icon
  1674. - Adds schema row in ER sidebar
  1675. 22-MAY-2015: 4.6.1.2
  1676. - Improves local shape search, adds tags
  1677. 22-MAY-2015: 4.6.1.1
  1678. - Fixes name encoding when moving files to Dropbox apps folder
  1679. 21-MAY-2015: 4.6.1.0
  1680. - Fixes loading files from non-app folder in Dropbox
  1681. - Handles 404 status codes when loading Dropbox files
  1682. - Fixes loading of libraries files as diagrams
  1683. - Fixes ignored background in advanced image export
  1684. - Fixes paste here menu for chromeless mode
  1685. - Makes toolbar for chromeless mode transparent
  1686. 20-MAY-2015: 4.6.0.11
  1687. - Fixes possible NPE in searchEntries
  1688. 20-MAY-2015: 4.6.0.10
  1689. - Fixes move of parent after click on child connect icon on touch devices
  1690. - Fixes last result page in search
  1691. - Fixes possible NPE in Revision dialog
  1692. - Fixes detection of file types in URLs with parameters
  1693. - Catches decoding errors in extractGraphModelFromPng
  1694. - Fixes appIcon link for current file
  1695. - Fixes possible NPE in New dialog
  1696. 19-MAY-2015: 4.6.0.9
  1697. - Uses mxGraph 3.3.0.1
  1698. - Fixes second click on 1:1 for chromeless mode with no page view
  1699. - Fixes flow for picking Dropbox files
  1700. - Adds paste here action in context menu
  1701. - Enables math typesetting in demo mode
  1702. - No longer sets initial mode for demo=1
  1703. 18-MAY-2015: 4.6.0.8
  1704. - Uses mxGraph 3.3.0.1 beta 3
  1705. - Fixes forward references in FF ESR
  1706. - Fixes moving and selection for parts and groups
  1707. 18-MAY-2015: 4.6.0.7
  1708. - Disables Dropbox in IE9
  1709. - Uses mxGraph 3.3.0.1 beta 2
  1710. - Keeps page title before loading file
  1711. - Fixes possible NPE in mxShape.destroyCanvas
  1712. - Fixes loading from URL in old versions of IE
  1713. 16-MAY-2015: 4.6.0.6
  1714. - Opens and imports all .vsdx, Gliffy and PNG+XML files
  1715. - Adds Ctrl+connect to disable copy of source
  1716. - Fixes composite drop connect offset
  1717. 14-MAY-2015: 4.6.0.5
  1718. - Adds timer for drop connect target switching
  1719. - Fixes handling of "new" action in draft mode
  1720. - Adds storage option in save and copy dialog
  1721. - Adds support for libraries in Chrome App
  1722. - Replaces "Ask later" with "Decide later"
  1723. - Fixes composite drop connect location
  1724. - Removes UML shapes with HTML labels
  1725. - Allows for compressed XML templates
  1726. 11-MAY-2015: 4.6.0.4
  1727. - Fixes offset for drop connect edge on stack child
  1728. - Adds support for undefined mode in save action
  1729. - Adds ask later option in splash screen
  1730. - Changes initial mode to undefined for url parameter
  1731. - Adds ask later option in create dialog
  1732. - Allows PNGs for create and url URL parameters
  1733. - Fixes handling of extra spaces in search box
  1734. - Fixes double click on disabled graphs
  1735. 08-MAY-2015: 4.6.0.3
  1736. - Uses mxGraph 3.3.0.1 beta 1
  1737. - Improves Japanese and Danish translations
  1738. - Fixes DOM error when opening files in IE9
  1739. - Fixes handling of libs parameter
  1740. - Improves metadata and image dialog
  1741. - Fixes accidental loss of meta data
  1742. - Fixes handling of clicks in layers dialog for Chrome dev channel
  1743. 05-MAY-2015: 4.6.0.2
  1744. - Fix for IE echo open
  1745. 04-MAY-2015: 4.6.0.1
  1746. - NPE fix for Gliffy import
  1747. 03-MAY-2015: 4.6.0.0
  1748. - First iteration of new .vsdx importer
  1749. 23-APR-2015: 4.5.0.5
  1750. - Uses mxGraph 3.3.0.0
  1751. - Improves Japanese translations
  1752. - Adds rounded and glass format options for UML lifelines
  1753. - Fixes replace shape icon in older IE versions
  1754. 23-APR-2015: 4.5.0.4
  1755. - Adds global mxLoadSettings switch, Sidebar.prototype.searchFileUrl
  1756. - Fixes folding icons for embedded diagrams
  1757. - Adds orthogonalPerimeter for UML activation
  1758. - Adds UML sequence diagram building blocks
  1759. - Adds timer for replace shape and connect
  1760. 22-APR-2015: 4.5.0.3
  1761. - Limits revision history preview default scale
  1762. - Limits drive thumbnail sizes
  1763. - Adds timer-based outline connect
  1764. - Fixes accidental loss of modified shape data
  1765. - Fixes horizontal tree layout
  1766. - Fixes scaled rendering of UML frames
  1767. - Fixes shadow for UML destroy shape
  1768. 21-APR-2015: 4.5.0.2
  1769. - Fixes search UI for atlas theme
  1770. - Uses mxGraph 3.2.0.1 beta 7
  1771. - Fixes search button state in offline mode
  1772. 21-APR-2015: 4.5.0.1
  1773. - Maps iconfinder search to global search
  1774. 21-APR-2015: 4.5.0.0
  1775. - Adds shape search
  1776. - Uses mxGraph 3.2.0.1 beta 6
  1777. - Fixes click on paper size radio button labels
  1778. - Improves Japanese and Danish translations
  1779. - Fixes image action if no cells are selected
  1780. - Adds UML boundary, entity and control shapes and lifelines
  1781. - Uses data URIs for various images
  1782. 15-APR-2015: 4.4.1.5
  1783. - Adds plus click handling for child cells
  1784. - Fixes Russian, Danish and Spanish translations
  1785. 13-APR-2015: 4.4.1.4
  1786. - Fixes CORS for MathJax in embedded diagrams
  1787. 13-APR-2015: 4.4.1.3
  1788. - Uses mxGraph 3.2.0.1 beta 5
  1789. - Fixes possible invisible buttons in more shapes dialog
  1790. - Enables local file saving for non-Safari browsers
  1791. - Scales data URIs above 1M (hold Ctrl to bypass)
  1792. - Uses local copy of MathJax
  1793. - Uses static JS for embedding with no custom shapes
  1794. - Fixes edges in revision dialog preview
  1795. - Adds support for composite cells
  1796. - Fixes conversion of some numeric text labels
  1797. - Fixes shadow for transparent ellipses in Firefox
  1798. - Adds handle for hexagon shape
  1799. - Fixes duplicate extension in create dialog
  1800. - Fixes make copy of HTML files for Dropbox and OneDrive
  1801. 10-APR-2015: 4.4.1.2
  1802. - Fixes NPE in OpenServlet
  1803. 09-APR-2015: 4.4.1.1
  1804. - Fixes caching of images for Google Drive thumbnails
  1805. 09-APR-2015: 4.4.1.0
  1806. - Uses mxGraph 3.2.0.1 beta 4
  1807. - Fixes undo for text editing and insert labels
  1808. - Uses Ctrl+Shift+Z for redo on Mac
  1809. - Changes keyboard shortcut for autosize to Ctrl+Shift+Y
  1810. - Inserts new cell after editing shape in createShape
  1811. - Uses orthogonal edge style in activity and sequence diagrams
  1812. - Uses grid for lifline and UML frame handle
  1813. - Fixes roundtrip for numeric labels with 0 prefix
  1814. - Adds UML frame shape and handle, participant style for lifeline
  1815. - Disables recursive resize for UML lifelines
  1816. - Pre-selects first entry in revision dialog, shows full timestamp
  1817. - Ignores pointer events for transparent groups
  1818. - Fixes removing cells from selected parents
  1819. - Adds arc handle for rounded hexagon shape
  1820. 25-MAR-2015: 4.4.0.9
  1821. - Uses mxGraph 3.2.0.1 beta 3
  1822. - Fixes selection state after enter and exit group
  1823. - Fixes update of unchanged geometries in stack layouts
  1824. - Renames navigation switch, moves to advanced menu
  1825. 18-MAR-2015: 4.4.0.8
  1826. - Uses mxGraph 3.2.0.1 beta 2
  1827. - Fixes possible NPE in restore
  1828. 18-MAR-2015: 4.4.0.7
  1829. - Fixes format sidebar, buttons in embed mode
  1830. - Fixes canvas state for certain shapes
  1831. 17-MAR-2015: 4.4.0.6
  1832. - Fixes missing restore in mxgraph.aws2.sdks.nodejs
  1833. 14-MAR-2015: 4.4.0.5
  1834. - Uses mxGraph 3.2.0.1 beta 1
  1835. - Hides inactive custom handles for edges if custom handle is active
  1836. - Adds header for SVG, declaration for XML exports
  1837. 13-MAR-2015: 4.4.0.4
  1838. - Uses mxGraph 3.2.0.0
  1839. - Fixes HTML embed dialog size and preview in IE
  1840. - Adds arcSize handle
  1841. - Adds tooltips for plus and rotate handle
  1842. - Hides tooltip when editing starts
  1843. 12-MAR-2015: 4.4.0.3
  1844. - Uses mxGraph 3.2.0.0 beta 4
  1845. - Fixes autosave, makes files read-only in chromeless mode
  1846. - Fixes embedded iframe height, timing problems in embed preview
  1847. - Fixes fit, resize and autosize for chromeless and embed mode
  1848. - Fixes error handling, adds console output for errors in embed
  1849. - Trims data for embedded diagrams to fix inflate in IE
  1850. 11-MAR-2015: 4.4.0.2
  1851. - Uses mxGraph 3.2.0.0 beta 3
  1852. - Adds keyboard shortcuts for zoom actions
  1853. - Adds Or-, Sum- and LineEllipse in Advanced sidebar
  1854. - Fixes escape for all custom handles
  1855. - Fixes rounding for edge arrow sizes
  1856. - Makes flow layout settings available via cell style
  1857. - Sets interRankCellSpacing to 50 in flow layouts
  1858. - Shows/hides link hint if link changes
  1859. - Removes text format change for edit link action
  1860. - Fixes renaming of storage files and libraries
  1861. - Fixes conversion of newlines for formattedText action
  1862. - Fixes rounding for drop connect of groups with edges
  1863. - Fixes drop connect location for child cell in container
  1864. - Adds rounding in mxConnectionHandler.createTargetVertex
  1865. - Add rounding for offset after Shift+collapse/expand
  1866. - Fix duplicate action for cells and descendants
  1867. 10-MAR-2015: 4.4.0.1
  1868. - Uses mxGraph 3.2.0.0 beta 2
  1869. - Selects parents after deleting cells
  1870. - Fixes delayed selection after folding
  1871. - Enables navigation in chromeless mode
  1872. - Uses Graph subclass in embedded diagrams
  1873. - Adds nav parameter for embedded diagrams
  1874. - Adds Ctrl+Enter for cloning cells "in-place"
  1875. - Adds autosave for change of navigation switch
  1876. - Fixes focus after stop editing with Ctrl+Enter
  1877. - Disables extending parents with stack layouts on add
  1878. - Shift+expand/collapse moves siblings cells (experimental)
  1879. - Expand/collapse resizes parent stack (press alt to disable)
  1880. - Collapsed swimlane in horizontal stack has vertical label
  1881. - Ignores previous width/height for collapse/expand in stack
  1882. - Fixes position of close icon in format panel for quirks, FF
  1883. - Changes key shortcuts for expand and collapse (Ctrl+Home/End)
  1884. - Changes key shortcuts for edit and enter group (Ctrl+Shift+Home/End)
  1885. - Adds key shortcuts for select next/previous/parent/child (Ctrl+Tab/Ctrl+Shift+Tab)
  1886. 07-MAR-2015: 4.4.0.0
  1887. - Uses mxGraph 3.2.0.0 beta 1
  1888. - Fixes size handles for locked shape
  1889. - Collapsed swimlane in vertical stack has horizontal label
  1890. - Fixes nested container layout
  1891. - Adds swimlaneFillColor to copied styles
  1892. - Changes UML lifeline container state
  1893. - Adds new UML and ER elements in UML sidebar
  1894. - Fixes replace shape applies marker styles for edges
  1895. - Fixes drop on container from sidebar, stops editing
  1896. - Adds table elements in entity relation sidebar
  1897. - Adds alt-shift to only highlight drop target
  1898. 06-MAR-2015: 4.3.0.2
  1899. - Changes default edge style to entity relation in ER sidebar
  1900. - Adds table, row and 1 mandatory to 1 optional relation in ER sidebar
  1901. - Adds edit shape option in format menu and style panel
  1902. - Changes title and size of edit style dialog
  1903. - Adds create shape option in sidebar footer
  1904. 05-MAR-2015: 4.3.0.1
  1905. - Adds Options, Advanced, Custom shapes menu
  1906. - Adds control key to apply arrow handle to opposite side
  1907. - Fixes arrow handles to appear on same side
  1908. - Fixes custom shapes in embedded diagrams
  1909. - Uses mxGraph 3.1.3.1 beta 2
  1910. 05-MAR-2015: 4.3.0.0
  1911. - Adds shapeeditor.html for implementing custom shapes
  1912. - Invokes turn (rotate 90 degrees) for click on rotate handle
  1913. - Adds experimental support for custom stencils via shape=stencil(value)
  1914. - Uses mxGraph 3.1.3.1 beta 1
  1915. 04-MAR-2015: 4.2.3.2
  1916. - Fixes zoom buttons for chromeless mode
  1917. - Adds link to 10 tips video in help menu
  1918. - Adds and removes a number of styles in copy/paste style
  1919. - Fixes undefined not a function in autosave on error
  1920. - Shows 100 revisions in Dropbox revision history dialog
  1921. - Fixes handling of rev URL parameter in Dropbox client
  1922. 03-MAR-2015: 4.2.3.1
  1923. - Fixes modified flag update after save response
  1924. - Adds revision history dialog for Dropbox files
  1925. - Shows timestamp for same day, current revision in revision history
  1926. - Does no longer show layers/restore libraries in chromeless mode
  1927. - Adds hover style for images in sidebar titles
  1928. - Fixes wrapping in sidebar titles with icons
  1929. - Fixes copy paste of orphaned relative child cells
  1930. - Shows small spinner while updating Drive thumbnails
  1931. - Shows small spinner for autosave of libraries and files
  1932. 02-MAR-2015: 4.2.3.0
  1933. - Adds cells in libraries
  1934. 01-MAR-2015: 4.2.2.0
  1935. - Makes html extension default for cloud files
  1936. - Adds xhtml namespace in html files
  1937. - Fixes autosize icon in Arrange panel
  1938. 01-MAR-2015: 4.2.1.5
  1939. - Disabes OneDrive in demo and stealth mode
  1940. - Changes html files to redirect to edit URL
  1941. 28-FEB-2015: 4.2.1.2
  1942. - Fixes refresh of outline window after hiding
  1943. - Disables OneDrive on iOS
  1944. - Keeps html extension for open via drag and drop
  1945. - Fixes file extensions for download of html files
  1946. - Centers buttons in confirm dialog
  1947. - Adds immediate save for change from html to other extension
  1948. 27-FEB-2015: 4.2.1.1
  1949. - Fixes download as XML, embedded PNG with XML for html files
  1950. - Rename file to html creates revision and saves
  1951. - Edit in local HTML files creates copy
  1952. - Fixes possible NPE
  1953. 27-FEB-2015: 4.2.1.0
  1954. - Saves html files as embedded HTML with edit link
  1955. 27-FEB-2015: 4.2.0.1
  1956. - Fixes URL for windows live API
  1957. 27-FEB-2015: 4.2.0.0
  1958. - Adds snapping for custom arrow handles
  1959. - Fixes background image in image and PDF export
  1960. - Adds support for OneDrive
  1961. - Fixes extensions for library files
  1962. - Adds xml extension for files in Google Drive
  1963. - Adds snapping for new vertical/horizontal connections
  1964. - Adds shift to disable adding waypoints, custom handles
  1965. - Adds orange color style, uses in format panel
  1966. - Adds clibs URL parameter for custom libraries
  1967. - Fixes URL decoding for libs URL parameter
  1968. - Resets revision timer after create revision
  1969. - Simplified edge entries for general sidebar
  1970. - Fixes russian translations
  1971. - Uses mxGraph 3.1.2.3 beta 8
  1972. 21-FEB-2015: 4.1.0.5
  1973. - Adds edge shape/style toolbar items
  1974. - Adds vertical text option
  1975. - Adds simple arrow shape
  1976. - Uses mxGraph 3.1.2.3 beta 7
  1977. 20-FEB-2015: 4.1.0.4
  1978. - Changes thumbnail size in Google Drive to 480px
  1979. - Disables zoom with mousewheel if dialogs are open
  1980. - Adds zoom controls for chromeless mode
  1981. - Adds version in about dialog
  1982. - Adds preview in revision history dialog
  1983. - Uses mxGraph 3.1.2.3 beta 6
  1984. 19-FEB-2015: 4.1.0.3
  1985. - Uses mxGraph 3.1.2.3 beta 5
  1986. - Fixes possible NPE in arrow shape
  1987. - Adds preview dialog for revision history
  1988. - Adds preview in iframe embed dialog
  1989. 19-FEB-2015: 4.1.0.2
  1990. - Adds preview in embed dialog
  1991. - Fixes possible NPE in arrow shape
  1992. - Fixes invalid argument error for drag and drop of text in IE10
  1993. - Uses mxGraph 3.1.2.3 beta 4
  1994. 19-FEB-2015: 4.1.0.1
  1995. - Fixes NPE in embed dialog
  1996. 19-FEB-2015: 4.1.0.0
  1997. - Adds waypoints for arrows and links
  1998. - Adds glass effect to current style
  1999. - Fixes gradient color action state
  2000. - Adds arrows to advanced sidebar
  2001. - Adds connections to general sidebar
  2002. - Removes edge styles from toolbar
  2003. - Separates waypoints and connection in style panel
  2004. - Adds edge width option in arrange panel
  2005. - Changes replace existing diagram to open in this window
  2006. - Fixes connection points for tee and corner shape
  2007. - Fixes iconfinder search client for github domain
  2008. - Adds thumb=0 URL parameter to disable thumbnails in Drive
  2009. - Adds autosize option in embed dialog for responsive pages
  2010. - Adds rounded support for single- and doubleArrow vertices
  2011. - Disables splitting edges with edges
  2012. - Removes waypoints for straight segments
  2013. - Inverts order of lineend/-start options in format panel
  2014. - Removes dos.xml
  2015. - Uses mxGraph 3.1.2.3 beta 3
  2016. 13-FEB-2015: 4.0.1.2
  2017. - Safeguards Dropbox client
  2018. - Changes error reporting to 2x2.png
  2019. 13-FEB-2015: 4.0.1.1
  2020. - Fixes sidebar entry for device libraries after save
  2021. - Fixes object is not a function in File.autosave
  2022. - Makes creation of thumbnails safer
  2023. - Disables writingDirection for no selection
  2024. 13-FEB-2015: 4.0.1.0
  2025. - Fixes vertical center for default text size
  2026. - Fixes update of XML in Drive before unload
  2027. - Allows negative spacing values in format panel
  2028. - Uses webViewLink metadata in getPublicUrl
  2029. - Disables Google Drive for IE9
  2030. - Adds thumbnails for Google Drive files
  2031. - Fixes possible localStorage undefined error
  2032. - Adds writing direction in menu and format panel
  2033. - Changes labels in feedback dialog and emails
  2034. - Fixes clipboard for selected cells and descendants
  2035. - Uses mxGraph 3.1.2.3 beta 2
  2036. 10-FEB-2015: 4.0.0.1
  2037. - Fixes broken arrow shape
  2038. 10-FEB-2015: 4.0.0.0
  2039. - Adds library files for device, local storage and dropbox
  2040. - Fixes change of open libraries from different tabs
  2041. - Fixes summing junction and or shape in Flowcharts
  2042. - Adds drag and drop in URL and filename dialogs
  2043. - Adds drag and drop for opening files from URL
  2044. - Adds download option in library dialog
  2045. - Fixes ctrl/cmd removes focus for input
  2046. - Adds recursive rubberband selection
  2047. - Adds decimal values for angles
  2048. - Fixes z-index for subdialogs
  2049. - Adds open library from URL
  2050. - Fixes possible NPEs
  2051. - Uses mxGraph 3.1.2.3 beta 1
  2052. 09-FEB-2015: 3.8.0.5
  2053. - Fixes drag and drop for Gliffy data and HTML markup
  2054. - Fixes possible arguments error in FF 13
  2055. - Fixes possible value outside range error
  2056. - Fixes no click on DIV in KHTML
  2057. - Fixes possible NPEs
  2058. - Uses mxGraph 3.1.2.2
  2059. 07-FEB-2015: 3.8.0.4
  2060. - Fixes gradient option with no fill color
  2061. - Adds rotation for edge labels
  2062. - Fixes default size for double click on background
  2063. - Uses mxGraph 3.1.2.2 beta 6
  2064. 07-FEB-2015: 3.8.0.3
  2065. - Chrome App reads PNG+XML files
  2066. - Adds drag and drop for text editor
  2067. - Adds drag and drop for image and link dialogs
  2068. - Fixes NPE in older versions of Chrome
  2069. - Uses mxGraph 3.1.2.2 beta 5
  2070. 05-FEB-2015: 3.8.0.2
  2071. - Fixes parsing of PNG+XML files in non-IE browsers
  2072. - Double click on background adds autosize textbox
  2073. - Fixes possible NPE for autosize
  2074. - Fixes possible NaN for stepper with empty input
  2075. 04-FEB-2015: 3.8.0.1
  2076. - Adds keyboard shortcut, buffer for autosize
  2077. - Fixes SVG export for some HTML entities in IE8 and IE11
  2078. - Adds close button in format panel
  2079. - Moves dialogs on top of footer
  2080. - Uses mxGraph 3.1.2.2 beta 4
  2081. 31-JAN-2015: 3.8.0.0
  2082. - Adds revision history dialog in Drive mode
  2083. - Fixes renaming of libraries
  2084. - Allows XML files to be loaded as libraries
  2085. - Fixes overridden mime type of libraries
  2086. - Fixes import of Google Drive files
  2087. - Improves open and import of .vsdx and Gliffy files
  2088. - Fixes possible document closed errors
  2089. - Uses mxGraph 3.1.2.2 beta 3
  2090. 09-JAN-2015: 3.7.7.8
  2091. - Adds Rack/F5 stencils
  2092. - Adds photos=1 URL parameter
  2093. - Removes photos scopes in Drive
  2094. - Enlarges Text item in sidebar
  2095. 08-JAN-2015: 3.7.7.7
  2096. - Handles paste for Gliffy data
  2097. - Fixes size of pasted data URI images
  2098. - Fixes copy from Lucidchart in Firefox
  2099. - Fixes extensions for VDX and Gliffy files
  2100. - Shows spinner for asynchronous datatransfer
  2101. 08-JAN-2015: 3.7.7.6
  2102. - Fixes images in PDF export with math
  2103. - Handles VDX/Gliffy files via DnD
  2104. - Adds import for Gliffy files
  2105. - Handles paste from Lucidchart
  2106. - Adds edit style in format panel
  2107. - Uses mxGraph 3.1.2.2 beta 2
  2108. 06-JAN-2015: 3.7.7.5
  2109. - Adds page scale in print dialog
  2110. - Fixes enter in dialogs for IE8-10
  2111. - Fixes CSS for IE8 standards mode
  2112. - Fixes help menu for quirks, IE8, iOS
  2113. - Fixes font size control for IE8/11
  2114. - Fixes public URL filename encoding
  2115. - Uses mxGraph 3.1.2.2 beta 1
  2116. 04-JAN-2015: 3.7.7.4
  2117. - Fixes typo in splash screen
  2118. 04-JAN-2015: 3.7.7.3
  2119. - Normalizes page layout, adds rounding in PDF export
  2120. - Adds search box in help menu
  2121. - Adds support for data URI in image dialog and clipboard
  2122. 31-DEC-2014: 3.7.7.2
  2123. - Fixes toolbar button for format panel
  2124. 31-DEC-2014: 3.7.7.0
  2125. - Adds format panel
  2126. - Fixes scrollbars in IE8 standards
  2127. - Uses mxGraph 3.1.2.1 beta 13
  2128. 22-DEC-2014: 3.7.6.2
  2129. - Removes dashed line style for guides
  2130. - Improves Russian translation
  2131. - Fixes use of iOS devices in Android sidebar
  2132. - Adds public Drive file URL in embed dialogs
  2133. - Uses mxGraph 3.1.2.1 beta 12
  2134. 19-DEC-2014: 3.7.6.1
  2135. - Adds Enterprise Integration Patterns (EIP) shapes
  2136. - Adds stealth=1 URL parameter for offline mode
  2137. - Removes downloadify, adds save=local URL parameter
  2138. - Fixes text opacity in quirks, HTML with NO_FO
  2139. - EditorUi.showImageDialog invokes callback with null
  2140. - Uses mxGraph 3.1.2.1 beta 11
  2141. 16-DEC-2014: 3.7.6.0
  2142. - Fixes possible artifacts for selection boxes
  2143. - Makes connection icons smaller
  2144. - Fixes drag and drop for image links
  2145. - Uses mxGraph 3.1.2.1 beta 10
  2146. 12-DEC-2014: 3.7.5.10
  2147. - Fixes menu states in embed mode
  2148. 12-DEC-2014: 3.7.5.9
  2149. - Unifies code for copy/paste and drag and drop
  2150. - Removes mxClipboard.stringToCells
  2151. - Enables drag and drop of XML text for open and import
  2152. - Applies pending edits in save and apply action
  2153. - Assigns Ctrl+Shift+R to clearDefaultStyle
  2154. - Renames reset- to clearDefaultStyle, reset- to clearWaypoints
  2155. - Hides ungroup for containers and edges with labels
  2156. - Fixes size in background image dialog
  2157. - Removes menubar padding in compact, embed view
  2158. - Adds highlights for drop targets
  2159. - Removes page and local storage clipboard
  2160. - Fixes errors for strong security settings in FF
  2161. - Uses mxGraph 3.1.2.1 beta 9
  2162. 09-DEC-2014: 3.7.5.8
  2163. - Fixes file extensions for PNG and HTML files
  2164. - Open XML, PNG and HTML files by dropping anywhere
  2165. - Removes iframe for opening local files (except IE)
  2166. - Adds alt key to import dropped files at origin
  2167. - Adds switch shape in Advanced sidebar
  2168. - Uses mxGraph 3.1.2.1 beta 8
  2169. 09-DEC-2014: 3.7.5.7
  2170. - Fixes update of parent highlight if parent changes
  2171. - Fixes fuzzy images in image export, Docs add-on
  2172. - Uses mxGraph 3.1.2.1 beta 7
  2173. 09-DEC-2014: 3.7.5.6
  2174. - Removes debugging output in image and PDF export
  2175. - Fixes timeout for chromeless mode with non public URLs
  2176. - Fixes error handling if realtime client API does not load
  2177. - Adds alt key to disable drop into groups for existing cells
  2178. - Uses mxGraph 3.1.2.1 beta 6
  2179. 08-DEC-2014: 3.7.5.5
  2180. - Shows error if realtime API cannot be loaded
  2181. - Fixes segment edge handler
  2182. - Limits size for diagrams in feedback
  2183. - Fixes dragging existing cells into containers
  2184. - Adds disabled button states in CSS
  2185. - Fixes black JPG background for older diagrams
  2186. - Uses mxGraph 3.1.2.1 beta 5
  2187. 05-DEC-2014: 3.7.5.4
  2188. - Fixes possible NPEs in SegmentConnector
  2189. - Fixes background color in cropped PDF exports
  2190. - Fixes PDF export size via export dialog
  2191. - Uses mxGraph 3.1.2.1 beta 4
  2192. 04-DEC-2014: 3.7.5.3
  2193. - Fixes possible NPEs
  2194. - Uses mxGraph 3.1.2.1 beta 3
  2195. 04-DEC-2014: 3.7.5.2
  2196. - Fixes possible text clipping in image and PDF export
  2197. - Replaces labels with previews in Format, Style menu
  2198. - Changes shortcuts for zoomin, zoomout to ctrl+plus/minus
  2199. - Fixes arrow directions in SegmentConnector
  2200. - Improves Chinese, Spanish translations
  2201. - Adds rounding in OrthConnector
  2202. - Uses mxGraph 3.1.2.1 beta 2
  2203. 01-DEC-2014: 3.7.5.1
  2204. - Shows connect icon with control instead of shift, for selected cells
  2205. - Renames switchDirection action to turn
  2206. - Inverts constraints when turning edges
  2207. - Selects cells in groups when editing starts
  2208. - Fixes select all edges for edges with labels
  2209. - Fixes moving of edge labels in groups
  2210. - Adds shift key to keep connection points visible
  2211. - Keeps connection points visible while over cell
  2212. - Improves Chinese translation
  2213. - Uses mxGraph 3.1.2.1 beta 1
  2214. 25-NOV-2014: 3.7.5.0
  2215. - Changes background color of sidebar to white
  2216. - Undo in text editor stops editing after last change
  2217. - Fixes focus rectangle for edge label editing in IE
  2218. - Fixes gradients with no fill color in VML
  2219. - Fixes autoscroll after click on scrollbar in IE11
  2220. - Uses Helvetica Neue as default font in CSS
  2221. - Fixes ignored styles after style classnames
  2222. - Uses 240px sidebar, 46x46px for entries in atlas
  2223. - Adds nl2Br style to disable conversion of linefeeds
  2224. - Fixes HTML source mode editor size for edges
  2225. - Hides handles while editing cell labels
  2226. - Automatically removes empty edge labels
  2227. - Double click on edge adds new label
  2228. - Uses TLS for image and PDF export
  2229. - Uses mxGraph 3.1.2.0 beta 4
  2230. 25-NOV-2014: 3.7.4.5
  2231. - Fixes italic rich text editing
  2232. - Fixes HTML source mode editor size
  2233. - Fixes possible NPE in mxEdgeSegmentHandler.start
  2234. - Fixes bug in mxCellEditor.resize for edge labels
  2235. 24-NOV-2014: 3.7.4.4
  2236. - Fixes typo in offline cache file
  2237. 24-NOV-2014: 3.7.4.3
  2238. - Adds word wrapping, formatted labels to various shapes
  2239. - Adds larger buttons, CSS styles for all buttons
  2240. - Click on background closes modal dialogs
  2241. - Makes color dialogs closable, checkbox labels clickable
  2242. - Adds special handle for fixed connection points
  2243. - Adds Vertical/Horizontal Flow Layout in advanced sidebar
  2244. - Fixes chromeless autoscale for multiple pages
  2245. - Fixes page count for cells at page borders
  2246. - Improves bounding box for in-place editor
  2247. - Improves hit detection on fixed connection points
  2248. - Fixes handling of special cases in segment edges
  2249. - Uses mxGraph 3.1.2.0 beta 3
  2250. 17-NOV-2014: 3.7.4.2
  2251. - Adds word wrapping, formatted labels in various sidebar shapes
  2252. - Handles conversion to draw.io pro while file is open
  2253. 14-NOV-2014: 3.7.4.1
  2254. - Stored mode wins over preferred mode in draw.io pro
  2255. - Adds data store, activity markers and task types for BPMN
  2256. - Fixes loading for mxgraph.mockup.anchor shape
  2257. - Uses realtime for all Google Drive files
  2258. - Fixes center for custom handles with zoom
  2259. - Adds remote alerts for important notifications
  2260. - Keeps footer visible when modal dialogs are shown
  2261. - Clears points for drop and connect from sidebar
  2262. - Fixes PID valve shapes in offline + Chrome app
  2263. - Adds update style for edges from sidebar
  2264. - Adds shift to update style for containers
  2265. - Fixes offset after tree layout in container
  2266. - Fixes edge styles in tree layout shapes
  2267. - Adds elbow direction to current edge style
  2268. - Uses mxGraph 3.1.2.0 beta 2
  2269. 10-NOV-2014: 3.7.4.0
  2270. - Fixes merging of 2 segments in mxEdgeSegmentHandler
  2271. - Fixes rendering, glass effect for ext shape
  2272. - Uses mxGraph 3.1.2.0 beta 1
  2273. 07-NOV-2014: 3.7.3.6
  2274. - Fixes perimeter of (Call) Conversation shape in BPMN sidebar
  2275. - Fixes edge style toolbar always updates current style
  2276. - Fixes current text style, colors for text shape
  2277. - Fixes vertical offset for empty initial label
  2278. - Fixes current edge style for shape/edgeStyle
  2279. - Uses mxGraph 3.1.1.1 beta 3
  2280. 06-NOV-2014: 3.7.3.5
  2281. - Uses mxGraph 3.1.1.1 beta 2
  2282. - Adds Curly Bracket in General, Parallel Marker in BPMN sidebar
  2283. - Adds Corner, Tee, Vertical/Horizontal Tree in Advanced sidebar
  2284. - Merges tilt and reverseEdge into switchDirection
  2285. - Fixes ID attributes in SVG for URLs with brackets
  2286. - Replaces alt-drag from sidebar with refresh icon
  2287. - Alt-/shift-drag from sidebar disables actions
  2288. - Adds formatted text state for new connections
  2289. - Moves collapsible item to Navigation submenu
  2290. - Shows focus rectangle for edge label editing
  2291. - Makes formatted text default for all cells
  2292. - Rearranges general shapes based on usage
  2293. - Hides custom handles for locked cells
  2294. - Adds resizing for rich text editing
  2295. - Adds reset default style menu item
  2296. - Removes Text & Images sidebar
  2297. 01-NOV-2014: 3.7.3.4
  2298. - Fixes image and PDF export for math typesetting (beta)
  2299. - Fixes tolerance check in mxPopupMenuHandler for touch events
  2300. - Uses mxGraph 3.1.1.1 beta 1
  2301. - Disables MathJax context menu
  2302. 29-OCT-2014: 3.7.3.3
  2303. - Fixes dblclick on edge handles in quirks mode
  2304. - Merges intersecting waypoints into single waypoint
  2305. - Adds virtual waypoints in straight edges
  2306. - Single click on plus button duplicates cell
  2307. - Double click on waypoint removes it
  2308. - Uses mxGraph 3.1.0.2 beta 3
  2309. 28-OCT-2014: 3.7.3.2
  2310. - Uses mxGraph 3.1.0.2 beta 3
  2311. - Fixes offset for drop targets in containers
  2312. - Fixes relative geometries for edges in sidebar
  2313. - Highlights parent group for selected child vertex
  2314. - Centers handle shape in custom handles
  2315. - Fixes vertical offset for text editing on edges
  2316. 27-OCT-2014: 3.7.3.1
  2317. - Uses mxGraph 3.1.0.2 beta 2
  2318. - Adds curved, straight format menu item
  2319. - Sets current edge style, markers regardless of selection
  2320. - Adds support for margin style in ext shape
  2321. - Fixes label bounds for shapes with double borders
  2322. - Replaces some shapes in ER with standard shapes
  2323. - Adds %today%, %filename% variables in p1 plugin
  2324. - Fixes rhombus perimeter for "has" shapes in ER
  2325. - Fixes outline connect, edge handles in IE8 standards
  2326. - Fixes focus handling, size for dropdown menus in IE
  2327. - Adds alt-shift to disable connect to outline
  2328. - Fixes connections sidebar for libs URL param
  2329. 22-OCT-2014: 3.7.3.0
  2330. - Adds bootstrap sidebar
  2331. - Uses mxGraph 3.1.0.2 beta 1
  2332. - Improves error handling and authorization flow
  2333. - Handles escape in color dialogs
  2334. - Change to edge style no longer resets label positions
  2335. - Improves drop handling for edges, groups from sidebar
  2336. - Removes deprecation warnings for use of nodeValue
  2337. - Adds support for rounded style in various shapes
  2338. - Adds Required Interface shape in UML sidebar
  2339. 09-OCT-2014: 3.7.2.6
  2340. - Fixes link to Docs add-on
  2341. - Uses mxGraph 3.1.0.1
  2342. 09-OCT-2014: 3.7.2.5
  2343. - Fixes grid size handling after document properties dialog
  2344. - Adds spacing for drop target arrows
  2345. - Removes rounded from initial edge style
  2346. - Adds setAsDefaultStyle action
  2347. 08-OCT-2014: 3.7.2.4
  2348. - Fixes NPE in chromeless mode
  2349. 08-OCT-2014: 3.7.2.3
  2350. - Fixes copy-/pasteStyle for value none
  2351. - Adds reverse edge action
  2352. - Adds title in feedback form
  2353. - Fixes gradient toolbar item
  2354. 08-OCT-2014: 3.7.2.2
  2355. - Fixes link shape for different stroke widths
  2356. - Adds text toolbar state for current selection
  2357. - Adds Youtube videos via insert link
  2358. - Fixes z-index for Google picker
  2359. - Adds Format, Dotted and Plain menu items
  2360. - Improves email check, status message for feedback form
  2361. - Removes scrollbar position, scale from files
  2362. - Adds rounded to current edge style
  2363. - Restores connection sidebar
  2364. - Uses mxGraph 3.1.0.1 beta 3
  2365. 07-OCT-2014: 3.7.2.1
  2366. - Removes connection palette
  2367. - Uses groups for compound shapes
  2368. - Fixes possible undefined label in edges after edit link
  2369. - Resets waypoints, label if edge style is changed
  2370. - Cleanup edge style options from menu, toolbar
  2371. - Fixes copyStyle, global style, alt-click in sidebar
  2372. - Fixes arrow drop geometries for relative targets
  2373. - Maintains parent for duplicated cells
  2374. - Uses mxGraph 3.1.0.1 beta 2
  2375. 06-OCT-2014: 3.7.2.0
  2376. - Adds drop target arrows for drag from sidebar
  2377. - Stores current scale and scrollbar positions
  2378. - Remove setDefaultEdge function
  2379. - Adds current style for edges
  2380. - Uses mxGraph 3.1.0.1 beta 1
  2381. - Adds Feedback in Help menu
  2382. - Fixes Text, Position menu
  2383. 01-OCT-2014: 3.7.1.4
  2384. - Uses mxGraph 3.1.0.0 beta 5
  2385. 29-SEP-2014: 3.7.1.3
  2386. - Uses mxGraph 3.1.0.0 beta 4
  2387. 24-SEP-2014: 3.7.1.2
  2388. - Enables target="_blank" in sanitized HTML
  2389. - Uses mxGraph 3.1.0.0 beta 3
  2390. 22-SEP-2014: 3.7.1.1
  2391. - Uses mxGraph 3.1.0.0 beta 2
  2392. 22-SEP-2014: 3.7.1.0
  2393. - Uses mxGraph 3.1.0.0 beta 1
  2394. 21-SEP-2014: 3.7.0.9
  2395. - Improves sanitization for HTML labels
  2396. - Uses mxGraph 3.0.1.2 beta 5
  2397. 20-SEP-2014: 3.7.0.8
  2398. - Adds sanitization for HTML labels
  2399. - Uses mxGraph 3.0.1.2 beta 4
  2400. 20-SEP-2014: 3.7.0.7
  2401. - Uses mxGraph 3.0.1.2 beta 3
  2402. 19-SEP-2014: 3.7.0.6
  2403. - Uses mxGraph 3.0.1.2 beta 2
  2404. 12-SEP-2014: 3.7.0.5
  2405. - Uses mxGraph 3.0.1.2 beta 1
  2406. - Uses GAE SDK 1.9.11
  2407. - Fixes s param for embedded markers
  2408. - Adds dynamic loading for markers
  2409. 11-SEP-2014: 3.7.0.4
  2410. - Removes Ports and Flows from sidebar
  2411. - Uses mxGraph 3.0.1.1
  2412. 10-SEP-2014: 3.7.0.3
  2413. - Uses mxGraph 3.0.1.0
  2414. - Fixes image size in advanced export dialog if page not visible
  2415. 08-SEP-2014: 3.7.0.2
  2416. - Adds workaround for invalid file descriptors in Dropbox
  2417. 27-AUG-2014: 3.7.0.1
  2418. - Fixes bugs in realtime diagrams
  2419. - Fixes recursive resize of relative child cells
  2420. - Uses mxGraph 3.0.0.0 beta 2
  2421. 26-AUG-2014: 3.7.0.0
  2422. - Uses mxGraph 3.0.0.0 beta 1
  2423. 05-AUG-2014: 3.6.1.5.2
  2424. - Another footer change
  2425. 05-AUG-2014: 3.6.1.5.1
  2426. - Footer change
  2427. 04-AUG-2014: 3.6.1.5
  2428. - Fixes SVG export in IE
  2429. - Uses mxGraph 2.9.0.2 beta 1
  2430. 31-JUL-2014: 3.6.1.4
  2431. - Fixes transparent gradients in FF
  2432. - Fixes redirect to HTTPS in Firefox
  2433. - Uses document size for PDF export in page view
  2434. 31-JUL-2014: 3.6.1.3
  2435. - Uses mxGraph 2.9.0.1
  2436. - Adds ff=1 URL parameter for bug hunting
  2437. - Removes empty hash tag for local files
  2438. - Removes empty hash tag in initial state
  2439. 29-JUL-2014: 3.6.1.2
  2440. - Makes refresh of new local file with template blank
  2441. - Fixes handling of blocked popups in Chrome
  2442. - Uses Universal Analytics
  2443. - Adds blogger icon in footer
  2444. - Fixes possible NPE in mxEdgeHandler.mouseMove
  2445. - Uses mxGraph 2.9.0.1 beta 1
  2446. 28-JUL-2014: 3.6.1.1
  2447. - Fixes arrange, distribute
  2448. - Fixes embedded diagrams in all IE versions
  2449. - Enables paste, drop for graph model snippets
  2450. - Fixes edit geometry to work with multiple vertices
  2451. 25-JUL-2014: 3.6.1.0
  2452. - Uses mxGraph 2.9
  2453. - Adds collapsible action
  2454. 23-JUL-2014: 3.6.0.8
  2455. - Uses mxGraph 2.9 beta 5
  2456. - Resets mode after Google sign out
  2457. 20-JUL-2014: 3.6.0.7
  2458. - Replaces connect with connection points option
  2459. - Fixes resize for current root
  2460. 19-JUL-2014: 3.6.0.6
  2461. - Fixes overlapping wrapped labels in IE8, quirks
  2462. - Fixes rotated resize
  2463. 19-JUL-2014: 3.6.0.5
  2464. - Fixes automatic layouts in sidebar previews
  2465. - Adds part style for moving cells as parts of groups
  2466. - Improves Entity shape in Entity Relation sidebar
  2467. - Imports diagram files with no extensions via drag and drop
  2468. - Adds part style for moving cells as parts of other cells
  2469. - Adds waypoints to automatic line in sidebar
  2470. - Fixes resize preview for changed parents
  2471. - Shows connector handles on containers
  2472. - Uses mxGraph 2.9 beta 4
  2473. 16-JUL-2014: 3.6.0.4
  2474. - Fixes resize preview inside groups
  2475. - Adds radial tree layout
  2476. 16-JUL-2014: 3.6.0.3
  2477. - Fixes scaled resize rounding errors
  2478. - Fixes creation of scaled connections
  2479. - Fixes ui parameter in redirected URLs
  2480. - Uses mxGraph 2.9 beta 3
  2481. 14-JUL-2014: 3.6.0.2
  2482. - Removes ui=null in redirected URLs
  2483. - Shift cursor moves by gridSize
  2484. - Uses white preview for black background
  2485. - Fixes distribute action
  2486. - Fixes initial undo in embed mode
  2487. - Resizes pool in stack layouts
  2488. 11-JUL-2014: 3.6.0.1
  2489. - Fixes toggle selection on touch devices with mouse
  2490. - Empty postMessage creates new file in embed mode
  2491. - Disables custom dashed edges in outline shapes
  2492. - Uses Ctrl-Click for context menu only on Macs
  2493. - Makes hit detection for new edges consistent
  2494. - Fixes alignment of cloned source terminals
  2495. - Uses mxGraph 2.9 beta 2
  2496. 11-JUL-2014: 3.6.0.0
  2497. - Adds Azure shapes
  2498. - Uses mxGraph 2.9 beta 1
  2499. - Fixes edge preview to use actual shape
  2500. - Uses image for edge label handles
  2501. - Avoids overlap of label and edge handles
  2502. - Adds snap to waypoints for edges handles
  2503. - Adds connect to outline for all shapes
  2504. - Adds alt for connecting to anywhere in a shape
  2505. - Adds shift for horizontal/vertical edge segments
  2506. - Adds Options, Advanced, Theme menu
  2507. - Uses Ctrl-Click for context menu in all browsers
  2508. - Remove fixedPoints style, adds points style
  2509. - Fixes special handle for new arrow shapes
  2510. 26-JUN-2014: 3.5.3.5
  2511. - Uses mxGraph 2.8.2.1 beta 3
  2512. - Fixes minor bugs
  2513. 24-JUN-2014: 3.5.3.4
  2514. - Hides special handles for disabled graphs
  2515. - Fixes minor bugs for realtime collaboration
  2516. - Fixes cell order for native copy paste
  2517. - Truncates existing files in Chrome App
  2518. - Fixes clipboard state after ctrl+x (cut)
  2519. - Adds import all file types for Google Drive
  2520. - Fixes move cursor for entries in library dialog
  2521. 21-JUN-2014: 3.5.3.3
  2522. - Adds shortcut for edit geometry, initial focus
  2523. - Fixes grid size for moving cells in scaled graphs
  2524. - Adds grid size in document properties dialog
  2525. - Does no longer scroll to cells after move
  2526. - Fixes minor bug in a floorplan shape
  2527. 18-JUN-2014: 3.5.3.2
  2528. - Adds new shapes in general, advanced
  2529. - Shift-cursor key moves by 10 pixels
  2530. - Uses mxGraph 2.8.2.1 beta 2
  2531. - Fixes initial scroll position on iOS
  2532. - Fixes font family, size combo width in quirks mode
  2533. - Fixes document properties in standalone mode for iOS
  2534. 16-JUN-2014: 3.5.3.1
  2535. - Adds explore plugin
  2536. - Add social icons in footer
  2537. - Adds Embed, Google Docs menu item
  2538. - Adds ready, ui=atlas URL parameters
  2539. - Adds alt-drop from sidebar to override shape
  2540. - Uses automatic force constant for organic layout
  2541. - Uses mxGraph 2.8.2.1 beta 1
  2542. 11-JUN-2014: 3.5.3.0
  2543. - Uses OS clipboard for cut, copy and paste shortcuts
  2544. - Adds shortcuts for edit-, copy- and paste style
  2545. - Makes layer visible after insert of new cell
  2546. - Uses mxGraph 2.8.2.0
  2547. 09-JUN-2014: 3.5.2.0
  2548. - Style changes trigger layout
  2549. - Control enter stops editing
  2550. - Uses mxGraph 2.8.1.1 beta 1
  2551. - Uses last font, alignment for new cells
  2552. - Adds validation for filenames
  2553. 02-JUN-2014: 3.5.1.2
  2554. - Adds SVG transformation to image export via XML
  2555. 02-JUN-2014: 3.5.1.1
  2556. - Uses mxGraph 2.8.1.0
  2557. - Shows layers dialog for files with layers
  2558. - Fixes links for transparent shapes in SVG export
  2559. - Adds import from URL option
  2560. 27-MAY-2014: 3.5.1.0
  2561. - Adds remove attribute option in metadata dialog
  2562. - Adds larger open dialog
  2563. - Fixes grid clipping bug in webkit
  2564. - Fixes handle states after model change
  2565. - Fixes hyperlinks in SVG export
  2566. - Adds hexagon perimeter for hexagon shape
  2567. - Uses mxGraph 2.8.0.0 beta 2
  2568. 14-MAY-2014: 3.5.0.0
  2569. - Adds tooltips for links
  2570. - Adds rotation in edit geometry dialog
  2571. - Unifies mobile and desktop UI
  2572. - Adds reset waypoints
  2573. - Uses mxGraph 2.7.0.1 beta 2
  2574. 12-MAY-2014: 3.4.0.8
  2575. - Adds client app mode
  2576. - Adds edit as new embed option
  2577. - Adds support for compressed data in embed, client mode
  2578. 12-MAY-2014: 3.4.0.7
  2579. - Adds immediate editing
  2580. - Uses mxGraph 2.7.0.1 beta
  2581. 11-MAY-2014: 3.4.0.6
  2582. - Calls resetGraphView after loading realtime model
  2583. - Adds placeholder in link dialog
  2584. - Reads HTML embedded files
  2585. - Uses mxGraph 2.6.0.1 beta 5
  2586. 10-MAY-2014: 3.4.0.5
  2587. - Adds rounding to move, resize, rotate
  2588. - Compacts About dialog
  2589. - Adds offline menu item
  2590. - Adds open from template URL
  2591. - Adds open from URL option
  2592. - Shows connect icon if shift is pressed
  2593. - Adds tooltips for rotate, resize and move
  2594. - Adds edit tooltip action
  2595. - Improves metadata dialog
  2596. - Uses mxGraph 2.6.0.1 beta 4
  2597. 08-MAY-2014: 3.4.0.4
  2598. - Fixes zoom, footer in chromeless mode
  2599. - Adds image item in toolbar
  2600. - Uses mxGraph 2.6.0.1 beta 3
  2601. 07-MAY-2014: 3.4.0.3
  2602. - Fixes pinch to zoom on iOS
  2603. - Uses mxGraph 2.6.0.1 beta 2
  2604. 06-MAY-2014: 3.4.0.2
  2605. - Uses mxGraph 2.6.0.1 beta
  2606. - Fixes handling of empty files
  2607. - Fixes new library function
  2608. 06-MAY-2014: 3.4.0.1
  2609. - Adds custom font sizes in toolbar
  2610. - Fixes pinch gesture in iOS
  2611. - Fixes offline mode in Firefox
  2612. 05-MAY-2014: 3.4.0.0
  2613. - Uses mxGraph 2.6.0.0
  2614. - Moves outline into separate dialog
  2615. - Adds document properties dialog
  2616. - Uses alt-wheel for zoom (shift for horizontal scroll)
  2617. - Uses right mouse button for panning
  2618. - Adds scaled page buffer with scrollbars
  2619. - Adds initial centering of diagram
  2620. - Adds local storage in IE8 quirks mode
  2621. - Enables drag and drop in library dialog
  2622. - Uses touch UI in Firefox only on Windows
  2623. - Adds toggle state for grid/guides buttons
  2624. - Adds license option in images sidebar
  2625. 17-APR-2014: 3.3.0.0
  2626. - Adds custom libraries for Drive files
  2627. - Adds persistence for visible libraries
  2628. - Hides labels in sidebar
  2629. 15-APR-2014: 3.2.1.5
  2630. - Fixes autosave for grid and page view changes
  2631. - Uses mxGraph 2.5.1.2 beta
  2632. 13-APR-2014: 3.2.1.4
  2633. - Uses mxGraph 2.5.1.1
  2634. - Fixes import offset for new layers
  2635. 11-APR-2014: 3.2.1.3
  2636. - Adds pools with lanes and stack child layouts
  2637. - Splits general to text, connection and advanced sidebars
  2638. - Fixes import for local and storage files
  2639. - Adds stackLayout childLayout, stackHorizontal style
  2640. - Fixes import XML for multiple layers
  2641. - Adds grid/guides toolbar button
  2642. - Fixes dialog event handling on iPad
  2643. 11-APR-2014: 3.2.1.2
  2644. - Adds mime type filter in Google picker
  2645. - Removes extension for Google Chrome
  2646. 10-APR-2014: 3.2.1.1
  2647. - Adds recursive resize for groups
  2648. - Uses mxGraph 2.5.1.1 beta
  2649. 10-APR-2014: 3.2.1.0
  2650. - Replaces Open with Open from in file menu
  2651. - Adds click handling for split bars
  2652. - Removes folding icon in XML image export
  2653. - Adds file extensions for Google Drive files
  2654. - Adds embed iframe option
  2655. - Adds import from menu
  2656. 07-APR-2014: 3.2.0.5
  2657. - Adds Options, Advanced, Open from menu
  2658. - Removes old storage item after rename
  2659. - Disables user scaling on mobile devices
  2660. 02-APR-2014: 3.2.0.4
  2661. - Adds viewbox to imported SVG files for FF, IE
  2662. 02-APR-2014: 3.2.0.3
  2663. - Handles s=* parameter in embed servlet
  2664. - Fixes Edit Image, Insert Image dialogs
  2665. - Fixes Edit Link, Insert Link dialogs
  2666. - Uses mxGraph 2.5.1.0
  2667. 29-MAR-2014: 3.2.0.2
  2668. - Handles enter key in text input dialog
  2669. - Uses "diagram name" for Google files
  2670. - Transparent use of zlib compression
  2671. 28-MAR-2014: 3.2.0.1
  2672. - Adds Options, Advanced, Export option
  2673. 27-MAR-2014: 3.2.0.0
  2674. - Uses viewer in Google gadget for embedding
  2675. - Adds chrome-less read-only viewer mode
  2676. 26-MAR-2014: 3.1.0.2
  2677. - Adds storage logo in storage dialog
  2678. - Adds help link in splash dialog
  2679. - Adds distribute menu from core example
  2680. 24-MAR-2014: 3.1.0.1
  2681. - Uses layers dialog from core example
  2682. 21-MAR-2014: 3.1.0.0
  2683. - Removes profile.email scope in Google Drive
  2684. - Shows local storage option on desktop
  2685. - Adds XML+PNG file format (open and save)
  2686. - Changes order of cancel, approval buttons in dialogs
  2687. - Fixes insert Google Drive image (adds photo scopes)
  2688. - Fixes special link action, adds photo, album links
  2689. - Fixes colors for logos and app icons
  2690. - Adds Google Sites dialog
  2691. - Adds chrome=0 URL parameter
  2692. - Adds advanced menu in options
  2693. - Improves Google Gadget servlet
  2694. - Removes mockups from default sidebars
  2695. 14-MAR-2014: 3.0.0.6
  2696. - Reduces time between revisions to 0.5h
  2697. - Adds consistency checks in realtime
  2698. - Uses mxGraph 2.5.0.3
  2699. 13-MAR-2014: 3.0.0.5
  2700. - Adds floorplan shapes
  2701. - Adds upload (offline), makeCopy actions
  2702. - Adds support for embed mode in new tab
  2703. 10-MAR-2014: 3.0.0.4
  2704. - Disables iconfinder sidebar in offline mode
  2705. - Adds cache status to Chrome/iOS in offline mode
  2706. 09-MAR-2014: 3.0.0.3
  2707. - Disables print function in iOS standalone mode
  2708. - Fixes general.xml shapes in offline mode
  2709. - Adds mime-type for cache.manifest in web.xml
  2710. - Uses text context menu for text downloads in iOS
  2711. - Disables binary downloads in iOS standalone mode
  2712. 07-MAR-2014: 3.0.0.2
  2713. - Adds mobile web app tags
  2714. - Adds demo=1 URL parameter
  2715. - Adds new templates with categories
  2716. - Adds /app shortcut for offline mode
  2717. - Adds online features in offline mode for Chrome
  2718. - Warns if Google Drive is blocked
  2719. 03-MAR-2014: 3.0.0.1
  2720. - Adds apple app icons to offline cache
  2721. - Disables device storage for offline mode on IOS
  2722. - Adds storage=browser/device URL params
  2723. - Fixes alternate FO text for bitmap exports
  2724. 28-FEB-2014: 3.0.0.0
  2725. - Adds support for offline mode
  2726. 27-FEB-2014: 2.9.0.0
  2727. - Replaces RawDeflate.deflate with Zlib
  2728. - Adds lazy loading for MathJax
  2729. - Uses mxGraph 2.5.0.2
  2730. - Adds shared clipboard
  2731. - Adds drop handler for images, text and XML files
  2732. - Disables Dropbox/Drive in embed mode by default
  2733. - Adds global mxClientOnLoad callback in embed
  2734. - Adds edit geometry, copy/paste style actions
  2735. - Uses mxGraph 2.5.0.1
  2736. 17-FEB-2014: 2.8.0.0
  2737. - Fixes possible NPE in DriveRealtime.highlight, App.defineCustomObjects
  2738. - Uses mxGraph 2.5.0.0 beta
  2739. - Adds HTML5 doctype in HTML export
  2740. 10-FEB-2014: 2.7.0.8
  2741. - Uses mxGraph 2.4.1.0
  2742. - Adds support for background images
  2743. 31-JAN-2014: 2.7.0.7
  2744. - Embed does no longer use eval
  2745. - Tests zlib for file compression
  2746. - Uses mxGraph 2.4.0.4
  2747. 29-JAN-2014: 2.7.0.6
  2748. - Adds create, title URL parameters
  2749. 28-JAN-2014: 2.7.0.5
  2750. - Fixes embedded diagrams with math
  2751. - Adds Mathematical typesetting option
  2752. 27-JAN-2014: 2.7.0.4
  2753. - Adds Android shapes for embedded diagrams
  2754. - Cleanup embed dialog
  2755. 27-JAN-2014: 2.7.0.3
  2756. - Uses mxGraph 2.4.0.4 beta
  2757. - Handles invalid characters in input files
  2758. - Adds Google Gadget URL in embed dialog
  2759. - Adds GoogleSitesServlet at /gadget.xml
  2760. 22-JAN-2014: 2.7.0.2
  2761. - Uses mxGraph 2.4.0.3
  2762. - Creates revision every hour and on load
  2763. - Adds checks for realtime connection
  2764. - Adds userAgent to file format
  2765. - Adds Android shapes
  2766. 17-JAN-2014: 2.7.0.1
  2767. - Uses mxGraph 2.4.0.2
  2768. - Fixes table editing for FF/IE quirks
  2769. - Fixes decoding error in Firefox
  2770. - Adds retry option for timeout errors
  2771. - Fixes title word wrap for long filenames
  2772. - Adds math parameter for MathJax support (experimental)
  2773. - Adds table support in HTML editor
  2774. 08-JAN-2014: 2.7.0.0
  2775. - Adds custom HTML in-place editor
  2776. - Adds Arrange, Insert and Format, Style menus
  2777. - Uses mxGraph 2.4.0.0
  2778. - Adds splash screen
  2779. - Adds Google Doc style header
  2780. - Rewrites remote storage integrations
  2781. 11-DEC-2013: 2.6.4.1
  2782. - Add option to lock resize aspect using shift key
  2783. 04-DEC-2013: 2.6.4.0
  2784. - Fixes PID path issues
  2785. 27-NOV-2013: 2.6.3.0/1
  2786. - Add iOS 7 stencils
  2787. - Fixes Drive RT copying issues
  2788. 19-NOV-2013: 2.6.2.0/1
  2789. - Improvements to PID stencils
  2790. 18-NOV-2013: 2.6.1.0
  2791. - Improvements to rack stencils
  2792. 11-NOV-2013: 2.6.0.2
  2793. - Add same domain test plugin
  2794. - Minor changes to rack stencils
  2795. 11-NOV-2013: 2.6.0.1
  2796. - Updates mxClient.js to 2.3.0.2
  2797. 09-NOV-2013: 2.6.0.0
  2798. - Adds Dropbox autosave
  2799. - Uses image export v3 (PhantomJS)
  2800. - Uses world icon for language menu
  2801. 17-OCT-2013: 2.5.2.1
  2802. - Corrects path error in mockups.misc.statusbar
  2803. 16-OCT-2013: 2.5.2.0
  2804. - Merges vdx importer back into base
  2805. - Updates mxClient.js to 2.2.0.3
  2806. - Fixes CSS float for IE
  2807. 10-OCT-2013: 2.5.1.3
  2808. - Adds CORS headers for JGraph CMS
  2809. - Adds new Vdxio
  2810. 08-OCT-2013: 2.5.1.2
  2811. - Added embed mode
  2812. - Restores legacy clipart pathnames
  2813. - Updates mxclient.js 2.2.0.2
  2814. 23-SEP-2013: 2.5.1.1
  2815. - Reverted scope change
  2816. 19-SEP-2013: 2.5.1.0
  2817. - Uses mxGraph 2.2.0.0
  2818. - Reduces access to Google user profile info.
  2819. 09-SEP-2013: 2.5.0.0
  2820. - Forces refresh when Drive save fails
  2821. - Uses mxGraph 2.1.1.2
  2822. - Adds Dropbox support on db.draw.io
  2823. 31-JUL-2013: 2.4.1.0
  2824. - Uses mxGraph 2.1.0.7
  2825. - Adds menu item to toggle chat window
  2826. - Fixes handling of special filenames for export
  2827. - Adds support for XML user objects in Realtime files
  2828. - Adds button to hide footer
  2829. - Changes collaborative chat to list
  2830. - Moves autosaving to DriveRealTime
  2831. - Adds clipboard, https URL parameters
  2832. - Shows filename in document title
  2833. 24-JUN-2013: 2.4.0.0
  2834. - Fixes real-time re-auth issue
  2835. - Updates touch support code
  2836. 20-JUN-2013: 2.3.2.2
  2837. - Fixes reader file excludes
  2838. 31-MAY-2013: 2.3.2.1
  2839. - Cosmetic adjustments
  2840. 30-MAY-2013: 2.3.2.0
  2841. - Adds plugins, plugin dialogs
  2842. 22-MAY-2013: 2.3.1.0
  2843. - Fixes vertical label export offset bug
  2844. - Fixes MT bugs in .vsdx import
  2845. 11-MAY-2013: 2.3.0.1
  2846. - Minor changes to language menu
  2847. 07-MAY-2013: 2.3.0.0
  2848. - Makes labels of mockup, ER shapes editable
  2849. - Replaces width and height checks with area check in export
  2850. - Adds language configuration in local storage
  2851. - Ignores "dot" files in local storage open dialog
  2852. - Fixes handling of nested default edges
  2853. - Adds live preview for vertex resizing, edge handling
  2854. - Adds process, document, parallelograph and trapezoid shapes
  2855. - Adds layers, language menu and resources
  2856. 12-APR-2013: 2.2.2.5
  2857. - Adds debugging
  2858. 11-APR-2013: 2.2.2.4
  2859. - Minor bug fixes
  2860. 10-APR-2013: 2.2.2.3
  2861. - Fixes shape deletion whilst dragging connection issue
  2862. 09-APR-2013: 2.2.2.2
  2863. - Adds shape locking, Mac backspace delete and a changelog entry that has multiple items on one line and is more than 80 characters
  2864. 07-APR-2013: 2.2.2.1
  2865. - Adds rack stencils
  2866. - Fix for Safari save problem
  2867. 04-APR-2013: 2.2.2.0
  2868. - Fix for Firefox 20 save problem
  2869. 27-MAR-2013: 2.2.1.0
  2870. - Google Drive workflow changes
  2871. 23-MAR-2013: 2.2.0.3
  2872. - Moves ER markers to side to avoid dynamic load issues
  2873. 19-MAR-2013: 2.2.0.2
  2874. - Adds File->Rename for Google Drive file
  2875. 18-MAR-2013: 2.2.0.0
  2876. - Adds mockup stencils
  2877. 28-FEB-2013: 2.1.1.2
  2878. - Uses latest mxGraph
  2879. - Switch XML stencil labels back on
  2880. - Enables word wrapping for some basic shapes
  2881. - Improves Drive authentication after timeout
  2882. 16-FEB-2013: 2.1.1.1
  2883. - Uses latest mxGraph
  2884. 08-FEB-2013: 2.1.1.0
  2885. - Added iOS and ER stencils
  2886. 06-FEB-2013: 2.1.0.2
  2887. - Patch for IE 9 Google Drive communications
  2888. - Added Cisco stencils
  2889. 05-FEB-2013: 2.1.0.1
  2890. - Fixes 7 second repeating Google auth dialog bug
  2891. 04-FEB-2013: 2.1.0.0
  2892. - Removes old sharing
  2893. - Fixes relative images in embedded diagrams
  2894. - Uses App Engne SDK 1.7.4
  2895. - Uses mxGraph 2.0.0.0
  2896. 16-JAN-2013: 2.0.1.7
  2897. - Uses mxGraph 1.10.4.2
  2898. - Adds curved format menu item
  2899. - Uses extended image picker if logged into Google
  2900. - Removes devhost URL parameter
  2901. 20-DEC-2012: 2.0.1.6
  2902. - Fixes issue with Google Drive files retaining file name
  2903. 19-DEC-2012: 2.0.1.5
  2904. - Enabled .vdx open/importing (alpha)
  2905. 19-DEC-2012: 2.0.1.4
  2906. - Shows spinner while loading url URL parameter
  2907. - Fixes alignment of SVG sidebar entries in IE
  2908. - Fixes flickering of sidebar entries in FF
  2909. - Adds spinner to minified diagramly
  2910. 18-DEC-2012: 2.0.1.3
  2911. - Uses mxGraph 1.10.4.1
  2912. - Fixes handling of url URL parameter
  2913. 14-DEC-2012: 2.0.1.2
  2914. - Removes plugins feature
  2915. 13-DEC-2012: 2.0.1.1
  2916. - Adds security alert when loading plugins
  2917. - Fixes clipping bug
  2918. 12-DEC-2012: 2.0.1.0
  2919. - Fixes session expiry issue in Google Drive
  2920. 12-DEC-2012: 2.0.0.4
  2921. - Adds plugins via URL parameter
  2922. - Fixes toolbar size
  2923. - Fixes browser context menu
  2924. - Adds colors in color dialog
  2925. 06-DEC-2012: 2.0.0.1
  2926. - Switches to using JS client library for Google Drive calls
  2927. 08-NOV-2012: 1.6.10.0
  2928. - Adds Korean, Japanese, Russian, Bosnian and Ukrainian translations
  2929. - Switches to port 80 for image export server
  2930. 31-OCT-2012: 1.6.9.2
  2931. - Removed data nucleus libraries
  2932. - Adds rawdeflate, base64 to diagramly.min.js
  2933. - Changes color of social icons to gray
  2934. 30-OCT-2012: 1.6.9.1
  2935. - Removes social JS
  2936. - Uses mxGraph 1.10.4.0
  2937. 25-OCT-2012: 1.6.9.0
  2938. - Adds Google Drive install scope
  2939. - Updates libraries used for Google Drive integration
  2940. 19-OCT-2012: 1.6.8.1
  2941. - Fixes handling of file positioning in Drive
  2942. 16-OCT-2012: 1.6.8.0
  2943. - Fixes using multiple accounts with Google Drive
  2944. 24-SEP-2012: 1.6.7.4
  2945. - Changes diagram.ly to draw.io in dialogs
  2946. - Minor formatting fixes
  2947. 21-SEP-2012: 1.6.7.3
  2948. - Add session tidying cron job for GAE
  2949. 14-SEP-2012: 1.6.7.2
  2950. - Removes Facebook footer in IE6
  2951. - Adds layout options via grapheditor example
  2952. 13-SEP-2012: 1.6.7.1
  2953. - Fixes use of custom handlers with closure compiler
  2954. 31-AUG-2012: 1.6.7.0
  2955. - Uses mxGraph 1.10.3.1
  2956. - Fixes background color for SVG export in quirks mode
  2957. - Enables Google image picker on Mac/iPad
  2958. - Adds Github menu item in help menu
  2959. 29-AUG-2012: 1.6.1.9
  2960. - Fixes Github deployment Ant task
  2961. - Fixes German Facebook button (changes to English)
  2962. - Fixes touch-based panning for embedded diagrams
  2963. - Uses mxGraph 1.10.3.0
  2964. 22-AUG-2012: 1.6.1.8
  2965. - Adds Facebook like button
  2966. 21-AUG-2012: 1.6.1.7
  2967. - Adds compression for embedded diagrams
  2968. 02-AUG-2012: 1.6.1.6
  2969. - Adds fixes for null user objects in link handling
  2970. 02-AUG-2012: 1.6.1.5
  2971. - Adds transparency option for PNG image, SVG export
  2972. 01-AUG-2012: 1.6.1.4
  2973. - Fixes for filepicker.io
  2974. 31-JUL-2012: 1.6.1.3
  2975. - Uses mxClient.js, mxgraph-core.jar 1.10.2.1
  2976. - Adds social, analytics URL parameters
  2977. - Adds persistent stats for embedding
  2978. - Adds save for filepicker.io
  2979. 28-JUL-2012: 1.6.1.2
  2980. - Fixes embedding of international characters and newlines
  2981. - Changes image export URL to http://shr.diagramly.com:8080/ImageExport/export
  2982. - Changes lastModified header creation in EmbedServlet
  2983. - Fixes infinite recursion in Embed.js for convertValueToString
  2984. 27-JUL-2012: 1.6.1.1
  2985. - Adds support for hyperlinks
  2986. 23-JUL-2012: 1.6.1.0
  2987. - Uses mxGraph 1.10.2.0
  2988. - Adds embed feature
  2989. - Fixes errors if tinyMCE not available
  2990. - Fixes syntax of dash patterns in shapes
  2991. 30-JUN-2012: 1.6.0.2
  2992. - Renames Init.js to Devel.js
  2993. - Adds link to "Did you know..." topic in help menu
  2994. - Removes previous diagramly link from help menu
  2995. - Adds url URL parameter handling in client
  2996. - Adds proxy servlet for loading files from URLs
  2997. 22-JUN-2012: 1.6.0.1
  2998. - Fixes minor bugs
  2999. - Uses mxGraph 1.10.1.3
  3000. 19-JUN-2012: 1.6.0.0
  3001. - Adds real-time collaboration (experimental)
  3002. - Adds handling for App not installed error in Google Drive
  3003. - Uses mxGraph 1.10.1.2
  3004. 06-JUN-2012: 1.5.0.7
  3005. - Uses mxGraph 1.10.1.1
  3006. - Adds workaround for focus repaint bug in IE9/10
  3007. - Adds fixed connection points for custom shapes
  3008. - Adds closure compiler pre-deploy step
  3009. - Puts all JS in a single minified file
  3010. 25-MAY-2012: 1.5.0.6
  3011. - Uses static mxGraph 1.10.0.6
  3012. - Fixes "Save as" in Google Drive
  3013. - Fixes page view, default pageScale
  3014. - Adds new items in file menu
  3015. - Adds options in file edit dialog
  3016. - Adds import action
  3017. - Adds extra handle for custom shapes
  3018. 17-MAY-2012: 1.5.0.5
  3019. - Removes .mxe default file extension
  3020. - Changes mime type to application/mxe
  3021. 16-MAY-2012: 1.5.0.4
  3022. - Uses current protocol to load picker API
  3023. - Adds CSS3 transitions for hover styles
  3024. - Simplifies tinyMCE toolbar, uses main toolbar (non-IE only)
  3025. - Adds "Use as default edge" action
  3026. 14-MAY-2012: 1.5.0.3
  3027. - Adds border in export dialog
  3028. - Adds resources for Google Drive integration
  3029. - Fixes use of optional flash for saving in savedialog
  3030. 05-MAY-2012: 1.5.0.2
  3031. - Handles requests for non-existent script versions
  3032. - Handles DeadlineExceededException
  3033. 03-MAY-2012: 1.5.0.1
  3034. - Adds XML export option
  3035. - Fixes unicode character encoding in files
  3036. - Adds status information for Google Drive operations
  3037. - Adds spinner during Google Drive operations
  3038. - Adds reconnect for lost session after save
  3039. - Fixes illegal state exceptions in servlet
  3040. 02-MAY-2012: 1.5.0.0
  3041. - Adds working Google Drive integration
  3042. 01-MAY-2012: 1.4.0.7
  3043. - Adds initial Google Drive integration
  3044. 29-APR-2012: 1.4.0.6
  3045. - Uses mxGraph 1.10.0.2
  3046. - Adds BPMN shapes, markers and custom edges
  3047. - Fixes Downloadify integration
  3048. 19-APR-2012: 1.4.0.5
  3049. - Adds editFile action from grapheditor
  3050. - Adds fromText action and ParseDialog
  3051. - Adds forum link in help menu
  3052. - Adds more shapes sidebar entry
  3053. - Adds iconfinder library
  3054. 29-MAR-2012: 1.4.0.2
  3055. - Adds UML library
  3056. - Adds experimental group selection
  3057. - Adds persistent UI settings
  3058. - Adds templates, file, new... menu
  3059. - Adds HTML labels with editing
  3060. - Adds aa URL parameter to disable anti aliasing
  3061. - Adds PDF export via backend with limited HTML support
  3062. - Adds context menu in sidebar
  3063. - Various fixes from bug reports, disabled Flash
  3064. 16-FEB-2012: 1.4.0.0
  3065. - First release of new codebase
  3066. 24-JAN-2012: 1.3.2.2
  3067. - Fixes for brix
  3068. 13-JAN-2012: 1.3.2.0
  3069. - Enables .vdx importing for GAE
  3070. 25-DEC-2011: 1.3.1.2
  3071. - Avoids passing null version parameter onto primary client server
  3072. 23-DEC-2011: 1.3.1.1
  3073. - Adds AWS icons
  3074. - Updates core to 1.8.0.6
  3075. 15-DEC-2011: 1.3.1.0
  3076. - Adds local SVG generation
  3077. - Adds client servlet for cached mxclient delivery
  3078. 17-NOV-2011: 1.3.0.1
  3079. - mxgraph.mockuop.form_elements stencil set name typo corrected
  3080. 11-NOV-2011: 1.3.0.0
  3081. - Addition stencil based shapes added
  3082. 14-JUL-2011: 1.2.0.1
  3083. - Collaboration integrated
  3084. 11-JUL-2011: 1.2.0.0
  3085. - Deployed to GAE by default
  3086. 24-JUN-2011: 1.1.1.0
  3087. - Sprited toolbar icons
  3088. - Local open for file API enabled browsers
  3089. 26-MAY-2011: 1.1.0.0
  3090. - Switches most content to static serving
  3091. - New iPad interface
  3092. 12-MAY-2011: 1.0.11.0
  3093. - Adds simplified default stylesheet for new diagrams
  3094. - Adds UI for transparency, user-defined colors and images
  3095. 02-MAY-2011: 1.0.10.1
  3096. - Additional static gzipping of resources
  3097. - Adds lazy loading of images in collapsed palettes
  3098. 05-APR-2011: 1.0.10.0
  3099. - Fixes string escaping parse errors on open
  3100. - Add show/parse XML options
  3101. 17-MAR-2011: 1.0.9.0
  3102. - Adds duplicate context menu item, ctrl-D
  3103. - Adds optional navigation context menu
  3104. - Adds optional navigation icons
  3105. - Adds support for cursor keys
  3106. - Adds guides
  3107. 05-MAR-2011: 1.0.8.0
  3108. - Adds connect preview
  3109. - Adds splash screens
  3110. - Adds import of VDX files
  3111. 02-MAR-2011: 1.0.7.0
  3112. - Uses connect image for new connections
  3113. - Changes save, export, print, open dialogs
  3114. - Changes toolbars, toolbar icons
  3115. 25-FEB-2011: 1.0.6.0
  3116. - Corrected title to diagram.ly
  3117. - Adds sv, pl, ar translations.
  3118. 15-FEB-2011: 1.0.5.0
  3119. - Adds footer
  3120. - i18n for library text.
  3121. - Adds it, fr, zh, pt, ja, es, ru, nl translations.
  3122. 02-FEB-2011: 1.0.4.0
  3123. - Uses mxGraph core 1.5.1.5 to fix IE 6 dialogs.
  3124. 30-JAN-2011: 1.0.3.1
  3125. - Sets svgCanvas variable of ExportServlet to null on each request. Previously,
  3126. making an SVG export request then broke the other image exports.
  3127. 30-JAN-2011: 1.0.3.0
  3128. - Fixes forwarding to site using Firefox