ChangeLog 137 KB

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