ChangeLog 138 KB

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