ChangeLog 124 KB

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