ChangeLog 119 KB

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