ChangeLog 126 KB

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