ChangeLog 134 KB

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