ChangeLog 137 KB

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