ChangeLog 132 KB

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