ChangeLog 132 KB

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