releases.atom 547 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom">
  3. <link rel="self" href="http://ytdl-org.github.io/youtube-dl/update/releases.atom" />
  4. <title>youtube-dl releases</title>
  5. <id>https://yt-dl.org/feed/youtube-dl-updates-feed</id>
  6. <updated>2021-12-17T02:01:41.662926Z</updated>
  7. <entry>
  8. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2012.02.22</id>
  9. <title>New version 2012.02.22</title>
  10. <link href="http://ytdl-org.github.io/youtube-dl" />
  11. <content type="xhtml">
  12. <div xmlns="http://www.w3.org/1999/xhtml">
  13. Downloads available at <a href="https://yt-dl.org/downloads/2012.02.22/">https://yt-dl.org/downloads/2012.02.22/</a>
  14. </div>
  15. </content>
  16. <author>
  17. <name>The youtube-dl maintainers</name>
  18. </author>
  19. <updated>2012-02-22T00:00:00Z</updated>
  20. </entry>
  21. <entry>
  22. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.02</id>
  23. <title>New version 2013.01.02</title>
  24. <link href="http://ytdl-org.github.io/youtube-dl" />
  25. <content type="xhtml">
  26. <div xmlns="http://www.w3.org/1999/xhtml">
  27. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.02/">https://yt-dl.org/downloads/2013.01.02/</a>
  28. </div>
  29. </content>
  30. <author>
  31. <name>The youtube-dl maintainers</name>
  32. </author>
  33. <updated>2013-01-02T00:00:00Z</updated>
  34. </entry>
  35. <entry>
  36. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.06</id>
  37. <title>New version 2013.01.06</title>
  38. <link href="http://ytdl-org.github.io/youtube-dl" />
  39. <content type="xhtml">
  40. <div xmlns="http://www.w3.org/1999/xhtml">
  41. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.06/">https://yt-dl.org/downloads/2013.01.06/</a>
  42. </div>
  43. </content>
  44. <author>
  45. <name>The youtube-dl maintainers</name>
  46. </author>
  47. <updated>2013-01-06T00:00:00Z</updated>
  48. </entry>
  49. <entry>
  50. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.08</id>
  51. <title>New version 2013.01.08</title>
  52. <link href="http://ytdl-org.github.io/youtube-dl" />
  53. <content type="xhtml">
  54. <div xmlns="http://www.w3.org/1999/xhtml">
  55. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.08/">https://yt-dl.org/downloads/2013.01.08/</a>
  56. </div>
  57. </content>
  58. <author>
  59. <name>The youtube-dl maintainers</name>
  60. </author>
  61. <updated>2013-01-08T00:00:00Z</updated>
  62. </entry>
  63. <entry>
  64. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.11</id>
  65. <title>New version 2013.01.11</title>
  66. <link href="http://ytdl-org.github.io/youtube-dl" />
  67. <content type="xhtml">
  68. <div xmlns="http://www.w3.org/1999/xhtml">
  69. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.11/">https://yt-dl.org/downloads/2013.01.11/</a>
  70. </div>
  71. </content>
  72. <author>
  73. <name>The youtube-dl maintainers</name>
  74. </author>
  75. <updated>2013-01-11T00:00:00Z</updated>
  76. </entry>
  77. <entry>
  78. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.12</id>
  79. <title>New version 2013.01.12</title>
  80. <link href="http://ytdl-org.github.io/youtube-dl" />
  81. <content type="xhtml">
  82. <div xmlns="http://www.w3.org/1999/xhtml">
  83. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.12/">https://yt-dl.org/downloads/2013.01.12/</a>
  84. </div>
  85. </content>
  86. <author>
  87. <name>The youtube-dl maintainers</name>
  88. </author>
  89. <updated>2013-01-12T00:00:00Z</updated>
  90. </entry>
  91. <entry>
  92. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.13</id>
  93. <title>New version 2013.01.13</title>
  94. <link href="http://ytdl-org.github.io/youtube-dl" />
  95. <content type="xhtml">
  96. <div xmlns="http://www.w3.org/1999/xhtml">
  97. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.13/">https://yt-dl.org/downloads/2013.01.13/</a>
  98. </div>
  99. </content>
  100. <author>
  101. <name>The youtube-dl maintainers</name>
  102. </author>
  103. <updated>2013-01-13T00:00:00Z</updated>
  104. </entry>
  105. <entry>
  106. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.17</id>
  107. <title>New version 2013.01.17</title>
  108. <link href="http://ytdl-org.github.io/youtube-dl" />
  109. <content type="xhtml">
  110. <div xmlns="http://www.w3.org/1999/xhtml">
  111. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.17/">https://yt-dl.org/downloads/2013.01.17/</a>
  112. </div>
  113. </content>
  114. <author>
  115. <name>The youtube-dl maintainers</name>
  116. </author>
  117. <updated>2013-01-17T00:00:00Z</updated>
  118. </entry>
  119. <entry>
  120. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.17.1</id>
  121. <title>New version 2013.01.17.1</title>
  122. <link href="http://ytdl-org.github.io/youtube-dl" />
  123. <content type="xhtml">
  124. <div xmlns="http://www.w3.org/1999/xhtml">
  125. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.17.1/">https://yt-dl.org/downloads/2013.01.17.1/</a>
  126. </div>
  127. </content>
  128. <author>
  129. <name>The youtube-dl maintainers</name>
  130. </author>
  131. <updated>2013-01-17T00:00:01Z</updated>
  132. </entry>
  133. <entry>
  134. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.01.28</id>
  135. <title>New version 2013.01.28</title>
  136. <link href="http://ytdl-org.github.io/youtube-dl" />
  137. <content type="xhtml">
  138. <div xmlns="http://www.w3.org/1999/xhtml">
  139. Downloads available at <a href="https://yt-dl.org/downloads/2013.01.28/">https://yt-dl.org/downloads/2013.01.28/</a>
  140. </div>
  141. </content>
  142. <author>
  143. <name>The youtube-dl maintainers</name>
  144. </author>
  145. <updated>2013-01-28T00:00:00Z</updated>
  146. </entry>
  147. <entry>
  148. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.01</id>
  149. <title>New version 2013.02.01</title>
  150. <link href="http://ytdl-org.github.io/youtube-dl" />
  151. <content type="xhtml">
  152. <div xmlns="http://www.w3.org/1999/xhtml">
  153. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.01/">https://yt-dl.org/downloads/2013.02.01/</a>
  154. </div>
  155. </content>
  156. <author>
  157. <name>The youtube-dl maintainers</name>
  158. </author>
  159. <updated>2013-02-01T00:00:00Z</updated>
  160. </entry>
  161. <entry>
  162. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.02</id>
  163. <title>New version 2013.02.02</title>
  164. <link href="http://ytdl-org.github.io/youtube-dl" />
  165. <content type="xhtml">
  166. <div xmlns="http://www.w3.org/1999/xhtml">
  167. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.02/">https://yt-dl.org/downloads/2013.02.02/</a>
  168. </div>
  169. </content>
  170. <author>
  171. <name>The youtube-dl maintainers</name>
  172. </author>
  173. <updated>2013-02-02T00:00:00Z</updated>
  174. </entry>
  175. <entry>
  176. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.18</id>
  177. <title>New version 2013.02.18</title>
  178. <link href="http://ytdl-org.github.io/youtube-dl" />
  179. <content type="xhtml">
  180. <div xmlns="http://www.w3.org/1999/xhtml">
  181. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.18/">https://yt-dl.org/downloads/2013.02.18/</a>
  182. </div>
  183. </content>
  184. <author>
  185. <name>The youtube-dl maintainers</name>
  186. </author>
  187. <updated>2013-02-18T00:00:00Z</updated>
  188. </entry>
  189. <entry>
  190. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.19</id>
  191. <title>New version 2013.02.19</title>
  192. <link href="http://ytdl-org.github.io/youtube-dl" />
  193. <content type="xhtml">
  194. <div xmlns="http://www.w3.org/1999/xhtml">
  195. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.19/">https://yt-dl.org/downloads/2013.02.19/</a>
  196. </div>
  197. </content>
  198. <author>
  199. <name>The youtube-dl maintainers</name>
  200. </author>
  201. <updated>2013-02-19T00:00:00Z</updated>
  202. </entry>
  203. <entry>
  204. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.22</id>
  205. <title>New version 2013.02.22</title>
  206. <link href="http://ytdl-org.github.io/youtube-dl" />
  207. <content type="xhtml">
  208. <div xmlns="http://www.w3.org/1999/xhtml">
  209. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.22/">https://yt-dl.org/downloads/2013.02.22/</a>
  210. </div>
  211. </content>
  212. <author>
  213. <name>The youtube-dl maintainers</name>
  214. </author>
  215. <updated>2013-02-22T00:00:00Z</updated>
  216. </entry>
  217. <entry>
  218. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.02.25</id>
  219. <title>New version 2013.02.25</title>
  220. <link href="http://ytdl-org.github.io/youtube-dl" />
  221. <content type="xhtml">
  222. <div xmlns="http://www.w3.org/1999/xhtml">
  223. Downloads available at <a href="https://yt-dl.org/downloads/2013.02.25/">https://yt-dl.org/downloads/2013.02.25/</a>
  224. </div>
  225. </content>
  226. <author>
  227. <name>The youtube-dl maintainers</name>
  228. </author>
  229. <updated>2013-02-25T00:00:00Z</updated>
  230. </entry>
  231. <entry>
  232. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.03.24</id>
  233. <title>New version 2013.03.24</title>
  234. <link href="http://ytdl-org.github.io/youtube-dl" />
  235. <content type="xhtml">
  236. <div xmlns="http://www.w3.org/1999/xhtml">
  237. Downloads available at <a href="https://yt-dl.org/downloads/2013.03.24/">https://yt-dl.org/downloads/2013.03.24/</a>
  238. </div>
  239. </content>
  240. <author>
  241. <name>The youtube-dl maintainers</name>
  242. </author>
  243. <updated>2013-03-24T00:00:00Z</updated>
  244. </entry>
  245. <entry>
  246. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.03.24.2</id>
  247. <title>New version 2013.03.24.2</title>
  248. <link href="http://ytdl-org.github.io/youtube-dl" />
  249. <content type="xhtml">
  250. <div xmlns="http://www.w3.org/1999/xhtml">
  251. Downloads available at <a href="https://yt-dl.org/downloads/2013.03.24.2/">https://yt-dl.org/downloads/2013.03.24.2/</a>
  252. </div>
  253. </content>
  254. <author>
  255. <name>The youtube-dl maintainers</name>
  256. </author>
  257. <updated>2013-03-24T00:00:02Z</updated>
  258. </entry>
  259. <entry>
  260. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.03.29</id>
  261. <title>New version 2013.03.29</title>
  262. <link href="http://ytdl-org.github.io/youtube-dl" />
  263. <content type="xhtml">
  264. <div xmlns="http://www.w3.org/1999/xhtml">
  265. Downloads available at <a href="https://yt-dl.org/downloads/2013.03.29/">https://yt-dl.org/downloads/2013.03.29/</a>
  266. </div>
  267. </content>
  268. <author>
  269. <name>The youtube-dl maintainers</name>
  270. </author>
  271. <updated>2013-03-29T00:00:00Z</updated>
  272. </entry>
  273. <entry>
  274. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.03</id>
  275. <title>New version 2013.04.03</title>
  276. <link href="http://ytdl-org.github.io/youtube-dl" />
  277. <content type="xhtml">
  278. <div xmlns="http://www.w3.org/1999/xhtml">
  279. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.03/">https://yt-dl.org/downloads/2013.04.03/</a>
  280. </div>
  281. </content>
  282. <author>
  283. <name>The youtube-dl maintainers</name>
  284. </author>
  285. <updated>2013-04-03T00:00:00Z</updated>
  286. </entry>
  287. <entry>
  288. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.11</id>
  289. <title>New version 2013.04.11</title>
  290. <link href="http://ytdl-org.github.io/youtube-dl" />
  291. <content type="xhtml">
  292. <div xmlns="http://www.w3.org/1999/xhtml">
  293. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.11/">https://yt-dl.org/downloads/2013.04.11/</a>
  294. </div>
  295. </content>
  296. <author>
  297. <name>The youtube-dl maintainers</name>
  298. </author>
  299. <updated>2013-04-11T00:00:00Z</updated>
  300. </entry>
  301. <entry>
  302. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.18</id>
  303. <title>New version 2013.04.18</title>
  304. <link href="http://ytdl-org.github.io/youtube-dl" />
  305. <content type="xhtml">
  306. <div xmlns="http://www.w3.org/1999/xhtml">
  307. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.18/">https://yt-dl.org/downloads/2013.04.18/</a>
  308. </div>
  309. </content>
  310. <author>
  311. <name>The youtube-dl maintainers</name>
  312. </author>
  313. <updated>2013-04-18T00:00:00Z</updated>
  314. </entry>
  315. <entry>
  316. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.21</id>
  317. <title>New version 2013.04.21</title>
  318. <link href="http://ytdl-org.github.io/youtube-dl" />
  319. <content type="xhtml">
  320. <div xmlns="http://www.w3.org/1999/xhtml">
  321. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.21/">https://yt-dl.org/downloads/2013.04.21/</a>
  322. </div>
  323. </content>
  324. <author>
  325. <name>The youtube-dl maintainers</name>
  326. </author>
  327. <updated>2013-04-21T00:00:00Z</updated>
  328. </entry>
  329. <entry>
  330. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.22</id>
  331. <title>New version 2013.04.22</title>
  332. <link href="http://ytdl-org.github.io/youtube-dl" />
  333. <content type="xhtml">
  334. <div xmlns="http://www.w3.org/1999/xhtml">
  335. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.22/">https://yt-dl.org/downloads/2013.04.22/</a>
  336. </div>
  337. </content>
  338. <author>
  339. <name>The youtube-dl maintainers</name>
  340. </author>
  341. <updated>2013-04-22T00:00:00Z</updated>
  342. </entry>
  343. <entry>
  344. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.27</id>
  345. <title>New version 2013.04.27</title>
  346. <link href="http://ytdl-org.github.io/youtube-dl" />
  347. <content type="xhtml">
  348. <div xmlns="http://www.w3.org/1999/xhtml">
  349. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.27/">https://yt-dl.org/downloads/2013.04.27/</a>
  350. </div>
  351. </content>
  352. <author>
  353. <name>The youtube-dl maintainers</name>
  354. </author>
  355. <updated>2013-04-27T00:00:00Z</updated>
  356. </entry>
  357. <entry>
  358. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.28</id>
  359. <title>New version 2013.04.28</title>
  360. <link href="http://ytdl-org.github.io/youtube-dl" />
  361. <content type="xhtml">
  362. <div xmlns="http://www.w3.org/1999/xhtml">
  363. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.28/">https://yt-dl.org/downloads/2013.04.28/</a>
  364. </div>
  365. </content>
  366. <author>
  367. <name>The youtube-dl maintainers</name>
  368. </author>
  369. <updated>2013-04-28T00:00:00Z</updated>
  370. </entry>
  371. <entry>
  372. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.30</id>
  373. <title>New version 2013.04.30</title>
  374. <link href="http://ytdl-org.github.io/youtube-dl" />
  375. <content type="xhtml">
  376. <div xmlns="http://www.w3.org/1999/xhtml">
  377. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.30/">https://yt-dl.org/downloads/2013.04.30/</a>
  378. </div>
  379. </content>
  380. <author>
  381. <name>The youtube-dl maintainers</name>
  382. </author>
  383. <updated>2013-04-30T00:00:00Z</updated>
  384. </entry>
  385. <entry>
  386. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.04.31</id>
  387. <title>New version 2013.04.31</title>
  388. <link href="http://ytdl-org.github.io/youtube-dl" />
  389. <content type="xhtml">
  390. <div xmlns="http://www.w3.org/1999/xhtml">
  391. Downloads available at <a href="https://yt-dl.org/downloads/2013.04.31/">https://yt-dl.org/downloads/2013.04.31/</a>
  392. </div>
  393. </content>
  394. <author>
  395. <name>The youtube-dl maintainers</name>
  396. </author>
  397. <updated>2013-04-30T00:01:00Z</updated>
  398. </entry>
  399. <entry>
  400. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.01</id>
  401. <title>New version 2013.05.01</title>
  402. <link href="http://ytdl-org.github.io/youtube-dl" />
  403. <content type="xhtml">
  404. <div xmlns="http://www.w3.org/1999/xhtml">
  405. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.01/">https://yt-dl.org/downloads/2013.05.01/</a>
  406. </div>
  407. </content>
  408. <author>
  409. <name>The youtube-dl maintainers</name>
  410. </author>
  411. <updated>2013-05-01T00:00:00Z</updated>
  412. </entry>
  413. <entry>
  414. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.04</id>
  415. <title>New version 2013.05.04</title>
  416. <link href="http://ytdl-org.github.io/youtube-dl" />
  417. <content type="xhtml">
  418. <div xmlns="http://www.w3.org/1999/xhtml">
  419. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.04/">https://yt-dl.org/downloads/2013.05.04/</a>
  420. </div>
  421. </content>
  422. <author>
  423. <name>The youtube-dl maintainers</name>
  424. </author>
  425. <updated>2013-05-04T00:00:00Z</updated>
  426. </entry>
  427. <entry>
  428. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.05</id>
  429. <title>New version 2013.05.05</title>
  430. <link href="http://ytdl-org.github.io/youtube-dl" />
  431. <content type="xhtml">
  432. <div xmlns="http://www.w3.org/1999/xhtml">
  433. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.05/">https://yt-dl.org/downloads/2013.05.05/</a>
  434. </div>
  435. </content>
  436. <author>
  437. <name>The youtube-dl maintainers</name>
  438. </author>
  439. <updated>2013-05-05T00:00:00Z</updated>
  440. </entry>
  441. <entry>
  442. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.07</id>
  443. <title>New version 2013.05.07</title>
  444. <link href="http://ytdl-org.github.io/youtube-dl" />
  445. <content type="xhtml">
  446. <div xmlns="http://www.w3.org/1999/xhtml">
  447. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.07/">https://yt-dl.org/downloads/2013.05.07/</a>
  448. </div>
  449. </content>
  450. <author>
  451. <name>The youtube-dl maintainers</name>
  452. </author>
  453. <updated>2013-05-07T00:00:00Z</updated>
  454. </entry>
  455. <entry>
  456. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.10</id>
  457. <title>New version 2013.05.10</title>
  458. <link href="http://ytdl-org.github.io/youtube-dl" />
  459. <content type="xhtml">
  460. <div xmlns="http://www.w3.org/1999/xhtml">
  461. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.10/">https://yt-dl.org/downloads/2013.05.10/</a>
  462. </div>
  463. </content>
  464. <author>
  465. <name>The youtube-dl maintainers</name>
  466. </author>
  467. <updated>2013-05-10T00:00:00Z</updated>
  468. </entry>
  469. <entry>
  470. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.14</id>
  471. <title>New version 2013.05.14</title>
  472. <link href="http://ytdl-org.github.io/youtube-dl" />
  473. <content type="xhtml">
  474. <div xmlns="http://www.w3.org/1999/xhtml">
  475. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.14/">https://yt-dl.org/downloads/2013.05.14/</a>
  476. </div>
  477. </content>
  478. <author>
  479. <name>The youtube-dl maintainers</name>
  480. </author>
  481. <updated>2013-05-14T00:00:00Z</updated>
  482. </entry>
  483. <entry>
  484. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.05.23</id>
  485. <title>New version 2013.05.23</title>
  486. <link href="http://ytdl-org.github.io/youtube-dl" />
  487. <content type="xhtml">
  488. <div xmlns="http://www.w3.org/1999/xhtml">
  489. Downloads available at <a href="https://yt-dl.org/downloads/2013.05.23/">https://yt-dl.org/downloads/2013.05.23/</a>
  490. </div>
  491. </content>
  492. <author>
  493. <name>The youtube-dl maintainers</name>
  494. </author>
  495. <updated>2013-05-23T00:00:00Z</updated>
  496. </entry>
  497. <entry>
  498. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.21</id>
  499. <title>New version 2013.06.21</title>
  500. <link href="http://ytdl-org.github.io/youtube-dl" />
  501. <content type="xhtml">
  502. <div xmlns="http://www.w3.org/1999/xhtml">
  503. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.21/">https://yt-dl.org/downloads/2013.06.21/</a>
  504. </div>
  505. </content>
  506. <author>
  507. <name>The youtube-dl maintainers</name>
  508. </author>
  509. <updated>2013-06-21T00:00:00Z</updated>
  510. </entry>
  511. <entry>
  512. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.23</id>
  513. <title>New version 2013.06.23</title>
  514. <link href="http://ytdl-org.github.io/youtube-dl" />
  515. <content type="xhtml">
  516. <div xmlns="http://www.w3.org/1999/xhtml">
  517. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.23/">https://yt-dl.org/downloads/2013.06.23/</a>
  518. </div>
  519. </content>
  520. <author>
  521. <name>The youtube-dl maintainers</name>
  522. </author>
  523. <updated>2013-06-23T00:00:00Z</updated>
  524. </entry>
  525. <entry>
  526. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.25</id>
  527. <title>New version 2013.06.25</title>
  528. <link href="http://ytdl-org.github.io/youtube-dl" />
  529. <content type="xhtml">
  530. <div xmlns="http://www.w3.org/1999/xhtml">
  531. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.25/">https://yt-dl.org/downloads/2013.06.25/</a>
  532. </div>
  533. </content>
  534. <author>
  535. <name>The youtube-dl maintainers</name>
  536. </author>
  537. <updated>2013-06-25T00:00:00Z</updated>
  538. </entry>
  539. <entry>
  540. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.26</id>
  541. <title>New version 2013.06.26</title>
  542. <link href="http://ytdl-org.github.io/youtube-dl" />
  543. <content type="xhtml">
  544. <div xmlns="http://www.w3.org/1999/xhtml">
  545. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.26/">https://yt-dl.org/downloads/2013.06.26/</a>
  546. </div>
  547. </content>
  548. <author>
  549. <name>The youtube-dl maintainers</name>
  550. </author>
  551. <updated>2013-06-26T00:00:00Z</updated>
  552. </entry>
  553. <entry>
  554. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.27</id>
  555. <title>New version 2013.06.27</title>
  556. <link href="http://ytdl-org.github.io/youtube-dl" />
  557. <content type="xhtml">
  558. <div xmlns="http://www.w3.org/1999/xhtml">
  559. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.27/">https://yt-dl.org/downloads/2013.06.27/</a>
  560. </div>
  561. </content>
  562. <author>
  563. <name>The youtube-dl maintainers</name>
  564. </author>
  565. <updated>2013-06-27T00:00:00Z</updated>
  566. </entry>
  567. <entry>
  568. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.28</id>
  569. <title>New version 2013.06.28</title>
  570. <link href="http://ytdl-org.github.io/youtube-dl" />
  571. <content type="xhtml">
  572. <div xmlns="http://www.w3.org/1999/xhtml">
  573. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.28/">https://yt-dl.org/downloads/2013.06.28/</a>
  574. </div>
  575. </content>
  576. <author>
  577. <name>The youtube-dl maintainers</name>
  578. </author>
  579. <updated>2013-06-28T00:00:00Z</updated>
  580. </entry>
  581. <entry>
  582. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.29</id>
  583. <title>New version 2013.06.29</title>
  584. <link href="http://ytdl-org.github.io/youtube-dl" />
  585. <content type="xhtml">
  586. <div xmlns="http://www.w3.org/1999/xhtml">
  587. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.29/">https://yt-dl.org/downloads/2013.06.29/</a>
  588. </div>
  589. </content>
  590. <author>
  591. <name>The youtube-dl maintainers</name>
  592. </author>
  593. <updated>2013-06-29T00:00:00Z</updated>
  594. </entry>
  595. <entry>
  596. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.30</id>
  597. <title>New version 2013.06.30</title>
  598. <link href="http://ytdl-org.github.io/youtube-dl" />
  599. <content type="xhtml">
  600. <div xmlns="http://www.w3.org/1999/xhtml">
  601. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.30/">https://yt-dl.org/downloads/2013.06.30/</a>
  602. </div>
  603. </content>
  604. <author>
  605. <name>The youtube-dl maintainers</name>
  606. </author>
  607. <updated>2013-06-30T00:00:00Z</updated>
  608. </entry>
  609. <entry>
  610. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.31</id>
  611. <title>New version 2013.06.31</title>
  612. <link href="http://ytdl-org.github.io/youtube-dl" />
  613. <content type="xhtml">
  614. <div xmlns="http://www.w3.org/1999/xhtml">
  615. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.31/">https://yt-dl.org/downloads/2013.06.31/</a>
  616. </div>
  617. </content>
  618. <author>
  619. <name>The youtube-dl maintainers</name>
  620. </author>
  621. <updated>2013-06-30T00:01:00Z</updated>
  622. </entry>
  623. <entry>
  624. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.32</id>
  625. <title>New version 2013.06.32</title>
  626. <link href="http://ytdl-org.github.io/youtube-dl" />
  627. <content type="xhtml">
  628. <div xmlns="http://www.w3.org/1999/xhtml">
  629. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.32/">https://yt-dl.org/downloads/2013.06.32/</a>
  630. </div>
  631. </content>
  632. <author>
  633. <name>The youtube-dl maintainers</name>
  634. </author>
  635. <updated>2013-06-30T00:02:00Z</updated>
  636. </entry>
  637. <entry>
  638. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.33</id>
  639. <title>New version 2013.06.33</title>
  640. <link href="http://ytdl-org.github.io/youtube-dl" />
  641. <content type="xhtml">
  642. <div xmlns="http://www.w3.org/1999/xhtml">
  643. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.33/">https://yt-dl.org/downloads/2013.06.33/</a>
  644. </div>
  645. </content>
  646. <author>
  647. <name>The youtube-dl maintainers</name>
  648. </author>
  649. <updated>2013-06-30T00:03:00Z</updated>
  650. </entry>
  651. <entry>
  652. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.34</id>
  653. <title>New version 2013.06.34</title>
  654. <link href="http://ytdl-org.github.io/youtube-dl" />
  655. <content type="xhtml">
  656. <div xmlns="http://www.w3.org/1999/xhtml">
  657. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.34/">https://yt-dl.org/downloads/2013.06.34/</a>
  658. </div>
  659. </content>
  660. <author>
  661. <name>The youtube-dl maintainers</name>
  662. </author>
  663. <updated>2013-06-30T00:04:00Z</updated>
  664. </entry>
  665. <entry>
  666. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.34.1</id>
  667. <title>New version 2013.06.34.1</title>
  668. <link href="http://ytdl-org.github.io/youtube-dl" />
  669. <content type="xhtml">
  670. <div xmlns="http://www.w3.org/1999/xhtml">
  671. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.34.1/">https://yt-dl.org/downloads/2013.06.34.1/</a>
  672. </div>
  673. </content>
  674. <author>
  675. <name>The youtube-dl maintainers</name>
  676. </author>
  677. <updated>2013-06-30T00:04:01Z</updated>
  678. </entry>
  679. <entry>
  680. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.34.2</id>
  681. <title>New version 2013.06.34.2</title>
  682. <link href="http://ytdl-org.github.io/youtube-dl" />
  683. <content type="xhtml">
  684. <div xmlns="http://www.w3.org/1999/xhtml">
  685. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.34.2/">https://yt-dl.org/downloads/2013.06.34.2/</a>
  686. </div>
  687. </content>
  688. <author>
  689. <name>The youtube-dl maintainers</name>
  690. </author>
  691. <updated>2013-06-30T00:04:02Z</updated>
  692. </entry>
  693. <entry>
  694. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.34.3</id>
  695. <title>New version 2013.06.34.3</title>
  696. <link href="http://ytdl-org.github.io/youtube-dl" />
  697. <content type="xhtml">
  698. <div xmlns="http://www.w3.org/1999/xhtml">
  699. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.34.3/">https://yt-dl.org/downloads/2013.06.34.3/</a>
  700. </div>
  701. </content>
  702. <author>
  703. <name>The youtube-dl maintainers</name>
  704. </author>
  705. <updated>2013-06-30T00:04:03Z</updated>
  706. </entry>
  707. <entry>
  708. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.06.34.4</id>
  709. <title>New version 2013.06.34.4</title>
  710. <link href="http://ytdl-org.github.io/youtube-dl" />
  711. <content type="xhtml">
  712. <div xmlns="http://www.w3.org/1999/xhtml">
  713. Downloads available at <a href="https://yt-dl.org/downloads/2013.06.34.4/">https://yt-dl.org/downloads/2013.06.34.4/</a>
  714. </div>
  715. </content>
  716. <author>
  717. <name>The youtube-dl maintainers</name>
  718. </author>
  719. <updated>2013-06-30T00:04:04Z</updated>
  720. </entry>
  721. <entry>
  722. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.02</id>
  723. <title>New version 2013.07.02</title>
  724. <link href="http://ytdl-org.github.io/youtube-dl" />
  725. <content type="xhtml">
  726. <div xmlns="http://www.w3.org/1999/xhtml">
  727. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.02/">https://yt-dl.org/downloads/2013.07.02/</a>
  728. </div>
  729. </content>
  730. <author>
  731. <name>The youtube-dl maintainers</name>
  732. </author>
  733. <updated>2013-07-02T00:00:00Z</updated>
  734. </entry>
  735. <entry>
  736. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.04</id>
  737. <title>New version 2013.07.04</title>
  738. <link href="http://ytdl-org.github.io/youtube-dl" />
  739. <content type="xhtml">
  740. <div xmlns="http://www.w3.org/1999/xhtml">
  741. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.04/">https://yt-dl.org/downloads/2013.07.04/</a>
  742. </div>
  743. </content>
  744. <author>
  745. <name>The youtube-dl maintainers</name>
  746. </author>
  747. <updated>2013-07-04T00:00:00Z</updated>
  748. </entry>
  749. <entry>
  750. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.05</id>
  751. <title>New version 2013.07.05</title>
  752. <link href="http://ytdl-org.github.io/youtube-dl" />
  753. <content type="xhtml">
  754. <div xmlns="http://www.w3.org/1999/xhtml">
  755. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.05/">https://yt-dl.org/downloads/2013.07.05/</a>
  756. </div>
  757. </content>
  758. <author>
  759. <name>The youtube-dl maintainers</name>
  760. </author>
  761. <updated>2013-07-05T00:00:00Z</updated>
  762. </entry>
  763. <entry>
  764. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.07.01</id>
  765. <title>New version 2013.07.07.01</title>
  766. <link href="http://ytdl-org.github.io/youtube-dl" />
  767. <content type="xhtml">
  768. <div xmlns="http://www.w3.org/1999/xhtml">
  769. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.07.01/">https://yt-dl.org/downloads/2013.07.07.01/</a>
  770. </div>
  771. </content>
  772. <author>
  773. <name>The youtube-dl maintainers</name>
  774. </author>
  775. <updated>2013-07-07T00:00:01Z</updated>
  776. </entry>
  777. <entry>
  778. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.08</id>
  779. <title>New version 2013.07.08</title>
  780. <link href="http://ytdl-org.github.io/youtube-dl" />
  781. <content type="xhtml">
  782. <div xmlns="http://www.w3.org/1999/xhtml">
  783. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.08/">https://yt-dl.org/downloads/2013.07.08/</a>
  784. </div>
  785. </content>
  786. <author>
  787. <name>The youtube-dl maintainers</name>
  788. </author>
  789. <updated>2013-07-08T00:00:00Z</updated>
  790. </entry>
  791. <entry>
  792. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.08.1</id>
  793. <title>New version 2013.07.08.1</title>
  794. <link href="http://ytdl-org.github.io/youtube-dl" />
  795. <content type="xhtml">
  796. <div xmlns="http://www.w3.org/1999/xhtml">
  797. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.08.1/">https://yt-dl.org/downloads/2013.07.08.1/</a>
  798. </div>
  799. </content>
  800. <author>
  801. <name>The youtube-dl maintainers</name>
  802. </author>
  803. <updated>2013-07-08T00:00:01Z</updated>
  804. </entry>
  805. <entry>
  806. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.10</id>
  807. <title>New version 2013.07.10</title>
  808. <link href="http://ytdl-org.github.io/youtube-dl" />
  809. <content type="xhtml">
  810. <div xmlns="http://www.w3.org/1999/xhtml">
  811. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.10/">https://yt-dl.org/downloads/2013.07.10/</a>
  812. </div>
  813. </content>
  814. <author>
  815. <name>The youtube-dl maintainers</name>
  816. </author>
  817. <updated>2013-07-10T00:00:00Z</updated>
  818. </entry>
  819. <entry>
  820. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.11</id>
  821. <title>New version 2013.07.11</title>
  822. <link href="http://ytdl-org.github.io/youtube-dl" />
  823. <content type="xhtml">
  824. <div xmlns="http://www.w3.org/1999/xhtml">
  825. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.11/">https://yt-dl.org/downloads/2013.07.11/</a>
  826. </div>
  827. </content>
  828. <author>
  829. <name>The youtube-dl maintainers</name>
  830. </author>
  831. <updated>2013-07-11T00:00:00Z</updated>
  832. </entry>
  833. <entry>
  834. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.12</id>
  835. <title>New version 2013.07.12</title>
  836. <link href="http://ytdl-org.github.io/youtube-dl" />
  837. <content type="xhtml">
  838. <div xmlns="http://www.w3.org/1999/xhtml">
  839. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.12/">https://yt-dl.org/downloads/2013.07.12/</a>
  840. </div>
  841. </content>
  842. <author>
  843. <name>The youtube-dl maintainers</name>
  844. </author>
  845. <updated>2013-07-12T00:00:00Z</updated>
  846. </entry>
  847. <entry>
  848. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.17</id>
  849. <title>New version 2013.07.17</title>
  850. <link href="http://ytdl-org.github.io/youtube-dl" />
  851. <content type="xhtml">
  852. <div xmlns="http://www.w3.org/1999/xhtml">
  853. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.17/">https://yt-dl.org/downloads/2013.07.17/</a>
  854. </div>
  855. </content>
  856. <author>
  857. <name>The youtube-dl maintainers</name>
  858. </author>
  859. <updated>2013-07-17T00:00:00Z</updated>
  860. </entry>
  861. <entry>
  862. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.17.1</id>
  863. <title>New version 2013.07.17.1</title>
  864. <link href="http://ytdl-org.github.io/youtube-dl" />
  865. <content type="xhtml">
  866. <div xmlns="http://www.w3.org/1999/xhtml">
  867. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.17.1/">https://yt-dl.org/downloads/2013.07.17.1/</a>
  868. </div>
  869. </content>
  870. <author>
  871. <name>The youtube-dl maintainers</name>
  872. </author>
  873. <updated>2013-07-17T00:00:01Z</updated>
  874. </entry>
  875. <entry>
  876. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.18</id>
  877. <title>New version 2013.07.18</title>
  878. <link href="http://ytdl-org.github.io/youtube-dl" />
  879. <content type="xhtml">
  880. <div xmlns="http://www.w3.org/1999/xhtml">
  881. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.18/">https://yt-dl.org/downloads/2013.07.18/</a>
  882. </div>
  883. </content>
  884. <author>
  885. <name>The youtube-dl maintainers</name>
  886. </author>
  887. <updated>2013-07-18T00:00:00Z</updated>
  888. </entry>
  889. <entry>
  890. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.19</id>
  891. <title>New version 2013.07.19</title>
  892. <link href="http://ytdl-org.github.io/youtube-dl" />
  893. <content type="xhtml">
  894. <div xmlns="http://www.w3.org/1999/xhtml">
  895. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.19/">https://yt-dl.org/downloads/2013.07.19/</a>
  896. </div>
  897. </content>
  898. <author>
  899. <name>The youtube-dl maintainers</name>
  900. </author>
  901. <updated>2013-07-19T00:00:00Z</updated>
  902. </entry>
  903. <entry>
  904. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.23</id>
  905. <title>New version 2013.07.23</title>
  906. <link href="http://ytdl-org.github.io/youtube-dl" />
  907. <content type="xhtml">
  908. <div xmlns="http://www.w3.org/1999/xhtml">
  909. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.23/">https://yt-dl.org/downloads/2013.07.23/</a>
  910. </div>
  911. </content>
  912. <author>
  913. <name>The youtube-dl maintainers</name>
  914. </author>
  915. <updated>2013-07-23T00:00:00Z</updated>
  916. </entry>
  917. <entry>
  918. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.23.1</id>
  919. <title>New version 2013.07.23.1</title>
  920. <link href="http://ytdl-org.github.io/youtube-dl" />
  921. <content type="xhtml">
  922. <div xmlns="http://www.w3.org/1999/xhtml">
  923. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.23.1/">https://yt-dl.org/downloads/2013.07.23.1/</a>
  924. </div>
  925. </content>
  926. <author>
  927. <name>The youtube-dl maintainers</name>
  928. </author>
  929. <updated>2013-07-23T00:00:01Z</updated>
  930. </entry>
  931. <entry>
  932. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.24.2</id>
  933. <title>New version 2013.07.24.2</title>
  934. <link href="http://ytdl-org.github.io/youtube-dl" />
  935. <content type="xhtml">
  936. <div xmlns="http://www.w3.org/1999/xhtml">
  937. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.24.2/">https://yt-dl.org/downloads/2013.07.24.2/</a>
  938. </div>
  939. </content>
  940. <author>
  941. <name>The youtube-dl maintainers</name>
  942. </author>
  943. <updated>2013-07-24T00:00:02Z</updated>
  944. </entry>
  945. <entry>
  946. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.25</id>
  947. <title>New version 2013.07.25</title>
  948. <link href="http://ytdl-org.github.io/youtube-dl" />
  949. <content type="xhtml">
  950. <div xmlns="http://www.w3.org/1999/xhtml">
  951. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.25/">https://yt-dl.org/downloads/2013.07.25/</a>
  952. </div>
  953. </content>
  954. <author>
  955. <name>The youtube-dl maintainers</name>
  956. </author>
  957. <updated>2013-07-25T00:00:00Z</updated>
  958. </entry>
  959. <entry>
  960. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.25.1</id>
  961. <title>New version 2013.07.25.1</title>
  962. <link href="http://ytdl-org.github.io/youtube-dl" />
  963. <content type="xhtml">
  964. <div xmlns="http://www.w3.org/1999/xhtml">
  965. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.25.1/">https://yt-dl.org/downloads/2013.07.25.1/</a>
  966. </div>
  967. </content>
  968. <author>
  969. <name>The youtube-dl maintainers</name>
  970. </author>
  971. <updated>2013-07-25T00:00:01Z</updated>
  972. </entry>
  973. <entry>
  974. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.25.2</id>
  975. <title>New version 2013.07.25.2</title>
  976. <link href="http://ytdl-org.github.io/youtube-dl" />
  977. <content type="xhtml">
  978. <div xmlns="http://www.w3.org/1999/xhtml">
  979. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.25.2/">https://yt-dl.org/downloads/2013.07.25.2/</a>
  980. </div>
  981. </content>
  982. <author>
  983. <name>The youtube-dl maintainers</name>
  984. </author>
  985. <updated>2013-07-25T00:00:02Z</updated>
  986. </entry>
  987. <entry>
  988. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.07.31</id>
  989. <title>New version 2013.07.31</title>
  990. <link href="http://ytdl-org.github.io/youtube-dl" />
  991. <content type="xhtml">
  992. <div xmlns="http://www.w3.org/1999/xhtml">
  993. Downloads available at <a href="https://yt-dl.org/downloads/2013.07.31/">https://yt-dl.org/downloads/2013.07.31/</a>
  994. </div>
  995. </content>
  996. <author>
  997. <name>The youtube-dl maintainers</name>
  998. </author>
  999. <updated>2013-07-31T00:00:00Z</updated>
  1000. </entry>
  1001. <entry>
  1002. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.02</id>
  1003. <title>New version 2013.08.02</title>
  1004. <link href="http://ytdl-org.github.io/youtube-dl" />
  1005. <content type="xhtml">
  1006. <div xmlns="http://www.w3.org/1999/xhtml">
  1007. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.02/">https://yt-dl.org/downloads/2013.08.02/</a>
  1008. </div>
  1009. </content>
  1010. <author>
  1011. <name>The youtube-dl maintainers</name>
  1012. </author>
  1013. <updated>2013-08-02T00:00:00Z</updated>
  1014. </entry>
  1015. <entry>
  1016. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.08</id>
  1017. <title>New version 2013.08.08</title>
  1018. <link href="http://ytdl-org.github.io/youtube-dl" />
  1019. <content type="xhtml">
  1020. <div xmlns="http://www.w3.org/1999/xhtml">
  1021. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.08/">https://yt-dl.org/downloads/2013.08.08/</a>
  1022. </div>
  1023. </content>
  1024. <author>
  1025. <name>The youtube-dl maintainers</name>
  1026. </author>
  1027. <updated>2013-08-08T00:00:00Z</updated>
  1028. </entry>
  1029. <entry>
  1030. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.08.1</id>
  1031. <title>New version 2013.08.08.1</title>
  1032. <link href="http://ytdl-org.github.io/youtube-dl" />
  1033. <content type="xhtml">
  1034. <div xmlns="http://www.w3.org/1999/xhtml">
  1035. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.08.1/">https://yt-dl.org/downloads/2013.08.08.1/</a>
  1036. </div>
  1037. </content>
  1038. <author>
  1039. <name>The youtube-dl maintainers</name>
  1040. </author>
  1041. <updated>2013-08-08T00:00:01Z</updated>
  1042. </entry>
  1043. <entry>
  1044. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.09</id>
  1045. <title>New version 2013.08.09</title>
  1046. <link href="http://ytdl-org.github.io/youtube-dl" />
  1047. <content type="xhtml">
  1048. <div xmlns="http://www.w3.org/1999/xhtml">
  1049. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.09/">https://yt-dl.org/downloads/2013.08.09/</a>
  1050. </div>
  1051. </content>
  1052. <author>
  1053. <name>The youtube-dl maintainers</name>
  1054. </author>
  1055. <updated>2013-08-09T00:00:00Z</updated>
  1056. </entry>
  1057. <entry>
  1058. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.14</id>
  1059. <title>New version 2013.08.14</title>
  1060. <link href="http://ytdl-org.github.io/youtube-dl" />
  1061. <content type="xhtml">
  1062. <div xmlns="http://www.w3.org/1999/xhtml">
  1063. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.14/">https://yt-dl.org/downloads/2013.08.14/</a>
  1064. </div>
  1065. </content>
  1066. <author>
  1067. <name>The youtube-dl maintainers</name>
  1068. </author>
  1069. <updated>2013-08-14T00:00:00Z</updated>
  1070. </entry>
  1071. <entry>
  1072. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.15</id>
  1073. <title>New version 2013.08.15</title>
  1074. <link href="http://ytdl-org.github.io/youtube-dl" />
  1075. <content type="xhtml">
  1076. <div xmlns="http://www.w3.org/1999/xhtml">
  1077. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.15/">https://yt-dl.org/downloads/2013.08.15/</a>
  1078. </div>
  1079. </content>
  1080. <author>
  1081. <name>The youtube-dl maintainers</name>
  1082. </author>
  1083. <updated>2013-08-15T00:00:00Z</updated>
  1084. </entry>
  1085. <entry>
  1086. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.17</id>
  1087. <title>New version 2013.08.17</title>
  1088. <link href="http://ytdl-org.github.io/youtube-dl" />
  1089. <content type="xhtml">
  1090. <div xmlns="http://www.w3.org/1999/xhtml">
  1091. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.17/">https://yt-dl.org/downloads/2013.08.17/</a>
  1092. </div>
  1093. </content>
  1094. <author>
  1095. <name>The youtube-dl maintainers</name>
  1096. </author>
  1097. <updated>2013-08-17T00:00:00Z</updated>
  1098. </entry>
  1099. <entry>
  1100. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.22</id>
  1101. <title>New version 2013.08.22</title>
  1102. <link href="http://ytdl-org.github.io/youtube-dl" />
  1103. <content type="xhtml">
  1104. <div xmlns="http://www.w3.org/1999/xhtml">
  1105. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.22/">https://yt-dl.org/downloads/2013.08.22/</a>
  1106. </div>
  1107. </content>
  1108. <author>
  1109. <name>The youtube-dl maintainers</name>
  1110. </author>
  1111. <updated>2013-08-22T00:00:00Z</updated>
  1112. </entry>
  1113. <entry>
  1114. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.23</id>
  1115. <title>New version 2013.08.23</title>
  1116. <link href="http://ytdl-org.github.io/youtube-dl" />
  1117. <content type="xhtml">
  1118. <div xmlns="http://www.w3.org/1999/xhtml">
  1119. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.23/">https://yt-dl.org/downloads/2013.08.23/</a>
  1120. </div>
  1121. </content>
  1122. <author>
  1123. <name>The youtube-dl maintainers</name>
  1124. </author>
  1125. <updated>2013-08-23T00:00:00Z</updated>
  1126. </entry>
  1127. <entry>
  1128. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.27</id>
  1129. <title>New version 2013.08.27</title>
  1130. <link href="http://ytdl-org.github.io/youtube-dl" />
  1131. <content type="xhtml">
  1132. <div xmlns="http://www.w3.org/1999/xhtml">
  1133. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.27/">https://yt-dl.org/downloads/2013.08.27/</a>
  1134. </div>
  1135. </content>
  1136. <author>
  1137. <name>The youtube-dl maintainers</name>
  1138. </author>
  1139. <updated>2013-08-27T00:00:00Z</updated>
  1140. </entry>
  1141. <entry>
  1142. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.28</id>
  1143. <title>New version 2013.08.28</title>
  1144. <link href="http://ytdl-org.github.io/youtube-dl" />
  1145. <content type="xhtml">
  1146. <div xmlns="http://www.w3.org/1999/xhtml">
  1147. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.28/">https://yt-dl.org/downloads/2013.08.28/</a>
  1148. </div>
  1149. </content>
  1150. <author>
  1151. <name>The youtube-dl maintainers</name>
  1152. </author>
  1153. <updated>2013-08-28T00:00:00Z</updated>
  1154. </entry>
  1155. <entry>
  1156. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.28.1</id>
  1157. <title>New version 2013.08.28.1</title>
  1158. <link href="http://ytdl-org.github.io/youtube-dl" />
  1159. <content type="xhtml">
  1160. <div xmlns="http://www.w3.org/1999/xhtml">
  1161. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.28.1/">https://yt-dl.org/downloads/2013.08.28.1/</a>
  1162. </div>
  1163. </content>
  1164. <author>
  1165. <name>The youtube-dl maintainers</name>
  1166. </author>
  1167. <updated>2013-08-28T00:00:01Z</updated>
  1168. </entry>
  1169. <entry>
  1170. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.29</id>
  1171. <title>New version 2013.08.29</title>
  1172. <link href="http://ytdl-org.github.io/youtube-dl" />
  1173. <content type="xhtml">
  1174. <div xmlns="http://www.w3.org/1999/xhtml">
  1175. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.29/">https://yt-dl.org/downloads/2013.08.29/</a>
  1176. </div>
  1177. </content>
  1178. <author>
  1179. <name>The youtube-dl maintainers</name>
  1180. </author>
  1181. <updated>2013-08-29T00:00:00Z</updated>
  1182. </entry>
  1183. <entry>
  1184. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.08.30</id>
  1185. <title>New version 2013.08.30</title>
  1186. <link href="http://ytdl-org.github.io/youtube-dl" />
  1187. <content type="xhtml">
  1188. <div xmlns="http://www.w3.org/1999/xhtml">
  1189. Downloads available at <a href="https://yt-dl.org/downloads/2013.08.30/">https://yt-dl.org/downloads/2013.08.30/</a>
  1190. </div>
  1191. </content>
  1192. <author>
  1193. <name>The youtube-dl maintainers</name>
  1194. </author>
  1195. <updated>2013-08-30T00:00:00Z</updated>
  1196. </entry>
  1197. <entry>
  1198. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.04</id>
  1199. <title>New version 2013.09.04</title>
  1200. <link href="http://ytdl-org.github.io/youtube-dl" />
  1201. <content type="xhtml">
  1202. <div xmlns="http://www.w3.org/1999/xhtml">
  1203. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.04/">https://yt-dl.org/downloads/2013.09.04/</a>
  1204. </div>
  1205. </content>
  1206. <author>
  1207. <name>The youtube-dl maintainers</name>
  1208. </author>
  1209. <updated>2013-09-04T00:00:00Z</updated>
  1210. </entry>
  1211. <entry>
  1212. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.05</id>
  1213. <title>New version 2013.09.05</title>
  1214. <link href="http://ytdl-org.github.io/youtube-dl" />
  1215. <content type="xhtml">
  1216. <div xmlns="http://www.w3.org/1999/xhtml">
  1217. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.05/">https://yt-dl.org/downloads/2013.09.05/</a>
  1218. </div>
  1219. </content>
  1220. <author>
  1221. <name>The youtube-dl maintainers</name>
  1222. </author>
  1223. <updated>2013-09-05T00:00:00Z</updated>
  1224. </entry>
  1225. <entry>
  1226. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.06</id>
  1227. <title>New version 2013.09.06</title>
  1228. <link href="http://ytdl-org.github.io/youtube-dl" />
  1229. <content type="xhtml">
  1230. <div xmlns="http://www.w3.org/1999/xhtml">
  1231. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.06/">https://yt-dl.org/downloads/2013.09.06/</a>
  1232. </div>
  1233. </content>
  1234. <author>
  1235. <name>The youtube-dl maintainers</name>
  1236. </author>
  1237. <updated>2013-09-06T00:00:00Z</updated>
  1238. </entry>
  1239. <entry>
  1240. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.06.1</id>
  1241. <title>New version 2013.09.06.1</title>
  1242. <link href="http://ytdl-org.github.io/youtube-dl" />
  1243. <content type="xhtml">
  1244. <div xmlns="http://www.w3.org/1999/xhtml">
  1245. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.06.1/">https://yt-dl.org/downloads/2013.09.06.1/</a>
  1246. </div>
  1247. </content>
  1248. <author>
  1249. <name>The youtube-dl maintainers</name>
  1250. </author>
  1251. <updated>2013-09-06T00:00:01Z</updated>
  1252. </entry>
  1253. <entry>
  1254. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.07</id>
  1255. <title>New version 2013.09.07</title>
  1256. <link href="http://ytdl-org.github.io/youtube-dl" />
  1257. <content type="xhtml">
  1258. <div xmlns="http://www.w3.org/1999/xhtml">
  1259. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.07/">https://yt-dl.org/downloads/2013.09.07/</a>
  1260. </div>
  1261. </content>
  1262. <author>
  1263. <name>The youtube-dl maintainers</name>
  1264. </author>
  1265. <updated>2013-09-07T00:00:00Z</updated>
  1266. </entry>
  1267. <entry>
  1268. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.10</id>
  1269. <title>New version 2013.09.10</title>
  1270. <link href="http://ytdl-org.github.io/youtube-dl" />
  1271. <content type="xhtml">
  1272. <div xmlns="http://www.w3.org/1999/xhtml">
  1273. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.10/">https://yt-dl.org/downloads/2013.09.10/</a>
  1274. </div>
  1275. </content>
  1276. <author>
  1277. <name>The youtube-dl maintainers</name>
  1278. </author>
  1279. <updated>2013-09-10T00:00:00Z</updated>
  1280. </entry>
  1281. <entry>
  1282. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.16</id>
  1283. <title>New version 2013.09.16</title>
  1284. <link href="http://ytdl-org.github.io/youtube-dl" />
  1285. <content type="xhtml">
  1286. <div xmlns="http://www.w3.org/1999/xhtml">
  1287. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.16/">https://yt-dl.org/downloads/2013.09.16/</a>
  1288. </div>
  1289. </content>
  1290. <author>
  1291. <name>The youtube-dl maintainers</name>
  1292. </author>
  1293. <updated>2013-09-16T00:00:00Z</updated>
  1294. </entry>
  1295. <entry>
  1296. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.17</id>
  1297. <title>New version 2013.09.17</title>
  1298. <link href="http://ytdl-org.github.io/youtube-dl" />
  1299. <content type="xhtml">
  1300. <div xmlns="http://www.w3.org/1999/xhtml">
  1301. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.17/">https://yt-dl.org/downloads/2013.09.17/</a>
  1302. </div>
  1303. </content>
  1304. <author>
  1305. <name>The youtube-dl maintainers</name>
  1306. </author>
  1307. <updated>2013-09-17T00:00:00Z</updated>
  1308. </entry>
  1309. <entry>
  1310. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.20</id>
  1311. <title>New version 2013.09.20</title>
  1312. <link href="http://ytdl-org.github.io/youtube-dl" />
  1313. <content type="xhtml">
  1314. <div xmlns="http://www.w3.org/1999/xhtml">
  1315. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.20/">https://yt-dl.org/downloads/2013.09.20/</a>
  1316. </div>
  1317. </content>
  1318. <author>
  1319. <name>The youtube-dl maintainers</name>
  1320. </author>
  1321. <updated>2013-09-20T00:00:00Z</updated>
  1322. </entry>
  1323. <entry>
  1324. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.20.1</id>
  1325. <title>New version 2013.09.20.1</title>
  1326. <link href="http://ytdl-org.github.io/youtube-dl" />
  1327. <content type="xhtml">
  1328. <div xmlns="http://www.w3.org/1999/xhtml">
  1329. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.20.1/">https://yt-dl.org/downloads/2013.09.20.1/</a>
  1330. </div>
  1331. </content>
  1332. <author>
  1333. <name>The youtube-dl maintainers</name>
  1334. </author>
  1335. <updated>2013-09-20T00:00:01Z</updated>
  1336. </entry>
  1337. <entry>
  1338. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.24</id>
  1339. <title>New version 2013.09.24</title>
  1340. <link href="http://ytdl-org.github.io/youtube-dl" />
  1341. <content type="xhtml">
  1342. <div xmlns="http://www.w3.org/1999/xhtml">
  1343. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.24/">https://yt-dl.org/downloads/2013.09.24/</a>
  1344. </div>
  1345. </content>
  1346. <author>
  1347. <name>The youtube-dl maintainers</name>
  1348. </author>
  1349. <updated>2013-09-24T00:00:00Z</updated>
  1350. </entry>
  1351. <entry>
  1352. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.24.1</id>
  1353. <title>New version 2013.09.24.1</title>
  1354. <link href="http://ytdl-org.github.io/youtube-dl" />
  1355. <content type="xhtml">
  1356. <div xmlns="http://www.w3.org/1999/xhtml">
  1357. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.24.1/">https://yt-dl.org/downloads/2013.09.24.1/</a>
  1358. </div>
  1359. </content>
  1360. <author>
  1361. <name>The youtube-dl maintainers</name>
  1362. </author>
  1363. <updated>2013-09-24T00:00:01Z</updated>
  1364. </entry>
  1365. <entry>
  1366. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.24.2</id>
  1367. <title>New version 2013.09.24.2</title>
  1368. <link href="http://ytdl-org.github.io/youtube-dl" />
  1369. <content type="xhtml">
  1370. <div xmlns="http://www.w3.org/1999/xhtml">
  1371. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.24.2/">https://yt-dl.org/downloads/2013.09.24.2/</a>
  1372. </div>
  1373. </content>
  1374. <author>
  1375. <name>The youtube-dl maintainers</name>
  1376. </author>
  1377. <updated>2013-09-24T00:00:02Z</updated>
  1378. </entry>
  1379. <entry>
  1380. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.09.29</id>
  1381. <title>New version 2013.09.29</title>
  1382. <link href="http://ytdl-org.github.io/youtube-dl" />
  1383. <content type="xhtml">
  1384. <div xmlns="http://www.w3.org/1999/xhtml">
  1385. Downloads available at <a href="https://yt-dl.org/downloads/2013.09.29/">https://yt-dl.org/downloads/2013.09.29/</a>
  1386. </div>
  1387. </content>
  1388. <author>
  1389. <name>The youtube-dl maintainers</name>
  1390. </author>
  1391. <updated>2013-09-29T00:00:00Z</updated>
  1392. </entry>
  1393. <entry>
  1394. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.01</id>
  1395. <title>New version 2013.10.01</title>
  1396. <link href="http://ytdl-org.github.io/youtube-dl" />
  1397. <content type="xhtml">
  1398. <div xmlns="http://www.w3.org/1999/xhtml">
  1399. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.01/">https://yt-dl.org/downloads/2013.10.01/</a>
  1400. </div>
  1401. </content>
  1402. <author>
  1403. <name>The youtube-dl maintainers</name>
  1404. </author>
  1405. <updated>2013-10-01T00:00:00Z</updated>
  1406. </entry>
  1407. <entry>
  1408. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.01.1</id>
  1409. <title>New version 2013.10.01.1</title>
  1410. <link href="http://ytdl-org.github.io/youtube-dl" />
  1411. <content type="xhtml">
  1412. <div xmlns="http://www.w3.org/1999/xhtml">
  1413. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.01.1/">https://yt-dl.org/downloads/2013.10.01.1/</a>
  1414. </div>
  1415. </content>
  1416. <author>
  1417. <name>The youtube-dl maintainers</name>
  1418. </author>
  1419. <updated>2013-10-01T00:00:01Z</updated>
  1420. </entry>
  1421. <entry>
  1422. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.04</id>
  1423. <title>New version 2013.10.04</title>
  1424. <link href="http://ytdl-org.github.io/youtube-dl" />
  1425. <content type="xhtml">
  1426. <div xmlns="http://www.w3.org/1999/xhtml">
  1427. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.04/">https://yt-dl.org/downloads/2013.10.04/</a>
  1428. </div>
  1429. </content>
  1430. <author>
  1431. <name>The youtube-dl maintainers</name>
  1432. </author>
  1433. <updated>2013-10-04T00:00:00Z</updated>
  1434. </entry>
  1435. <entry>
  1436. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.06</id>
  1437. <title>New version 2013.10.06</title>
  1438. <link href="http://ytdl-org.github.io/youtube-dl" />
  1439. <content type="xhtml">
  1440. <div xmlns="http://www.w3.org/1999/xhtml">
  1441. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.06/">https://yt-dl.org/downloads/2013.10.06/</a>
  1442. </div>
  1443. </content>
  1444. <author>
  1445. <name>The youtube-dl maintainers</name>
  1446. </author>
  1447. <updated>2013-10-06T00:00:00Z</updated>
  1448. </entry>
  1449. <entry>
  1450. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.07</id>
  1451. <title>New version 2013.10.07</title>
  1452. <link href="http://ytdl-org.github.io/youtube-dl" />
  1453. <content type="xhtml">
  1454. <div xmlns="http://www.w3.org/1999/xhtml">
  1455. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.07/">https://yt-dl.org/downloads/2013.10.07/</a>
  1456. </div>
  1457. </content>
  1458. <author>
  1459. <name>The youtube-dl maintainers</name>
  1460. </author>
  1461. <updated>2013-10-07T00:00:00Z</updated>
  1462. </entry>
  1463. <entry>
  1464. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.09</id>
  1465. <title>New version 2013.10.09</title>
  1466. <link href="http://ytdl-org.github.io/youtube-dl" />
  1467. <content type="xhtml">
  1468. <div xmlns="http://www.w3.org/1999/xhtml">
  1469. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.09/">https://yt-dl.org/downloads/2013.10.09/</a>
  1470. </div>
  1471. </content>
  1472. <author>
  1473. <name>The youtube-dl maintainers</name>
  1474. </author>
  1475. <updated>2013-10-09T00:00:00Z</updated>
  1476. </entry>
  1477. <entry>
  1478. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.15</id>
  1479. <title>New version 2013.10.15</title>
  1480. <link href="http://ytdl-org.github.io/youtube-dl" />
  1481. <content type="xhtml">
  1482. <div xmlns="http://www.w3.org/1999/xhtml">
  1483. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.15/">https://yt-dl.org/downloads/2013.10.15/</a>
  1484. </div>
  1485. </content>
  1486. <author>
  1487. <name>The youtube-dl maintainers</name>
  1488. </author>
  1489. <updated>2013-10-15T00:00:00Z</updated>
  1490. </entry>
  1491. <entry>
  1492. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.17</id>
  1493. <title>New version 2013.10.17</title>
  1494. <link href="http://ytdl-org.github.io/youtube-dl" />
  1495. <content type="xhtml">
  1496. <div xmlns="http://www.w3.org/1999/xhtml">
  1497. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.17/">https://yt-dl.org/downloads/2013.10.17/</a>
  1498. </div>
  1499. </content>
  1500. <author>
  1501. <name>The youtube-dl maintainers</name>
  1502. </author>
  1503. <updated>2013-10-17T00:00:00Z</updated>
  1504. </entry>
  1505. <entry>
  1506. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.18</id>
  1507. <title>New version 2013.10.18</title>
  1508. <link href="http://ytdl-org.github.io/youtube-dl" />
  1509. <content type="xhtml">
  1510. <div xmlns="http://www.w3.org/1999/xhtml">
  1511. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.18/">https://yt-dl.org/downloads/2013.10.18/</a>
  1512. </div>
  1513. </content>
  1514. <author>
  1515. <name>The youtube-dl maintainers</name>
  1516. </author>
  1517. <updated>2013-10-18T00:00:00Z</updated>
  1518. </entry>
  1519. <entry>
  1520. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.18.1</id>
  1521. <title>New version 2013.10.18.1</title>
  1522. <link href="http://ytdl-org.github.io/youtube-dl" />
  1523. <content type="xhtml">
  1524. <div xmlns="http://www.w3.org/1999/xhtml">
  1525. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.18.1/">https://yt-dl.org/downloads/2013.10.18.1/</a>
  1526. </div>
  1527. </content>
  1528. <author>
  1529. <name>The youtube-dl maintainers</name>
  1530. </author>
  1531. <updated>2013-10-18T00:00:01Z</updated>
  1532. </entry>
  1533. <entry>
  1534. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.18.2</id>
  1535. <title>New version 2013.10.18.2</title>
  1536. <link href="http://ytdl-org.github.io/youtube-dl" />
  1537. <content type="xhtml">
  1538. <div xmlns="http://www.w3.org/1999/xhtml">
  1539. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.18.2/">https://yt-dl.org/downloads/2013.10.18.2/</a>
  1540. </div>
  1541. </content>
  1542. <author>
  1543. <name>The youtube-dl maintainers</name>
  1544. </author>
  1545. <updated>2013-10-18T00:00:02Z</updated>
  1546. </entry>
  1547. <entry>
  1548. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.22</id>
  1549. <title>New version 2013.10.22</title>
  1550. <link href="http://ytdl-org.github.io/youtube-dl" />
  1551. <content type="xhtml">
  1552. <div xmlns="http://www.w3.org/1999/xhtml">
  1553. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.22/">https://yt-dl.org/downloads/2013.10.22/</a>
  1554. </div>
  1555. </content>
  1556. <author>
  1557. <name>The youtube-dl maintainers</name>
  1558. </author>
  1559. <updated>2013-10-22T00:00:00Z</updated>
  1560. </entry>
  1561. <entry>
  1562. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.23</id>
  1563. <title>New version 2013.10.23</title>
  1564. <link href="http://ytdl-org.github.io/youtube-dl" />
  1565. <content type="xhtml">
  1566. <div xmlns="http://www.w3.org/1999/xhtml">
  1567. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.23/">https://yt-dl.org/downloads/2013.10.23/</a>
  1568. </div>
  1569. </content>
  1570. <author>
  1571. <name>The youtube-dl maintainers</name>
  1572. </author>
  1573. <updated>2013-10-23T00:00:00Z</updated>
  1574. </entry>
  1575. <entry>
  1576. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.23.1</id>
  1577. <title>New version 2013.10.23.1</title>
  1578. <link href="http://ytdl-org.github.io/youtube-dl" />
  1579. <content type="xhtml">
  1580. <div xmlns="http://www.w3.org/1999/xhtml">
  1581. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.23.1/">https://yt-dl.org/downloads/2013.10.23.1/</a>
  1582. </div>
  1583. </content>
  1584. <author>
  1585. <name>The youtube-dl maintainers</name>
  1586. </author>
  1587. <updated>2013-10-23T00:00:01Z</updated>
  1588. </entry>
  1589. <entry>
  1590. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.23.2</id>
  1591. <title>New version 2013.10.23.2</title>
  1592. <link href="http://ytdl-org.github.io/youtube-dl" />
  1593. <content type="xhtml">
  1594. <div xmlns="http://www.w3.org/1999/xhtml">
  1595. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.23.2/">https://yt-dl.org/downloads/2013.10.23.2/</a>
  1596. </div>
  1597. </content>
  1598. <author>
  1599. <name>The youtube-dl maintainers</name>
  1600. </author>
  1601. <updated>2013-10-23T00:00:02Z</updated>
  1602. </entry>
  1603. <entry>
  1604. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.28</id>
  1605. <title>New version 2013.10.28</title>
  1606. <link href="http://ytdl-org.github.io/youtube-dl" />
  1607. <content type="xhtml">
  1608. <div xmlns="http://www.w3.org/1999/xhtml">
  1609. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.28/">https://yt-dl.org/downloads/2013.10.28/</a>
  1610. </div>
  1611. </content>
  1612. <author>
  1613. <name>The youtube-dl maintainers</name>
  1614. </author>
  1615. <updated>2013-10-28T00:00:00Z</updated>
  1616. </entry>
  1617. <entry>
  1618. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.29</id>
  1619. <title>New version 2013.10.29</title>
  1620. <link href="http://ytdl-org.github.io/youtube-dl" />
  1621. <content type="xhtml">
  1622. <div xmlns="http://www.w3.org/1999/xhtml">
  1623. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.29/">https://yt-dl.org/downloads/2013.10.29/</a>
  1624. </div>
  1625. </content>
  1626. <author>
  1627. <name>The youtube-dl maintainers</name>
  1628. </author>
  1629. <updated>2013-10-29T00:00:00Z</updated>
  1630. </entry>
  1631. <entry>
  1632. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.10.30</id>
  1633. <title>New version 2013.10.30</title>
  1634. <link href="http://ytdl-org.github.io/youtube-dl" />
  1635. <content type="xhtml">
  1636. <div xmlns="http://www.w3.org/1999/xhtml">
  1637. Downloads available at <a href="https://yt-dl.org/downloads/2013.10.30/">https://yt-dl.org/downloads/2013.10.30/</a>
  1638. </div>
  1639. </content>
  1640. <author>
  1641. <name>The youtube-dl maintainers</name>
  1642. </author>
  1643. <updated>2013-10-30T00:00:00Z</updated>
  1644. </entry>
  1645. <entry>
  1646. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.02</id>
  1647. <title>New version 2013.11.02</title>
  1648. <link href="http://ytdl-org.github.io/youtube-dl" />
  1649. <content type="xhtml">
  1650. <div xmlns="http://www.w3.org/1999/xhtml">
  1651. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.02/">https://yt-dl.org/downloads/2013.11.02/</a>
  1652. </div>
  1653. </content>
  1654. <author>
  1655. <name>The youtube-dl maintainers</name>
  1656. </author>
  1657. <updated>2013-11-02T00:00:00Z</updated>
  1658. </entry>
  1659. <entry>
  1660. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.03</id>
  1661. <title>New version 2013.11.03</title>
  1662. <link href="http://ytdl-org.github.io/youtube-dl" />
  1663. <content type="xhtml">
  1664. <div xmlns="http://www.w3.org/1999/xhtml">
  1665. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.03/">https://yt-dl.org/downloads/2013.11.03/</a>
  1666. </div>
  1667. </content>
  1668. <author>
  1669. <name>The youtube-dl maintainers</name>
  1670. </author>
  1671. <updated>2013-11-03T00:00:00Z</updated>
  1672. </entry>
  1673. <entry>
  1674. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.06</id>
  1675. <title>New version 2013.11.06</title>
  1676. <link href="http://ytdl-org.github.io/youtube-dl" />
  1677. <content type="xhtml">
  1678. <div xmlns="http://www.w3.org/1999/xhtml">
  1679. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.06/">https://yt-dl.org/downloads/2013.11.06/</a>
  1680. </div>
  1681. </content>
  1682. <author>
  1683. <name>The youtube-dl maintainers</name>
  1684. </author>
  1685. <updated>2013-11-06T00:00:00Z</updated>
  1686. </entry>
  1687. <entry>
  1688. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.06.1</id>
  1689. <title>New version 2013.11.06.1</title>
  1690. <link href="http://ytdl-org.github.io/youtube-dl" />
  1691. <content type="xhtml">
  1692. <div xmlns="http://www.w3.org/1999/xhtml">
  1693. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.06.1/">https://yt-dl.org/downloads/2013.11.06.1/</a>
  1694. </div>
  1695. </content>
  1696. <author>
  1697. <name>The youtube-dl maintainers</name>
  1698. </author>
  1699. <updated>2013-11-06T00:00:01Z</updated>
  1700. </entry>
  1701. <entry>
  1702. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.07</id>
  1703. <title>New version 2013.11.07</title>
  1704. <link href="http://ytdl-org.github.io/youtube-dl" />
  1705. <content type="xhtml">
  1706. <div xmlns="http://www.w3.org/1999/xhtml">
  1707. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.07/">https://yt-dl.org/downloads/2013.11.07/</a>
  1708. </div>
  1709. </content>
  1710. <author>
  1711. <name>The youtube-dl maintainers</name>
  1712. </author>
  1713. <updated>2013-11-07T00:00:00Z</updated>
  1714. </entry>
  1715. <entry>
  1716. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.09</id>
  1717. <title>New version 2013.11.09</title>
  1718. <link href="http://ytdl-org.github.io/youtube-dl" />
  1719. <content type="xhtml">
  1720. <div xmlns="http://www.w3.org/1999/xhtml">
  1721. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.09/">https://yt-dl.org/downloads/2013.11.09/</a>
  1722. </div>
  1723. </content>
  1724. <author>
  1725. <name>The youtube-dl maintainers</name>
  1726. </author>
  1727. <updated>2013-11-09T00:00:00Z</updated>
  1728. </entry>
  1729. <entry>
  1730. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.11</id>
  1731. <title>New version 2013.11.11</title>
  1732. <link href="http://ytdl-org.github.io/youtube-dl" />
  1733. <content type="xhtml">
  1734. <div xmlns="http://www.w3.org/1999/xhtml">
  1735. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.11/">https://yt-dl.org/downloads/2013.11.11/</a>
  1736. </div>
  1737. </content>
  1738. <author>
  1739. <name>The youtube-dl maintainers</name>
  1740. </author>
  1741. <updated>2013-11-11T00:00:00Z</updated>
  1742. </entry>
  1743. <entry>
  1744. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.13</id>
  1745. <title>New version 2013.11.13</title>
  1746. <link href="http://ytdl-org.github.io/youtube-dl" />
  1747. <content type="xhtml">
  1748. <div xmlns="http://www.w3.org/1999/xhtml">
  1749. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.13/">https://yt-dl.org/downloads/2013.11.13/</a>
  1750. </div>
  1751. </content>
  1752. <author>
  1753. <name>The youtube-dl maintainers</name>
  1754. </author>
  1755. <updated>2013-11-13T00:00:00Z</updated>
  1756. </entry>
  1757. <entry>
  1758. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.15</id>
  1759. <title>New version 2013.11.15</title>
  1760. <link href="http://ytdl-org.github.io/youtube-dl" />
  1761. <content type="xhtml">
  1762. <div xmlns="http://www.w3.org/1999/xhtml">
  1763. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.15/">https://yt-dl.org/downloads/2013.11.15/</a>
  1764. </div>
  1765. </content>
  1766. <author>
  1767. <name>The youtube-dl maintainers</name>
  1768. </author>
  1769. <updated>2013-11-15T00:00:00Z</updated>
  1770. </entry>
  1771. <entry>
  1772. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.15.1</id>
  1773. <title>New version 2013.11.15.1</title>
  1774. <link href="http://ytdl-org.github.io/youtube-dl" />
  1775. <content type="xhtml">
  1776. <div xmlns="http://www.w3.org/1999/xhtml">
  1777. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.15.1/">https://yt-dl.org/downloads/2013.11.15.1/</a>
  1778. </div>
  1779. </content>
  1780. <author>
  1781. <name>The youtube-dl maintainers</name>
  1782. </author>
  1783. <updated>2013-11-15T00:00:01Z</updated>
  1784. </entry>
  1785. <entry>
  1786. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.17</id>
  1787. <title>New version 2013.11.17</title>
  1788. <link href="http://ytdl-org.github.io/youtube-dl" />
  1789. <content type="xhtml">
  1790. <div xmlns="http://www.w3.org/1999/xhtml">
  1791. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.17/">https://yt-dl.org/downloads/2013.11.17/</a>
  1792. </div>
  1793. </content>
  1794. <author>
  1795. <name>The youtube-dl maintainers</name>
  1796. </author>
  1797. <updated>2013-11-17T00:00:00Z</updated>
  1798. </entry>
  1799. <entry>
  1800. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.18</id>
  1801. <title>New version 2013.11.18</title>
  1802. <link href="http://ytdl-org.github.io/youtube-dl" />
  1803. <content type="xhtml">
  1804. <div xmlns="http://www.w3.org/1999/xhtml">
  1805. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.18/">https://yt-dl.org/downloads/2013.11.18/</a>
  1806. </div>
  1807. </content>
  1808. <author>
  1809. <name>The youtube-dl maintainers</name>
  1810. </author>
  1811. <updated>2013-11-18T00:00:00Z</updated>
  1812. </entry>
  1813. <entry>
  1814. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.18.1</id>
  1815. <title>New version 2013.11.18.1</title>
  1816. <link href="http://ytdl-org.github.io/youtube-dl" />
  1817. <content type="xhtml">
  1818. <div xmlns="http://www.w3.org/1999/xhtml">
  1819. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.18.1/">https://yt-dl.org/downloads/2013.11.18.1/</a>
  1820. </div>
  1821. </content>
  1822. <author>
  1823. <name>The youtube-dl maintainers</name>
  1824. </author>
  1825. <updated>2013-11-18T00:00:01Z</updated>
  1826. </entry>
  1827. <entry>
  1828. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.19</id>
  1829. <title>New version 2013.11.19</title>
  1830. <link href="http://ytdl-org.github.io/youtube-dl" />
  1831. <content type="xhtml">
  1832. <div xmlns="http://www.w3.org/1999/xhtml">
  1833. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.19/">https://yt-dl.org/downloads/2013.11.19/</a>
  1834. </div>
  1835. </content>
  1836. <author>
  1837. <name>The youtube-dl maintainers</name>
  1838. </author>
  1839. <updated>2013-11-19T00:00:00Z</updated>
  1840. </entry>
  1841. <entry>
  1842. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.20</id>
  1843. <title>New version 2013.11.20</title>
  1844. <link href="http://ytdl-org.github.io/youtube-dl" />
  1845. <content type="xhtml">
  1846. <div xmlns="http://www.w3.org/1999/xhtml">
  1847. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.20/">https://yt-dl.org/downloads/2013.11.20/</a>
  1848. </div>
  1849. </content>
  1850. <author>
  1851. <name>The youtube-dl maintainers</name>
  1852. </author>
  1853. <updated>2013-11-20T00:00:00Z</updated>
  1854. </entry>
  1855. <entry>
  1856. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.21</id>
  1857. <title>New version 2013.11.21</title>
  1858. <link href="http://ytdl-org.github.io/youtube-dl" />
  1859. <content type="xhtml">
  1860. <div xmlns="http://www.w3.org/1999/xhtml">
  1861. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.21/">https://yt-dl.org/downloads/2013.11.21/</a>
  1862. </div>
  1863. </content>
  1864. <author>
  1865. <name>The youtube-dl maintainers</name>
  1866. </author>
  1867. <updated>2013-11-21T00:00:00Z</updated>
  1868. </entry>
  1869. <entry>
  1870. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.22</id>
  1871. <title>New version 2013.11.22</title>
  1872. <link href="http://ytdl-org.github.io/youtube-dl" />
  1873. <content type="xhtml">
  1874. <div xmlns="http://www.w3.org/1999/xhtml">
  1875. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.22/">https://yt-dl.org/downloads/2013.11.22/</a>
  1876. </div>
  1877. </content>
  1878. <author>
  1879. <name>The youtube-dl maintainers</name>
  1880. </author>
  1881. <updated>2013-11-22T00:00:00Z</updated>
  1882. </entry>
  1883. <entry>
  1884. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.22.1</id>
  1885. <title>New version 2013.11.22.1</title>
  1886. <link href="http://ytdl-org.github.io/youtube-dl" />
  1887. <content type="xhtml">
  1888. <div xmlns="http://www.w3.org/1999/xhtml">
  1889. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.22.1/">https://yt-dl.org/downloads/2013.11.22.1/</a>
  1890. </div>
  1891. </content>
  1892. <author>
  1893. <name>The youtube-dl maintainers</name>
  1894. </author>
  1895. <updated>2013-11-22T00:00:01Z</updated>
  1896. </entry>
  1897. <entry>
  1898. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.22.2</id>
  1899. <title>New version 2013.11.22.2</title>
  1900. <link href="http://ytdl-org.github.io/youtube-dl" />
  1901. <content type="xhtml">
  1902. <div xmlns="http://www.w3.org/1999/xhtml">
  1903. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.22.2/">https://yt-dl.org/downloads/2013.11.22.2/</a>
  1904. </div>
  1905. </content>
  1906. <author>
  1907. <name>The youtube-dl maintainers</name>
  1908. </author>
  1909. <updated>2013-11-22T00:00:02Z</updated>
  1910. </entry>
  1911. <entry>
  1912. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.24</id>
  1913. <title>New version 2013.11.24</title>
  1914. <link href="http://ytdl-org.github.io/youtube-dl" />
  1915. <content type="xhtml">
  1916. <div xmlns="http://www.w3.org/1999/xhtml">
  1917. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.24/">https://yt-dl.org/downloads/2013.11.24/</a>
  1918. </div>
  1919. </content>
  1920. <author>
  1921. <name>The youtube-dl maintainers</name>
  1922. </author>
  1923. <updated>2013-11-24T00:00:00Z</updated>
  1924. </entry>
  1925. <entry>
  1926. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.24.1</id>
  1927. <title>New version 2013.11.24.1</title>
  1928. <link href="http://ytdl-org.github.io/youtube-dl" />
  1929. <content type="xhtml">
  1930. <div xmlns="http://www.w3.org/1999/xhtml">
  1931. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.24.1/">https://yt-dl.org/downloads/2013.11.24.1/</a>
  1932. </div>
  1933. </content>
  1934. <author>
  1935. <name>The youtube-dl maintainers</name>
  1936. </author>
  1937. <updated>2013-11-24T00:00:01Z</updated>
  1938. </entry>
  1939. <entry>
  1940. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.25</id>
  1941. <title>New version 2013.11.25</title>
  1942. <link href="http://ytdl-org.github.io/youtube-dl" />
  1943. <content type="xhtml">
  1944. <div xmlns="http://www.w3.org/1999/xhtml">
  1945. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.25/">https://yt-dl.org/downloads/2013.11.25/</a>
  1946. </div>
  1947. </content>
  1948. <author>
  1949. <name>The youtube-dl maintainers</name>
  1950. </author>
  1951. <updated>2013-11-25T00:00:00Z</updated>
  1952. </entry>
  1953. <entry>
  1954. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.25.1</id>
  1955. <title>New version 2013.11.25.1</title>
  1956. <link href="http://ytdl-org.github.io/youtube-dl" />
  1957. <content type="xhtml">
  1958. <div xmlns="http://www.w3.org/1999/xhtml">
  1959. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.25.1/">https://yt-dl.org/downloads/2013.11.25.1/</a>
  1960. </div>
  1961. </content>
  1962. <author>
  1963. <name>The youtube-dl maintainers</name>
  1964. </author>
  1965. <updated>2013-11-25T00:00:01Z</updated>
  1966. </entry>
  1967. <entry>
  1968. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.25.2</id>
  1969. <title>New version 2013.11.25.2</title>
  1970. <link href="http://ytdl-org.github.io/youtube-dl" />
  1971. <content type="xhtml">
  1972. <div xmlns="http://www.w3.org/1999/xhtml">
  1973. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.25.2/">https://yt-dl.org/downloads/2013.11.25.2/</a>
  1974. </div>
  1975. </content>
  1976. <author>
  1977. <name>The youtube-dl maintainers</name>
  1978. </author>
  1979. <updated>2013-11-25T00:00:02Z</updated>
  1980. </entry>
  1981. <entry>
  1982. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.25.3</id>
  1983. <title>New version 2013.11.25.3</title>
  1984. <link href="http://ytdl-org.github.io/youtube-dl" />
  1985. <content type="xhtml">
  1986. <div xmlns="http://www.w3.org/1999/xhtml">
  1987. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.25.3/">https://yt-dl.org/downloads/2013.11.25.3/</a>
  1988. </div>
  1989. </content>
  1990. <author>
  1991. <name>The youtube-dl maintainers</name>
  1992. </author>
  1993. <updated>2013-11-25T00:00:03Z</updated>
  1994. </entry>
  1995. <entry>
  1996. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.26</id>
  1997. <title>New version 2013.11.26</title>
  1998. <link href="http://ytdl-org.github.io/youtube-dl" />
  1999. <content type="xhtml">
  2000. <div xmlns="http://www.w3.org/1999/xhtml">
  2001. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.26/">https://yt-dl.org/downloads/2013.11.26/</a>
  2002. </div>
  2003. </content>
  2004. <author>
  2005. <name>The youtube-dl maintainers</name>
  2006. </author>
  2007. <updated>2013-11-26T00:00:00Z</updated>
  2008. </entry>
  2009. <entry>
  2010. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.28</id>
  2011. <title>New version 2013.11.28</title>
  2012. <link href="http://ytdl-org.github.io/youtube-dl" />
  2013. <content type="xhtml">
  2014. <div xmlns="http://www.w3.org/1999/xhtml">
  2015. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.28/">https://yt-dl.org/downloads/2013.11.28/</a>
  2016. </div>
  2017. </content>
  2018. <author>
  2019. <name>The youtube-dl maintainers</name>
  2020. </author>
  2021. <updated>2013-11-28T00:00:00Z</updated>
  2022. </entry>
  2023. <entry>
  2024. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.28.1</id>
  2025. <title>New version 2013.11.28.1</title>
  2026. <link href="http://ytdl-org.github.io/youtube-dl" />
  2027. <content type="xhtml">
  2028. <div xmlns="http://www.w3.org/1999/xhtml">
  2029. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.28.1/">https://yt-dl.org/downloads/2013.11.28.1/</a>
  2030. </div>
  2031. </content>
  2032. <author>
  2033. <name>The youtube-dl maintainers</name>
  2034. </author>
  2035. <updated>2013-11-28T00:00:01Z</updated>
  2036. </entry>
  2037. <entry>
  2038. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.11.29</id>
  2039. <title>New version 2013.11.29</title>
  2040. <link href="http://ytdl-org.github.io/youtube-dl" />
  2041. <content type="xhtml">
  2042. <div xmlns="http://www.w3.org/1999/xhtml">
  2043. Downloads available at <a href="https://yt-dl.org/downloads/2013.11.29/">https://yt-dl.org/downloads/2013.11.29/</a>
  2044. </div>
  2045. </content>
  2046. <author>
  2047. <name>The youtube-dl maintainers</name>
  2048. </author>
  2049. <updated>2013-11-29T00:00:00Z</updated>
  2050. </entry>
  2051. <entry>
  2052. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.02</id>
  2053. <title>New version 2013.12.02</title>
  2054. <link href="http://ytdl-org.github.io/youtube-dl" />
  2055. <content type="xhtml">
  2056. <div xmlns="http://www.w3.org/1999/xhtml">
  2057. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.02/">https://yt-dl.org/downloads/2013.12.02/</a>
  2058. </div>
  2059. </content>
  2060. <author>
  2061. <name>The youtube-dl maintainers</name>
  2062. </author>
  2063. <updated>2013-12-02T00:00:00Z</updated>
  2064. </entry>
  2065. <entry>
  2066. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.03</id>
  2067. <title>New version 2013.12.03</title>
  2068. <link href="http://ytdl-org.github.io/youtube-dl" />
  2069. <content type="xhtml">
  2070. <div xmlns="http://www.w3.org/1999/xhtml">
  2071. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.03/">https://yt-dl.org/downloads/2013.12.03/</a>
  2072. </div>
  2073. </content>
  2074. <author>
  2075. <name>The youtube-dl maintainers</name>
  2076. </author>
  2077. <updated>2013-12-03T00:00:00Z</updated>
  2078. </entry>
  2079. <entry>
  2080. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.04</id>
  2081. <title>New version 2013.12.04</title>
  2082. <link href="http://ytdl-org.github.io/youtube-dl" />
  2083. <content type="xhtml">
  2084. <div xmlns="http://www.w3.org/1999/xhtml">
  2085. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.04/">https://yt-dl.org/downloads/2013.12.04/</a>
  2086. </div>
  2087. </content>
  2088. <author>
  2089. <name>The youtube-dl maintainers</name>
  2090. </author>
  2091. <updated>2013-12-04T00:00:00Z</updated>
  2092. </entry>
  2093. <entry>
  2094. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.08</id>
  2095. <title>New version 2013.12.08</title>
  2096. <link href="http://ytdl-org.github.io/youtube-dl" />
  2097. <content type="xhtml">
  2098. <div xmlns="http://www.w3.org/1999/xhtml">
  2099. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.08/">https://yt-dl.org/downloads/2013.12.08/</a>
  2100. </div>
  2101. </content>
  2102. <author>
  2103. <name>The youtube-dl maintainers</name>
  2104. </author>
  2105. <updated>2013-12-08T00:00:00Z</updated>
  2106. </entry>
  2107. <entry>
  2108. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.08.1</id>
  2109. <title>New version 2013.12.08.1</title>
  2110. <link href="http://ytdl-org.github.io/youtube-dl" />
  2111. <content type="xhtml">
  2112. <div xmlns="http://www.w3.org/1999/xhtml">
  2113. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.08.1/">https://yt-dl.org/downloads/2013.12.08.1/</a>
  2114. </div>
  2115. </content>
  2116. <author>
  2117. <name>The youtube-dl maintainers</name>
  2118. </author>
  2119. <updated>2013-12-08T00:00:01Z</updated>
  2120. </entry>
  2121. <entry>
  2122. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.09</id>
  2123. <title>New version 2013.12.09</title>
  2124. <link href="http://ytdl-org.github.io/youtube-dl" />
  2125. <content type="xhtml">
  2126. <div xmlns="http://www.w3.org/1999/xhtml">
  2127. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.09/">https://yt-dl.org/downloads/2013.12.09/</a>
  2128. </div>
  2129. </content>
  2130. <author>
  2131. <name>The youtube-dl maintainers</name>
  2132. </author>
  2133. <updated>2013-12-09T00:00:00Z</updated>
  2134. </entry>
  2135. <entry>
  2136. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.09.1</id>
  2137. <title>New version 2013.12.09.1</title>
  2138. <link href="http://ytdl-org.github.io/youtube-dl" />
  2139. <content type="xhtml">
  2140. <div xmlns="http://www.w3.org/1999/xhtml">
  2141. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.09.1/">https://yt-dl.org/downloads/2013.12.09.1/</a>
  2142. </div>
  2143. </content>
  2144. <author>
  2145. <name>The youtube-dl maintainers</name>
  2146. </author>
  2147. <updated>2013-12-09T00:00:01Z</updated>
  2148. </entry>
  2149. <entry>
  2150. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.09.2</id>
  2151. <title>New version 2013.12.09.2</title>
  2152. <link href="http://ytdl-org.github.io/youtube-dl" />
  2153. <content type="xhtml">
  2154. <div xmlns="http://www.w3.org/1999/xhtml">
  2155. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.09.2/">https://yt-dl.org/downloads/2013.12.09.2/</a>
  2156. </div>
  2157. </content>
  2158. <author>
  2159. <name>The youtube-dl maintainers</name>
  2160. </author>
  2161. <updated>2013-12-09T00:00:02Z</updated>
  2162. </entry>
  2163. <entry>
  2164. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.09.4</id>
  2165. <title>New version 2013.12.09.4</title>
  2166. <link href="http://ytdl-org.github.io/youtube-dl" />
  2167. <content type="xhtml">
  2168. <div xmlns="http://www.w3.org/1999/xhtml">
  2169. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.09.4/">https://yt-dl.org/downloads/2013.12.09.4/</a>
  2170. </div>
  2171. </content>
  2172. <author>
  2173. <name>The youtube-dl maintainers</name>
  2174. </author>
  2175. <updated>2013-12-09T00:00:04Z</updated>
  2176. </entry>
  2177. <entry>
  2178. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.10</id>
  2179. <title>New version 2013.12.10</title>
  2180. <link href="http://ytdl-org.github.io/youtube-dl" />
  2181. <content type="xhtml">
  2182. <div xmlns="http://www.w3.org/1999/xhtml">
  2183. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.10/">https://yt-dl.org/downloads/2013.12.10/</a>
  2184. </div>
  2185. </content>
  2186. <author>
  2187. <name>The youtube-dl maintainers</name>
  2188. </author>
  2189. <updated>2013-12-10T00:00:00Z</updated>
  2190. </entry>
  2191. <entry>
  2192. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.11</id>
  2193. <title>New version 2013.12.11</title>
  2194. <link href="http://ytdl-org.github.io/youtube-dl" />
  2195. <content type="xhtml">
  2196. <div xmlns="http://www.w3.org/1999/xhtml">
  2197. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.11/">https://yt-dl.org/downloads/2013.12.11/</a>
  2198. </div>
  2199. </content>
  2200. <author>
  2201. <name>The youtube-dl maintainers</name>
  2202. </author>
  2203. <updated>2013-12-11T00:00:00Z</updated>
  2204. </entry>
  2205. <entry>
  2206. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.11.1</id>
  2207. <title>New version 2013.12.11.1</title>
  2208. <link href="http://ytdl-org.github.io/youtube-dl" />
  2209. <content type="xhtml">
  2210. <div xmlns="http://www.w3.org/1999/xhtml">
  2211. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.11.1/">https://yt-dl.org/downloads/2013.12.11.1/</a>
  2212. </div>
  2213. </content>
  2214. <author>
  2215. <name>The youtube-dl maintainers</name>
  2216. </author>
  2217. <updated>2013-12-11T00:00:01Z</updated>
  2218. </entry>
  2219. <entry>
  2220. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.11.2</id>
  2221. <title>New version 2013.12.11.2</title>
  2222. <link href="http://ytdl-org.github.io/youtube-dl" />
  2223. <content type="xhtml">
  2224. <div xmlns="http://www.w3.org/1999/xhtml">
  2225. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.11.2/">https://yt-dl.org/downloads/2013.12.11.2/</a>
  2226. </div>
  2227. </content>
  2228. <author>
  2229. <name>The youtube-dl maintainers</name>
  2230. </author>
  2231. <updated>2013-12-11T00:00:02Z</updated>
  2232. </entry>
  2233. <entry>
  2234. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16</id>
  2235. <title>New version 2013.12.16</title>
  2236. <link href="http://ytdl-org.github.io/youtube-dl" />
  2237. <content type="xhtml">
  2238. <div xmlns="http://www.w3.org/1999/xhtml">
  2239. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16/">https://yt-dl.org/downloads/2013.12.16/</a>
  2240. </div>
  2241. </content>
  2242. <author>
  2243. <name>The youtube-dl maintainers</name>
  2244. </author>
  2245. <updated>2013-12-16T00:00:00Z</updated>
  2246. </entry>
  2247. <entry>
  2248. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.1</id>
  2249. <title>New version 2013.12.16.1</title>
  2250. <link href="http://ytdl-org.github.io/youtube-dl" />
  2251. <content type="xhtml">
  2252. <div xmlns="http://www.w3.org/1999/xhtml">
  2253. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.1/">https://yt-dl.org/downloads/2013.12.16.1/</a>
  2254. </div>
  2255. </content>
  2256. <author>
  2257. <name>The youtube-dl maintainers</name>
  2258. </author>
  2259. <updated>2013-12-16T00:00:01Z</updated>
  2260. </entry>
  2261. <entry>
  2262. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.2</id>
  2263. <title>New version 2013.12.16.2</title>
  2264. <link href="http://ytdl-org.github.io/youtube-dl" />
  2265. <content type="xhtml">
  2266. <div xmlns="http://www.w3.org/1999/xhtml">
  2267. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.2/">https://yt-dl.org/downloads/2013.12.16.2/</a>
  2268. </div>
  2269. </content>
  2270. <author>
  2271. <name>The youtube-dl maintainers</name>
  2272. </author>
  2273. <updated>2013-12-16T00:00:02Z</updated>
  2274. </entry>
  2275. <entry>
  2276. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.3</id>
  2277. <title>New version 2013.12.16.3</title>
  2278. <link href="http://ytdl-org.github.io/youtube-dl" />
  2279. <content type="xhtml">
  2280. <div xmlns="http://www.w3.org/1999/xhtml">
  2281. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.3/">https://yt-dl.org/downloads/2013.12.16.3/</a>
  2282. </div>
  2283. </content>
  2284. <author>
  2285. <name>The youtube-dl maintainers</name>
  2286. </author>
  2287. <updated>2013-12-16T00:00:03Z</updated>
  2288. </entry>
  2289. <entry>
  2290. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.4</id>
  2291. <title>New version 2013.12.16.4</title>
  2292. <link href="http://ytdl-org.github.io/youtube-dl" />
  2293. <content type="xhtml">
  2294. <div xmlns="http://www.w3.org/1999/xhtml">
  2295. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.4/">https://yt-dl.org/downloads/2013.12.16.4/</a>
  2296. </div>
  2297. </content>
  2298. <author>
  2299. <name>The youtube-dl maintainers</name>
  2300. </author>
  2301. <updated>2013-12-16T00:00:04Z</updated>
  2302. </entry>
  2303. <entry>
  2304. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.6</id>
  2305. <title>New version 2013.12.16.6</title>
  2306. <link href="http://ytdl-org.github.io/youtube-dl" />
  2307. <content type="xhtml">
  2308. <div xmlns="http://www.w3.org/1999/xhtml">
  2309. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.6/">https://yt-dl.org/downloads/2013.12.16.6/</a>
  2310. </div>
  2311. </content>
  2312. <author>
  2313. <name>The youtube-dl maintainers</name>
  2314. </author>
  2315. <updated>2013-12-16T00:00:06Z</updated>
  2316. </entry>
  2317. <entry>
  2318. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.16.7</id>
  2319. <title>New version 2013.12.16.7</title>
  2320. <link href="http://ytdl-org.github.io/youtube-dl" />
  2321. <content type="xhtml">
  2322. <div xmlns="http://www.w3.org/1999/xhtml">
  2323. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.16.7/">https://yt-dl.org/downloads/2013.12.16.7/</a>
  2324. </div>
  2325. </content>
  2326. <author>
  2327. <name>The youtube-dl maintainers</name>
  2328. </author>
  2329. <updated>2013-12-16T00:00:07Z</updated>
  2330. </entry>
  2331. <entry>
  2332. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.17</id>
  2333. <title>New version 2013.12.17</title>
  2334. <link href="http://ytdl-org.github.io/youtube-dl" />
  2335. <content type="xhtml">
  2336. <div xmlns="http://www.w3.org/1999/xhtml">
  2337. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.17/">https://yt-dl.org/downloads/2013.12.17/</a>
  2338. </div>
  2339. </content>
  2340. <author>
  2341. <name>The youtube-dl maintainers</name>
  2342. </author>
  2343. <updated>2013-12-17T00:00:00Z</updated>
  2344. </entry>
  2345. <entry>
  2346. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.17.1</id>
  2347. <title>New version 2013.12.17.1</title>
  2348. <link href="http://ytdl-org.github.io/youtube-dl" />
  2349. <content type="xhtml">
  2350. <div xmlns="http://www.w3.org/1999/xhtml">
  2351. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.17.1/">https://yt-dl.org/downloads/2013.12.17.1/</a>
  2352. </div>
  2353. </content>
  2354. <author>
  2355. <name>The youtube-dl maintainers</name>
  2356. </author>
  2357. <updated>2013-12-17T00:00:01Z</updated>
  2358. </entry>
  2359. <entry>
  2360. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.17.2</id>
  2361. <title>New version 2013.12.17.2</title>
  2362. <link href="http://ytdl-org.github.io/youtube-dl" />
  2363. <content type="xhtml">
  2364. <div xmlns="http://www.w3.org/1999/xhtml">
  2365. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.17.2/">https://yt-dl.org/downloads/2013.12.17.2/</a>
  2366. </div>
  2367. </content>
  2368. <author>
  2369. <name>The youtube-dl maintainers</name>
  2370. </author>
  2371. <updated>2013-12-17T00:00:02Z</updated>
  2372. </entry>
  2373. <entry>
  2374. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.20</id>
  2375. <title>New version 2013.12.20</title>
  2376. <link href="http://ytdl-org.github.io/youtube-dl" />
  2377. <content type="xhtml">
  2378. <div xmlns="http://www.w3.org/1999/xhtml">
  2379. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.20/">https://yt-dl.org/downloads/2013.12.20/</a>
  2380. </div>
  2381. </content>
  2382. <author>
  2383. <name>The youtube-dl maintainers</name>
  2384. </author>
  2385. <updated>2013-12-20T00:00:00Z</updated>
  2386. </entry>
  2387. <entry>
  2388. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.23</id>
  2389. <title>New version 2013.12.23</title>
  2390. <link href="http://ytdl-org.github.io/youtube-dl" />
  2391. <content type="xhtml">
  2392. <div xmlns="http://www.w3.org/1999/xhtml">
  2393. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.23/">https://yt-dl.org/downloads/2013.12.23/</a>
  2394. </div>
  2395. </content>
  2396. <author>
  2397. <name>The youtube-dl maintainers</name>
  2398. </author>
  2399. <updated>2013-12-23T00:00:00Z</updated>
  2400. </entry>
  2401. <entry>
  2402. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.23.1</id>
  2403. <title>New version 2013.12.23.1</title>
  2404. <link href="http://ytdl-org.github.io/youtube-dl" />
  2405. <content type="xhtml">
  2406. <div xmlns="http://www.w3.org/1999/xhtml">
  2407. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.23.1/">https://yt-dl.org/downloads/2013.12.23.1/</a>
  2408. </div>
  2409. </content>
  2410. <author>
  2411. <name>The youtube-dl maintainers</name>
  2412. </author>
  2413. <updated>2013-12-23T00:00:01Z</updated>
  2414. </entry>
  2415. <entry>
  2416. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.23.2</id>
  2417. <title>New version 2013.12.23.2</title>
  2418. <link href="http://ytdl-org.github.io/youtube-dl" />
  2419. <content type="xhtml">
  2420. <div xmlns="http://www.w3.org/1999/xhtml">
  2421. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.23.2/">https://yt-dl.org/downloads/2013.12.23.2/</a>
  2422. </div>
  2423. </content>
  2424. <author>
  2425. <name>The youtube-dl maintainers</name>
  2426. </author>
  2427. <updated>2013-12-23T00:00:02Z</updated>
  2428. </entry>
  2429. <entry>
  2430. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.23.3</id>
  2431. <title>New version 2013.12.23.3</title>
  2432. <link href="http://ytdl-org.github.io/youtube-dl" />
  2433. <content type="xhtml">
  2434. <div xmlns="http://www.w3.org/1999/xhtml">
  2435. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.23.3/">https://yt-dl.org/downloads/2013.12.23.3/</a>
  2436. </div>
  2437. </content>
  2438. <author>
  2439. <name>The youtube-dl maintainers</name>
  2440. </author>
  2441. <updated>2013-12-23T00:00:03Z</updated>
  2442. </entry>
  2443. <entry>
  2444. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.23.4</id>
  2445. <title>New version 2013.12.23.4</title>
  2446. <link href="http://ytdl-org.github.io/youtube-dl" />
  2447. <content type="xhtml">
  2448. <div xmlns="http://www.w3.org/1999/xhtml">
  2449. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.23.4/">https://yt-dl.org/downloads/2013.12.23.4/</a>
  2450. </div>
  2451. </content>
  2452. <author>
  2453. <name>The youtube-dl maintainers</name>
  2454. </author>
  2455. <updated>2013-12-23T00:00:04Z</updated>
  2456. </entry>
  2457. <entry>
  2458. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2013.12.26</id>
  2459. <title>New version 2013.12.26</title>
  2460. <link href="http://ytdl-org.github.io/youtube-dl" />
  2461. <content type="xhtml">
  2462. <div xmlns="http://www.w3.org/1999/xhtml">
  2463. Downloads available at <a href="https://yt-dl.org/downloads/2013.12.26/">https://yt-dl.org/downloads/2013.12.26/</a>
  2464. </div>
  2465. </content>
  2466. <author>
  2467. <name>The youtube-dl maintainers</name>
  2468. </author>
  2469. <updated>2013-12-26T00:00:00Z</updated>
  2470. </entry>
  2471. <entry>
  2472. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.03</id>
  2473. <title>New version 2014.01.03</title>
  2474. <link href="http://ytdl-org.github.io/youtube-dl" />
  2475. <content type="xhtml">
  2476. <div xmlns="http://www.w3.org/1999/xhtml">
  2477. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.03/">https://yt-dl.org/downloads/2014.01.03/</a>
  2478. </div>
  2479. </content>
  2480. <author>
  2481. <name>The youtube-dl maintainers</name>
  2482. </author>
  2483. <updated>2014-01-03T00:00:00Z</updated>
  2484. </entry>
  2485. <entry>
  2486. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.05.1</id>
  2487. <title>New version 2014.01.05.1</title>
  2488. <link href="http://ytdl-org.github.io/youtube-dl" />
  2489. <content type="xhtml">
  2490. <div xmlns="http://www.w3.org/1999/xhtml">
  2491. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.05.1/">https://yt-dl.org/downloads/2014.01.05.1/</a>
  2492. </div>
  2493. </content>
  2494. <author>
  2495. <name>The youtube-dl maintainers</name>
  2496. </author>
  2497. <updated>2014-01-05T00:00:01Z</updated>
  2498. </entry>
  2499. <entry>
  2500. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.05.3</id>
  2501. <title>New version 2014.01.05.3</title>
  2502. <link href="http://ytdl-org.github.io/youtube-dl" />
  2503. <content type="xhtml">
  2504. <div xmlns="http://www.w3.org/1999/xhtml">
  2505. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.05.3/">https://yt-dl.org/downloads/2014.01.05.3/</a>
  2506. </div>
  2507. </content>
  2508. <author>
  2509. <name>The youtube-dl maintainers</name>
  2510. </author>
  2511. <updated>2014-01-05T00:00:03Z</updated>
  2512. </entry>
  2513. <entry>
  2514. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.05.4</id>
  2515. <title>New version 2014.01.05.4</title>
  2516. <link href="http://ytdl-org.github.io/youtube-dl" />
  2517. <content type="xhtml">
  2518. <div xmlns="http://www.w3.org/1999/xhtml">
  2519. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.05.4/">https://yt-dl.org/downloads/2014.01.05.4/</a>
  2520. </div>
  2521. </content>
  2522. <author>
  2523. <name>The youtube-dl maintainers</name>
  2524. </author>
  2525. <updated>2014-01-05T00:00:04Z</updated>
  2526. </entry>
  2527. <entry>
  2528. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.05.5</id>
  2529. <title>New version 2014.01.05.5</title>
  2530. <link href="http://ytdl-org.github.io/youtube-dl" />
  2531. <content type="xhtml">
  2532. <div xmlns="http://www.w3.org/1999/xhtml">
  2533. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.05.5/">https://yt-dl.org/downloads/2014.01.05.5/</a>
  2534. </div>
  2535. </content>
  2536. <author>
  2537. <name>The youtube-dl maintainers</name>
  2538. </author>
  2539. <updated>2014-01-05T00:00:05Z</updated>
  2540. </entry>
  2541. <entry>
  2542. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.05.6</id>
  2543. <title>New version 2014.01.05.6</title>
  2544. <link href="http://ytdl-org.github.io/youtube-dl" />
  2545. <content type="xhtml">
  2546. <div xmlns="http://www.w3.org/1999/xhtml">
  2547. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.05.6/">https://yt-dl.org/downloads/2014.01.05.6/</a>
  2548. </div>
  2549. </content>
  2550. <author>
  2551. <name>The youtube-dl maintainers</name>
  2552. </author>
  2553. <updated>2014-01-05T00:00:06Z</updated>
  2554. </entry>
  2555. <entry>
  2556. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.06</id>
  2557. <title>New version 2014.01.06</title>
  2558. <link href="http://ytdl-org.github.io/youtube-dl" />
  2559. <content type="xhtml">
  2560. <div xmlns="http://www.w3.org/1999/xhtml">
  2561. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.06/">https://yt-dl.org/downloads/2014.01.06/</a>
  2562. </div>
  2563. </content>
  2564. <author>
  2565. <name>The youtube-dl maintainers</name>
  2566. </author>
  2567. <updated>2014-01-06T00:00:00Z</updated>
  2568. </entry>
  2569. <entry>
  2570. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.06.1</id>
  2571. <title>New version 2014.01.06.1</title>
  2572. <link href="http://ytdl-org.github.io/youtube-dl" />
  2573. <content type="xhtml">
  2574. <div xmlns="http://www.w3.org/1999/xhtml">
  2575. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.06.1/">https://yt-dl.org/downloads/2014.01.06.1/</a>
  2576. </div>
  2577. </content>
  2578. <author>
  2579. <name>The youtube-dl maintainers</name>
  2580. </author>
  2581. <updated>2014-01-06T00:00:01Z</updated>
  2582. </entry>
  2583. <entry>
  2584. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.07</id>
  2585. <title>New version 2014.01.07</title>
  2586. <link href="http://ytdl-org.github.io/youtube-dl" />
  2587. <content type="xhtml">
  2588. <div xmlns="http://www.w3.org/1999/xhtml">
  2589. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.07/">https://yt-dl.org/downloads/2014.01.07/</a>
  2590. </div>
  2591. </content>
  2592. <author>
  2593. <name>The youtube-dl maintainers</name>
  2594. </author>
  2595. <updated>2014-01-07T00:00:00Z</updated>
  2596. </entry>
  2597. <entry>
  2598. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.07.1</id>
  2599. <title>New version 2014.01.07.1</title>
  2600. <link href="http://ytdl-org.github.io/youtube-dl" />
  2601. <content type="xhtml">
  2602. <div xmlns="http://www.w3.org/1999/xhtml">
  2603. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.07.1/">https://yt-dl.org/downloads/2014.01.07.1/</a>
  2604. </div>
  2605. </content>
  2606. <author>
  2607. <name>The youtube-dl maintainers</name>
  2608. </author>
  2609. <updated>2014-01-07T00:00:01Z</updated>
  2610. </entry>
  2611. <entry>
  2612. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.07.3</id>
  2613. <title>New version 2014.01.07.3</title>
  2614. <link href="http://ytdl-org.github.io/youtube-dl" />
  2615. <content type="xhtml">
  2616. <div xmlns="http://www.w3.org/1999/xhtml">
  2617. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.07.3/">https://yt-dl.org/downloads/2014.01.07.3/</a>
  2618. </div>
  2619. </content>
  2620. <author>
  2621. <name>The youtube-dl maintainers</name>
  2622. </author>
  2623. <updated>2014-01-07T00:00:03Z</updated>
  2624. </entry>
  2625. <entry>
  2626. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.07.5</id>
  2627. <title>New version 2014.01.07.5</title>
  2628. <link href="http://ytdl-org.github.io/youtube-dl" />
  2629. <content type="xhtml">
  2630. <div xmlns="http://www.w3.org/1999/xhtml">
  2631. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.07.5/">https://yt-dl.org/downloads/2014.01.07.5/</a>
  2632. </div>
  2633. </content>
  2634. <author>
  2635. <name>The youtube-dl maintainers</name>
  2636. </author>
  2637. <updated>2014-01-07T00:00:05Z</updated>
  2638. </entry>
  2639. <entry>
  2640. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.08</id>
  2641. <title>New version 2014.01.08</title>
  2642. <link href="http://ytdl-org.github.io/youtube-dl" />
  2643. <content type="xhtml">
  2644. <div xmlns="http://www.w3.org/1999/xhtml">
  2645. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.08/">https://yt-dl.org/downloads/2014.01.08/</a>
  2646. </div>
  2647. </content>
  2648. <author>
  2649. <name>The youtube-dl maintainers</name>
  2650. </author>
  2651. <updated>2014-01-08T00:00:00Z</updated>
  2652. </entry>
  2653. <entry>
  2654. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.17.2</id>
  2655. <title>New version 2014.01.17.2</title>
  2656. <link href="http://ytdl-org.github.io/youtube-dl" />
  2657. <content type="xhtml">
  2658. <div xmlns="http://www.w3.org/1999/xhtml">
  2659. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.17.2/">https://yt-dl.org/downloads/2014.01.17.2/</a>
  2660. </div>
  2661. </content>
  2662. <author>
  2663. <name>The youtube-dl maintainers</name>
  2664. </author>
  2665. <updated>2014-01-17T00:00:02Z</updated>
  2666. </entry>
  2667. <entry>
  2668. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.20</id>
  2669. <title>New version 2014.01.20</title>
  2670. <link href="http://ytdl-org.github.io/youtube-dl" />
  2671. <content type="xhtml">
  2672. <div xmlns="http://www.w3.org/1999/xhtml">
  2673. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.20/">https://yt-dl.org/downloads/2014.01.20/</a>
  2674. </div>
  2675. </content>
  2676. <author>
  2677. <name>The youtube-dl maintainers</name>
  2678. </author>
  2679. <updated>2014-01-20T00:00:00Z</updated>
  2680. </entry>
  2681. <entry>
  2682. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.21</id>
  2683. <title>New version 2014.01.21</title>
  2684. <link href="http://ytdl-org.github.io/youtube-dl" />
  2685. <content type="xhtml">
  2686. <div xmlns="http://www.w3.org/1999/xhtml">
  2687. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.21/">https://yt-dl.org/downloads/2014.01.21/</a>
  2688. </div>
  2689. </content>
  2690. <author>
  2691. <name>The youtube-dl maintainers</name>
  2692. </author>
  2693. <updated>2014-01-21T00:00:00Z</updated>
  2694. </entry>
  2695. <entry>
  2696. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.21.1</id>
  2697. <title>New version 2014.01.21.1</title>
  2698. <link href="http://ytdl-org.github.io/youtube-dl" />
  2699. <content type="xhtml">
  2700. <div xmlns="http://www.w3.org/1999/xhtml">
  2701. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.21.1/">https://yt-dl.org/downloads/2014.01.21.1/</a>
  2702. </div>
  2703. </content>
  2704. <author>
  2705. <name>The youtube-dl maintainers</name>
  2706. </author>
  2707. <updated>2014-01-21T00:00:01Z</updated>
  2708. </entry>
  2709. <entry>
  2710. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22</id>
  2711. <title>New version 2014.01.22</title>
  2712. <link href="http://ytdl-org.github.io/youtube-dl" />
  2713. <content type="xhtml">
  2714. <div xmlns="http://www.w3.org/1999/xhtml">
  2715. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22/">https://yt-dl.org/downloads/2014.01.22/</a>
  2716. </div>
  2717. </content>
  2718. <author>
  2719. <name>The youtube-dl maintainers</name>
  2720. </author>
  2721. <updated>2014-01-22T00:00:00Z</updated>
  2722. </entry>
  2723. <entry>
  2724. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22.1</id>
  2725. <title>New version 2014.01.22.1</title>
  2726. <link href="http://ytdl-org.github.io/youtube-dl" />
  2727. <content type="xhtml">
  2728. <div xmlns="http://www.w3.org/1999/xhtml">
  2729. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22.1/">https://yt-dl.org/downloads/2014.01.22.1/</a>
  2730. </div>
  2731. </content>
  2732. <author>
  2733. <name>The youtube-dl maintainers</name>
  2734. </author>
  2735. <updated>2014-01-22T00:00:01Z</updated>
  2736. </entry>
  2737. <entry>
  2738. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22.2</id>
  2739. <title>New version 2014.01.22.2</title>
  2740. <link href="http://ytdl-org.github.io/youtube-dl" />
  2741. <content type="xhtml">
  2742. <div xmlns="http://www.w3.org/1999/xhtml">
  2743. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22.2/">https://yt-dl.org/downloads/2014.01.22.2/</a>
  2744. </div>
  2745. </content>
  2746. <author>
  2747. <name>The youtube-dl maintainers</name>
  2748. </author>
  2749. <updated>2014-01-22T00:00:02Z</updated>
  2750. </entry>
  2751. <entry>
  2752. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22.3</id>
  2753. <title>New version 2014.01.22.3</title>
  2754. <link href="http://ytdl-org.github.io/youtube-dl" />
  2755. <content type="xhtml">
  2756. <div xmlns="http://www.w3.org/1999/xhtml">
  2757. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22.3/">https://yt-dl.org/downloads/2014.01.22.3/</a>
  2758. </div>
  2759. </content>
  2760. <author>
  2761. <name>The youtube-dl maintainers</name>
  2762. </author>
  2763. <updated>2014-01-22T00:00:03Z</updated>
  2764. </entry>
  2765. <entry>
  2766. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22.4</id>
  2767. <title>New version 2014.01.22.4</title>
  2768. <link href="http://ytdl-org.github.io/youtube-dl" />
  2769. <content type="xhtml">
  2770. <div xmlns="http://www.w3.org/1999/xhtml">
  2771. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22.4/">https://yt-dl.org/downloads/2014.01.22.4/</a>
  2772. </div>
  2773. </content>
  2774. <author>
  2775. <name>The youtube-dl maintainers</name>
  2776. </author>
  2777. <updated>2014-01-22T00:00:04Z</updated>
  2778. </entry>
  2779. <entry>
  2780. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.22.5</id>
  2781. <title>New version 2014.01.22.5</title>
  2782. <link href="http://ytdl-org.github.io/youtube-dl" />
  2783. <content type="xhtml">
  2784. <div xmlns="http://www.w3.org/1999/xhtml">
  2785. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.22.5/">https://yt-dl.org/downloads/2014.01.22.5/</a>
  2786. </div>
  2787. </content>
  2788. <author>
  2789. <name>The youtube-dl maintainers</name>
  2790. </author>
  2791. <updated>2014-01-22T00:00:05Z</updated>
  2792. </entry>
  2793. <entry>
  2794. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.23</id>
  2795. <title>New version 2014.01.23</title>
  2796. <link href="http://ytdl-org.github.io/youtube-dl" />
  2797. <content type="xhtml">
  2798. <div xmlns="http://www.w3.org/1999/xhtml">
  2799. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.23/">https://yt-dl.org/downloads/2014.01.23/</a>
  2800. </div>
  2801. </content>
  2802. <author>
  2803. <name>The youtube-dl maintainers</name>
  2804. </author>
  2805. <updated>2014-01-23T00:00:00Z</updated>
  2806. </entry>
  2807. <entry>
  2808. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.23.1</id>
  2809. <title>New version 2014.01.23.1</title>
  2810. <link href="http://ytdl-org.github.io/youtube-dl" />
  2811. <content type="xhtml">
  2812. <div xmlns="http://www.w3.org/1999/xhtml">
  2813. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.23.1/">https://yt-dl.org/downloads/2014.01.23.1/</a>
  2814. </div>
  2815. </content>
  2816. <author>
  2817. <name>The youtube-dl maintainers</name>
  2818. </author>
  2819. <updated>2014-01-23T00:00:01Z</updated>
  2820. </entry>
  2821. <entry>
  2822. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.23.2</id>
  2823. <title>New version 2014.01.23.2</title>
  2824. <link href="http://ytdl-org.github.io/youtube-dl" />
  2825. <content type="xhtml">
  2826. <div xmlns="http://www.w3.org/1999/xhtml">
  2827. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.23.2/">https://yt-dl.org/downloads/2014.01.23.2/</a>
  2828. </div>
  2829. </content>
  2830. <author>
  2831. <name>The youtube-dl maintainers</name>
  2832. </author>
  2833. <updated>2014-01-23T00:00:02Z</updated>
  2834. </entry>
  2835. <entry>
  2836. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.23.3</id>
  2837. <title>New version 2014.01.23.3</title>
  2838. <link href="http://ytdl-org.github.io/youtube-dl" />
  2839. <content type="xhtml">
  2840. <div xmlns="http://www.w3.org/1999/xhtml">
  2841. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.23.3/">https://yt-dl.org/downloads/2014.01.23.3/</a>
  2842. </div>
  2843. </content>
  2844. <author>
  2845. <name>The youtube-dl maintainers</name>
  2846. </author>
  2847. <updated>2014-01-23T00:00:03Z</updated>
  2848. </entry>
  2849. <entry>
  2850. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.23.4</id>
  2851. <title>New version 2014.01.23.4</title>
  2852. <link href="http://ytdl-org.github.io/youtube-dl" />
  2853. <content type="xhtml">
  2854. <div xmlns="http://www.w3.org/1999/xhtml">
  2855. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.23.4/">https://yt-dl.org/downloads/2014.01.23.4/</a>
  2856. </div>
  2857. </content>
  2858. <author>
  2859. <name>The youtube-dl maintainers</name>
  2860. </author>
  2861. <updated>2014-01-23T00:00:04Z</updated>
  2862. </entry>
  2863. <entry>
  2864. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.27</id>
  2865. <title>New version 2014.01.27</title>
  2866. <link href="http://ytdl-org.github.io/youtube-dl" />
  2867. <content type="xhtml">
  2868. <div xmlns="http://www.w3.org/1999/xhtml">
  2869. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.27/">https://yt-dl.org/downloads/2014.01.27/</a>
  2870. </div>
  2871. </content>
  2872. <author>
  2873. <name>The youtube-dl maintainers</name>
  2874. </author>
  2875. <updated>2014-01-27T00:00:00Z</updated>
  2876. </entry>
  2877. <entry>
  2878. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.27.1</id>
  2879. <title>New version 2014.01.27.1</title>
  2880. <link href="http://ytdl-org.github.io/youtube-dl" />
  2881. <content type="xhtml">
  2882. <div xmlns="http://www.w3.org/1999/xhtml">
  2883. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.27.1/">https://yt-dl.org/downloads/2014.01.27.1/</a>
  2884. </div>
  2885. </content>
  2886. <author>
  2887. <name>The youtube-dl maintainers</name>
  2888. </author>
  2889. <updated>2014-01-27T00:00:01Z</updated>
  2890. </entry>
  2891. <entry>
  2892. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.27.2</id>
  2893. <title>New version 2014.01.27.2</title>
  2894. <link href="http://ytdl-org.github.io/youtube-dl" />
  2895. <content type="xhtml">
  2896. <div xmlns="http://www.w3.org/1999/xhtml">
  2897. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.27.2/">https://yt-dl.org/downloads/2014.01.27.2/</a>
  2898. </div>
  2899. </content>
  2900. <author>
  2901. <name>The youtube-dl maintainers</name>
  2902. </author>
  2903. <updated>2014-01-27T00:00:02Z</updated>
  2904. </entry>
  2905. <entry>
  2906. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.28.1</id>
  2907. <title>New version 2014.01.28.1</title>
  2908. <link href="http://ytdl-org.github.io/youtube-dl" />
  2909. <content type="xhtml">
  2910. <div xmlns="http://www.w3.org/1999/xhtml">
  2911. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.28.1/">https://yt-dl.org/downloads/2014.01.28.1/</a>
  2912. </div>
  2913. </content>
  2914. <author>
  2915. <name>The youtube-dl maintainers</name>
  2916. </author>
  2917. <updated>2014-01-28T00:00:01Z</updated>
  2918. </entry>
  2919. <entry>
  2920. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.29</id>
  2921. <title>New version 2014.01.29</title>
  2922. <link href="http://ytdl-org.github.io/youtube-dl" />
  2923. <content type="xhtml">
  2924. <div xmlns="http://www.w3.org/1999/xhtml">
  2925. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.29/">https://yt-dl.org/downloads/2014.01.29/</a>
  2926. </div>
  2927. </content>
  2928. <author>
  2929. <name>The youtube-dl maintainers</name>
  2930. </author>
  2931. <updated>2014-01-29T00:00:00Z</updated>
  2932. </entry>
  2933. <entry>
  2934. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.30</id>
  2935. <title>New version 2014.01.30</title>
  2936. <link href="http://ytdl-org.github.io/youtube-dl" />
  2937. <content type="xhtml">
  2938. <div xmlns="http://www.w3.org/1999/xhtml">
  2939. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.30/">https://yt-dl.org/downloads/2014.01.30/</a>
  2940. </div>
  2941. </content>
  2942. <author>
  2943. <name>The youtube-dl maintainers</name>
  2944. </author>
  2945. <updated>2014-01-30T00:00:00Z</updated>
  2946. </entry>
  2947. <entry>
  2948. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.30.1</id>
  2949. <title>New version 2014.01.30.1</title>
  2950. <link href="http://ytdl-org.github.io/youtube-dl" />
  2951. <content type="xhtml">
  2952. <div xmlns="http://www.w3.org/1999/xhtml">
  2953. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.30.1/">https://yt-dl.org/downloads/2014.01.30.1/</a>
  2954. </div>
  2955. </content>
  2956. <author>
  2957. <name>The youtube-dl maintainers</name>
  2958. </author>
  2959. <updated>2014-01-30T00:00:01Z</updated>
  2960. </entry>
  2961. <entry>
  2962. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.01.30.2</id>
  2963. <title>New version 2014.01.30.2</title>
  2964. <link href="http://ytdl-org.github.io/youtube-dl" />
  2965. <content type="xhtml">
  2966. <div xmlns="http://www.w3.org/1999/xhtml">
  2967. Downloads available at <a href="https://yt-dl.org/downloads/2014.01.30.2/">https://yt-dl.org/downloads/2014.01.30.2/</a>
  2968. </div>
  2969. </content>
  2970. <author>
  2971. <name>The youtube-dl maintainers</name>
  2972. </author>
  2973. <updated>2014-01-30T00:00:02Z</updated>
  2974. </entry>
  2975. <entry>
  2976. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.03</id>
  2977. <title>New version 2014.02.03</title>
  2978. <link href="http://ytdl-org.github.io/youtube-dl" />
  2979. <content type="xhtml">
  2980. <div xmlns="http://www.w3.org/1999/xhtml">
  2981. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.03/">https://yt-dl.org/downloads/2014.02.03/</a>
  2982. </div>
  2983. </content>
  2984. <author>
  2985. <name>The youtube-dl maintainers</name>
  2986. </author>
  2987. <updated>2014-02-03T00:00:00Z</updated>
  2988. </entry>
  2989. <entry>
  2990. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.03.1</id>
  2991. <title>New version 2014.02.03.1</title>
  2992. <link href="http://ytdl-org.github.io/youtube-dl" />
  2993. <content type="xhtml">
  2994. <div xmlns="http://www.w3.org/1999/xhtml">
  2995. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.03.1/">https://yt-dl.org/downloads/2014.02.03.1/</a>
  2996. </div>
  2997. </content>
  2998. <author>
  2999. <name>The youtube-dl maintainers</name>
  3000. </author>
  3001. <updated>2014-02-03T00:00:01Z</updated>
  3002. </entry>
  3003. <entry>
  3004. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.04</id>
  3005. <title>New version 2014.02.04</title>
  3006. <link href="http://ytdl-org.github.io/youtube-dl" />
  3007. <content type="xhtml">
  3008. <div xmlns="http://www.w3.org/1999/xhtml">
  3009. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.04/">https://yt-dl.org/downloads/2014.02.04/</a>
  3010. </div>
  3011. </content>
  3012. <author>
  3013. <name>The youtube-dl maintainers</name>
  3014. </author>
  3015. <updated>2014-02-04T00:00:00Z</updated>
  3016. </entry>
  3017. <entry>
  3018. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.04.1</id>
  3019. <title>New version 2014.02.04.1</title>
  3020. <link href="http://ytdl-org.github.io/youtube-dl" />
  3021. <content type="xhtml">
  3022. <div xmlns="http://www.w3.org/1999/xhtml">
  3023. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.04.1/">https://yt-dl.org/downloads/2014.02.04.1/</a>
  3024. </div>
  3025. </content>
  3026. <author>
  3027. <name>The youtube-dl maintainers</name>
  3028. </author>
  3029. <updated>2014-02-04T00:00:01Z</updated>
  3030. </entry>
  3031. <entry>
  3032. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.05</id>
  3033. <title>New version 2014.02.05</title>
  3034. <link href="http://ytdl-org.github.io/youtube-dl" />
  3035. <content type="xhtml">
  3036. <div xmlns="http://www.w3.org/1999/xhtml">
  3037. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.05/">https://yt-dl.org/downloads/2014.02.05/</a>
  3038. </div>
  3039. </content>
  3040. <author>
  3041. <name>The youtube-dl maintainers</name>
  3042. </author>
  3043. <updated>2014-02-05T00:00:00Z</updated>
  3044. </entry>
  3045. <entry>
  3046. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.06</id>
  3047. <title>New version 2014.02.06</title>
  3048. <link href="http://ytdl-org.github.io/youtube-dl" />
  3049. <content type="xhtml">
  3050. <div xmlns="http://www.w3.org/1999/xhtml">
  3051. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.06/">https://yt-dl.org/downloads/2014.02.06/</a>
  3052. </div>
  3053. </content>
  3054. <author>
  3055. <name>The youtube-dl maintainers</name>
  3056. </author>
  3057. <updated>2014-02-06T00:00:00Z</updated>
  3058. </entry>
  3059. <entry>
  3060. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.06.1</id>
  3061. <title>New version 2014.02.06.1</title>
  3062. <link href="http://ytdl-org.github.io/youtube-dl" />
  3063. <content type="xhtml">
  3064. <div xmlns="http://www.w3.org/1999/xhtml">
  3065. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.06.1/">https://yt-dl.org/downloads/2014.02.06.1/</a>
  3066. </div>
  3067. </content>
  3068. <author>
  3069. <name>The youtube-dl maintainers</name>
  3070. </author>
  3071. <updated>2014-02-06T00:00:01Z</updated>
  3072. </entry>
  3073. <entry>
  3074. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.06.2</id>
  3075. <title>New version 2014.02.06.2</title>
  3076. <link href="http://ytdl-org.github.io/youtube-dl" />
  3077. <content type="xhtml">
  3078. <div xmlns="http://www.w3.org/1999/xhtml">
  3079. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.06.2/">https://yt-dl.org/downloads/2014.02.06.2/</a>
  3080. </div>
  3081. </content>
  3082. <author>
  3083. <name>The youtube-dl maintainers</name>
  3084. </author>
  3085. <updated>2014-02-06T00:00:02Z</updated>
  3086. </entry>
  3087. <entry>
  3088. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.06.3</id>
  3089. <title>New version 2014.02.06.3</title>
  3090. <link href="http://ytdl-org.github.io/youtube-dl" />
  3091. <content type="xhtml">
  3092. <div xmlns="http://www.w3.org/1999/xhtml">
  3093. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.06.3/">https://yt-dl.org/downloads/2014.02.06.3/</a>
  3094. </div>
  3095. </content>
  3096. <author>
  3097. <name>The youtube-dl maintainers</name>
  3098. </author>
  3099. <updated>2014-02-06T00:00:03Z</updated>
  3100. </entry>
  3101. <entry>
  3102. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.08</id>
  3103. <title>New version 2014.02.08</title>
  3104. <link href="http://ytdl-org.github.io/youtube-dl" />
  3105. <content type="xhtml">
  3106. <div xmlns="http://www.w3.org/1999/xhtml">
  3107. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.08/">https://yt-dl.org/downloads/2014.02.08/</a>
  3108. </div>
  3109. </content>
  3110. <author>
  3111. <name>The youtube-dl maintainers</name>
  3112. </author>
  3113. <updated>2014-02-08T00:00:00Z</updated>
  3114. </entry>
  3115. <entry>
  3116. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.08.1</id>
  3117. <title>New version 2014.02.08.1</title>
  3118. <link href="http://ytdl-org.github.io/youtube-dl" />
  3119. <content type="xhtml">
  3120. <div xmlns="http://www.w3.org/1999/xhtml">
  3121. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.08.1/">https://yt-dl.org/downloads/2014.02.08.1/</a>
  3122. </div>
  3123. </content>
  3124. <author>
  3125. <name>The youtube-dl maintainers</name>
  3126. </author>
  3127. <updated>2014-02-08T00:00:01Z</updated>
  3128. </entry>
  3129. <entry>
  3130. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.08.2</id>
  3131. <title>New version 2014.02.08.2</title>
  3132. <link href="http://ytdl-org.github.io/youtube-dl" />
  3133. <content type="xhtml">
  3134. <div xmlns="http://www.w3.org/1999/xhtml">
  3135. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.08.2/">https://yt-dl.org/downloads/2014.02.08.2/</a>
  3136. </div>
  3137. </content>
  3138. <author>
  3139. <name>The youtube-dl maintainers</name>
  3140. </author>
  3141. <updated>2014-02-08T00:00:02Z</updated>
  3142. </entry>
  3143. <entry>
  3144. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.10</id>
  3145. <title>New version 2014.02.10</title>
  3146. <link href="http://ytdl-org.github.io/youtube-dl" />
  3147. <content type="xhtml">
  3148. <div xmlns="http://www.w3.org/1999/xhtml">
  3149. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.10/">https://yt-dl.org/downloads/2014.02.10/</a>
  3150. </div>
  3151. </content>
  3152. <author>
  3153. <name>The youtube-dl maintainers</name>
  3154. </author>
  3155. <updated>2014-02-10T00:00:00Z</updated>
  3156. </entry>
  3157. <entry>
  3158. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.13</id>
  3159. <title>New version 2014.02.13</title>
  3160. <link href="http://ytdl-org.github.io/youtube-dl" />
  3161. <content type="xhtml">
  3162. <div xmlns="http://www.w3.org/1999/xhtml">
  3163. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.13/">https://yt-dl.org/downloads/2014.02.13/</a>
  3164. </div>
  3165. </content>
  3166. <author>
  3167. <name>The youtube-dl maintainers</name>
  3168. </author>
  3169. <updated>2014-02-13T00:00:00Z</updated>
  3170. </entry>
  3171. <entry>
  3172. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.17</id>
  3173. <title>New version 2014.02.17</title>
  3174. <link href="http://ytdl-org.github.io/youtube-dl" />
  3175. <content type="xhtml">
  3176. <div xmlns="http://www.w3.org/1999/xhtml">
  3177. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.17/">https://yt-dl.org/downloads/2014.02.17/</a>
  3178. </div>
  3179. </content>
  3180. <author>
  3181. <name>The youtube-dl maintainers</name>
  3182. </author>
  3183. <updated>2014-02-17T00:00:00Z</updated>
  3184. </entry>
  3185. <entry>
  3186. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.19</id>
  3187. <title>New version 2014.02.19</title>
  3188. <link href="http://ytdl-org.github.io/youtube-dl" />
  3189. <content type="xhtml">
  3190. <div xmlns="http://www.w3.org/1999/xhtml">
  3191. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.19/">https://yt-dl.org/downloads/2014.02.19/</a>
  3192. </div>
  3193. </content>
  3194. <author>
  3195. <name>The youtube-dl maintainers</name>
  3196. </author>
  3197. <updated>2014-02-19T00:00:00Z</updated>
  3198. </entry>
  3199. <entry>
  3200. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.19.1</id>
  3201. <title>New version 2014.02.19.1</title>
  3202. <link href="http://ytdl-org.github.io/youtube-dl" />
  3203. <content type="xhtml">
  3204. <div xmlns="http://www.w3.org/1999/xhtml">
  3205. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.19.1/">https://yt-dl.org/downloads/2014.02.19.1/</a>
  3206. </div>
  3207. </content>
  3208. <author>
  3209. <name>The youtube-dl maintainers</name>
  3210. </author>
  3211. <updated>2014-02-19T00:00:01Z</updated>
  3212. </entry>
  3213. <entry>
  3214. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.20</id>
  3215. <title>New version 2014.02.20</title>
  3216. <link href="http://ytdl-org.github.io/youtube-dl" />
  3217. <content type="xhtml">
  3218. <div xmlns="http://www.w3.org/1999/xhtml">
  3219. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.20/">https://yt-dl.org/downloads/2014.02.20/</a>
  3220. </div>
  3221. </content>
  3222. <author>
  3223. <name>The youtube-dl maintainers</name>
  3224. </author>
  3225. <updated>2014-02-20T00:00:00Z</updated>
  3226. </entry>
  3227. <entry>
  3228. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.21</id>
  3229. <title>New version 2014.02.21</title>
  3230. <link href="http://ytdl-org.github.io/youtube-dl" />
  3231. <content type="xhtml">
  3232. <div xmlns="http://www.w3.org/1999/xhtml">
  3233. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.21/">https://yt-dl.org/downloads/2014.02.21/</a>
  3234. </div>
  3235. </content>
  3236. <author>
  3237. <name>The youtube-dl maintainers</name>
  3238. </author>
  3239. <updated>2014-02-21T00:00:00Z</updated>
  3240. </entry>
  3241. <entry>
  3242. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.21.1</id>
  3243. <title>New version 2014.02.21.1</title>
  3244. <link href="http://ytdl-org.github.io/youtube-dl" />
  3245. <content type="xhtml">
  3246. <div xmlns="http://www.w3.org/1999/xhtml">
  3247. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.21.1/">https://yt-dl.org/downloads/2014.02.21.1/</a>
  3248. </div>
  3249. </content>
  3250. <author>
  3251. <name>The youtube-dl maintainers</name>
  3252. </author>
  3253. <updated>2014-02-21T00:00:01Z</updated>
  3254. </entry>
  3255. <entry>
  3256. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.22</id>
  3257. <title>New version 2014.02.22</title>
  3258. <link href="http://ytdl-org.github.io/youtube-dl" />
  3259. <content type="xhtml">
  3260. <div xmlns="http://www.w3.org/1999/xhtml">
  3261. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.22/">https://yt-dl.org/downloads/2014.02.22/</a>
  3262. </div>
  3263. </content>
  3264. <author>
  3265. <name>The youtube-dl maintainers</name>
  3266. </author>
  3267. <updated>2014-02-22T00:00:00Z</updated>
  3268. </entry>
  3269. <entry>
  3270. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.22.1</id>
  3271. <title>New version 2014.02.22.1</title>
  3272. <link href="http://ytdl-org.github.io/youtube-dl" />
  3273. <content type="xhtml">
  3274. <div xmlns="http://www.w3.org/1999/xhtml">
  3275. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.22.1/">https://yt-dl.org/downloads/2014.02.22.1/</a>
  3276. </div>
  3277. </content>
  3278. <author>
  3279. <name>The youtube-dl maintainers</name>
  3280. </author>
  3281. <updated>2014-02-22T00:00:01Z</updated>
  3282. </entry>
  3283. <entry>
  3284. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.24</id>
  3285. <title>New version 2014.02.24</title>
  3286. <link href="http://ytdl-org.github.io/youtube-dl" />
  3287. <content type="xhtml">
  3288. <div xmlns="http://www.w3.org/1999/xhtml">
  3289. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.24/">https://yt-dl.org/downloads/2014.02.24/</a>
  3290. </div>
  3291. </content>
  3292. <author>
  3293. <name>The youtube-dl maintainers</name>
  3294. </author>
  3295. <updated>2014-02-24T00:00:00Z</updated>
  3296. </entry>
  3297. <entry>
  3298. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.25</id>
  3299. <title>New version 2014.02.25</title>
  3300. <link href="http://ytdl-org.github.io/youtube-dl" />
  3301. <content type="xhtml">
  3302. <div xmlns="http://www.w3.org/1999/xhtml">
  3303. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.25/">https://yt-dl.org/downloads/2014.02.25/</a>
  3304. </div>
  3305. </content>
  3306. <author>
  3307. <name>The youtube-dl maintainers</name>
  3308. </author>
  3309. <updated>2014-02-25T00:00:00Z</updated>
  3310. </entry>
  3311. <entry>
  3312. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.25.1</id>
  3313. <title>New version 2014.02.25.1</title>
  3314. <link href="http://ytdl-org.github.io/youtube-dl" />
  3315. <content type="xhtml">
  3316. <div xmlns="http://www.w3.org/1999/xhtml">
  3317. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.25.1/">https://yt-dl.org/downloads/2014.02.25.1/</a>
  3318. </div>
  3319. </content>
  3320. <author>
  3321. <name>The youtube-dl maintainers</name>
  3322. </author>
  3323. <updated>2014-02-25T00:00:01Z</updated>
  3324. </entry>
  3325. <entry>
  3326. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.26</id>
  3327. <title>New version 2014.02.26</title>
  3328. <link href="http://ytdl-org.github.io/youtube-dl" />
  3329. <content type="xhtml">
  3330. <div xmlns="http://www.w3.org/1999/xhtml">
  3331. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.26/">https://yt-dl.org/downloads/2014.02.26/</a>
  3332. </div>
  3333. </content>
  3334. <author>
  3335. <name>The youtube-dl maintainers</name>
  3336. </author>
  3337. <updated>2014-02-26T00:00:00Z</updated>
  3338. </entry>
  3339. <entry>
  3340. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.27</id>
  3341. <title>New version 2014.02.27</title>
  3342. <link href="http://ytdl-org.github.io/youtube-dl" />
  3343. <content type="xhtml">
  3344. <div xmlns="http://www.w3.org/1999/xhtml">
  3345. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.27/">https://yt-dl.org/downloads/2014.02.27/</a>
  3346. </div>
  3347. </content>
  3348. <author>
  3349. <name>The youtube-dl maintainers</name>
  3350. </author>
  3351. <updated>2014-02-27T00:00:00Z</updated>
  3352. </entry>
  3353. <entry>
  3354. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.27.1</id>
  3355. <title>New version 2014.02.27.1</title>
  3356. <link href="http://ytdl-org.github.io/youtube-dl" />
  3357. <content type="xhtml">
  3358. <div xmlns="http://www.w3.org/1999/xhtml">
  3359. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.27.1/">https://yt-dl.org/downloads/2014.02.27.1/</a>
  3360. </div>
  3361. </content>
  3362. <author>
  3363. <name>The youtube-dl maintainers</name>
  3364. </author>
  3365. <updated>2014-02-27T00:00:01Z</updated>
  3366. </entry>
  3367. <entry>
  3368. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.02.28</id>
  3369. <title>New version 2014.02.28</title>
  3370. <link href="http://ytdl-org.github.io/youtube-dl" />
  3371. <content type="xhtml">
  3372. <div xmlns="http://www.w3.org/1999/xhtml">
  3373. Downloads available at <a href="https://yt-dl.org/downloads/2014.02.28/">https://yt-dl.org/downloads/2014.02.28/</a>
  3374. </div>
  3375. </content>
  3376. <author>
  3377. <name>The youtube-dl maintainers</name>
  3378. </author>
  3379. <updated>2014-02-28T00:00:00Z</updated>
  3380. </entry>
  3381. <entry>
  3382. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.03</id>
  3383. <title>New version 2014.03.03</title>
  3384. <link href="http://ytdl-org.github.io/youtube-dl" />
  3385. <content type="xhtml">
  3386. <div xmlns="http://www.w3.org/1999/xhtml">
  3387. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.03/">https://yt-dl.org/downloads/2014.03.03/</a>
  3388. </div>
  3389. </content>
  3390. <author>
  3391. <name>The youtube-dl maintainers</name>
  3392. </author>
  3393. <updated>2014-03-03T00:00:00Z</updated>
  3394. </entry>
  3395. <entry>
  3396. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.04</id>
  3397. <title>New version 2014.03.04</title>
  3398. <link href="http://ytdl-org.github.io/youtube-dl" />
  3399. <content type="xhtml">
  3400. <div xmlns="http://www.w3.org/1999/xhtml">
  3401. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.04/">https://yt-dl.org/downloads/2014.03.04/</a>
  3402. </div>
  3403. </content>
  3404. <author>
  3405. <name>The youtube-dl maintainers</name>
  3406. </author>
  3407. <updated>2014-03-04T00:00:00Z</updated>
  3408. </entry>
  3409. <entry>
  3410. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.04.1</id>
  3411. <title>New version 2014.03.04.1</title>
  3412. <link href="http://ytdl-org.github.io/youtube-dl" />
  3413. <content type="xhtml">
  3414. <div xmlns="http://www.w3.org/1999/xhtml">
  3415. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.04.1/">https://yt-dl.org/downloads/2014.03.04.1/</a>
  3416. </div>
  3417. </content>
  3418. <author>
  3419. <name>The youtube-dl maintainers</name>
  3420. </author>
  3421. <updated>2014-03-04T00:00:01Z</updated>
  3422. </entry>
  3423. <entry>
  3424. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.04.2</id>
  3425. <title>New version 2014.03.04.2</title>
  3426. <link href="http://ytdl-org.github.io/youtube-dl" />
  3427. <content type="xhtml">
  3428. <div xmlns="http://www.w3.org/1999/xhtml">
  3429. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.04.2/">https://yt-dl.org/downloads/2014.03.04.2/</a>
  3430. </div>
  3431. </content>
  3432. <author>
  3433. <name>The youtube-dl maintainers</name>
  3434. </author>
  3435. <updated>2014-03-04T00:00:02Z</updated>
  3436. </entry>
  3437. <entry>
  3438. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.06</id>
  3439. <title>New version 2014.03.06</title>
  3440. <link href="http://ytdl-org.github.io/youtube-dl" />
  3441. <content type="xhtml">
  3442. <div xmlns="http://www.w3.org/1999/xhtml">
  3443. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.06/">https://yt-dl.org/downloads/2014.03.06/</a>
  3444. </div>
  3445. </content>
  3446. <author>
  3447. <name>The youtube-dl maintainers</name>
  3448. </author>
  3449. <updated>2014-03-06T00:00:00Z</updated>
  3450. </entry>
  3451. <entry>
  3452. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.07</id>
  3453. <title>New version 2014.03.07</title>
  3454. <link href="http://ytdl-org.github.io/youtube-dl" />
  3455. <content type="xhtml">
  3456. <div xmlns="http://www.w3.org/1999/xhtml">
  3457. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.07/">https://yt-dl.org/downloads/2014.03.07/</a>
  3458. </div>
  3459. </content>
  3460. <author>
  3461. <name>The youtube-dl maintainers</name>
  3462. </author>
  3463. <updated>2014-03-07T00:00:00Z</updated>
  3464. </entry>
  3465. <entry>
  3466. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.07.1</id>
  3467. <title>New version 2014.03.07.1</title>
  3468. <link href="http://ytdl-org.github.io/youtube-dl" />
  3469. <content type="xhtml">
  3470. <div xmlns="http://www.w3.org/1999/xhtml">
  3471. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.07.1/">https://yt-dl.org/downloads/2014.03.07.1/</a>
  3472. </div>
  3473. </content>
  3474. <author>
  3475. <name>The youtube-dl maintainers</name>
  3476. </author>
  3477. <updated>2014-03-07T00:00:01Z</updated>
  3478. </entry>
  3479. <entry>
  3480. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.10</id>
  3481. <title>New version 2014.03.10</title>
  3482. <link href="http://ytdl-org.github.io/youtube-dl" />
  3483. <content type="xhtml">
  3484. <div xmlns="http://www.w3.org/1999/xhtml">
  3485. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.10/">https://yt-dl.org/downloads/2014.03.10/</a>
  3486. </div>
  3487. </content>
  3488. <author>
  3489. <name>The youtube-dl maintainers</name>
  3490. </author>
  3491. <updated>2014-03-10T00:00:00Z</updated>
  3492. </entry>
  3493. <entry>
  3494. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.11</id>
  3495. <title>New version 2014.03.11</title>
  3496. <link href="http://ytdl-org.github.io/youtube-dl" />
  3497. <content type="xhtml">
  3498. <div xmlns="http://www.w3.org/1999/xhtml">
  3499. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.11/">https://yt-dl.org/downloads/2014.03.11/</a>
  3500. </div>
  3501. </content>
  3502. <author>
  3503. <name>The youtube-dl maintainers</name>
  3504. </author>
  3505. <updated>2014-03-11T00:00:00Z</updated>
  3506. </entry>
  3507. <entry>
  3508. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.12</id>
  3509. <title>New version 2014.03.12</title>
  3510. <link href="http://ytdl-org.github.io/youtube-dl" />
  3511. <content type="xhtml">
  3512. <div xmlns="http://www.w3.org/1999/xhtml">
  3513. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.12/">https://yt-dl.org/downloads/2014.03.12/</a>
  3514. </div>
  3515. </content>
  3516. <author>
  3517. <name>The youtube-dl maintainers</name>
  3518. </author>
  3519. <updated>2014-03-12T00:00:00Z</updated>
  3520. </entry>
  3521. <entry>
  3522. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.17</id>
  3523. <title>New version 2014.03.17</title>
  3524. <link href="http://ytdl-org.github.io/youtube-dl" />
  3525. <content type="xhtml">
  3526. <div xmlns="http://www.w3.org/1999/xhtml">
  3527. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.17/">https://yt-dl.org/downloads/2014.03.17/</a>
  3528. </div>
  3529. </content>
  3530. <author>
  3531. <name>The youtube-dl maintainers</name>
  3532. </author>
  3533. <updated>2014-03-17T00:00:00Z</updated>
  3534. </entry>
  3535. <entry>
  3536. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.18.1</id>
  3537. <title>New version 2014.03.18.1</title>
  3538. <link href="http://ytdl-org.github.io/youtube-dl" />
  3539. <content type="xhtml">
  3540. <div xmlns="http://www.w3.org/1999/xhtml">
  3541. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.18.1/">https://yt-dl.org/downloads/2014.03.18.1/</a>
  3542. </div>
  3543. </content>
  3544. <author>
  3545. <name>The youtube-dl maintainers</name>
  3546. </author>
  3547. <updated>2014-03-18T00:00:01Z</updated>
  3548. </entry>
  3549. <entry>
  3550. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.20</id>
  3551. <title>New version 2014.03.20</title>
  3552. <link href="http://ytdl-org.github.io/youtube-dl" />
  3553. <content type="xhtml">
  3554. <div xmlns="http://www.w3.org/1999/xhtml">
  3555. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.20/">https://yt-dl.org/downloads/2014.03.20/</a>
  3556. </div>
  3557. </content>
  3558. <author>
  3559. <name>The youtube-dl maintainers</name>
  3560. </author>
  3561. <updated>2014-03-20T00:00:00Z</updated>
  3562. </entry>
  3563. <entry>
  3564. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.21</id>
  3565. <title>New version 2014.03.21</title>
  3566. <link href="http://ytdl-org.github.io/youtube-dl" />
  3567. <content type="xhtml">
  3568. <div xmlns="http://www.w3.org/1999/xhtml">
  3569. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.21/">https://yt-dl.org/downloads/2014.03.21/</a>
  3570. </div>
  3571. </content>
  3572. <author>
  3573. <name>The youtube-dl maintainers</name>
  3574. </author>
  3575. <updated>2014-03-21T00:00:00Z</updated>
  3576. </entry>
  3577. <entry>
  3578. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.21.1</id>
  3579. <title>New version 2014.03.21.1</title>
  3580. <link href="http://ytdl-org.github.io/youtube-dl" />
  3581. <content type="xhtml">
  3582. <div xmlns="http://www.w3.org/1999/xhtml">
  3583. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.21.1/">https://yt-dl.org/downloads/2014.03.21.1/</a>
  3584. </div>
  3585. </content>
  3586. <author>
  3587. <name>The youtube-dl maintainers</name>
  3588. </author>
  3589. <updated>2014-03-21T00:00:01Z</updated>
  3590. </entry>
  3591. <entry>
  3592. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.21.2</id>
  3593. <title>New version 2014.03.21.2</title>
  3594. <link href="http://ytdl-org.github.io/youtube-dl" />
  3595. <content type="xhtml">
  3596. <div xmlns="http://www.w3.org/1999/xhtml">
  3597. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.21.2/">https://yt-dl.org/downloads/2014.03.21.2/</a>
  3598. </div>
  3599. </content>
  3600. <author>
  3601. <name>The youtube-dl maintainers</name>
  3602. </author>
  3603. <updated>2014-03-21T00:00:02Z</updated>
  3604. </entry>
  3605. <entry>
  3606. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.21.3</id>
  3607. <title>New version 2014.03.21.3</title>
  3608. <link href="http://ytdl-org.github.io/youtube-dl" />
  3609. <content type="xhtml">
  3610. <div xmlns="http://www.w3.org/1999/xhtml">
  3611. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.21.3/">https://yt-dl.org/downloads/2014.03.21.3/</a>
  3612. </div>
  3613. </content>
  3614. <author>
  3615. <name>The youtube-dl maintainers</name>
  3616. </author>
  3617. <updated>2014-03-21T00:00:03Z</updated>
  3618. </entry>
  3619. <entry>
  3620. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.21.5</id>
  3621. <title>New version 2014.03.21.5</title>
  3622. <link href="http://ytdl-org.github.io/youtube-dl" />
  3623. <content type="xhtml">
  3624. <div xmlns="http://www.w3.org/1999/xhtml">
  3625. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.21.5/">https://yt-dl.org/downloads/2014.03.21.5/</a>
  3626. </div>
  3627. </content>
  3628. <author>
  3629. <name>The youtube-dl maintainers</name>
  3630. </author>
  3631. <updated>2014-03-21T00:00:05Z</updated>
  3632. </entry>
  3633. <entry>
  3634. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.23</id>
  3635. <title>New version 2014.03.23</title>
  3636. <link href="http://ytdl-org.github.io/youtube-dl" />
  3637. <content type="xhtml">
  3638. <div xmlns="http://www.w3.org/1999/xhtml">
  3639. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.23/">https://yt-dl.org/downloads/2014.03.23/</a>
  3640. </div>
  3641. </content>
  3642. <author>
  3643. <name>The youtube-dl maintainers</name>
  3644. </author>
  3645. <updated>2014-03-23T00:00:00Z</updated>
  3646. </entry>
  3647. <entry>
  3648. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.24.1</id>
  3649. <title>New version 2014.03.24.1</title>
  3650. <link href="http://ytdl-org.github.io/youtube-dl" />
  3651. <content type="xhtml">
  3652. <div xmlns="http://www.w3.org/1999/xhtml">
  3653. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.24.1/">https://yt-dl.org/downloads/2014.03.24.1/</a>
  3654. </div>
  3655. </content>
  3656. <author>
  3657. <name>The youtube-dl maintainers</name>
  3658. </author>
  3659. <updated>2014-03-24T00:00:01Z</updated>
  3660. </entry>
  3661. <entry>
  3662. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.24.2</id>
  3663. <title>New version 2014.03.24.2</title>
  3664. <link href="http://ytdl-org.github.io/youtube-dl" />
  3665. <content type="xhtml">
  3666. <div xmlns="http://www.w3.org/1999/xhtml">
  3667. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.24.2/">https://yt-dl.org/downloads/2014.03.24.2/</a>
  3668. </div>
  3669. </content>
  3670. <author>
  3671. <name>The youtube-dl maintainers</name>
  3672. </author>
  3673. <updated>2014-03-24T00:00:02Z</updated>
  3674. </entry>
  3675. <entry>
  3676. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.24.3</id>
  3677. <title>New version 2014.03.24.3</title>
  3678. <link href="http://ytdl-org.github.io/youtube-dl" />
  3679. <content type="xhtml">
  3680. <div xmlns="http://www.w3.org/1999/xhtml">
  3681. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.24.3/">https://yt-dl.org/downloads/2014.03.24.3/</a>
  3682. </div>
  3683. </content>
  3684. <author>
  3685. <name>The youtube-dl maintainers</name>
  3686. </author>
  3687. <updated>2014-03-24T00:00:03Z</updated>
  3688. </entry>
  3689. <entry>
  3690. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.24.4</id>
  3691. <title>New version 2014.03.24.4</title>
  3692. <link href="http://ytdl-org.github.io/youtube-dl" />
  3693. <content type="xhtml">
  3694. <div xmlns="http://www.w3.org/1999/xhtml">
  3695. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.24.4/">https://yt-dl.org/downloads/2014.03.24.4/</a>
  3696. </div>
  3697. </content>
  3698. <author>
  3699. <name>The youtube-dl maintainers</name>
  3700. </author>
  3701. <updated>2014-03-24T00:00:04Z</updated>
  3702. </entry>
  3703. <entry>
  3704. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.24.5</id>
  3705. <title>New version 2014.03.24.5</title>
  3706. <link href="http://ytdl-org.github.io/youtube-dl" />
  3707. <content type="xhtml">
  3708. <div xmlns="http://www.w3.org/1999/xhtml">
  3709. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.24.5/">https://yt-dl.org/downloads/2014.03.24.5/</a>
  3710. </div>
  3711. </content>
  3712. <author>
  3713. <name>The youtube-dl maintainers</name>
  3714. </author>
  3715. <updated>2014-03-24T00:00:05Z</updated>
  3716. </entry>
  3717. <entry>
  3718. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.25</id>
  3719. <title>New version 2014.03.25</title>
  3720. <link href="http://ytdl-org.github.io/youtube-dl" />
  3721. <content type="xhtml">
  3722. <div xmlns="http://www.w3.org/1999/xhtml">
  3723. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.25/">https://yt-dl.org/downloads/2014.03.25/</a>
  3724. </div>
  3725. </content>
  3726. <author>
  3727. <name>The youtube-dl maintainers</name>
  3728. </author>
  3729. <updated>2014-03-25T00:00:00Z</updated>
  3730. </entry>
  3731. <entry>
  3732. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.25.1</id>
  3733. <title>New version 2014.03.25.1</title>
  3734. <link href="http://ytdl-org.github.io/youtube-dl" />
  3735. <content type="xhtml">
  3736. <div xmlns="http://www.w3.org/1999/xhtml">
  3737. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.25.1/">https://yt-dl.org/downloads/2014.03.25.1/</a>
  3738. </div>
  3739. </content>
  3740. <author>
  3741. <name>The youtube-dl maintainers</name>
  3742. </author>
  3743. <updated>2014-03-25T00:00:01Z</updated>
  3744. </entry>
  3745. <entry>
  3746. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.27</id>
  3747. <title>New version 2014.03.27</title>
  3748. <link href="http://ytdl-org.github.io/youtube-dl" />
  3749. <content type="xhtml">
  3750. <div xmlns="http://www.w3.org/1999/xhtml">
  3751. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.27/">https://yt-dl.org/downloads/2014.03.27/</a>
  3752. </div>
  3753. </content>
  3754. <author>
  3755. <name>The youtube-dl maintainers</name>
  3756. </author>
  3757. <updated>2014-03-27T00:00:00Z</updated>
  3758. </entry>
  3759. <entry>
  3760. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.27.1</id>
  3761. <title>New version 2014.03.27.1</title>
  3762. <link href="http://ytdl-org.github.io/youtube-dl" />
  3763. <content type="xhtml">
  3764. <div xmlns="http://www.w3.org/1999/xhtml">
  3765. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.27.1/">https://yt-dl.org/downloads/2014.03.27.1/</a>
  3766. </div>
  3767. </content>
  3768. <author>
  3769. <name>The youtube-dl maintainers</name>
  3770. </author>
  3771. <updated>2014-03-27T00:00:01Z</updated>
  3772. </entry>
  3773. <entry>
  3774. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.28</id>
  3775. <title>New version 2014.03.28</title>
  3776. <link href="http://ytdl-org.github.io/youtube-dl" />
  3777. <content type="xhtml">
  3778. <div xmlns="http://www.w3.org/1999/xhtml">
  3779. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.28/">https://yt-dl.org/downloads/2014.03.28/</a>
  3780. </div>
  3781. </content>
  3782. <author>
  3783. <name>The youtube-dl maintainers</name>
  3784. </author>
  3785. <updated>2014-03-28T00:00:00Z</updated>
  3786. </entry>
  3787. <entry>
  3788. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.29</id>
  3789. <title>New version 2014.03.29</title>
  3790. <link href="http://ytdl-org.github.io/youtube-dl" />
  3791. <content type="xhtml">
  3792. <div xmlns="http://www.w3.org/1999/xhtml">
  3793. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.29/">https://yt-dl.org/downloads/2014.03.29/</a>
  3794. </div>
  3795. </content>
  3796. <author>
  3797. <name>The youtube-dl maintainers</name>
  3798. </author>
  3799. <updated>2014-03-29T00:00:00Z</updated>
  3800. </entry>
  3801. <entry>
  3802. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.30</id>
  3803. <title>New version 2014.03.30</title>
  3804. <link href="http://ytdl-org.github.io/youtube-dl" />
  3805. <content type="xhtml">
  3806. <div xmlns="http://www.w3.org/1999/xhtml">
  3807. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.30/">https://yt-dl.org/downloads/2014.03.30/</a>
  3808. </div>
  3809. </content>
  3810. <author>
  3811. <name>The youtube-dl maintainers</name>
  3812. </author>
  3813. <updated>2014-03-30T00:00:00Z</updated>
  3814. </entry>
  3815. <entry>
  3816. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.03.30.1</id>
  3817. <title>New version 2014.03.30.1</title>
  3818. <link href="http://ytdl-org.github.io/youtube-dl" />
  3819. <content type="xhtml">
  3820. <div xmlns="http://www.w3.org/1999/xhtml">
  3821. Downloads available at <a href="https://yt-dl.org/downloads/2014.03.30.1/">https://yt-dl.org/downloads/2014.03.30.1/</a>
  3822. </div>
  3823. </content>
  3824. <author>
  3825. <name>The youtube-dl maintainers</name>
  3826. </author>
  3827. <updated>2014-03-30T00:00:01Z</updated>
  3828. </entry>
  3829. <entry>
  3830. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.01</id>
  3831. <title>New version 2014.04.01</title>
  3832. <link href="http://ytdl-org.github.io/youtube-dl" />
  3833. <content type="xhtml">
  3834. <div xmlns="http://www.w3.org/1999/xhtml">
  3835. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.01/">https://yt-dl.org/downloads/2014.04.01/</a>
  3836. </div>
  3837. </content>
  3838. <author>
  3839. <name>The youtube-dl maintainers</name>
  3840. </author>
  3841. <updated>2014-04-01T00:00:00Z</updated>
  3842. </entry>
  3843. <entry>
  3844. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.01.1</id>
  3845. <title>New version 2014.04.01.1</title>
  3846. <link href="http://ytdl-org.github.io/youtube-dl" />
  3847. <content type="xhtml">
  3848. <div xmlns="http://www.w3.org/1999/xhtml">
  3849. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.01.1/">https://yt-dl.org/downloads/2014.04.01.1/</a>
  3850. </div>
  3851. </content>
  3852. <author>
  3853. <name>The youtube-dl maintainers</name>
  3854. </author>
  3855. <updated>2014-04-01T00:00:01Z</updated>
  3856. </entry>
  3857. <entry>
  3858. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.01.2</id>
  3859. <title>New version 2014.04.01.2</title>
  3860. <link href="http://ytdl-org.github.io/youtube-dl" />
  3861. <content type="xhtml">
  3862. <div xmlns="http://www.w3.org/1999/xhtml">
  3863. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.01.2/">https://yt-dl.org/downloads/2014.04.01.2/</a>
  3864. </div>
  3865. </content>
  3866. <author>
  3867. <name>The youtube-dl maintainers</name>
  3868. </author>
  3869. <updated>2014-04-01T00:00:02Z</updated>
  3870. </entry>
  3871. <entry>
  3872. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.01.3</id>
  3873. <title>New version 2014.04.01.3</title>
  3874. <link href="http://ytdl-org.github.io/youtube-dl" />
  3875. <content type="xhtml">
  3876. <div xmlns="http://www.w3.org/1999/xhtml">
  3877. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.01.3/">https://yt-dl.org/downloads/2014.04.01.3/</a>
  3878. </div>
  3879. </content>
  3880. <author>
  3881. <name>The youtube-dl maintainers</name>
  3882. </author>
  3883. <updated>2014-04-01T00:00:03Z</updated>
  3884. </entry>
  3885. <entry>
  3886. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.02</id>
  3887. <title>New version 2014.04.02</title>
  3888. <link href="http://ytdl-org.github.io/youtube-dl" />
  3889. <content type="xhtml">
  3890. <div xmlns="http://www.w3.org/1999/xhtml">
  3891. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.02/">https://yt-dl.org/downloads/2014.04.02/</a>
  3892. </div>
  3893. </content>
  3894. <author>
  3895. <name>The youtube-dl maintainers</name>
  3896. </author>
  3897. <updated>2014-04-02T00:00:00Z</updated>
  3898. </entry>
  3899. <entry>
  3900. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.03</id>
  3901. <title>New version 2014.04.03</title>
  3902. <link href="http://ytdl-org.github.io/youtube-dl" />
  3903. <content type="xhtml">
  3904. <div xmlns="http://www.w3.org/1999/xhtml">
  3905. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.03/">https://yt-dl.org/downloads/2014.04.03/</a>
  3906. </div>
  3907. </content>
  3908. <author>
  3909. <name>The youtube-dl maintainers</name>
  3910. </author>
  3911. <updated>2014-04-03T00:00:00Z</updated>
  3912. </entry>
  3913. <entry>
  3914. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.03.1</id>
  3915. <title>New version 2014.04.03.1</title>
  3916. <link href="http://ytdl-org.github.io/youtube-dl" />
  3917. <content type="xhtml">
  3918. <div xmlns="http://www.w3.org/1999/xhtml">
  3919. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.03.1/">https://yt-dl.org/downloads/2014.04.03.1/</a>
  3920. </div>
  3921. </content>
  3922. <author>
  3923. <name>The youtube-dl maintainers</name>
  3924. </author>
  3925. <updated>2014-04-03T00:00:01Z</updated>
  3926. </entry>
  3927. <entry>
  3928. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.03.2</id>
  3929. <title>New version 2014.04.03.2</title>
  3930. <link href="http://ytdl-org.github.io/youtube-dl" />
  3931. <content type="xhtml">
  3932. <div xmlns="http://www.w3.org/1999/xhtml">
  3933. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.03.2/">https://yt-dl.org/downloads/2014.04.03.2/</a>
  3934. </div>
  3935. </content>
  3936. <author>
  3937. <name>The youtube-dl maintainers</name>
  3938. </author>
  3939. <updated>2014-04-03T00:00:02Z</updated>
  3940. </entry>
  3941. <entry>
  3942. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.03.3</id>
  3943. <title>New version 2014.04.03.3</title>
  3944. <link href="http://ytdl-org.github.io/youtube-dl" />
  3945. <content type="xhtml">
  3946. <div xmlns="http://www.w3.org/1999/xhtml">
  3947. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.03.3/">https://yt-dl.org/downloads/2014.04.03.3/</a>
  3948. </div>
  3949. </content>
  3950. <author>
  3951. <name>The youtube-dl maintainers</name>
  3952. </author>
  3953. <updated>2014-04-03T00:00:03Z</updated>
  3954. </entry>
  3955. <entry>
  3956. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04</id>
  3957. <title>New version 2014.04.04</title>
  3958. <link href="http://ytdl-org.github.io/youtube-dl" />
  3959. <content type="xhtml">
  3960. <div xmlns="http://www.w3.org/1999/xhtml">
  3961. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04/">https://yt-dl.org/downloads/2014.04.04/</a>
  3962. </div>
  3963. </content>
  3964. <author>
  3965. <name>The youtube-dl maintainers</name>
  3966. </author>
  3967. <updated>2014-04-04T00:00:00Z</updated>
  3968. </entry>
  3969. <entry>
  3970. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.1</id>
  3971. <title>New version 2014.04.04.1</title>
  3972. <link href="http://ytdl-org.github.io/youtube-dl" />
  3973. <content type="xhtml">
  3974. <div xmlns="http://www.w3.org/1999/xhtml">
  3975. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.1/">https://yt-dl.org/downloads/2014.04.04.1/</a>
  3976. </div>
  3977. </content>
  3978. <author>
  3979. <name>The youtube-dl maintainers</name>
  3980. </author>
  3981. <updated>2014-04-04T00:00:01Z</updated>
  3982. </entry>
  3983. <entry>
  3984. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.2</id>
  3985. <title>New version 2014.04.04.2</title>
  3986. <link href="http://ytdl-org.github.io/youtube-dl" />
  3987. <content type="xhtml">
  3988. <div xmlns="http://www.w3.org/1999/xhtml">
  3989. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.2/">https://yt-dl.org/downloads/2014.04.04.2/</a>
  3990. </div>
  3991. </content>
  3992. <author>
  3993. <name>The youtube-dl maintainers</name>
  3994. </author>
  3995. <updated>2014-04-04T00:00:02Z</updated>
  3996. </entry>
  3997. <entry>
  3998. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.3</id>
  3999. <title>New version 2014.04.04.3</title>
  4000. <link href="http://ytdl-org.github.io/youtube-dl" />
  4001. <content type="xhtml">
  4002. <div xmlns="http://www.w3.org/1999/xhtml">
  4003. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.3/">https://yt-dl.org/downloads/2014.04.04.3/</a>
  4004. </div>
  4005. </content>
  4006. <author>
  4007. <name>The youtube-dl maintainers</name>
  4008. </author>
  4009. <updated>2014-04-04T00:00:03Z</updated>
  4010. </entry>
  4011. <entry>
  4012. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.4</id>
  4013. <title>New version 2014.04.04.4</title>
  4014. <link href="http://ytdl-org.github.io/youtube-dl" />
  4015. <content type="xhtml">
  4016. <div xmlns="http://www.w3.org/1999/xhtml">
  4017. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.4/">https://yt-dl.org/downloads/2014.04.04.4/</a>
  4018. </div>
  4019. </content>
  4020. <author>
  4021. <name>The youtube-dl maintainers</name>
  4022. </author>
  4023. <updated>2014-04-04T00:00:04Z</updated>
  4024. </entry>
  4025. <entry>
  4026. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.5</id>
  4027. <title>New version 2014.04.04.5</title>
  4028. <link href="http://ytdl-org.github.io/youtube-dl" />
  4029. <content type="xhtml">
  4030. <div xmlns="http://www.w3.org/1999/xhtml">
  4031. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.5/">https://yt-dl.org/downloads/2014.04.04.5/</a>
  4032. </div>
  4033. </content>
  4034. <author>
  4035. <name>The youtube-dl maintainers</name>
  4036. </author>
  4037. <updated>2014-04-04T00:00:05Z</updated>
  4038. </entry>
  4039. <entry>
  4040. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.6</id>
  4041. <title>New version 2014.04.04.6</title>
  4042. <link href="http://ytdl-org.github.io/youtube-dl" />
  4043. <content type="xhtml">
  4044. <div xmlns="http://www.w3.org/1999/xhtml">
  4045. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.6/">https://yt-dl.org/downloads/2014.04.04.6/</a>
  4046. </div>
  4047. </content>
  4048. <author>
  4049. <name>The youtube-dl maintainers</name>
  4050. </author>
  4051. <updated>2014-04-04T00:00:06Z</updated>
  4052. </entry>
  4053. <entry>
  4054. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.04.7</id>
  4055. <title>New version 2014.04.04.7</title>
  4056. <link href="http://ytdl-org.github.io/youtube-dl" />
  4057. <content type="xhtml">
  4058. <div xmlns="http://www.w3.org/1999/xhtml">
  4059. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.04.7/">https://yt-dl.org/downloads/2014.04.04.7/</a>
  4060. </div>
  4061. </content>
  4062. <author>
  4063. <name>The youtube-dl maintainers</name>
  4064. </author>
  4065. <updated>2014-04-04T00:00:07Z</updated>
  4066. </entry>
  4067. <entry>
  4068. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.07</id>
  4069. <title>New version 2014.04.07</title>
  4070. <link href="http://ytdl-org.github.io/youtube-dl" />
  4071. <content type="xhtml">
  4072. <div xmlns="http://www.w3.org/1999/xhtml">
  4073. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.07/">https://yt-dl.org/downloads/2014.04.07/</a>
  4074. </div>
  4075. </content>
  4076. <author>
  4077. <name>The youtube-dl maintainers</name>
  4078. </author>
  4079. <updated>2014-04-07T00:00:00Z</updated>
  4080. </entry>
  4081. <entry>
  4082. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.07.1</id>
  4083. <title>New version 2014.04.07.1</title>
  4084. <link href="http://ytdl-org.github.io/youtube-dl" />
  4085. <content type="xhtml">
  4086. <div xmlns="http://www.w3.org/1999/xhtml">
  4087. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.07.1/">https://yt-dl.org/downloads/2014.04.07.1/</a>
  4088. </div>
  4089. </content>
  4090. <author>
  4091. <name>The youtube-dl maintainers</name>
  4092. </author>
  4093. <updated>2014-04-07T00:00:01Z</updated>
  4094. </entry>
  4095. <entry>
  4096. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.07.2</id>
  4097. <title>New version 2014.04.07.2</title>
  4098. <link href="http://ytdl-org.github.io/youtube-dl" />
  4099. <content type="xhtml">
  4100. <div xmlns="http://www.w3.org/1999/xhtml">
  4101. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.07.2/">https://yt-dl.org/downloads/2014.04.07.2/</a>
  4102. </div>
  4103. </content>
  4104. <author>
  4105. <name>The youtube-dl maintainers</name>
  4106. </author>
  4107. <updated>2014-04-07T00:00:02Z</updated>
  4108. </entry>
  4109. <entry>
  4110. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.07.3</id>
  4111. <title>New version 2014.04.07.3</title>
  4112. <link href="http://ytdl-org.github.io/youtube-dl" />
  4113. <content type="xhtml">
  4114. <div xmlns="http://www.w3.org/1999/xhtml">
  4115. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.07.3/">https://yt-dl.org/downloads/2014.04.07.3/</a>
  4116. </div>
  4117. </content>
  4118. <author>
  4119. <name>The youtube-dl maintainers</name>
  4120. </author>
  4121. <updated>2014-04-07T00:00:03Z</updated>
  4122. </entry>
  4123. <entry>
  4124. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.07.4</id>
  4125. <title>New version 2014.04.07.4</title>
  4126. <link href="http://ytdl-org.github.io/youtube-dl" />
  4127. <content type="xhtml">
  4128. <div xmlns="http://www.w3.org/1999/xhtml">
  4129. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.07.4/">https://yt-dl.org/downloads/2014.04.07.4/</a>
  4130. </div>
  4131. </content>
  4132. <author>
  4133. <name>The youtube-dl maintainers</name>
  4134. </author>
  4135. <updated>2014-04-07T00:00:04Z</updated>
  4136. </entry>
  4137. <entry>
  4138. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.11.1</id>
  4139. <title>New version 2014.04.11.1</title>
  4140. <link href="http://ytdl-org.github.io/youtube-dl" />
  4141. <content type="xhtml">
  4142. <div xmlns="http://www.w3.org/1999/xhtml">
  4143. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.11.1/">https://yt-dl.org/downloads/2014.04.11.1/</a>
  4144. </div>
  4145. </content>
  4146. <author>
  4147. <name>The youtube-dl maintainers</name>
  4148. </author>
  4149. <updated>2014-04-11T00:00:01Z</updated>
  4150. </entry>
  4151. <entry>
  4152. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.11.2</id>
  4153. <title>New version 2014.04.11.2</title>
  4154. <link href="http://ytdl-org.github.io/youtube-dl" />
  4155. <content type="xhtml">
  4156. <div xmlns="http://www.w3.org/1999/xhtml">
  4157. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.11.2/">https://yt-dl.org/downloads/2014.04.11.2/</a>
  4158. </div>
  4159. </content>
  4160. <author>
  4161. <name>The youtube-dl maintainers</name>
  4162. </author>
  4163. <updated>2014-04-11T00:00:02Z</updated>
  4164. </entry>
  4165. <entry>
  4166. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.13</id>
  4167. <title>New version 2014.04.13</title>
  4168. <link href="http://ytdl-org.github.io/youtube-dl" />
  4169. <content type="xhtml">
  4170. <div xmlns="http://www.w3.org/1999/xhtml">
  4171. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.13/">https://yt-dl.org/downloads/2014.04.13/</a>
  4172. </div>
  4173. </content>
  4174. <author>
  4175. <name>The youtube-dl maintainers</name>
  4176. </author>
  4177. <updated>2014-04-13T00:00:00Z</updated>
  4178. </entry>
  4179. <entry>
  4180. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.19</id>
  4181. <title>New version 2014.04.19</title>
  4182. <link href="http://ytdl-org.github.io/youtube-dl" />
  4183. <content type="xhtml">
  4184. <div xmlns="http://www.w3.org/1999/xhtml">
  4185. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.19/">https://yt-dl.org/downloads/2014.04.19/</a>
  4186. </div>
  4187. </content>
  4188. <author>
  4189. <name>The youtube-dl maintainers</name>
  4190. </author>
  4191. <updated>2014-04-19T00:00:00Z</updated>
  4192. </entry>
  4193. <entry>
  4194. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21</id>
  4195. <title>New version 2014.04.21</title>
  4196. <link href="http://ytdl-org.github.io/youtube-dl" />
  4197. <content type="xhtml">
  4198. <div xmlns="http://www.w3.org/1999/xhtml">
  4199. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21/">https://yt-dl.org/downloads/2014.04.21/</a>
  4200. </div>
  4201. </content>
  4202. <author>
  4203. <name>The youtube-dl maintainers</name>
  4204. </author>
  4205. <updated>2014-04-21T00:00:00Z</updated>
  4206. </entry>
  4207. <entry>
  4208. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.1</id>
  4209. <title>New version 2014.04.21.1</title>
  4210. <link href="http://ytdl-org.github.io/youtube-dl" />
  4211. <content type="xhtml">
  4212. <div xmlns="http://www.w3.org/1999/xhtml">
  4213. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.1/">https://yt-dl.org/downloads/2014.04.21.1/</a>
  4214. </div>
  4215. </content>
  4216. <author>
  4217. <name>The youtube-dl maintainers</name>
  4218. </author>
  4219. <updated>2014-04-21T00:00:01Z</updated>
  4220. </entry>
  4221. <entry>
  4222. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.2</id>
  4223. <title>New version 2014.04.21.2</title>
  4224. <link href="http://ytdl-org.github.io/youtube-dl" />
  4225. <content type="xhtml">
  4226. <div xmlns="http://www.w3.org/1999/xhtml">
  4227. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.2/">https://yt-dl.org/downloads/2014.04.21.2/</a>
  4228. </div>
  4229. </content>
  4230. <author>
  4231. <name>The youtube-dl maintainers</name>
  4232. </author>
  4233. <updated>2014-04-21T00:00:02Z</updated>
  4234. </entry>
  4235. <entry>
  4236. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.3</id>
  4237. <title>New version 2014.04.21.3</title>
  4238. <link href="http://ytdl-org.github.io/youtube-dl" />
  4239. <content type="xhtml">
  4240. <div xmlns="http://www.w3.org/1999/xhtml">
  4241. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.3/">https://yt-dl.org/downloads/2014.04.21.3/</a>
  4242. </div>
  4243. </content>
  4244. <author>
  4245. <name>The youtube-dl maintainers</name>
  4246. </author>
  4247. <updated>2014-04-21T00:00:03Z</updated>
  4248. </entry>
  4249. <entry>
  4250. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.4</id>
  4251. <title>New version 2014.04.21.4</title>
  4252. <link href="http://ytdl-org.github.io/youtube-dl" />
  4253. <content type="xhtml">
  4254. <div xmlns="http://www.w3.org/1999/xhtml">
  4255. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.4/">https://yt-dl.org/downloads/2014.04.21.4/</a>
  4256. </div>
  4257. </content>
  4258. <author>
  4259. <name>The youtube-dl maintainers</name>
  4260. </author>
  4261. <updated>2014-04-21T00:00:04Z</updated>
  4262. </entry>
  4263. <entry>
  4264. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.5</id>
  4265. <title>New version 2014.04.21.5</title>
  4266. <link href="http://ytdl-org.github.io/youtube-dl" />
  4267. <content type="xhtml">
  4268. <div xmlns="http://www.w3.org/1999/xhtml">
  4269. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.5/">https://yt-dl.org/downloads/2014.04.21.5/</a>
  4270. </div>
  4271. </content>
  4272. <author>
  4273. <name>The youtube-dl maintainers</name>
  4274. </author>
  4275. <updated>2014-04-21T00:00:05Z</updated>
  4276. </entry>
  4277. <entry>
  4278. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.21.6</id>
  4279. <title>New version 2014.04.21.6</title>
  4280. <link href="http://ytdl-org.github.io/youtube-dl" />
  4281. <content type="xhtml">
  4282. <div xmlns="http://www.w3.org/1999/xhtml">
  4283. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.21.6/">https://yt-dl.org/downloads/2014.04.21.6/</a>
  4284. </div>
  4285. </content>
  4286. <author>
  4287. <name>The youtube-dl maintainers</name>
  4288. </author>
  4289. <updated>2014-04-21T00:00:06Z</updated>
  4290. </entry>
  4291. <entry>
  4292. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.30</id>
  4293. <title>New version 2014.04.30</title>
  4294. <link href="http://ytdl-org.github.io/youtube-dl" />
  4295. <content type="xhtml">
  4296. <div xmlns="http://www.w3.org/1999/xhtml">
  4297. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.30/">https://yt-dl.org/downloads/2014.04.30/</a>
  4298. </div>
  4299. </content>
  4300. <author>
  4301. <name>The youtube-dl maintainers</name>
  4302. </author>
  4303. <updated>2014-04-30T00:00:00Z</updated>
  4304. </entry>
  4305. <entry>
  4306. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.04.30.1</id>
  4307. <title>New version 2014.04.30.1</title>
  4308. <link href="http://ytdl-org.github.io/youtube-dl" />
  4309. <content type="xhtml">
  4310. <div xmlns="http://www.w3.org/1999/xhtml">
  4311. Downloads available at <a href="https://yt-dl.org/downloads/2014.04.30.1/">https://yt-dl.org/downloads/2014.04.30.1/</a>
  4312. </div>
  4313. </content>
  4314. <author>
  4315. <name>The youtube-dl maintainers</name>
  4316. </author>
  4317. <updated>2014-04-30T00:00:01Z</updated>
  4318. </entry>
  4319. <entry>
  4320. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.05</id>
  4321. <title>New version 2014.05.05</title>
  4322. <link href="http://ytdl-org.github.io/youtube-dl" />
  4323. <content type="xhtml">
  4324. <div xmlns="http://www.w3.org/1999/xhtml">
  4325. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.05/">https://yt-dl.org/downloads/2014.05.05/</a>
  4326. </div>
  4327. </content>
  4328. <author>
  4329. <name>The youtube-dl maintainers</name>
  4330. </author>
  4331. <updated>2014-05-05T00:00:00Z</updated>
  4332. </entry>
  4333. <entry>
  4334. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.12</id>
  4335. <title>New version 2014.05.12</title>
  4336. <link href="http://ytdl-org.github.io/youtube-dl" />
  4337. <content type="xhtml">
  4338. <div xmlns="http://www.w3.org/1999/xhtml">
  4339. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.12/">https://yt-dl.org/downloads/2014.05.12/</a>
  4340. </div>
  4341. </content>
  4342. <author>
  4343. <name>The youtube-dl maintainers</name>
  4344. </author>
  4345. <updated>2014-05-12T00:00:00Z</updated>
  4346. </entry>
  4347. <entry>
  4348. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.13</id>
  4349. <title>New version 2014.05.13</title>
  4350. <link href="http://ytdl-org.github.io/youtube-dl" />
  4351. <content type="xhtml">
  4352. <div xmlns="http://www.w3.org/1999/xhtml">
  4353. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.13/">https://yt-dl.org/downloads/2014.05.13/</a>
  4354. </div>
  4355. </content>
  4356. <author>
  4357. <name>The youtube-dl maintainers</name>
  4358. </author>
  4359. <updated>2014-05-13T00:00:00Z</updated>
  4360. </entry>
  4361. <entry>
  4362. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.16</id>
  4363. <title>New version 2014.05.16</title>
  4364. <link href="http://ytdl-org.github.io/youtube-dl" />
  4365. <content type="xhtml">
  4366. <div xmlns="http://www.w3.org/1999/xhtml">
  4367. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.16/">https://yt-dl.org/downloads/2014.05.16/</a>
  4368. </div>
  4369. </content>
  4370. <author>
  4371. <name>The youtube-dl maintainers</name>
  4372. </author>
  4373. <updated>2014-05-16T00:00:00Z</updated>
  4374. </entry>
  4375. <entry>
  4376. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.16.1</id>
  4377. <title>New version 2014.05.16.1</title>
  4378. <link href="http://ytdl-org.github.io/youtube-dl" />
  4379. <content type="xhtml">
  4380. <div xmlns="http://www.w3.org/1999/xhtml">
  4381. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.16.1/">https://yt-dl.org/downloads/2014.05.16.1/</a>
  4382. </div>
  4383. </content>
  4384. <author>
  4385. <name>The youtube-dl maintainers</name>
  4386. </author>
  4387. <updated>2014-05-16T00:00:01Z</updated>
  4388. </entry>
  4389. <entry>
  4390. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.19</id>
  4391. <title>New version 2014.05.19</title>
  4392. <link href="http://ytdl-org.github.io/youtube-dl" />
  4393. <content type="xhtml">
  4394. <div xmlns="http://www.w3.org/1999/xhtml">
  4395. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.19/">https://yt-dl.org/downloads/2014.05.19/</a>
  4396. </div>
  4397. </content>
  4398. <author>
  4399. <name>The youtube-dl maintainers</name>
  4400. </author>
  4401. <updated>2014-05-19T00:00:00Z</updated>
  4402. </entry>
  4403. <entry>
  4404. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.05.31.4</id>
  4405. <title>New version 2014.05.31.4</title>
  4406. <link href="http://ytdl-org.github.io/youtube-dl" />
  4407. <content type="xhtml">
  4408. <div xmlns="http://www.w3.org/1999/xhtml">
  4409. Downloads available at <a href="https://yt-dl.org/downloads/2014.05.31.4/">https://yt-dl.org/downloads/2014.05.31.4/</a>
  4410. </div>
  4411. </content>
  4412. <author>
  4413. <name>The youtube-dl maintainers</name>
  4414. </author>
  4415. <updated>2014-05-31T00:00:04Z</updated>
  4416. </entry>
  4417. <entry>
  4418. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.02</id>
  4419. <title>New version 2014.06.02</title>
  4420. <link href="http://ytdl-org.github.io/youtube-dl" />
  4421. <content type="xhtml">
  4422. <div xmlns="http://www.w3.org/1999/xhtml">
  4423. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.02/">https://yt-dl.org/downloads/2014.06.02/</a>
  4424. </div>
  4425. </content>
  4426. <author>
  4427. <name>The youtube-dl maintainers</name>
  4428. </author>
  4429. <updated>2014-06-02T00:00:00Z</updated>
  4430. </entry>
  4431. <entry>
  4432. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.04</id>
  4433. <title>New version 2014.06.04</title>
  4434. <link href="http://ytdl-org.github.io/youtube-dl" />
  4435. <content type="xhtml">
  4436. <div xmlns="http://www.w3.org/1999/xhtml">
  4437. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.04/">https://yt-dl.org/downloads/2014.06.04/</a>
  4438. </div>
  4439. </content>
  4440. <author>
  4441. <name>The youtube-dl maintainers</name>
  4442. </author>
  4443. <updated>2014-06-04T00:00:00Z</updated>
  4444. </entry>
  4445. <entry>
  4446. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.07</id>
  4447. <title>New version 2014.06.07</title>
  4448. <link href="http://ytdl-org.github.io/youtube-dl" />
  4449. <content type="xhtml">
  4450. <div xmlns="http://www.w3.org/1999/xhtml">
  4451. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.07/">https://yt-dl.org/downloads/2014.06.07/</a>
  4452. </div>
  4453. </content>
  4454. <author>
  4455. <name>The youtube-dl maintainers</name>
  4456. </author>
  4457. <updated>2014-06-07T00:00:00Z</updated>
  4458. </entry>
  4459. <entry>
  4460. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.09</id>
  4461. <title>New version 2014.06.09</title>
  4462. <link href="http://ytdl-org.github.io/youtube-dl" />
  4463. <content type="xhtml">
  4464. <div xmlns="http://www.w3.org/1999/xhtml">
  4465. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.09/">https://yt-dl.org/downloads/2014.06.09/</a>
  4466. </div>
  4467. </content>
  4468. <author>
  4469. <name>The youtube-dl maintainers</name>
  4470. </author>
  4471. <updated>2014-06-09T00:00:00Z</updated>
  4472. </entry>
  4473. <entry>
  4474. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.16</id>
  4475. <title>New version 2014.06.16</title>
  4476. <link href="http://ytdl-org.github.io/youtube-dl" />
  4477. <content type="xhtml">
  4478. <div xmlns="http://www.w3.org/1999/xhtml">
  4479. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.16/">https://yt-dl.org/downloads/2014.06.16/</a>
  4480. </div>
  4481. </content>
  4482. <author>
  4483. <name>The youtube-dl maintainers</name>
  4484. </author>
  4485. <updated>2014-06-16T00:00:00Z</updated>
  4486. </entry>
  4487. <entry>
  4488. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.19</id>
  4489. <title>New version 2014.06.19</title>
  4490. <link href="http://ytdl-org.github.io/youtube-dl" />
  4491. <content type="xhtml">
  4492. <div xmlns="http://www.w3.org/1999/xhtml">
  4493. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.19/">https://yt-dl.org/downloads/2014.06.19/</a>
  4494. </div>
  4495. </content>
  4496. <author>
  4497. <name>The youtube-dl maintainers</name>
  4498. </author>
  4499. <updated>2014-06-19T00:00:00Z</updated>
  4500. </entry>
  4501. <entry>
  4502. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.24.1</id>
  4503. <title>New version 2014.06.24.1</title>
  4504. <link href="http://ytdl-org.github.io/youtube-dl" />
  4505. <content type="xhtml">
  4506. <div xmlns="http://www.w3.org/1999/xhtml">
  4507. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.24.1/">https://yt-dl.org/downloads/2014.06.24.1/</a>
  4508. </div>
  4509. </content>
  4510. <author>
  4511. <name>The youtube-dl maintainers</name>
  4512. </author>
  4513. <updated>2014-06-24T00:00:01Z</updated>
  4514. </entry>
  4515. <entry>
  4516. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.25</id>
  4517. <title>New version 2014.06.25</title>
  4518. <link href="http://ytdl-org.github.io/youtube-dl" />
  4519. <content type="xhtml">
  4520. <div xmlns="http://www.w3.org/1999/xhtml">
  4521. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.25/">https://yt-dl.org/downloads/2014.06.25/</a>
  4522. </div>
  4523. </content>
  4524. <author>
  4525. <name>The youtube-dl maintainers</name>
  4526. </author>
  4527. <updated>2014-06-25T00:00:00Z</updated>
  4528. </entry>
  4529. <entry>
  4530. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.06.26</id>
  4531. <title>New version 2014.06.26</title>
  4532. <link href="http://ytdl-org.github.io/youtube-dl" />
  4533. <content type="xhtml">
  4534. <div xmlns="http://www.w3.org/1999/xhtml">
  4535. Downloads available at <a href="https://yt-dl.org/downloads/2014.06.26/">https://yt-dl.org/downloads/2014.06.26/</a>
  4536. </div>
  4537. </content>
  4538. <author>
  4539. <name>The youtube-dl maintainers</name>
  4540. </author>
  4541. <updated>2014-06-26T00:00:00Z</updated>
  4542. </entry>
  4543. <entry>
  4544. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.10</id>
  4545. <title>New version 2014.07.10</title>
  4546. <link href="http://ytdl-org.github.io/youtube-dl" />
  4547. <content type="xhtml">
  4548. <div xmlns="http://www.w3.org/1999/xhtml">
  4549. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.10/">https://yt-dl.org/downloads/2014.07.10/</a>
  4550. </div>
  4551. </content>
  4552. <author>
  4553. <name>The youtube-dl maintainers</name>
  4554. </author>
  4555. <updated>2014-07-10T00:00:00Z</updated>
  4556. </entry>
  4557. <entry>
  4558. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.11</id>
  4559. <title>New version 2014.07.11</title>
  4560. <link href="http://ytdl-org.github.io/youtube-dl" />
  4561. <content type="xhtml">
  4562. <div xmlns="http://www.w3.org/1999/xhtml">
  4563. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.11/">https://yt-dl.org/downloads/2014.07.11/</a>
  4564. </div>
  4565. </content>
  4566. <author>
  4567. <name>The youtube-dl maintainers</name>
  4568. </author>
  4569. <updated>2014-07-11T00:00:00Z</updated>
  4570. </entry>
  4571. <entry>
  4572. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.11.1</id>
  4573. <title>New version 2014.07.11.1</title>
  4574. <link href="http://ytdl-org.github.io/youtube-dl" />
  4575. <content type="xhtml">
  4576. <div xmlns="http://www.w3.org/1999/xhtml">
  4577. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.11.1/">https://yt-dl.org/downloads/2014.07.11.1/</a>
  4578. </div>
  4579. </content>
  4580. <author>
  4581. <name>The youtube-dl maintainers</name>
  4582. </author>
  4583. <updated>2014-07-11T00:00:01Z</updated>
  4584. </entry>
  4585. <entry>
  4586. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.11.2</id>
  4587. <title>New version 2014.07.11.2</title>
  4588. <link href="http://ytdl-org.github.io/youtube-dl" />
  4589. <content type="xhtml">
  4590. <div xmlns="http://www.w3.org/1999/xhtml">
  4591. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.11.2/">https://yt-dl.org/downloads/2014.07.11.2/</a>
  4592. </div>
  4593. </content>
  4594. <author>
  4595. <name>The youtube-dl maintainers</name>
  4596. </author>
  4597. <updated>2014-07-11T00:00:02Z</updated>
  4598. </entry>
  4599. <entry>
  4600. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.11.3</id>
  4601. <title>New version 2014.07.11.3</title>
  4602. <link href="http://ytdl-org.github.io/youtube-dl" />
  4603. <content type="xhtml">
  4604. <div xmlns="http://www.w3.org/1999/xhtml">
  4605. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.11.3/">https://yt-dl.org/downloads/2014.07.11.3/</a>
  4606. </div>
  4607. </content>
  4608. <author>
  4609. <name>The youtube-dl maintainers</name>
  4610. </author>
  4611. <updated>2014-07-11T00:00:03Z</updated>
  4612. </entry>
  4613. <entry>
  4614. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.15</id>
  4615. <title>New version 2014.07.15</title>
  4616. <link href="http://ytdl-org.github.io/youtube-dl" />
  4617. <content type="xhtml">
  4618. <div xmlns="http://www.w3.org/1999/xhtml">
  4619. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.15/">https://yt-dl.org/downloads/2014.07.15/</a>
  4620. </div>
  4621. </content>
  4622. <author>
  4623. <name>The youtube-dl maintainers</name>
  4624. </author>
  4625. <updated>2014-07-15T00:00:00Z</updated>
  4626. </entry>
  4627. <entry>
  4628. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.20</id>
  4629. <title>New version 2014.07.20</title>
  4630. <link href="http://ytdl-org.github.io/youtube-dl" />
  4631. <content type="xhtml">
  4632. <div xmlns="http://www.w3.org/1999/xhtml">
  4633. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.20/">https://yt-dl.org/downloads/2014.07.20/</a>
  4634. </div>
  4635. </content>
  4636. <author>
  4637. <name>The youtube-dl maintainers</name>
  4638. </author>
  4639. <updated>2014-07-20T00:00:00Z</updated>
  4640. </entry>
  4641. <entry>
  4642. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.20.1</id>
  4643. <title>New version 2014.07.20.1</title>
  4644. <link href="http://ytdl-org.github.io/youtube-dl" />
  4645. <content type="xhtml">
  4646. <div xmlns="http://www.w3.org/1999/xhtml">
  4647. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.20.1/">https://yt-dl.org/downloads/2014.07.20.1/</a>
  4648. </div>
  4649. </content>
  4650. <author>
  4651. <name>The youtube-dl maintainers</name>
  4652. </author>
  4653. <updated>2014-07-20T00:00:01Z</updated>
  4654. </entry>
  4655. <entry>
  4656. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.20.2</id>
  4657. <title>New version 2014.07.20.2</title>
  4658. <link href="http://ytdl-org.github.io/youtube-dl" />
  4659. <content type="xhtml">
  4660. <div xmlns="http://www.w3.org/1999/xhtml">
  4661. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.20.2/">https://yt-dl.org/downloads/2014.07.20.2/</a>
  4662. </div>
  4663. </content>
  4664. <author>
  4665. <name>The youtube-dl maintainers</name>
  4666. </author>
  4667. <updated>2014-07-20T00:00:02Z</updated>
  4668. </entry>
  4669. <entry>
  4670. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.21</id>
  4671. <title>New version 2014.07.21</title>
  4672. <link href="http://ytdl-org.github.io/youtube-dl" />
  4673. <content type="xhtml">
  4674. <div xmlns="http://www.w3.org/1999/xhtml">
  4675. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.21/">https://yt-dl.org/downloads/2014.07.21/</a>
  4676. </div>
  4677. </content>
  4678. <author>
  4679. <name>The youtube-dl maintainers</name>
  4680. </author>
  4681. <updated>2014-07-21T00:00:00Z</updated>
  4682. </entry>
  4683. <entry>
  4684. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.22</id>
  4685. <title>New version 2014.07.22</title>
  4686. <link href="http://ytdl-org.github.io/youtube-dl" />
  4687. <content type="xhtml">
  4688. <div xmlns="http://www.w3.org/1999/xhtml">
  4689. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.22/">https://yt-dl.org/downloads/2014.07.22/</a>
  4690. </div>
  4691. </content>
  4692. <author>
  4693. <name>The youtube-dl maintainers</name>
  4694. </author>
  4695. <updated>2014-07-22T00:00:00Z</updated>
  4696. </entry>
  4697. <entry>
  4698. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.23</id>
  4699. <title>New version 2014.07.23</title>
  4700. <link href="http://ytdl-org.github.io/youtube-dl" />
  4701. <content type="xhtml">
  4702. <div xmlns="http://www.w3.org/1999/xhtml">
  4703. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.23/">https://yt-dl.org/downloads/2014.07.23/</a>
  4704. </div>
  4705. </content>
  4706. <author>
  4707. <name>The youtube-dl maintainers</name>
  4708. </author>
  4709. <updated>2014-07-23T00:00:00Z</updated>
  4710. </entry>
  4711. <entry>
  4712. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.23.1</id>
  4713. <title>New version 2014.07.23.1</title>
  4714. <link href="http://ytdl-org.github.io/youtube-dl" />
  4715. <content type="xhtml">
  4716. <div xmlns="http://www.w3.org/1999/xhtml">
  4717. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.23.1/">https://yt-dl.org/downloads/2014.07.23.1/</a>
  4718. </div>
  4719. </content>
  4720. <author>
  4721. <name>The youtube-dl maintainers</name>
  4722. </author>
  4723. <updated>2014-07-23T00:00:01Z</updated>
  4724. </entry>
  4725. <entry>
  4726. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.23.2</id>
  4727. <title>New version 2014.07.23.2</title>
  4728. <link href="http://ytdl-org.github.io/youtube-dl" />
  4729. <content type="xhtml">
  4730. <div xmlns="http://www.w3.org/1999/xhtml">
  4731. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.23.2/">https://yt-dl.org/downloads/2014.07.23.2/</a>
  4732. </div>
  4733. </content>
  4734. <author>
  4735. <name>The youtube-dl maintainers</name>
  4736. </author>
  4737. <updated>2014-07-23T00:00:02Z</updated>
  4738. </entry>
  4739. <entry>
  4740. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.24</id>
  4741. <title>New version 2014.07.24</title>
  4742. <link href="http://ytdl-org.github.io/youtube-dl" />
  4743. <content type="xhtml">
  4744. <div xmlns="http://www.w3.org/1999/xhtml">
  4745. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.24/">https://yt-dl.org/downloads/2014.07.24/</a>
  4746. </div>
  4747. </content>
  4748. <author>
  4749. <name>The youtube-dl maintainers</name>
  4750. </author>
  4751. <updated>2014-07-24T00:00:00Z</updated>
  4752. </entry>
  4753. <entry>
  4754. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.25</id>
  4755. <title>New version 2014.07.25</title>
  4756. <link href="http://ytdl-org.github.io/youtube-dl" />
  4757. <content type="xhtml">
  4758. <div xmlns="http://www.w3.org/1999/xhtml">
  4759. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.25/">https://yt-dl.org/downloads/2014.07.25/</a>
  4760. </div>
  4761. </content>
  4762. <author>
  4763. <name>The youtube-dl maintainers</name>
  4764. </author>
  4765. <updated>2014-07-25T00:00:00Z</updated>
  4766. </entry>
  4767. <entry>
  4768. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.25.1</id>
  4769. <title>New version 2014.07.25.1</title>
  4770. <link href="http://ytdl-org.github.io/youtube-dl" />
  4771. <content type="xhtml">
  4772. <div xmlns="http://www.w3.org/1999/xhtml">
  4773. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.25.1/">https://yt-dl.org/downloads/2014.07.25.1/</a>
  4774. </div>
  4775. </content>
  4776. <author>
  4777. <name>The youtube-dl maintainers</name>
  4778. </author>
  4779. <updated>2014-07-25T00:00:01Z</updated>
  4780. </entry>
  4781. <entry>
  4782. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.07.30</id>
  4783. <title>New version 2014.07.30</title>
  4784. <link href="http://ytdl-org.github.io/youtube-dl" />
  4785. <content type="xhtml">
  4786. <div xmlns="http://www.w3.org/1999/xhtml">
  4787. Downloads available at <a href="https://yt-dl.org/downloads/2014.07.30/">https://yt-dl.org/downloads/2014.07.30/</a>
  4788. </div>
  4789. </content>
  4790. <author>
  4791. <name>The youtube-dl maintainers</name>
  4792. </author>
  4793. <updated>2014-07-30T00:00:00Z</updated>
  4794. </entry>
  4795. <entry>
  4796. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.02</id>
  4797. <title>New version 2014.08.02</title>
  4798. <link href="http://ytdl-org.github.io/youtube-dl" />
  4799. <content type="xhtml">
  4800. <div xmlns="http://www.w3.org/1999/xhtml">
  4801. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.02/">https://yt-dl.org/downloads/2014.08.02/</a>
  4802. </div>
  4803. </content>
  4804. <author>
  4805. <name>The youtube-dl maintainers</name>
  4806. </author>
  4807. <updated>2014-08-02T00:00:00Z</updated>
  4808. </entry>
  4809. <entry>
  4810. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.02.1</id>
  4811. <title>New version 2014.08.02.1</title>
  4812. <link href="http://ytdl-org.github.io/youtube-dl" />
  4813. <content type="xhtml">
  4814. <div xmlns="http://www.w3.org/1999/xhtml">
  4815. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.02.1/">https://yt-dl.org/downloads/2014.08.02.1/</a>
  4816. </div>
  4817. </content>
  4818. <author>
  4819. <name>The youtube-dl maintainers</name>
  4820. </author>
  4821. <updated>2014-08-02T00:00:01Z</updated>
  4822. </entry>
  4823. <entry>
  4824. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.05</id>
  4825. <title>New version 2014.08.05</title>
  4826. <link href="http://ytdl-org.github.io/youtube-dl" />
  4827. <content type="xhtml">
  4828. <div xmlns="http://www.w3.org/1999/xhtml">
  4829. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.05/">https://yt-dl.org/downloads/2014.08.05/</a>
  4830. </div>
  4831. </content>
  4832. <author>
  4833. <name>The youtube-dl maintainers</name>
  4834. </author>
  4835. <updated>2014-08-05T00:00:00Z</updated>
  4836. </entry>
  4837. <entry>
  4838. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.10</id>
  4839. <title>New version 2014.08.10</title>
  4840. <link href="http://ytdl-org.github.io/youtube-dl" />
  4841. <content type="xhtml">
  4842. <div xmlns="http://www.w3.org/1999/xhtml">
  4843. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.10/">https://yt-dl.org/downloads/2014.08.10/</a>
  4844. </div>
  4845. </content>
  4846. <author>
  4847. <name>The youtube-dl maintainers</name>
  4848. </author>
  4849. <updated>2014-08-10T00:00:00Z</updated>
  4850. </entry>
  4851. <entry>
  4852. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.21.1</id>
  4853. <title>New version 2014.08.21.1</title>
  4854. <link href="http://ytdl-org.github.io/youtube-dl" />
  4855. <content type="xhtml">
  4856. <div xmlns="http://www.w3.org/1999/xhtml">
  4857. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.21.1/">https://yt-dl.org/downloads/2014.08.21.1/</a>
  4858. </div>
  4859. </content>
  4860. <author>
  4861. <name>The youtube-dl maintainers</name>
  4862. </author>
  4863. <updated>2014-08-21T00:00:01Z</updated>
  4864. </entry>
  4865. <entry>
  4866. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.21.2</id>
  4867. <title>New version 2014.08.21.2</title>
  4868. <link href="http://ytdl-org.github.io/youtube-dl" />
  4869. <content type="xhtml">
  4870. <div xmlns="http://www.w3.org/1999/xhtml">
  4871. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.21.2/">https://yt-dl.org/downloads/2014.08.21.2/</a>
  4872. </div>
  4873. </content>
  4874. <author>
  4875. <name>The youtube-dl maintainers</name>
  4876. </author>
  4877. <updated>2014-08-21T00:00:02Z</updated>
  4878. </entry>
  4879. <entry>
  4880. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.21.3</id>
  4881. <title>New version 2014.08.21.3</title>
  4882. <link href="http://ytdl-org.github.io/youtube-dl" />
  4883. <content type="xhtml">
  4884. <div xmlns="http://www.w3.org/1999/xhtml">
  4885. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.21.3/">https://yt-dl.org/downloads/2014.08.21.3/</a>
  4886. </div>
  4887. </content>
  4888. <author>
  4889. <name>The youtube-dl maintainers</name>
  4890. </author>
  4891. <updated>2014-08-21T00:00:03Z</updated>
  4892. </entry>
  4893. <entry>
  4894. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.22.1</id>
  4895. <title>New version 2014.08.22.1</title>
  4896. <link href="http://ytdl-org.github.io/youtube-dl" />
  4897. <content type="xhtml">
  4898. <div xmlns="http://www.w3.org/1999/xhtml">
  4899. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.22.1/">https://yt-dl.org/downloads/2014.08.22.1/</a>
  4900. </div>
  4901. </content>
  4902. <author>
  4903. <name>The youtube-dl maintainers</name>
  4904. </author>
  4905. <updated>2014-08-22T00:00:01Z</updated>
  4906. </entry>
  4907. <entry>
  4908. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.22.2</id>
  4909. <title>New version 2014.08.22.2</title>
  4910. <link href="http://ytdl-org.github.io/youtube-dl" />
  4911. <content type="xhtml">
  4912. <div xmlns="http://www.w3.org/1999/xhtml">
  4913. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.22.2/">https://yt-dl.org/downloads/2014.08.22.2/</a>
  4914. </div>
  4915. </content>
  4916. <author>
  4917. <name>The youtube-dl maintainers</name>
  4918. </author>
  4919. <updated>2014-08-22T00:00:02Z</updated>
  4920. </entry>
  4921. <entry>
  4922. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.22.3</id>
  4923. <title>New version 2014.08.22.3</title>
  4924. <link href="http://ytdl-org.github.io/youtube-dl" />
  4925. <content type="xhtml">
  4926. <div xmlns="http://www.w3.org/1999/xhtml">
  4927. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.22.3/">https://yt-dl.org/downloads/2014.08.22.3/</a>
  4928. </div>
  4929. </content>
  4930. <author>
  4931. <name>The youtube-dl maintainers</name>
  4932. </author>
  4933. <updated>2014-08-22T00:00:03Z</updated>
  4934. </entry>
  4935. <entry>
  4936. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.23</id>
  4937. <title>New version 2014.08.23</title>
  4938. <link href="http://ytdl-org.github.io/youtube-dl" />
  4939. <content type="xhtml">
  4940. <div xmlns="http://www.w3.org/1999/xhtml">
  4941. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.23/">https://yt-dl.org/downloads/2014.08.23/</a>
  4942. </div>
  4943. </content>
  4944. <author>
  4945. <name>The youtube-dl maintainers</name>
  4946. </author>
  4947. <updated>2014-08-23T00:00:00Z</updated>
  4948. </entry>
  4949. <entry>
  4950. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24</id>
  4951. <title>New version 2014.08.24</title>
  4952. <link href="http://ytdl-org.github.io/youtube-dl" />
  4953. <content type="xhtml">
  4954. <div xmlns="http://www.w3.org/1999/xhtml">
  4955. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24/">https://yt-dl.org/downloads/2014.08.24/</a>
  4956. </div>
  4957. </content>
  4958. <author>
  4959. <name>The youtube-dl maintainers</name>
  4960. </author>
  4961. <updated>2014-08-24T00:00:00Z</updated>
  4962. </entry>
  4963. <entry>
  4964. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.1</id>
  4965. <title>New version 2014.08.24.1</title>
  4966. <link href="http://ytdl-org.github.io/youtube-dl" />
  4967. <content type="xhtml">
  4968. <div xmlns="http://www.w3.org/1999/xhtml">
  4969. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.1/">https://yt-dl.org/downloads/2014.08.24.1/</a>
  4970. </div>
  4971. </content>
  4972. <author>
  4973. <name>The youtube-dl maintainers</name>
  4974. </author>
  4975. <updated>2014-08-24T00:00:01Z</updated>
  4976. </entry>
  4977. <entry>
  4978. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.2</id>
  4979. <title>New version 2014.08.24.2</title>
  4980. <link href="http://ytdl-org.github.io/youtube-dl" />
  4981. <content type="xhtml">
  4982. <div xmlns="http://www.w3.org/1999/xhtml">
  4983. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.2/">https://yt-dl.org/downloads/2014.08.24.2/</a>
  4984. </div>
  4985. </content>
  4986. <author>
  4987. <name>The youtube-dl maintainers</name>
  4988. </author>
  4989. <updated>2014-08-24T00:00:02Z</updated>
  4990. </entry>
  4991. <entry>
  4992. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.3</id>
  4993. <title>New version 2014.08.24.3</title>
  4994. <link href="http://ytdl-org.github.io/youtube-dl" />
  4995. <content type="xhtml">
  4996. <div xmlns="http://www.w3.org/1999/xhtml">
  4997. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.3/">https://yt-dl.org/downloads/2014.08.24.3/</a>
  4998. </div>
  4999. </content>
  5000. <author>
  5001. <name>The youtube-dl maintainers</name>
  5002. </author>
  5003. <updated>2014-08-24T00:00:03Z</updated>
  5004. </entry>
  5005. <entry>
  5006. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.4</id>
  5007. <title>New version 2014.08.24.4</title>
  5008. <link href="http://ytdl-org.github.io/youtube-dl" />
  5009. <content type="xhtml">
  5010. <div xmlns="http://www.w3.org/1999/xhtml">
  5011. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.4/">https://yt-dl.org/downloads/2014.08.24.4/</a>
  5012. </div>
  5013. </content>
  5014. <author>
  5015. <name>The youtube-dl maintainers</name>
  5016. </author>
  5017. <updated>2014-08-24T00:00:04Z</updated>
  5018. </entry>
  5019. <entry>
  5020. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.5</id>
  5021. <title>New version 2014.08.24.5</title>
  5022. <link href="http://ytdl-org.github.io/youtube-dl" />
  5023. <content type="xhtml">
  5024. <div xmlns="http://www.w3.org/1999/xhtml">
  5025. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.5/">https://yt-dl.org/downloads/2014.08.24.5/</a>
  5026. </div>
  5027. </content>
  5028. <author>
  5029. <name>The youtube-dl maintainers</name>
  5030. </author>
  5031. <updated>2014-08-24T00:00:05Z</updated>
  5032. </entry>
  5033. <entry>
  5034. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.24.6</id>
  5035. <title>New version 2014.08.24.6</title>
  5036. <link href="http://ytdl-org.github.io/youtube-dl" />
  5037. <content type="xhtml">
  5038. <div xmlns="http://www.w3.org/1999/xhtml">
  5039. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.24.6/">https://yt-dl.org/downloads/2014.08.24.6/</a>
  5040. </div>
  5041. </content>
  5042. <author>
  5043. <name>The youtube-dl maintainers</name>
  5044. </author>
  5045. <updated>2014-08-24T00:00:06Z</updated>
  5046. </entry>
  5047. <entry>
  5048. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.25</id>
  5049. <title>New version 2014.08.25</title>
  5050. <link href="http://ytdl-org.github.io/youtube-dl" />
  5051. <content type="xhtml">
  5052. <div xmlns="http://www.w3.org/1999/xhtml">
  5053. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.25/">https://yt-dl.org/downloads/2014.08.25/</a>
  5054. </div>
  5055. </content>
  5056. <author>
  5057. <name>The youtube-dl maintainers</name>
  5058. </author>
  5059. <updated>2014-08-25T00:00:00Z</updated>
  5060. </entry>
  5061. <entry>
  5062. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.25.2</id>
  5063. <title>New version 2014.08.25.2</title>
  5064. <link href="http://ytdl-org.github.io/youtube-dl" />
  5065. <content type="xhtml">
  5066. <div xmlns="http://www.w3.org/1999/xhtml">
  5067. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.25.2/">https://yt-dl.org/downloads/2014.08.25.2/</a>
  5068. </div>
  5069. </content>
  5070. <author>
  5071. <name>The youtube-dl maintainers</name>
  5072. </author>
  5073. <updated>2014-08-25T00:00:02Z</updated>
  5074. </entry>
  5075. <entry>
  5076. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.25.3</id>
  5077. <title>New version 2014.08.25.3</title>
  5078. <link href="http://ytdl-org.github.io/youtube-dl" />
  5079. <content type="xhtml">
  5080. <div xmlns="http://www.w3.org/1999/xhtml">
  5081. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.25.3/">https://yt-dl.org/downloads/2014.08.25.3/</a>
  5082. </div>
  5083. </content>
  5084. <author>
  5085. <name>The youtube-dl maintainers</name>
  5086. </author>
  5087. <updated>2014-08-25T00:00:03Z</updated>
  5088. </entry>
  5089. <entry>
  5090. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.26</id>
  5091. <title>New version 2014.08.26</title>
  5092. <link href="http://ytdl-org.github.io/youtube-dl" />
  5093. <content type="xhtml">
  5094. <div xmlns="http://www.w3.org/1999/xhtml">
  5095. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.26/">https://yt-dl.org/downloads/2014.08.26/</a>
  5096. </div>
  5097. </content>
  5098. <author>
  5099. <name>The youtube-dl maintainers</name>
  5100. </author>
  5101. <updated>2014-08-26T00:00:00Z</updated>
  5102. </entry>
  5103. <entry>
  5104. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.27</id>
  5105. <title>New version 2014.08.27</title>
  5106. <link href="http://ytdl-org.github.io/youtube-dl" />
  5107. <content type="xhtml">
  5108. <div xmlns="http://www.w3.org/1999/xhtml">
  5109. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.27/">https://yt-dl.org/downloads/2014.08.27/</a>
  5110. </div>
  5111. </content>
  5112. <author>
  5113. <name>The youtube-dl maintainers</name>
  5114. </author>
  5115. <updated>2014-08-27T00:00:00Z</updated>
  5116. </entry>
  5117. <entry>
  5118. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.27.1</id>
  5119. <title>New version 2014.08.27.1</title>
  5120. <link href="http://ytdl-org.github.io/youtube-dl" />
  5121. <content type="xhtml">
  5122. <div xmlns="http://www.w3.org/1999/xhtml">
  5123. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.27.1/">https://yt-dl.org/downloads/2014.08.27.1/</a>
  5124. </div>
  5125. </content>
  5126. <author>
  5127. <name>The youtube-dl maintainers</name>
  5128. </author>
  5129. <updated>2014-08-27T00:00:01Z</updated>
  5130. </entry>
  5131. <entry>
  5132. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.28</id>
  5133. <title>New version 2014.08.28</title>
  5134. <link href="http://ytdl-org.github.io/youtube-dl" />
  5135. <content type="xhtml">
  5136. <div xmlns="http://www.w3.org/1999/xhtml">
  5137. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.28/">https://yt-dl.org/downloads/2014.08.28/</a>
  5138. </div>
  5139. </content>
  5140. <author>
  5141. <name>The youtube-dl maintainers</name>
  5142. </author>
  5143. <updated>2014-08-28T00:00:00Z</updated>
  5144. </entry>
  5145. <entry>
  5146. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.28.1</id>
  5147. <title>New version 2014.08.28.1</title>
  5148. <link href="http://ytdl-org.github.io/youtube-dl" />
  5149. <content type="xhtml">
  5150. <div xmlns="http://www.w3.org/1999/xhtml">
  5151. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.28.1/">https://yt-dl.org/downloads/2014.08.28.1/</a>
  5152. </div>
  5153. </content>
  5154. <author>
  5155. <name>The youtube-dl maintainers</name>
  5156. </author>
  5157. <updated>2014-08-28T00:00:01Z</updated>
  5158. </entry>
  5159. <entry>
  5160. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.28.2</id>
  5161. <title>New version 2014.08.28.2</title>
  5162. <link href="http://ytdl-org.github.io/youtube-dl" />
  5163. <content type="xhtml">
  5164. <div xmlns="http://www.w3.org/1999/xhtml">
  5165. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.28.2/">https://yt-dl.org/downloads/2014.08.28.2/</a>
  5166. </div>
  5167. </content>
  5168. <author>
  5169. <name>The youtube-dl maintainers</name>
  5170. </author>
  5171. <updated>2014-08-28T00:00:02Z</updated>
  5172. </entry>
  5173. <entry>
  5174. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.08.29</id>
  5175. <title>New version 2014.08.29</title>
  5176. <link href="http://ytdl-org.github.io/youtube-dl" />
  5177. <content type="xhtml">
  5178. <div xmlns="http://www.w3.org/1999/xhtml">
  5179. Downloads available at <a href="https://yt-dl.org/downloads/2014.08.29/">https://yt-dl.org/downloads/2014.08.29/</a>
  5180. </div>
  5181. </content>
  5182. <author>
  5183. <name>The youtube-dl maintainers</name>
  5184. </author>
  5185. <updated>2014-08-29T00:00:00Z</updated>
  5186. </entry>
  5187. <entry>
  5188. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.01</id>
  5189. <title>New version 2014.09.01</title>
  5190. <link href="http://ytdl-org.github.io/youtube-dl" />
  5191. <content type="xhtml">
  5192. <div xmlns="http://www.w3.org/1999/xhtml">
  5193. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.01/">https://yt-dl.org/downloads/2014.09.01/</a>
  5194. </div>
  5195. </content>
  5196. <author>
  5197. <name>The youtube-dl maintainers</name>
  5198. </author>
  5199. <updated>2014-09-01T00:00:00Z</updated>
  5200. </entry>
  5201. <entry>
  5202. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.01.1</id>
  5203. <title>New version 2014.09.01.1</title>
  5204. <link href="http://ytdl-org.github.io/youtube-dl" />
  5205. <content type="xhtml">
  5206. <div xmlns="http://www.w3.org/1999/xhtml">
  5207. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.01.1/">https://yt-dl.org/downloads/2014.09.01.1/</a>
  5208. </div>
  5209. </content>
  5210. <author>
  5211. <name>The youtube-dl maintainers</name>
  5212. </author>
  5213. <updated>2014-09-01T00:00:01Z</updated>
  5214. </entry>
  5215. <entry>
  5216. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.01.2</id>
  5217. <title>New version 2014.09.01.2</title>
  5218. <link href="http://ytdl-org.github.io/youtube-dl" />
  5219. <content type="xhtml">
  5220. <div xmlns="http://www.w3.org/1999/xhtml">
  5221. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.01.2/">https://yt-dl.org/downloads/2014.09.01.2/</a>
  5222. </div>
  5223. </content>
  5224. <author>
  5225. <name>The youtube-dl maintainers</name>
  5226. </author>
  5227. <updated>2014-09-01T00:00:02Z</updated>
  5228. </entry>
  5229. <entry>
  5230. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.04</id>
  5231. <title>New version 2014.09.04</title>
  5232. <link href="http://ytdl-org.github.io/youtube-dl" />
  5233. <content type="xhtml">
  5234. <div xmlns="http://www.w3.org/1999/xhtml">
  5235. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.04/">https://yt-dl.org/downloads/2014.09.04/</a>
  5236. </div>
  5237. </content>
  5238. <author>
  5239. <name>The youtube-dl maintainers</name>
  5240. </author>
  5241. <updated>2014-09-04T00:00:00Z</updated>
  5242. </entry>
  5243. <entry>
  5244. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.04.1</id>
  5245. <title>New version 2014.09.04.1</title>
  5246. <link href="http://ytdl-org.github.io/youtube-dl" />
  5247. <content type="xhtml">
  5248. <div xmlns="http://www.w3.org/1999/xhtml">
  5249. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.04.1/">https://yt-dl.org/downloads/2014.09.04.1/</a>
  5250. </div>
  5251. </content>
  5252. <author>
  5253. <name>The youtube-dl maintainers</name>
  5254. </author>
  5255. <updated>2014-09-04T00:00:01Z</updated>
  5256. </entry>
  5257. <entry>
  5258. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.04.3</id>
  5259. <title>New version 2014.09.04.3</title>
  5260. <link href="http://ytdl-org.github.io/youtube-dl" />
  5261. <content type="xhtml">
  5262. <div xmlns="http://www.w3.org/1999/xhtml">
  5263. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.04.3/">https://yt-dl.org/downloads/2014.09.04.3/</a>
  5264. </div>
  5265. </content>
  5266. <author>
  5267. <name>The youtube-dl maintainers</name>
  5268. </author>
  5269. <updated>2014-09-04T00:00:03Z</updated>
  5270. </entry>
  5271. <entry>
  5272. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.06</id>
  5273. <title>New version 2014.09.06</title>
  5274. <link href="http://ytdl-org.github.io/youtube-dl" />
  5275. <content type="xhtml">
  5276. <div xmlns="http://www.w3.org/1999/xhtml">
  5277. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.06/">https://yt-dl.org/downloads/2014.09.06/</a>
  5278. </div>
  5279. </content>
  5280. <author>
  5281. <name>The youtube-dl maintainers</name>
  5282. </author>
  5283. <updated>2014-09-06T00:00:00Z</updated>
  5284. </entry>
  5285. <entry>
  5286. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.10</id>
  5287. <title>New version 2014.09.10</title>
  5288. <link href="http://ytdl-org.github.io/youtube-dl" />
  5289. <content type="xhtml">
  5290. <div xmlns="http://www.w3.org/1999/xhtml">
  5291. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.10/">https://yt-dl.org/downloads/2014.09.10/</a>
  5292. </div>
  5293. </content>
  5294. <author>
  5295. <name>The youtube-dl maintainers</name>
  5296. </author>
  5297. <updated>2014-09-10T00:00:00Z</updated>
  5298. </entry>
  5299. <entry>
  5300. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.10.1</id>
  5301. <title>New version 2014.09.10.1</title>
  5302. <link href="http://ytdl-org.github.io/youtube-dl" />
  5303. <content type="xhtml">
  5304. <div xmlns="http://www.w3.org/1999/xhtml">
  5305. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.10.1/">https://yt-dl.org/downloads/2014.09.10.1/</a>
  5306. </div>
  5307. </content>
  5308. <author>
  5309. <name>The youtube-dl maintainers</name>
  5310. </author>
  5311. <updated>2014-09-10T00:00:01Z</updated>
  5312. </entry>
  5313. <entry>
  5314. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.12</id>
  5315. <title>New version 2014.09.12</title>
  5316. <link href="http://ytdl-org.github.io/youtube-dl" />
  5317. <content type="xhtml">
  5318. <div xmlns="http://www.w3.org/1999/xhtml">
  5319. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.12/">https://yt-dl.org/downloads/2014.09.12/</a>
  5320. </div>
  5321. </content>
  5322. <author>
  5323. <name>The youtube-dl maintainers</name>
  5324. </author>
  5325. <updated>2014-09-12T00:00:00Z</updated>
  5326. </entry>
  5327. <entry>
  5328. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.14.3</id>
  5329. <title>New version 2014.09.14.3</title>
  5330. <link href="http://ytdl-org.github.io/youtube-dl" />
  5331. <content type="xhtml">
  5332. <div xmlns="http://www.w3.org/1999/xhtml">
  5333. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.14.3/">https://yt-dl.org/downloads/2014.09.14.3/</a>
  5334. </div>
  5335. </content>
  5336. <author>
  5337. <name>The youtube-dl maintainers</name>
  5338. </author>
  5339. <updated>2014-09-14T00:00:03Z</updated>
  5340. </entry>
  5341. <entry>
  5342. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.15</id>
  5343. <title>New version 2014.09.15</title>
  5344. <link href="http://ytdl-org.github.io/youtube-dl" />
  5345. <content type="xhtml">
  5346. <div xmlns="http://www.w3.org/1999/xhtml">
  5347. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.15/">https://yt-dl.org/downloads/2014.09.15/</a>
  5348. </div>
  5349. </content>
  5350. <author>
  5351. <name>The youtube-dl maintainers</name>
  5352. </author>
  5353. <updated>2014-09-15T00:00:00Z</updated>
  5354. </entry>
  5355. <entry>
  5356. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.15.1</id>
  5357. <title>New version 2014.09.15.1</title>
  5358. <link href="http://ytdl-org.github.io/youtube-dl" />
  5359. <content type="xhtml">
  5360. <div xmlns="http://www.w3.org/1999/xhtml">
  5361. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.15.1/">https://yt-dl.org/downloads/2014.09.15.1/</a>
  5362. </div>
  5363. </content>
  5364. <author>
  5365. <name>The youtube-dl maintainers</name>
  5366. </author>
  5367. <updated>2014-09-15T00:00:01Z</updated>
  5368. </entry>
  5369. <entry>
  5370. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.16</id>
  5371. <title>New version 2014.09.16</title>
  5372. <link href="http://ytdl-org.github.io/youtube-dl" />
  5373. <content type="xhtml">
  5374. <div xmlns="http://www.w3.org/1999/xhtml">
  5375. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.16/">https://yt-dl.org/downloads/2014.09.16/</a>
  5376. </div>
  5377. </content>
  5378. <author>
  5379. <name>The youtube-dl maintainers</name>
  5380. </author>
  5381. <updated>2014-09-16T00:00:00Z</updated>
  5382. </entry>
  5383. <entry>
  5384. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.16.1</id>
  5385. <title>New version 2014.09.16.1</title>
  5386. <link href="http://ytdl-org.github.io/youtube-dl" />
  5387. <content type="xhtml">
  5388. <div xmlns="http://www.w3.org/1999/xhtml">
  5389. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.16.1/">https://yt-dl.org/downloads/2014.09.16.1/</a>
  5390. </div>
  5391. </content>
  5392. <author>
  5393. <name>The youtube-dl maintainers</name>
  5394. </author>
  5395. <updated>2014-09-16T00:00:01Z</updated>
  5396. </entry>
  5397. <entry>
  5398. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.18</id>
  5399. <title>New version 2014.09.18</title>
  5400. <link href="http://ytdl-org.github.io/youtube-dl" />
  5401. <content type="xhtml">
  5402. <div xmlns="http://www.w3.org/1999/xhtml">
  5403. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.18/">https://yt-dl.org/downloads/2014.09.18/</a>
  5404. </div>
  5405. </content>
  5406. <author>
  5407. <name>The youtube-dl maintainers</name>
  5408. </author>
  5409. <updated>2014-09-18T00:00:00Z</updated>
  5410. </entry>
  5411. <entry>
  5412. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.19</id>
  5413. <title>New version 2014.09.19</title>
  5414. <link href="http://ytdl-org.github.io/youtube-dl" />
  5415. <content type="xhtml">
  5416. <div xmlns="http://www.w3.org/1999/xhtml">
  5417. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.19/">https://yt-dl.org/downloads/2014.09.19/</a>
  5418. </div>
  5419. </content>
  5420. <author>
  5421. <name>The youtube-dl maintainers</name>
  5422. </author>
  5423. <updated>2014-09-19T00:00:00Z</updated>
  5424. </entry>
  5425. <entry>
  5426. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.22</id>
  5427. <title>New version 2014.09.22</title>
  5428. <link href="http://ytdl-org.github.io/youtube-dl" />
  5429. <content type="xhtml">
  5430. <div xmlns="http://www.w3.org/1999/xhtml">
  5431. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.22/">https://yt-dl.org/downloads/2014.09.22/</a>
  5432. </div>
  5433. </content>
  5434. <author>
  5435. <name>The youtube-dl maintainers</name>
  5436. </author>
  5437. <updated>2014-09-22T00:00:00Z</updated>
  5438. </entry>
  5439. <entry>
  5440. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.24</id>
  5441. <title>New version 2014.09.24</title>
  5442. <link href="http://ytdl-org.github.io/youtube-dl" />
  5443. <content type="xhtml">
  5444. <div xmlns="http://www.w3.org/1999/xhtml">
  5445. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.24/">https://yt-dl.org/downloads/2014.09.24/</a>
  5446. </div>
  5447. </content>
  5448. <author>
  5449. <name>The youtube-dl maintainers</name>
  5450. </author>
  5451. <updated>2014-09-24T00:00:00Z</updated>
  5452. </entry>
  5453. <entry>
  5454. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.24.1</id>
  5455. <title>New version 2014.09.24.1</title>
  5456. <link href="http://ytdl-org.github.io/youtube-dl" />
  5457. <content type="xhtml">
  5458. <div xmlns="http://www.w3.org/1999/xhtml">
  5459. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.24.1/">https://yt-dl.org/downloads/2014.09.24.1/</a>
  5460. </div>
  5461. </content>
  5462. <author>
  5463. <name>The youtube-dl maintainers</name>
  5464. </author>
  5465. <updated>2014-09-24T00:00:01Z</updated>
  5466. </entry>
  5467. <entry>
  5468. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.25</id>
  5469. <title>New version 2014.09.25</title>
  5470. <link href="http://ytdl-org.github.io/youtube-dl" />
  5471. <content type="xhtml">
  5472. <div xmlns="http://www.w3.org/1999/xhtml">
  5473. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.25/">https://yt-dl.org/downloads/2014.09.25/</a>
  5474. </div>
  5475. </content>
  5476. <author>
  5477. <name>The youtube-dl maintainers</name>
  5478. </author>
  5479. <updated>2014-09-25T00:00:00Z</updated>
  5480. </entry>
  5481. <entry>
  5482. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.28</id>
  5483. <title>New version 2014.09.28</title>
  5484. <link href="http://ytdl-org.github.io/youtube-dl" />
  5485. <content type="xhtml">
  5486. <div xmlns="http://www.w3.org/1999/xhtml">
  5487. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.28/">https://yt-dl.org/downloads/2014.09.28/</a>
  5488. </div>
  5489. </content>
  5490. <author>
  5491. <name>The youtube-dl maintainers</name>
  5492. </author>
  5493. <updated>2014-09-28T00:00:00Z</updated>
  5494. </entry>
  5495. <entry>
  5496. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.28.1</id>
  5497. <title>New version 2014.09.28.1</title>
  5498. <link href="http://ytdl-org.github.io/youtube-dl" />
  5499. <content type="xhtml">
  5500. <div xmlns="http://www.w3.org/1999/xhtml">
  5501. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.28.1/">https://yt-dl.org/downloads/2014.09.28.1/</a>
  5502. </div>
  5503. </content>
  5504. <author>
  5505. <name>The youtube-dl maintainers</name>
  5506. </author>
  5507. <updated>2014-09-28T00:00:01Z</updated>
  5508. </entry>
  5509. <entry>
  5510. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.29.1</id>
  5511. <title>New version 2014.09.29.1</title>
  5512. <link href="http://ytdl-org.github.io/youtube-dl" />
  5513. <content type="xhtml">
  5514. <div xmlns="http://www.w3.org/1999/xhtml">
  5515. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.29.1/">https://yt-dl.org/downloads/2014.09.29.1/</a>
  5516. </div>
  5517. </content>
  5518. <author>
  5519. <name>The youtube-dl maintainers</name>
  5520. </author>
  5521. <updated>2014-09-29T00:00:01Z</updated>
  5522. </entry>
  5523. <entry>
  5524. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.09.29.2</id>
  5525. <title>New version 2014.09.29.2</title>
  5526. <link href="http://ytdl-org.github.io/youtube-dl" />
  5527. <content type="xhtml">
  5528. <div xmlns="http://www.w3.org/1999/xhtml">
  5529. Downloads available at <a href="https://yt-dl.org/downloads/2014.09.29.2/">https://yt-dl.org/downloads/2014.09.29.2/</a>
  5530. </div>
  5531. </content>
  5532. <author>
  5533. <name>The youtube-dl maintainers</name>
  5534. </author>
  5535. <updated>2014-09-29T00:00:02Z</updated>
  5536. </entry>
  5537. <entry>
  5538. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.02</id>
  5539. <title>New version 2014.10.02</title>
  5540. <link href="http://ytdl-org.github.io/youtube-dl" />
  5541. <content type="xhtml">
  5542. <div xmlns="http://www.w3.org/1999/xhtml">
  5543. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.02/">https://yt-dl.org/downloads/2014.10.02/</a>
  5544. </div>
  5545. </content>
  5546. <author>
  5547. <name>The youtube-dl maintainers</name>
  5548. </author>
  5549. <updated>2014-10-02T00:00:00Z</updated>
  5550. </entry>
  5551. <entry>
  5552. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.05</id>
  5553. <title>New version 2014.10.05</title>
  5554. <link href="http://ytdl-org.github.io/youtube-dl" />
  5555. <content type="xhtml">
  5556. <div xmlns="http://www.w3.org/1999/xhtml">
  5557. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.05/">https://yt-dl.org/downloads/2014.10.05/</a>
  5558. </div>
  5559. </content>
  5560. <author>
  5561. <name>The youtube-dl maintainers</name>
  5562. </author>
  5563. <updated>2014-10-05T00:00:00Z</updated>
  5564. </entry>
  5565. <entry>
  5566. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.05.2</id>
  5567. <title>New version 2014.10.05.2</title>
  5568. <link href="http://ytdl-org.github.io/youtube-dl" />
  5569. <content type="xhtml">
  5570. <div xmlns="http://www.w3.org/1999/xhtml">
  5571. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.05.2/">https://yt-dl.org/downloads/2014.10.05.2/</a>
  5572. </div>
  5573. </content>
  5574. <author>
  5575. <name>The youtube-dl maintainers</name>
  5576. </author>
  5577. <updated>2014-10-05T00:00:02Z</updated>
  5578. </entry>
  5579. <entry>
  5580. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.12</id>
  5581. <title>New version 2014.10.12</title>
  5582. <link href="http://ytdl-org.github.io/youtube-dl" />
  5583. <content type="xhtml">
  5584. <div xmlns="http://www.w3.org/1999/xhtml">
  5585. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.12/">https://yt-dl.org/downloads/2014.10.12/</a>
  5586. </div>
  5587. </content>
  5588. <author>
  5589. <name>The youtube-dl maintainers</name>
  5590. </author>
  5591. <updated>2014-10-12T00:00:00Z</updated>
  5592. </entry>
  5593. <entry>
  5594. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.13</id>
  5595. <title>New version 2014.10.13</title>
  5596. <link href="http://ytdl-org.github.io/youtube-dl" />
  5597. <content type="xhtml">
  5598. <div xmlns="http://www.w3.org/1999/xhtml">
  5599. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.13/">https://yt-dl.org/downloads/2014.10.13/</a>
  5600. </div>
  5601. </content>
  5602. <author>
  5603. <name>The youtube-dl maintainers</name>
  5604. </author>
  5605. <updated>2014-10-13T00:00:00Z</updated>
  5606. </entry>
  5607. <entry>
  5608. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.15</id>
  5609. <title>New version 2014.10.15</title>
  5610. <link href="http://ytdl-org.github.io/youtube-dl" />
  5611. <content type="xhtml">
  5612. <div xmlns="http://www.w3.org/1999/xhtml">
  5613. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.15/">https://yt-dl.org/downloads/2014.10.15/</a>
  5614. </div>
  5615. </content>
  5616. <author>
  5617. <name>The youtube-dl maintainers</name>
  5618. </author>
  5619. <updated>2014-10-15T00:00:00Z</updated>
  5620. </entry>
  5621. <entry>
  5622. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.18</id>
  5623. <title>New version 2014.10.18</title>
  5624. <link href="http://ytdl-org.github.io/youtube-dl" />
  5625. <content type="xhtml">
  5626. <div xmlns="http://www.w3.org/1999/xhtml">
  5627. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.18/">https://yt-dl.org/downloads/2014.10.18/</a>
  5628. </div>
  5629. </content>
  5630. <author>
  5631. <name>The youtube-dl maintainers</name>
  5632. </author>
  5633. <updated>2014-10-18T00:00:00Z</updated>
  5634. </entry>
  5635. <entry>
  5636. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.23</id>
  5637. <title>New version 2014.10.23</title>
  5638. <link href="http://ytdl-org.github.io/youtube-dl" />
  5639. <content type="xhtml">
  5640. <div xmlns="http://www.w3.org/1999/xhtml">
  5641. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.23/">https://yt-dl.org/downloads/2014.10.23/</a>
  5642. </div>
  5643. </content>
  5644. <author>
  5645. <name>The youtube-dl maintainers</name>
  5646. </author>
  5647. <updated>2014-10-23T00:00:00Z</updated>
  5648. </entry>
  5649. <entry>
  5650. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.24</id>
  5651. <title>New version 2014.10.24</title>
  5652. <link href="http://ytdl-org.github.io/youtube-dl" />
  5653. <content type="xhtml">
  5654. <div xmlns="http://www.w3.org/1999/xhtml">
  5655. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.24/">https://yt-dl.org/downloads/2014.10.24/</a>
  5656. </div>
  5657. </content>
  5658. <author>
  5659. <name>The youtube-dl maintainers</name>
  5660. </author>
  5661. <updated>2014-10-24T00:00:00Z</updated>
  5662. </entry>
  5663. <entry>
  5664. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.25</id>
  5665. <title>New version 2014.10.25</title>
  5666. <link href="http://ytdl-org.github.io/youtube-dl" />
  5667. <content type="xhtml">
  5668. <div xmlns="http://www.w3.org/1999/xhtml">
  5669. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.25/">https://yt-dl.org/downloads/2014.10.25/</a>
  5670. </div>
  5671. </content>
  5672. <author>
  5673. <name>The youtube-dl maintainers</name>
  5674. </author>
  5675. <updated>2014-10-25T00:00:00Z</updated>
  5676. </entry>
  5677. <entry>
  5678. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.26</id>
  5679. <title>New version 2014.10.26</title>
  5680. <link href="http://ytdl-org.github.io/youtube-dl" />
  5681. <content type="xhtml">
  5682. <div xmlns="http://www.w3.org/1999/xhtml">
  5683. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.26/">https://yt-dl.org/downloads/2014.10.26/</a>
  5684. </div>
  5685. </content>
  5686. <author>
  5687. <name>The youtube-dl maintainers</name>
  5688. </author>
  5689. <updated>2014-10-26T00:00:00Z</updated>
  5690. </entry>
  5691. <entry>
  5692. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.26.1</id>
  5693. <title>New version 2014.10.26.1</title>
  5694. <link href="http://ytdl-org.github.io/youtube-dl" />
  5695. <content type="xhtml">
  5696. <div xmlns="http://www.w3.org/1999/xhtml">
  5697. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.26.1/">https://yt-dl.org/downloads/2014.10.26.1/</a>
  5698. </div>
  5699. </content>
  5700. <author>
  5701. <name>The youtube-dl maintainers</name>
  5702. </author>
  5703. <updated>2014-10-26T00:00:01Z</updated>
  5704. </entry>
  5705. <entry>
  5706. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.26.2</id>
  5707. <title>New version 2014.10.26.2</title>
  5708. <link href="http://ytdl-org.github.io/youtube-dl" />
  5709. <content type="xhtml">
  5710. <div xmlns="http://www.w3.org/1999/xhtml">
  5711. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.26.2/">https://yt-dl.org/downloads/2014.10.26.2/</a>
  5712. </div>
  5713. </content>
  5714. <author>
  5715. <name>The youtube-dl maintainers</name>
  5716. </author>
  5717. <updated>2014-10-26T00:00:02Z</updated>
  5718. </entry>
  5719. <entry>
  5720. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.27</id>
  5721. <title>New version 2014.10.27</title>
  5722. <link href="http://ytdl-org.github.io/youtube-dl" />
  5723. <content type="xhtml">
  5724. <div xmlns="http://www.w3.org/1999/xhtml">
  5725. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.27/">https://yt-dl.org/downloads/2014.10.27/</a>
  5726. </div>
  5727. </content>
  5728. <author>
  5729. <name>The youtube-dl maintainers</name>
  5730. </author>
  5731. <updated>2014-10-27T00:00:00Z</updated>
  5732. </entry>
  5733. <entry>
  5734. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.29</id>
  5735. <title>New version 2014.10.29</title>
  5736. <link href="http://ytdl-org.github.io/youtube-dl" />
  5737. <content type="xhtml">
  5738. <div xmlns="http://www.w3.org/1999/xhtml">
  5739. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.29/">https://yt-dl.org/downloads/2014.10.29/</a>
  5740. </div>
  5741. </content>
  5742. <author>
  5743. <name>The youtube-dl maintainers</name>
  5744. </author>
  5745. <updated>2014-10-29T00:00:00Z</updated>
  5746. </entry>
  5747. <entry>
  5748. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.10.30</id>
  5749. <title>New version 2014.10.30</title>
  5750. <link href="http://ytdl-org.github.io/youtube-dl" />
  5751. <content type="xhtml">
  5752. <div xmlns="http://www.w3.org/1999/xhtml">
  5753. Downloads available at <a href="https://yt-dl.org/downloads/2014.10.30/">https://yt-dl.org/downloads/2014.10.30/</a>
  5754. </div>
  5755. </content>
  5756. <author>
  5757. <name>The youtube-dl maintainers</name>
  5758. </author>
  5759. <updated>2014-10-30T00:00:00Z</updated>
  5760. </entry>
  5761. <entry>
  5762. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.02.1</id>
  5763. <title>New version 2014.11.02.1</title>
  5764. <link href="http://ytdl-org.github.io/youtube-dl" />
  5765. <content type="xhtml">
  5766. <div xmlns="http://www.w3.org/1999/xhtml">
  5767. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.02.1/">https://yt-dl.org/downloads/2014.11.02.1/</a>
  5768. </div>
  5769. </content>
  5770. <author>
  5771. <name>The youtube-dl maintainers</name>
  5772. </author>
  5773. <updated>2014-11-02T00:00:01Z</updated>
  5774. </entry>
  5775. <entry>
  5776. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.04</id>
  5777. <title>New version 2014.11.04</title>
  5778. <link href="http://ytdl-org.github.io/youtube-dl" />
  5779. <content type="xhtml">
  5780. <div xmlns="http://www.w3.org/1999/xhtml">
  5781. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.04/">https://yt-dl.org/downloads/2014.11.04/</a>
  5782. </div>
  5783. </content>
  5784. <author>
  5785. <name>The youtube-dl maintainers</name>
  5786. </author>
  5787. <updated>2014-11-04T00:00:00Z</updated>
  5788. </entry>
  5789. <entry>
  5790. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.09</id>
  5791. <title>New version 2014.11.09</title>
  5792. <link href="http://ytdl-org.github.io/youtube-dl" />
  5793. <content type="xhtml">
  5794. <div xmlns="http://www.w3.org/1999/xhtml">
  5795. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.09/">https://yt-dl.org/downloads/2014.11.09/</a>
  5796. </div>
  5797. </content>
  5798. <author>
  5799. <name>The youtube-dl maintainers</name>
  5800. </author>
  5801. <updated>2014-11-09T00:00:00Z</updated>
  5802. </entry>
  5803. <entry>
  5804. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.12</id>
  5805. <title>New version 2014.11.12</title>
  5806. <link href="http://ytdl-org.github.io/youtube-dl" />
  5807. <content type="xhtml">
  5808. <div xmlns="http://www.w3.org/1999/xhtml">
  5809. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.12/">https://yt-dl.org/downloads/2014.11.12/</a>
  5810. </div>
  5811. </content>
  5812. <author>
  5813. <name>The youtube-dl maintainers</name>
  5814. </author>
  5815. <updated>2014-11-12T00:00:00Z</updated>
  5816. </entry>
  5817. <entry>
  5818. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.12.1</id>
  5819. <title>New version 2014.11.12.1</title>
  5820. <link href="http://ytdl-org.github.io/youtube-dl" />
  5821. <content type="xhtml">
  5822. <div xmlns="http://www.w3.org/1999/xhtml">
  5823. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.12.1/">https://yt-dl.org/downloads/2014.11.12.1/</a>
  5824. </div>
  5825. </content>
  5826. <author>
  5827. <name>The youtube-dl maintainers</name>
  5828. </author>
  5829. <updated>2014-11-12T00:00:01Z</updated>
  5830. </entry>
  5831. <entry>
  5832. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.13</id>
  5833. <title>New version 2014.11.13</title>
  5834. <link href="http://ytdl-org.github.io/youtube-dl" />
  5835. <content type="xhtml">
  5836. <div xmlns="http://www.w3.org/1999/xhtml">
  5837. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.13/">https://yt-dl.org/downloads/2014.11.13/</a>
  5838. </div>
  5839. </content>
  5840. <author>
  5841. <name>The youtube-dl maintainers</name>
  5842. </author>
  5843. <updated>2014-11-13T00:00:00Z</updated>
  5844. </entry>
  5845. <entry>
  5846. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.13.1</id>
  5847. <title>New version 2014.11.13.1</title>
  5848. <link href="http://ytdl-org.github.io/youtube-dl" />
  5849. <content type="xhtml">
  5850. <div xmlns="http://www.w3.org/1999/xhtml">
  5851. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.13.1/">https://yt-dl.org/downloads/2014.11.13.1/</a>
  5852. </div>
  5853. </content>
  5854. <author>
  5855. <name>The youtube-dl maintainers</name>
  5856. </author>
  5857. <updated>2014-11-13T00:00:01Z</updated>
  5858. </entry>
  5859. <entry>
  5860. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.13.2</id>
  5861. <title>New version 2014.11.13.2</title>
  5862. <link href="http://ytdl-org.github.io/youtube-dl" />
  5863. <content type="xhtml">
  5864. <div xmlns="http://www.w3.org/1999/xhtml">
  5865. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.13.2/">https://yt-dl.org/downloads/2014.11.13.2/</a>
  5866. </div>
  5867. </content>
  5868. <author>
  5869. <name>The youtube-dl maintainers</name>
  5870. </author>
  5871. <updated>2014-11-13T00:00:02Z</updated>
  5872. </entry>
  5873. <entry>
  5874. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.13.3</id>
  5875. <title>New version 2014.11.13.3</title>
  5876. <link href="http://ytdl-org.github.io/youtube-dl" />
  5877. <content type="xhtml">
  5878. <div xmlns="http://www.w3.org/1999/xhtml">
  5879. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.13.3/">https://yt-dl.org/downloads/2014.11.13.3/</a>
  5880. </div>
  5881. </content>
  5882. <author>
  5883. <name>The youtube-dl maintainers</name>
  5884. </author>
  5885. <updated>2014-11-13T00:00:03Z</updated>
  5886. </entry>
  5887. <entry>
  5888. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.14</id>
  5889. <title>New version 2014.11.14</title>
  5890. <link href="http://ytdl-org.github.io/youtube-dl" />
  5891. <content type="xhtml">
  5892. <div xmlns="http://www.w3.org/1999/xhtml">
  5893. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.14/">https://yt-dl.org/downloads/2014.11.14/</a>
  5894. </div>
  5895. </content>
  5896. <author>
  5897. <name>The youtube-dl maintainers</name>
  5898. </author>
  5899. <updated>2014-11-14T00:00:00Z</updated>
  5900. </entry>
  5901. <entry>
  5902. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.15</id>
  5903. <title>New version 2014.11.15</title>
  5904. <link href="http://ytdl-org.github.io/youtube-dl" />
  5905. <content type="xhtml">
  5906. <div xmlns="http://www.w3.org/1999/xhtml">
  5907. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.15/">https://yt-dl.org/downloads/2014.11.15/</a>
  5908. </div>
  5909. </content>
  5910. <author>
  5911. <name>The youtube-dl maintainers</name>
  5912. </author>
  5913. <updated>2014-11-15T00:00:00Z</updated>
  5914. </entry>
  5915. <entry>
  5916. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.15.1</id>
  5917. <title>New version 2014.11.15.1</title>
  5918. <link href="http://ytdl-org.github.io/youtube-dl" />
  5919. <content type="xhtml">
  5920. <div xmlns="http://www.w3.org/1999/xhtml">
  5921. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.15.1/">https://yt-dl.org/downloads/2014.11.15.1/</a>
  5922. </div>
  5923. </content>
  5924. <author>
  5925. <name>The youtube-dl maintainers</name>
  5926. </author>
  5927. <updated>2014-11-15T00:00:01Z</updated>
  5928. </entry>
  5929. <entry>
  5930. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.16</id>
  5931. <title>New version 2014.11.16</title>
  5932. <link href="http://ytdl-org.github.io/youtube-dl" />
  5933. <content type="xhtml">
  5934. <div xmlns="http://www.w3.org/1999/xhtml">
  5935. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.16/">https://yt-dl.org/downloads/2014.11.16/</a>
  5936. </div>
  5937. </content>
  5938. <author>
  5939. <name>The youtube-dl maintainers</name>
  5940. </author>
  5941. <updated>2014-11-16T00:00:00Z</updated>
  5942. </entry>
  5943. <entry>
  5944. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.20</id>
  5945. <title>New version 2014.11.20</title>
  5946. <link href="http://ytdl-org.github.io/youtube-dl" />
  5947. <content type="xhtml">
  5948. <div xmlns="http://www.w3.org/1999/xhtml">
  5949. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.20/">https://yt-dl.org/downloads/2014.11.20/</a>
  5950. </div>
  5951. </content>
  5952. <author>
  5953. <name>The youtube-dl maintainers</name>
  5954. </author>
  5955. <updated>2014-11-20T00:00:00Z</updated>
  5956. </entry>
  5957. <entry>
  5958. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.21</id>
  5959. <title>New version 2014.11.21</title>
  5960. <link href="http://ytdl-org.github.io/youtube-dl" />
  5961. <content type="xhtml">
  5962. <div xmlns="http://www.w3.org/1999/xhtml">
  5963. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.21/">https://yt-dl.org/downloads/2014.11.21/</a>
  5964. </div>
  5965. </content>
  5966. <author>
  5967. <name>The youtube-dl maintainers</name>
  5968. </author>
  5969. <updated>2014-11-21T00:00:00Z</updated>
  5970. </entry>
  5971. <entry>
  5972. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.21.1</id>
  5973. <title>New version 2014.11.21.1</title>
  5974. <link href="http://ytdl-org.github.io/youtube-dl" />
  5975. <content type="xhtml">
  5976. <div xmlns="http://www.w3.org/1999/xhtml">
  5977. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.21.1/">https://yt-dl.org/downloads/2014.11.21.1/</a>
  5978. </div>
  5979. </content>
  5980. <author>
  5981. <name>The youtube-dl maintainers</name>
  5982. </author>
  5983. <updated>2014-11-21T00:00:01Z</updated>
  5984. </entry>
  5985. <entry>
  5986. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.23</id>
  5987. <title>New version 2014.11.23</title>
  5988. <link href="http://ytdl-org.github.io/youtube-dl" />
  5989. <content type="xhtml">
  5990. <div xmlns="http://www.w3.org/1999/xhtml">
  5991. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.23/">https://yt-dl.org/downloads/2014.11.23/</a>
  5992. </div>
  5993. </content>
  5994. <author>
  5995. <name>The youtube-dl maintainers</name>
  5996. </author>
  5997. <updated>2014-11-23T00:00:00Z</updated>
  5998. </entry>
  5999. <entry>
  6000. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.23.1</id>
  6001. <title>New version 2014.11.23.1</title>
  6002. <link href="http://ytdl-org.github.io/youtube-dl" />
  6003. <content type="xhtml">
  6004. <div xmlns="http://www.w3.org/1999/xhtml">
  6005. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.23.1/">https://yt-dl.org/downloads/2014.11.23.1/</a>
  6006. </div>
  6007. </content>
  6008. <author>
  6009. <name>The youtube-dl maintainers</name>
  6010. </author>
  6011. <updated>2014-11-23T00:00:01Z</updated>
  6012. </entry>
  6013. <entry>
  6014. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.24</id>
  6015. <title>New version 2014.11.24</title>
  6016. <link href="http://ytdl-org.github.io/youtube-dl" />
  6017. <content type="xhtml">
  6018. <div xmlns="http://www.w3.org/1999/xhtml">
  6019. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.24/">https://yt-dl.org/downloads/2014.11.24/</a>
  6020. </div>
  6021. </content>
  6022. <author>
  6023. <name>The youtube-dl maintainers</name>
  6024. </author>
  6025. <updated>2014-11-24T00:00:00Z</updated>
  6026. </entry>
  6027. <entry>
  6028. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.25</id>
  6029. <title>New version 2014.11.25</title>
  6030. <link href="http://ytdl-org.github.io/youtube-dl" />
  6031. <content type="xhtml">
  6032. <div xmlns="http://www.w3.org/1999/xhtml">
  6033. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.25/">https://yt-dl.org/downloads/2014.11.25/</a>
  6034. </div>
  6035. </content>
  6036. <author>
  6037. <name>The youtube-dl maintainers</name>
  6038. </author>
  6039. <updated>2014-11-25T00:00:00Z</updated>
  6040. </entry>
  6041. <entry>
  6042. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.25.1</id>
  6043. <title>New version 2014.11.25.1</title>
  6044. <link href="http://ytdl-org.github.io/youtube-dl" />
  6045. <content type="xhtml">
  6046. <div xmlns="http://www.w3.org/1999/xhtml">
  6047. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.25.1/">https://yt-dl.org/downloads/2014.11.25.1/</a>
  6048. </div>
  6049. </content>
  6050. <author>
  6051. <name>The youtube-dl maintainers</name>
  6052. </author>
  6053. <updated>2014-11-25T00:00:01Z</updated>
  6054. </entry>
  6055. <entry>
  6056. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.26</id>
  6057. <title>New version 2014.11.26</title>
  6058. <link href="http://ytdl-org.github.io/youtube-dl" />
  6059. <content type="xhtml">
  6060. <div xmlns="http://www.w3.org/1999/xhtml">
  6061. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.26/">https://yt-dl.org/downloads/2014.11.26/</a>
  6062. </div>
  6063. </content>
  6064. <author>
  6065. <name>The youtube-dl maintainers</name>
  6066. </author>
  6067. <updated>2014-11-26T00:00:00Z</updated>
  6068. </entry>
  6069. <entry>
  6070. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.26.1</id>
  6071. <title>New version 2014.11.26.1</title>
  6072. <link href="http://ytdl-org.github.io/youtube-dl" />
  6073. <content type="xhtml">
  6074. <div xmlns="http://www.w3.org/1999/xhtml">
  6075. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.26.1/">https://yt-dl.org/downloads/2014.11.26.1/</a>
  6076. </div>
  6077. </content>
  6078. <author>
  6079. <name>The youtube-dl maintainers</name>
  6080. </author>
  6081. <updated>2014-11-26T00:00:01Z</updated>
  6082. </entry>
  6083. <entry>
  6084. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.26.3</id>
  6085. <title>New version 2014.11.26.3</title>
  6086. <link href="http://ytdl-org.github.io/youtube-dl" />
  6087. <content type="xhtml">
  6088. <div xmlns="http://www.w3.org/1999/xhtml">
  6089. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.26.3/">https://yt-dl.org/downloads/2014.11.26.3/</a>
  6090. </div>
  6091. </content>
  6092. <author>
  6093. <name>The youtube-dl maintainers</name>
  6094. </author>
  6095. <updated>2014-11-26T00:00:03Z</updated>
  6096. </entry>
  6097. <entry>
  6098. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.26.4</id>
  6099. <title>New version 2014.11.26.4</title>
  6100. <link href="http://ytdl-org.github.io/youtube-dl" />
  6101. <content type="xhtml">
  6102. <div xmlns="http://www.w3.org/1999/xhtml">
  6103. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.26.4/">https://yt-dl.org/downloads/2014.11.26.4/</a>
  6104. </div>
  6105. </content>
  6106. <author>
  6107. <name>The youtube-dl maintainers</name>
  6108. </author>
  6109. <updated>2014-11-26T00:00:04Z</updated>
  6110. </entry>
  6111. <entry>
  6112. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.11.27</id>
  6113. <title>New version 2014.11.27</title>
  6114. <link href="http://ytdl-org.github.io/youtube-dl" />
  6115. <content type="xhtml">
  6116. <div xmlns="http://www.w3.org/1999/xhtml">
  6117. Downloads available at <a href="https://yt-dl.org/downloads/2014.11.27/">https://yt-dl.org/downloads/2014.11.27/</a>
  6118. </div>
  6119. </content>
  6120. <author>
  6121. <name>The youtube-dl maintainers</name>
  6122. </author>
  6123. <updated>2014-11-27T00:00:00Z</updated>
  6124. </entry>
  6125. <entry>
  6126. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.01</id>
  6127. <title>New version 2014.12.01</title>
  6128. <link href="http://ytdl-org.github.io/youtube-dl" />
  6129. <content type="xhtml">
  6130. <div xmlns="http://www.w3.org/1999/xhtml">
  6131. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.01/">https://yt-dl.org/downloads/2014.12.01/</a>
  6132. </div>
  6133. </content>
  6134. <author>
  6135. <name>The youtube-dl maintainers</name>
  6136. </author>
  6137. <updated>2014-12-01T00:00:00Z</updated>
  6138. </entry>
  6139. <entry>
  6140. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.03</id>
  6141. <title>New version 2014.12.03</title>
  6142. <link href="http://ytdl-org.github.io/youtube-dl" />
  6143. <content type="xhtml">
  6144. <div xmlns="http://www.w3.org/1999/xhtml">
  6145. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.03/">https://yt-dl.org/downloads/2014.12.03/</a>
  6146. </div>
  6147. </content>
  6148. <author>
  6149. <name>The youtube-dl maintainers</name>
  6150. </author>
  6151. <updated>2014-12-03T00:00:00Z</updated>
  6152. </entry>
  6153. <entry>
  6154. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.04</id>
  6155. <title>New version 2014.12.04</title>
  6156. <link href="http://ytdl-org.github.io/youtube-dl" />
  6157. <content type="xhtml">
  6158. <div xmlns="http://www.w3.org/1999/xhtml">
  6159. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.04/">https://yt-dl.org/downloads/2014.12.04/</a>
  6160. </div>
  6161. </content>
  6162. <author>
  6163. <name>The youtube-dl maintainers</name>
  6164. </author>
  6165. <updated>2014-12-04T00:00:00Z</updated>
  6166. </entry>
  6167. <entry>
  6168. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.04.1</id>
  6169. <title>New version 2014.12.04.1</title>
  6170. <link href="http://ytdl-org.github.io/youtube-dl" />
  6171. <content type="xhtml">
  6172. <div xmlns="http://www.w3.org/1999/xhtml">
  6173. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.04.1/">https://yt-dl.org/downloads/2014.12.04.1/</a>
  6174. </div>
  6175. </content>
  6176. <author>
  6177. <name>The youtube-dl maintainers</name>
  6178. </author>
  6179. <updated>2014-12-04T00:00:01Z</updated>
  6180. </entry>
  6181. <entry>
  6182. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.04.2</id>
  6183. <title>New version 2014.12.04.2</title>
  6184. <link href="http://ytdl-org.github.io/youtube-dl" />
  6185. <content type="xhtml">
  6186. <div xmlns="http://www.w3.org/1999/xhtml">
  6187. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.04.2/">https://yt-dl.org/downloads/2014.12.04.2/</a>
  6188. </div>
  6189. </content>
  6190. <author>
  6191. <name>The youtube-dl maintainers</name>
  6192. </author>
  6193. <updated>2014-12-04T00:00:02Z</updated>
  6194. </entry>
  6195. <entry>
  6196. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.06</id>
  6197. <title>New version 2014.12.06</title>
  6198. <link href="http://ytdl-org.github.io/youtube-dl" />
  6199. <content type="xhtml">
  6200. <div xmlns="http://www.w3.org/1999/xhtml">
  6201. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.06/">https://yt-dl.org/downloads/2014.12.06/</a>
  6202. </div>
  6203. </content>
  6204. <author>
  6205. <name>The youtube-dl maintainers</name>
  6206. </author>
  6207. <updated>2014-12-06T00:00:00Z</updated>
  6208. </entry>
  6209. <entry>
  6210. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.06.1</id>
  6211. <title>New version 2014.12.06.1</title>
  6212. <link href="http://ytdl-org.github.io/youtube-dl" />
  6213. <content type="xhtml">
  6214. <div xmlns="http://www.w3.org/1999/xhtml">
  6215. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.06.1/">https://yt-dl.org/downloads/2014.12.06.1/</a>
  6216. </div>
  6217. </content>
  6218. <author>
  6219. <name>The youtube-dl maintainers</name>
  6220. </author>
  6221. <updated>2014-12-06T00:00:01Z</updated>
  6222. </entry>
  6223. <entry>
  6224. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.10</id>
  6225. <title>New version 2014.12.10</title>
  6226. <link href="http://ytdl-org.github.io/youtube-dl" />
  6227. <content type="xhtml">
  6228. <div xmlns="http://www.w3.org/1999/xhtml">
  6229. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.10/">https://yt-dl.org/downloads/2014.12.10/</a>
  6230. </div>
  6231. </content>
  6232. <author>
  6233. <name>The youtube-dl maintainers</name>
  6234. </author>
  6235. <updated>2014-12-10T00:00:00Z</updated>
  6236. </entry>
  6237. <entry>
  6238. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.10.1</id>
  6239. <title>New version 2014.12.10.1</title>
  6240. <link href="http://ytdl-org.github.io/youtube-dl" />
  6241. <content type="xhtml">
  6242. <div xmlns="http://www.w3.org/1999/xhtml">
  6243. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.10.1/">https://yt-dl.org/downloads/2014.12.10.1/</a>
  6244. </div>
  6245. </content>
  6246. <author>
  6247. <name>The youtube-dl maintainers</name>
  6248. </author>
  6249. <updated>2014-12-10T00:00:01Z</updated>
  6250. </entry>
  6251. <entry>
  6252. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.10.2</id>
  6253. <title>New version 2014.12.10.2</title>
  6254. <link href="http://ytdl-org.github.io/youtube-dl" />
  6255. <content type="xhtml">
  6256. <div xmlns="http://www.w3.org/1999/xhtml">
  6257. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.10.2/">https://yt-dl.org/downloads/2014.12.10.2/</a>
  6258. </div>
  6259. </content>
  6260. <author>
  6261. <name>The youtube-dl maintainers</name>
  6262. </author>
  6263. <updated>2014-12-10T00:00:02Z</updated>
  6264. </entry>
  6265. <entry>
  6266. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.10.3</id>
  6267. <title>New version 2014.12.10.3</title>
  6268. <link href="http://ytdl-org.github.io/youtube-dl" />
  6269. <content type="xhtml">
  6270. <div xmlns="http://www.w3.org/1999/xhtml">
  6271. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.10.3/">https://yt-dl.org/downloads/2014.12.10.3/</a>
  6272. </div>
  6273. </content>
  6274. <author>
  6275. <name>The youtube-dl maintainers</name>
  6276. </author>
  6277. <updated>2014-12-10T00:00:03Z</updated>
  6278. </entry>
  6279. <entry>
  6280. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.1</id>
  6281. <title>New version 2014.12.12.1</title>
  6282. <link href="http://ytdl-org.github.io/youtube-dl" />
  6283. <content type="xhtml">
  6284. <div xmlns="http://www.w3.org/1999/xhtml">
  6285. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.1/">https://yt-dl.org/downloads/2014.12.12.1/</a>
  6286. </div>
  6287. </content>
  6288. <author>
  6289. <name>The youtube-dl maintainers</name>
  6290. </author>
  6291. <updated>2014-12-12T00:00:01Z</updated>
  6292. </entry>
  6293. <entry>
  6294. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.2</id>
  6295. <title>New version 2014.12.12.2</title>
  6296. <link href="http://ytdl-org.github.io/youtube-dl" />
  6297. <content type="xhtml">
  6298. <div xmlns="http://www.w3.org/1999/xhtml">
  6299. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.2/">https://yt-dl.org/downloads/2014.12.12.2/</a>
  6300. </div>
  6301. </content>
  6302. <author>
  6303. <name>The youtube-dl maintainers</name>
  6304. </author>
  6305. <updated>2014-12-12T00:00:02Z</updated>
  6306. </entry>
  6307. <entry>
  6308. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.3</id>
  6309. <title>New version 2014.12.12.3</title>
  6310. <link href="http://ytdl-org.github.io/youtube-dl" />
  6311. <content type="xhtml">
  6312. <div xmlns="http://www.w3.org/1999/xhtml">
  6313. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.3/">https://yt-dl.org/downloads/2014.12.12.3/</a>
  6314. </div>
  6315. </content>
  6316. <author>
  6317. <name>The youtube-dl maintainers</name>
  6318. </author>
  6319. <updated>2014-12-12T00:00:03Z</updated>
  6320. </entry>
  6321. <entry>
  6322. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.4</id>
  6323. <title>New version 2014.12.12.4</title>
  6324. <link href="http://ytdl-org.github.io/youtube-dl" />
  6325. <content type="xhtml">
  6326. <div xmlns="http://www.w3.org/1999/xhtml">
  6327. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.4/">https://yt-dl.org/downloads/2014.12.12.4/</a>
  6328. </div>
  6329. </content>
  6330. <author>
  6331. <name>The youtube-dl maintainers</name>
  6332. </author>
  6333. <updated>2014-12-12T00:00:04Z</updated>
  6334. </entry>
  6335. <entry>
  6336. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.5</id>
  6337. <title>New version 2014.12.12.5</title>
  6338. <link href="http://ytdl-org.github.io/youtube-dl" />
  6339. <content type="xhtml">
  6340. <div xmlns="http://www.w3.org/1999/xhtml">
  6341. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.5/">https://yt-dl.org/downloads/2014.12.12.5/</a>
  6342. </div>
  6343. </content>
  6344. <author>
  6345. <name>The youtube-dl maintainers</name>
  6346. </author>
  6347. <updated>2014-12-12T00:00:05Z</updated>
  6348. </entry>
  6349. <entry>
  6350. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.12.7</id>
  6351. <title>New version 2014.12.12.7</title>
  6352. <link href="http://ytdl-org.github.io/youtube-dl" />
  6353. <content type="xhtml">
  6354. <div xmlns="http://www.w3.org/1999/xhtml">
  6355. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.12.7/">https://yt-dl.org/downloads/2014.12.12.7/</a>
  6356. </div>
  6357. </content>
  6358. <author>
  6359. <name>The youtube-dl maintainers</name>
  6360. </author>
  6361. <updated>2014-12-12T00:00:07Z</updated>
  6362. </entry>
  6363. <entry>
  6364. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.13</id>
  6365. <title>New version 2014.12.13</title>
  6366. <link href="http://ytdl-org.github.io/youtube-dl" />
  6367. <content type="xhtml">
  6368. <div xmlns="http://www.w3.org/1999/xhtml">
  6369. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.13/">https://yt-dl.org/downloads/2014.12.13/</a>
  6370. </div>
  6371. </content>
  6372. <author>
  6373. <name>The youtube-dl maintainers</name>
  6374. </author>
  6375. <updated>2014-12-13T00:00:00Z</updated>
  6376. </entry>
  6377. <entry>
  6378. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.13.1</id>
  6379. <title>New version 2014.12.13.1</title>
  6380. <link href="http://ytdl-org.github.io/youtube-dl" />
  6381. <content type="xhtml">
  6382. <div xmlns="http://www.w3.org/1999/xhtml">
  6383. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.13.1/">https://yt-dl.org/downloads/2014.12.13.1/</a>
  6384. </div>
  6385. </content>
  6386. <author>
  6387. <name>The youtube-dl maintainers</name>
  6388. </author>
  6389. <updated>2014-12-13T00:00:01Z</updated>
  6390. </entry>
  6391. <entry>
  6392. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.14</id>
  6393. <title>New version 2014.12.14</title>
  6394. <link href="http://ytdl-org.github.io/youtube-dl" />
  6395. <content type="xhtml">
  6396. <div xmlns="http://www.w3.org/1999/xhtml">
  6397. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.14/">https://yt-dl.org/downloads/2014.12.14/</a>
  6398. </div>
  6399. </content>
  6400. <author>
  6401. <name>The youtube-dl maintainers</name>
  6402. </author>
  6403. <updated>2014-12-14T00:00:00Z</updated>
  6404. </entry>
  6405. <entry>
  6406. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.15</id>
  6407. <title>New version 2014.12.15</title>
  6408. <link href="http://ytdl-org.github.io/youtube-dl" />
  6409. <content type="xhtml">
  6410. <div xmlns="http://www.w3.org/1999/xhtml">
  6411. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.15/">https://yt-dl.org/downloads/2014.12.15/</a>
  6412. </div>
  6413. </content>
  6414. <author>
  6415. <name>The youtube-dl maintainers</name>
  6416. </author>
  6417. <updated>2014-12-15T00:00:00Z</updated>
  6418. </entry>
  6419. <entry>
  6420. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.16</id>
  6421. <title>New version 2014.12.16</title>
  6422. <link href="http://ytdl-org.github.io/youtube-dl" />
  6423. <content type="xhtml">
  6424. <div xmlns="http://www.w3.org/1999/xhtml">
  6425. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.16/">https://yt-dl.org/downloads/2014.12.16/</a>
  6426. </div>
  6427. </content>
  6428. <author>
  6429. <name>The youtube-dl maintainers</name>
  6430. </author>
  6431. <updated>2014-12-16T00:00:00Z</updated>
  6432. </entry>
  6433. <entry>
  6434. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.16.1</id>
  6435. <title>New version 2014.12.16.1</title>
  6436. <link href="http://ytdl-org.github.io/youtube-dl" />
  6437. <content type="xhtml">
  6438. <div xmlns="http://www.w3.org/1999/xhtml">
  6439. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.16.1/">https://yt-dl.org/downloads/2014.12.16.1/</a>
  6440. </div>
  6441. </content>
  6442. <author>
  6443. <name>The youtube-dl maintainers</name>
  6444. </author>
  6445. <updated>2014-12-16T00:00:01Z</updated>
  6446. </entry>
  6447. <entry>
  6448. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.16.2</id>
  6449. <title>New version 2014.12.16.2</title>
  6450. <link href="http://ytdl-org.github.io/youtube-dl" />
  6451. <content type="xhtml">
  6452. <div xmlns="http://www.w3.org/1999/xhtml">
  6453. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.16.2/">https://yt-dl.org/downloads/2014.12.16.2/</a>
  6454. </div>
  6455. </content>
  6456. <author>
  6457. <name>The youtube-dl maintainers</name>
  6458. </author>
  6459. <updated>2014-12-16T00:00:02Z</updated>
  6460. </entry>
  6461. <entry>
  6462. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.17</id>
  6463. <title>New version 2014.12.17</title>
  6464. <link href="http://ytdl-org.github.io/youtube-dl" />
  6465. <content type="xhtml">
  6466. <div xmlns="http://www.w3.org/1999/xhtml">
  6467. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.17/">https://yt-dl.org/downloads/2014.12.17/</a>
  6468. </div>
  6469. </content>
  6470. <author>
  6471. <name>The youtube-dl maintainers</name>
  6472. </author>
  6473. <updated>2014-12-17T00:00:00Z</updated>
  6474. </entry>
  6475. <entry>
  6476. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.17.1</id>
  6477. <title>New version 2014.12.17.1</title>
  6478. <link href="http://ytdl-org.github.io/youtube-dl" />
  6479. <content type="xhtml">
  6480. <div xmlns="http://www.w3.org/1999/xhtml">
  6481. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.17.1/">https://yt-dl.org/downloads/2014.12.17.1/</a>
  6482. </div>
  6483. </content>
  6484. <author>
  6485. <name>The youtube-dl maintainers</name>
  6486. </author>
  6487. <updated>2014-12-17T00:00:01Z</updated>
  6488. </entry>
  6489. <entry>
  6490. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2014.12.17.2</id>
  6491. <title>New version 2014.12.17.2</title>
  6492. <link href="http://ytdl-org.github.io/youtube-dl" />
  6493. <content type="xhtml">
  6494. <div xmlns="http://www.w3.org/1999/xhtml">
  6495. Downloads available at <a href="https://yt-dl.org/downloads/2014.12.17.2/">https://yt-dl.org/downloads/2014.12.17.2/</a>
  6496. </div>
  6497. </content>
  6498. <author>
  6499. <name>The youtube-dl maintainers</name>
  6500. </author>
  6501. <updated>2014-12-17T00:00:02Z</updated>
  6502. </entry>
  6503. <entry>
  6504. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.01</id>
  6505. <title>New version 2015.01.01</title>
  6506. <link href="http://ytdl-org.github.io/youtube-dl" />
  6507. <content type="xhtml">
  6508. <div xmlns="http://www.w3.org/1999/xhtml">
  6509. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.01/">https://yt-dl.org/downloads/2015.01.01/</a>
  6510. </div>
  6511. </content>
  6512. <author>
  6513. <name>The youtube-dl maintainers</name>
  6514. </author>
  6515. <updated>2015-01-01T00:00:00Z</updated>
  6516. </entry>
  6517. <entry>
  6518. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.02</id>
  6519. <title>New version 2015.01.02</title>
  6520. <link href="http://ytdl-org.github.io/youtube-dl" />
  6521. <content type="xhtml">
  6522. <div xmlns="http://www.w3.org/1999/xhtml">
  6523. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.02/">https://yt-dl.org/downloads/2015.01.02/</a>
  6524. </div>
  6525. </content>
  6526. <author>
  6527. <name>The youtube-dl maintainers</name>
  6528. </author>
  6529. <updated>2015-01-02T00:00:00Z</updated>
  6530. </entry>
  6531. <entry>
  6532. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.03</id>
  6533. <title>New version 2015.01.03</title>
  6534. <link href="http://ytdl-org.github.io/youtube-dl" />
  6535. <content type="xhtml">
  6536. <div xmlns="http://www.w3.org/1999/xhtml">
  6537. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.03/">https://yt-dl.org/downloads/2015.01.03/</a>
  6538. </div>
  6539. </content>
  6540. <author>
  6541. <name>The youtube-dl maintainers</name>
  6542. </author>
  6543. <updated>2015-01-03T00:00:00Z</updated>
  6544. </entry>
  6545. <entry>
  6546. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.04</id>
  6547. <title>New version 2015.01.04</title>
  6548. <link href="http://ytdl-org.github.io/youtube-dl" />
  6549. <content type="xhtml">
  6550. <div xmlns="http://www.w3.org/1999/xhtml">
  6551. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.04/">https://yt-dl.org/downloads/2015.01.04/</a>
  6552. </div>
  6553. </content>
  6554. <author>
  6555. <name>The youtube-dl maintainers</name>
  6556. </author>
  6557. <updated>2015-01-04T00:00:00Z</updated>
  6558. </entry>
  6559. <entry>
  6560. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.05</id>
  6561. <title>New version 2015.01.05</title>
  6562. <link href="http://ytdl-org.github.io/youtube-dl" />
  6563. <content type="xhtml">
  6564. <div xmlns="http://www.w3.org/1999/xhtml">
  6565. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.05/">https://yt-dl.org/downloads/2015.01.05/</a>
  6566. </div>
  6567. </content>
  6568. <author>
  6569. <name>The youtube-dl maintainers</name>
  6570. </author>
  6571. <updated>2015-01-05T00:00:00Z</updated>
  6572. </entry>
  6573. <entry>
  6574. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.05.1</id>
  6575. <title>New version 2015.01.05.1</title>
  6576. <link href="http://ytdl-org.github.io/youtube-dl" />
  6577. <content type="xhtml">
  6578. <div xmlns="http://www.w3.org/1999/xhtml">
  6579. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.05.1/">https://yt-dl.org/downloads/2015.01.05.1/</a>
  6580. </div>
  6581. </content>
  6582. <author>
  6583. <name>The youtube-dl maintainers</name>
  6584. </author>
  6585. <updated>2015-01-05T00:00:01Z</updated>
  6586. </entry>
  6587. <entry>
  6588. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.07</id>
  6589. <title>New version 2015.01.07</title>
  6590. <link href="http://ytdl-org.github.io/youtube-dl" />
  6591. <content type="xhtml">
  6592. <div xmlns="http://www.w3.org/1999/xhtml">
  6593. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.07/">https://yt-dl.org/downloads/2015.01.07/</a>
  6594. </div>
  6595. </content>
  6596. <author>
  6597. <name>The youtube-dl maintainers</name>
  6598. </author>
  6599. <updated>2015-01-07T00:00:00Z</updated>
  6600. </entry>
  6601. <entry>
  6602. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.07.2</id>
  6603. <title>New version 2015.01.07.2</title>
  6604. <link href="http://ytdl-org.github.io/youtube-dl" />
  6605. <content type="xhtml">
  6606. <div xmlns="http://www.w3.org/1999/xhtml">
  6607. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.07.2/">https://yt-dl.org/downloads/2015.01.07.2/</a>
  6608. </div>
  6609. </content>
  6610. <author>
  6611. <name>The youtube-dl maintainers</name>
  6612. </author>
  6613. <updated>2015-01-07T00:00:02Z</updated>
  6614. </entry>
  6615. <entry>
  6616. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.08</id>
  6617. <title>New version 2015.01.08</title>
  6618. <link href="http://ytdl-org.github.io/youtube-dl" />
  6619. <content type="xhtml">
  6620. <div xmlns="http://www.w3.org/1999/xhtml">
  6621. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.08/">https://yt-dl.org/downloads/2015.01.08/</a>
  6622. </div>
  6623. </content>
  6624. <author>
  6625. <name>The youtube-dl maintainers</name>
  6626. </author>
  6627. <updated>2015-01-08T00:00:00Z</updated>
  6628. </entry>
  6629. <entry>
  6630. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.09</id>
  6631. <title>New version 2015.01.09</title>
  6632. <link href="http://ytdl-org.github.io/youtube-dl" />
  6633. <content type="xhtml">
  6634. <div xmlns="http://www.w3.org/1999/xhtml">
  6635. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.09/">https://yt-dl.org/downloads/2015.01.09/</a>
  6636. </div>
  6637. </content>
  6638. <author>
  6639. <name>The youtube-dl maintainers</name>
  6640. </author>
  6641. <updated>2015-01-09T00:00:00Z</updated>
  6642. </entry>
  6643. <entry>
  6644. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.09.1</id>
  6645. <title>New version 2015.01.09.1</title>
  6646. <link href="http://ytdl-org.github.io/youtube-dl" />
  6647. <content type="xhtml">
  6648. <div xmlns="http://www.w3.org/1999/xhtml">
  6649. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.09.1/">https://yt-dl.org/downloads/2015.01.09.1/</a>
  6650. </div>
  6651. </content>
  6652. <author>
  6653. <name>The youtube-dl maintainers</name>
  6654. </author>
  6655. <updated>2015-01-09T00:00:01Z</updated>
  6656. </entry>
  6657. <entry>
  6658. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.09.2</id>
  6659. <title>New version 2015.01.09.2</title>
  6660. <link href="http://ytdl-org.github.io/youtube-dl" />
  6661. <content type="xhtml">
  6662. <div xmlns="http://www.w3.org/1999/xhtml">
  6663. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.09.2/">https://yt-dl.org/downloads/2015.01.09.2/</a>
  6664. </div>
  6665. </content>
  6666. <author>
  6667. <name>The youtube-dl maintainers</name>
  6668. </author>
  6669. <updated>2015-01-09T00:00:02Z</updated>
  6670. </entry>
  6671. <entry>
  6672. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.10</id>
  6673. <title>New version 2015.01.10</title>
  6674. <link href="http://ytdl-org.github.io/youtube-dl" />
  6675. <content type="xhtml">
  6676. <div xmlns="http://www.w3.org/1999/xhtml">
  6677. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.10/">https://yt-dl.org/downloads/2015.01.10/</a>
  6678. </div>
  6679. </content>
  6680. <author>
  6681. <name>The youtube-dl maintainers</name>
  6682. </author>
  6683. <updated>2015-01-10T00:00:00Z</updated>
  6684. </entry>
  6685. <entry>
  6686. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.10.1</id>
  6687. <title>New version 2015.01.10.1</title>
  6688. <link href="http://ytdl-org.github.io/youtube-dl" />
  6689. <content type="xhtml">
  6690. <div xmlns="http://www.w3.org/1999/xhtml">
  6691. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.10.1/">https://yt-dl.org/downloads/2015.01.10.1/</a>
  6692. </div>
  6693. </content>
  6694. <author>
  6695. <name>The youtube-dl maintainers</name>
  6696. </author>
  6697. <updated>2015-01-10T00:00:01Z</updated>
  6698. </entry>
  6699. <entry>
  6700. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.10.2</id>
  6701. <title>New version 2015.01.10.2</title>
  6702. <link href="http://ytdl-org.github.io/youtube-dl" />
  6703. <content type="xhtml">
  6704. <div xmlns="http://www.w3.org/1999/xhtml">
  6705. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.10.2/">https://yt-dl.org/downloads/2015.01.10.2/</a>
  6706. </div>
  6707. </content>
  6708. <author>
  6709. <name>The youtube-dl maintainers</name>
  6710. </author>
  6711. <updated>2015-01-10T00:00:02Z</updated>
  6712. </entry>
  6713. <entry>
  6714. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.11</id>
  6715. <title>New version 2015.01.11</title>
  6716. <link href="http://ytdl-org.github.io/youtube-dl" />
  6717. <content type="xhtml">
  6718. <div xmlns="http://www.w3.org/1999/xhtml">
  6719. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.11/">https://yt-dl.org/downloads/2015.01.11/</a>
  6720. </div>
  6721. </content>
  6722. <author>
  6723. <name>The youtube-dl maintainers</name>
  6724. </author>
  6725. <updated>2015-01-11T00:00:00Z</updated>
  6726. </entry>
  6727. <entry>
  6728. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.15</id>
  6729. <title>New version 2015.01.15</title>
  6730. <link href="http://ytdl-org.github.io/youtube-dl" />
  6731. <content type="xhtml">
  6732. <div xmlns="http://www.w3.org/1999/xhtml">
  6733. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.15/">https://yt-dl.org/downloads/2015.01.15/</a>
  6734. </div>
  6735. </content>
  6736. <author>
  6737. <name>The youtube-dl maintainers</name>
  6738. </author>
  6739. <updated>2015-01-15T00:00:00Z</updated>
  6740. </entry>
  6741. <entry>
  6742. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.15.1</id>
  6743. <title>New version 2015.01.15.1</title>
  6744. <link href="http://ytdl-org.github.io/youtube-dl" />
  6745. <content type="xhtml">
  6746. <div xmlns="http://www.w3.org/1999/xhtml">
  6747. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.15.1/">https://yt-dl.org/downloads/2015.01.15.1/</a>
  6748. </div>
  6749. </content>
  6750. <author>
  6751. <name>The youtube-dl maintainers</name>
  6752. </author>
  6753. <updated>2015-01-15T00:00:01Z</updated>
  6754. </entry>
  6755. <entry>
  6756. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.16</id>
  6757. <title>New version 2015.01.16</title>
  6758. <link href="http://ytdl-org.github.io/youtube-dl" />
  6759. <content type="xhtml">
  6760. <div xmlns="http://www.w3.org/1999/xhtml">
  6761. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.16/">https://yt-dl.org/downloads/2015.01.16/</a>
  6762. </div>
  6763. </content>
  6764. <author>
  6765. <name>The youtube-dl maintainers</name>
  6766. </author>
  6767. <updated>2015-01-16T00:00:00Z</updated>
  6768. </entry>
  6769. <entry>
  6770. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.22</id>
  6771. <title>New version 2015.01.22</title>
  6772. <link href="http://ytdl-org.github.io/youtube-dl" />
  6773. <content type="xhtml">
  6774. <div xmlns="http://www.w3.org/1999/xhtml">
  6775. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.22/">https://yt-dl.org/downloads/2015.01.22/</a>
  6776. </div>
  6777. </content>
  6778. <author>
  6779. <name>The youtube-dl maintainers</name>
  6780. </author>
  6781. <updated>2015-01-22T00:00:00Z</updated>
  6782. </entry>
  6783. <entry>
  6784. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.23</id>
  6785. <title>New version 2015.01.23</title>
  6786. <link href="http://ytdl-org.github.io/youtube-dl" />
  6787. <content type="xhtml">
  6788. <div xmlns="http://www.w3.org/1999/xhtml">
  6789. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.23/">https://yt-dl.org/downloads/2015.01.23/</a>
  6790. </div>
  6791. </content>
  6792. <author>
  6793. <name>The youtube-dl maintainers</name>
  6794. </author>
  6795. <updated>2015-01-23T00:00:00Z</updated>
  6796. </entry>
  6797. <entry>
  6798. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.23.1</id>
  6799. <title>New version 2015.01.23.1</title>
  6800. <link href="http://ytdl-org.github.io/youtube-dl" />
  6801. <content type="xhtml">
  6802. <div xmlns="http://www.w3.org/1999/xhtml">
  6803. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.23.1/">https://yt-dl.org/downloads/2015.01.23.1/</a>
  6804. </div>
  6805. </content>
  6806. <author>
  6807. <name>The youtube-dl maintainers</name>
  6808. </author>
  6809. <updated>2015-01-23T00:00:01Z</updated>
  6810. </entry>
  6811. <entry>
  6812. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.23.2</id>
  6813. <title>New version 2015.01.23.2</title>
  6814. <link href="http://ytdl-org.github.io/youtube-dl" />
  6815. <content type="xhtml">
  6816. <div xmlns="http://www.w3.org/1999/xhtml">
  6817. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.23.2/">https://yt-dl.org/downloads/2015.01.23.2/</a>
  6818. </div>
  6819. </content>
  6820. <author>
  6821. <name>The youtube-dl maintainers</name>
  6822. </author>
  6823. <updated>2015-01-23T00:00:02Z</updated>
  6824. </entry>
  6825. <entry>
  6826. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.23.3</id>
  6827. <title>New version 2015.01.23.3</title>
  6828. <link href="http://ytdl-org.github.io/youtube-dl" />
  6829. <content type="xhtml">
  6830. <div xmlns="http://www.w3.org/1999/xhtml">
  6831. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.23.3/">https://yt-dl.org/downloads/2015.01.23.3/</a>
  6832. </div>
  6833. </content>
  6834. <author>
  6835. <name>The youtube-dl maintainers</name>
  6836. </author>
  6837. <updated>2015-01-23T00:00:03Z</updated>
  6838. </entry>
  6839. <entry>
  6840. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.23.4</id>
  6841. <title>New version 2015.01.23.4</title>
  6842. <link href="http://ytdl-org.github.io/youtube-dl" />
  6843. <content type="xhtml">
  6844. <div xmlns="http://www.w3.org/1999/xhtml">
  6845. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.23.4/">https://yt-dl.org/downloads/2015.01.23.4/</a>
  6846. </div>
  6847. </content>
  6848. <author>
  6849. <name>The youtube-dl maintainers</name>
  6850. </author>
  6851. <updated>2015-01-23T00:00:04Z</updated>
  6852. </entry>
  6853. <entry>
  6854. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.25</id>
  6855. <title>New version 2015.01.25</title>
  6856. <link href="http://ytdl-org.github.io/youtube-dl" />
  6857. <content type="xhtml">
  6858. <div xmlns="http://www.w3.org/1999/xhtml">
  6859. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.25/">https://yt-dl.org/downloads/2015.01.25/</a>
  6860. </div>
  6861. </content>
  6862. <author>
  6863. <name>The youtube-dl maintainers</name>
  6864. </author>
  6865. <updated>2015-01-25T00:00:00Z</updated>
  6866. </entry>
  6867. <entry>
  6868. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.30.1</id>
  6869. <title>New version 2015.01.30.1</title>
  6870. <link href="http://ytdl-org.github.io/youtube-dl" />
  6871. <content type="xhtml">
  6872. <div xmlns="http://www.w3.org/1999/xhtml">
  6873. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.30.1/">https://yt-dl.org/downloads/2015.01.30.1/</a>
  6874. </div>
  6875. </content>
  6876. <author>
  6877. <name>The youtube-dl maintainers</name>
  6878. </author>
  6879. <updated>2015-01-30T00:00:01Z</updated>
  6880. </entry>
  6881. <entry>
  6882. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.01.30.2</id>
  6883. <title>New version 2015.01.30.2</title>
  6884. <link href="http://ytdl-org.github.io/youtube-dl" />
  6885. <content type="xhtml">
  6886. <div xmlns="http://www.w3.org/1999/xhtml">
  6887. Downloads available at <a href="https://yt-dl.org/downloads/2015.01.30.2/">https://yt-dl.org/downloads/2015.01.30.2/</a>
  6888. </div>
  6889. </content>
  6890. <author>
  6891. <name>The youtube-dl maintainers</name>
  6892. </author>
  6893. <updated>2015-01-30T00:00:02Z</updated>
  6894. </entry>
  6895. <entry>
  6896. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.02</id>
  6897. <title>New version 2015.02.02</title>
  6898. <link href="http://ytdl-org.github.io/youtube-dl" />
  6899. <content type="xhtml">
  6900. <div xmlns="http://www.w3.org/1999/xhtml">
  6901. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.02/">https://yt-dl.org/downloads/2015.02.02/</a>
  6902. </div>
  6903. </content>
  6904. <author>
  6905. <name>The youtube-dl maintainers</name>
  6906. </author>
  6907. <updated>2015-02-02T00:00:00Z</updated>
  6908. </entry>
  6909. <entry>
  6910. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.02.2</id>
  6911. <title>New version 2015.02.02.2</title>
  6912. <link href="http://ytdl-org.github.io/youtube-dl" />
  6913. <content type="xhtml">
  6914. <div xmlns="http://www.w3.org/1999/xhtml">
  6915. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.02.2/">https://yt-dl.org/downloads/2015.02.02.2/</a>
  6916. </div>
  6917. </content>
  6918. <author>
  6919. <name>The youtube-dl maintainers</name>
  6920. </author>
  6921. <updated>2015-02-02T00:00:02Z</updated>
  6922. </entry>
  6923. <entry>
  6924. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.02.4</id>
  6925. <title>New version 2015.02.02.4</title>
  6926. <link href="http://ytdl-org.github.io/youtube-dl" />
  6927. <content type="xhtml">
  6928. <div xmlns="http://www.w3.org/1999/xhtml">
  6929. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.02.4/">https://yt-dl.org/downloads/2015.02.02.4/</a>
  6930. </div>
  6931. </content>
  6932. <author>
  6933. <name>The youtube-dl maintainers</name>
  6934. </author>
  6935. <updated>2015-02-02T00:00:04Z</updated>
  6936. </entry>
  6937. <entry>
  6938. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.02.5</id>
  6939. <title>New version 2015.02.02.5</title>
  6940. <link href="http://ytdl-org.github.io/youtube-dl" />
  6941. <content type="xhtml">
  6942. <div xmlns="http://www.w3.org/1999/xhtml">
  6943. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.02.5/">https://yt-dl.org/downloads/2015.02.02.5/</a>
  6944. </div>
  6945. </content>
  6946. <author>
  6947. <name>The youtube-dl maintainers</name>
  6948. </author>
  6949. <updated>2015-02-02T00:00:05Z</updated>
  6950. </entry>
  6951. <entry>
  6952. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.03</id>
  6953. <title>New version 2015.02.03</title>
  6954. <link href="http://ytdl-org.github.io/youtube-dl" />
  6955. <content type="xhtml">
  6956. <div xmlns="http://www.w3.org/1999/xhtml">
  6957. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.03/">https://yt-dl.org/downloads/2015.02.03/</a>
  6958. </div>
  6959. </content>
  6960. <author>
  6961. <name>The youtube-dl maintainers</name>
  6962. </author>
  6963. <updated>2015-02-03T00:00:00Z</updated>
  6964. </entry>
  6965. <entry>
  6966. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.03.1</id>
  6967. <title>New version 2015.02.03.1</title>
  6968. <link href="http://ytdl-org.github.io/youtube-dl" />
  6969. <content type="xhtml">
  6970. <div xmlns="http://www.w3.org/1999/xhtml">
  6971. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.03.1/">https://yt-dl.org/downloads/2015.02.03.1/</a>
  6972. </div>
  6973. </content>
  6974. <author>
  6975. <name>The youtube-dl maintainers</name>
  6976. </author>
  6977. <updated>2015-02-03T00:00:01Z</updated>
  6978. </entry>
  6979. <entry>
  6980. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.04</id>
  6981. <title>New version 2015.02.04</title>
  6982. <link href="http://ytdl-org.github.io/youtube-dl" />
  6983. <content type="xhtml">
  6984. <div xmlns="http://www.w3.org/1999/xhtml">
  6985. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.04/">https://yt-dl.org/downloads/2015.02.04/</a>
  6986. </div>
  6987. </content>
  6988. <author>
  6989. <name>The youtube-dl maintainers</name>
  6990. </author>
  6991. <updated>2015-02-04T00:00:00Z</updated>
  6992. </entry>
  6993. <entry>
  6994. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.06</id>
  6995. <title>New version 2015.02.06</title>
  6996. <link href="http://ytdl-org.github.io/youtube-dl" />
  6997. <content type="xhtml">
  6998. <div xmlns="http://www.w3.org/1999/xhtml">
  6999. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.06/">https://yt-dl.org/downloads/2015.02.06/</a>
  7000. </div>
  7001. </content>
  7002. <author>
  7003. <name>The youtube-dl maintainers</name>
  7004. </author>
  7005. <updated>2015-02-06T00:00:00Z</updated>
  7006. </entry>
  7007. <entry>
  7008. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.09</id>
  7009. <title>New version 2015.02.09</title>
  7010. <link href="http://ytdl-org.github.io/youtube-dl" />
  7011. <content type="xhtml">
  7012. <div xmlns="http://www.w3.org/1999/xhtml">
  7013. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.09/">https://yt-dl.org/downloads/2015.02.09/</a>
  7014. </div>
  7015. </content>
  7016. <author>
  7017. <name>The youtube-dl maintainers</name>
  7018. </author>
  7019. <updated>2015-02-09T00:00:00Z</updated>
  7020. </entry>
  7021. <entry>
  7022. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.09.1</id>
  7023. <title>New version 2015.02.09.1</title>
  7024. <link href="http://ytdl-org.github.io/youtube-dl" />
  7025. <content type="xhtml">
  7026. <div xmlns="http://www.w3.org/1999/xhtml">
  7027. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.09.1/">https://yt-dl.org/downloads/2015.02.09.1/</a>
  7028. </div>
  7029. </content>
  7030. <author>
  7031. <name>The youtube-dl maintainers</name>
  7032. </author>
  7033. <updated>2015-02-09T00:00:01Z</updated>
  7034. </entry>
  7035. <entry>
  7036. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.09.2</id>
  7037. <title>New version 2015.02.09.2</title>
  7038. <link href="http://ytdl-org.github.io/youtube-dl" />
  7039. <content type="xhtml">
  7040. <div xmlns="http://www.w3.org/1999/xhtml">
  7041. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.09.2/">https://yt-dl.org/downloads/2015.02.09.2/</a>
  7042. </div>
  7043. </content>
  7044. <author>
  7045. <name>The youtube-dl maintainers</name>
  7046. </author>
  7047. <updated>2015-02-09T00:00:02Z</updated>
  7048. </entry>
  7049. <entry>
  7050. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.09.3</id>
  7051. <title>New version 2015.02.09.3</title>
  7052. <link href="http://ytdl-org.github.io/youtube-dl" />
  7053. <content type="xhtml">
  7054. <div xmlns="http://www.w3.org/1999/xhtml">
  7055. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.09.3/">https://yt-dl.org/downloads/2015.02.09.3/</a>
  7056. </div>
  7057. </content>
  7058. <author>
  7059. <name>The youtube-dl maintainers</name>
  7060. </author>
  7061. <updated>2015-02-09T00:00:03Z</updated>
  7062. </entry>
  7063. <entry>
  7064. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10</id>
  7065. <title>New version 2015.02.10</title>
  7066. <link href="http://ytdl-org.github.io/youtube-dl" />
  7067. <content type="xhtml">
  7068. <div xmlns="http://www.w3.org/1999/xhtml">
  7069. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10/">https://yt-dl.org/downloads/2015.02.10/</a>
  7070. </div>
  7071. </content>
  7072. <author>
  7073. <name>The youtube-dl maintainers</name>
  7074. </author>
  7075. <updated>2015-02-10T00:00:00Z</updated>
  7076. </entry>
  7077. <entry>
  7078. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10.1</id>
  7079. <title>New version 2015.02.10.1</title>
  7080. <link href="http://ytdl-org.github.io/youtube-dl" />
  7081. <content type="xhtml">
  7082. <div xmlns="http://www.w3.org/1999/xhtml">
  7083. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10.1/">https://yt-dl.org/downloads/2015.02.10.1/</a>
  7084. </div>
  7085. </content>
  7086. <author>
  7087. <name>The youtube-dl maintainers</name>
  7088. </author>
  7089. <updated>2015-02-10T00:00:01Z</updated>
  7090. </entry>
  7091. <entry>
  7092. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10.2</id>
  7093. <title>New version 2015.02.10.2</title>
  7094. <link href="http://ytdl-org.github.io/youtube-dl" />
  7095. <content type="xhtml">
  7096. <div xmlns="http://www.w3.org/1999/xhtml">
  7097. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10.2/">https://yt-dl.org/downloads/2015.02.10.2/</a>
  7098. </div>
  7099. </content>
  7100. <author>
  7101. <name>The youtube-dl maintainers</name>
  7102. </author>
  7103. <updated>2015-02-10T00:00:02Z</updated>
  7104. </entry>
  7105. <entry>
  7106. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10.3</id>
  7107. <title>New version 2015.02.10.3</title>
  7108. <link href="http://ytdl-org.github.io/youtube-dl" />
  7109. <content type="xhtml">
  7110. <div xmlns="http://www.w3.org/1999/xhtml">
  7111. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10.3/">https://yt-dl.org/downloads/2015.02.10.3/</a>
  7112. </div>
  7113. </content>
  7114. <author>
  7115. <name>The youtube-dl maintainers</name>
  7116. </author>
  7117. <updated>2015-02-10T00:00:03Z</updated>
  7118. </entry>
  7119. <entry>
  7120. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10.4</id>
  7121. <title>New version 2015.02.10.4</title>
  7122. <link href="http://ytdl-org.github.io/youtube-dl" />
  7123. <content type="xhtml">
  7124. <div xmlns="http://www.w3.org/1999/xhtml">
  7125. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10.4/">https://yt-dl.org/downloads/2015.02.10.4/</a>
  7126. </div>
  7127. </content>
  7128. <author>
  7129. <name>The youtube-dl maintainers</name>
  7130. </author>
  7131. <updated>2015-02-10T00:00:04Z</updated>
  7132. </entry>
  7133. <entry>
  7134. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.10.5</id>
  7135. <title>New version 2015.02.10.5</title>
  7136. <link href="http://ytdl-org.github.io/youtube-dl" />
  7137. <content type="xhtml">
  7138. <div xmlns="http://www.w3.org/1999/xhtml">
  7139. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.10.5/">https://yt-dl.org/downloads/2015.02.10.5/</a>
  7140. </div>
  7141. </content>
  7142. <author>
  7143. <name>The youtube-dl maintainers</name>
  7144. </author>
  7145. <updated>2015-02-10T00:00:05Z</updated>
  7146. </entry>
  7147. <entry>
  7148. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.11</id>
  7149. <title>New version 2015.02.11</title>
  7150. <link href="http://ytdl-org.github.io/youtube-dl" />
  7151. <content type="xhtml">
  7152. <div xmlns="http://www.w3.org/1999/xhtml">
  7153. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.11/">https://yt-dl.org/downloads/2015.02.11/</a>
  7154. </div>
  7155. </content>
  7156. <author>
  7157. <name>The youtube-dl maintainers</name>
  7158. </author>
  7159. <updated>2015-02-11T00:00:00Z</updated>
  7160. </entry>
  7161. <entry>
  7162. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.16</id>
  7163. <title>New version 2015.02.16</title>
  7164. <link href="http://ytdl-org.github.io/youtube-dl" />
  7165. <content type="xhtml">
  7166. <div xmlns="http://www.w3.org/1999/xhtml">
  7167. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.16/">https://yt-dl.org/downloads/2015.02.16/</a>
  7168. </div>
  7169. </content>
  7170. <author>
  7171. <name>The youtube-dl maintainers</name>
  7172. </author>
  7173. <updated>2015-02-16T00:00:00Z</updated>
  7174. </entry>
  7175. <entry>
  7176. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.16.1</id>
  7177. <title>New version 2015.02.16.1</title>
  7178. <link href="http://ytdl-org.github.io/youtube-dl" />
  7179. <content type="xhtml">
  7180. <div xmlns="http://www.w3.org/1999/xhtml">
  7181. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.16.1/">https://yt-dl.org/downloads/2015.02.16.1/</a>
  7182. </div>
  7183. </content>
  7184. <author>
  7185. <name>The youtube-dl maintainers</name>
  7186. </author>
  7187. <updated>2015-02-16T00:00:01Z</updated>
  7188. </entry>
  7189. <entry>
  7190. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.17</id>
  7191. <title>New version 2015.02.17</title>
  7192. <link href="http://ytdl-org.github.io/youtube-dl" />
  7193. <content type="xhtml">
  7194. <div xmlns="http://www.w3.org/1999/xhtml">
  7195. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.17/">https://yt-dl.org/downloads/2015.02.17/</a>
  7196. </div>
  7197. </content>
  7198. <author>
  7199. <name>The youtube-dl maintainers</name>
  7200. </author>
  7201. <updated>2015-02-17T00:00:00Z</updated>
  7202. </entry>
  7203. <entry>
  7204. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.17.2</id>
  7205. <title>New version 2015.02.17.2</title>
  7206. <link href="http://ytdl-org.github.io/youtube-dl" />
  7207. <content type="xhtml">
  7208. <div xmlns="http://www.w3.org/1999/xhtml">
  7209. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.17.2/">https://yt-dl.org/downloads/2015.02.17.2/</a>
  7210. </div>
  7211. </content>
  7212. <author>
  7213. <name>The youtube-dl maintainers</name>
  7214. </author>
  7215. <updated>2015-02-17T00:00:02Z</updated>
  7216. </entry>
  7217. <entry>
  7218. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.18</id>
  7219. <title>New version 2015.02.18</title>
  7220. <link href="http://ytdl-org.github.io/youtube-dl" />
  7221. <content type="xhtml">
  7222. <div xmlns="http://www.w3.org/1999/xhtml">
  7223. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.18/">https://yt-dl.org/downloads/2015.02.18/</a>
  7224. </div>
  7225. </content>
  7226. <author>
  7227. <name>The youtube-dl maintainers</name>
  7228. </author>
  7229. <updated>2015-02-18T00:00:00Z</updated>
  7230. </entry>
  7231. <entry>
  7232. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.18.1</id>
  7233. <title>New version 2015.02.18.1</title>
  7234. <link href="http://ytdl-org.github.io/youtube-dl" />
  7235. <content type="xhtml">
  7236. <div xmlns="http://www.w3.org/1999/xhtml">
  7237. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.18.1/">https://yt-dl.org/downloads/2015.02.18.1/</a>
  7238. </div>
  7239. </content>
  7240. <author>
  7241. <name>The youtube-dl maintainers</name>
  7242. </author>
  7243. <updated>2015-02-18T00:00:01Z</updated>
  7244. </entry>
  7245. <entry>
  7246. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.19</id>
  7247. <title>New version 2015.02.19</title>
  7248. <link href="http://ytdl-org.github.io/youtube-dl" />
  7249. <content type="xhtml">
  7250. <div xmlns="http://www.w3.org/1999/xhtml">
  7251. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.19/">https://yt-dl.org/downloads/2015.02.19/</a>
  7252. </div>
  7253. </content>
  7254. <author>
  7255. <name>The youtube-dl maintainers</name>
  7256. </author>
  7257. <updated>2015-02-19T00:00:00Z</updated>
  7258. </entry>
  7259. <entry>
  7260. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.19.1</id>
  7261. <title>New version 2015.02.19.1</title>
  7262. <link href="http://ytdl-org.github.io/youtube-dl" />
  7263. <content type="xhtml">
  7264. <div xmlns="http://www.w3.org/1999/xhtml">
  7265. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.19.1/">https://yt-dl.org/downloads/2015.02.19.1/</a>
  7266. </div>
  7267. </content>
  7268. <author>
  7269. <name>The youtube-dl maintainers</name>
  7270. </author>
  7271. <updated>2015-02-19T00:00:01Z</updated>
  7272. </entry>
  7273. <entry>
  7274. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.19.2</id>
  7275. <title>New version 2015.02.19.2</title>
  7276. <link href="http://ytdl-org.github.io/youtube-dl" />
  7277. <content type="xhtml">
  7278. <div xmlns="http://www.w3.org/1999/xhtml">
  7279. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.19.2/">https://yt-dl.org/downloads/2015.02.19.2/</a>
  7280. </div>
  7281. </content>
  7282. <author>
  7283. <name>The youtube-dl maintainers</name>
  7284. </author>
  7285. <updated>2015-02-19T00:00:02Z</updated>
  7286. </entry>
  7287. <entry>
  7288. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.19.3</id>
  7289. <title>New version 2015.02.19.3</title>
  7290. <link href="http://ytdl-org.github.io/youtube-dl" />
  7291. <content type="xhtml">
  7292. <div xmlns="http://www.w3.org/1999/xhtml">
  7293. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.19.3/">https://yt-dl.org/downloads/2015.02.19.3/</a>
  7294. </div>
  7295. </content>
  7296. <author>
  7297. <name>The youtube-dl maintainers</name>
  7298. </author>
  7299. <updated>2015-02-19T00:00:03Z</updated>
  7300. </entry>
  7301. <entry>
  7302. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.20</id>
  7303. <title>New version 2015.02.20</title>
  7304. <link href="http://ytdl-org.github.io/youtube-dl" />
  7305. <content type="xhtml">
  7306. <div xmlns="http://www.w3.org/1999/xhtml">
  7307. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.20/">https://yt-dl.org/downloads/2015.02.20/</a>
  7308. </div>
  7309. </content>
  7310. <author>
  7311. <name>The youtube-dl maintainers</name>
  7312. </author>
  7313. <updated>2015-02-20T00:00:00Z</updated>
  7314. </entry>
  7315. <entry>
  7316. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.21</id>
  7317. <title>New version 2015.02.21</title>
  7318. <link href="http://ytdl-org.github.io/youtube-dl" />
  7319. <content type="xhtml">
  7320. <div xmlns="http://www.w3.org/1999/xhtml">
  7321. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.21/">https://yt-dl.org/downloads/2015.02.21/</a>
  7322. </div>
  7323. </content>
  7324. <author>
  7325. <name>The youtube-dl maintainers</name>
  7326. </author>
  7327. <updated>2015-02-21T00:00:00Z</updated>
  7328. </entry>
  7329. <entry>
  7330. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.23</id>
  7331. <title>New version 2015.02.23</title>
  7332. <link href="http://ytdl-org.github.io/youtube-dl" />
  7333. <content type="xhtml">
  7334. <div xmlns="http://www.w3.org/1999/xhtml">
  7335. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.23/">https://yt-dl.org/downloads/2015.02.23/</a>
  7336. </div>
  7337. </content>
  7338. <author>
  7339. <name>The youtube-dl maintainers</name>
  7340. </author>
  7341. <updated>2015-02-23T00:00:00Z</updated>
  7342. </entry>
  7343. <entry>
  7344. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.23.1</id>
  7345. <title>New version 2015.02.23.1</title>
  7346. <link href="http://ytdl-org.github.io/youtube-dl" />
  7347. <content type="xhtml">
  7348. <div xmlns="http://www.w3.org/1999/xhtml">
  7349. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.23.1/">https://yt-dl.org/downloads/2015.02.23.1/</a>
  7350. </div>
  7351. </content>
  7352. <author>
  7353. <name>The youtube-dl maintainers</name>
  7354. </author>
  7355. <updated>2015-02-23T00:00:01Z</updated>
  7356. </entry>
  7357. <entry>
  7358. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.24</id>
  7359. <title>New version 2015.02.24</title>
  7360. <link href="http://ytdl-org.github.io/youtube-dl" />
  7361. <content type="xhtml">
  7362. <div xmlns="http://www.w3.org/1999/xhtml">
  7363. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.24/">https://yt-dl.org/downloads/2015.02.24/</a>
  7364. </div>
  7365. </content>
  7366. <author>
  7367. <name>The youtube-dl maintainers</name>
  7368. </author>
  7369. <updated>2015-02-24T00:00:00Z</updated>
  7370. </entry>
  7371. <entry>
  7372. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.24.1</id>
  7373. <title>New version 2015.02.24.1</title>
  7374. <link href="http://ytdl-org.github.io/youtube-dl" />
  7375. <content type="xhtml">
  7376. <div xmlns="http://www.w3.org/1999/xhtml">
  7377. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.24.1/">https://yt-dl.org/downloads/2015.02.24.1/</a>
  7378. </div>
  7379. </content>
  7380. <author>
  7381. <name>The youtube-dl maintainers</name>
  7382. </author>
  7383. <updated>2015-02-24T00:00:01Z</updated>
  7384. </entry>
  7385. <entry>
  7386. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.24.2</id>
  7387. <title>New version 2015.02.24.2</title>
  7388. <link href="http://ytdl-org.github.io/youtube-dl" />
  7389. <content type="xhtml">
  7390. <div xmlns="http://www.w3.org/1999/xhtml">
  7391. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.24.2/">https://yt-dl.org/downloads/2015.02.24.2/</a>
  7392. </div>
  7393. </content>
  7394. <author>
  7395. <name>The youtube-dl maintainers</name>
  7396. </author>
  7397. <updated>2015-02-24T00:00:02Z</updated>
  7398. </entry>
  7399. <entry>
  7400. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.26</id>
  7401. <title>New version 2015.02.26</title>
  7402. <link href="http://ytdl-org.github.io/youtube-dl" />
  7403. <content type="xhtml">
  7404. <div xmlns="http://www.w3.org/1999/xhtml">
  7405. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.26/">https://yt-dl.org/downloads/2015.02.26/</a>
  7406. </div>
  7407. </content>
  7408. <author>
  7409. <name>The youtube-dl maintainers</name>
  7410. </author>
  7411. <updated>2015-02-26T00:00:00Z</updated>
  7412. </entry>
  7413. <entry>
  7414. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.26.1</id>
  7415. <title>New version 2015.02.26.1</title>
  7416. <link href="http://ytdl-org.github.io/youtube-dl" />
  7417. <content type="xhtml">
  7418. <div xmlns="http://www.w3.org/1999/xhtml">
  7419. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.26.1/">https://yt-dl.org/downloads/2015.02.26.1/</a>
  7420. </div>
  7421. </content>
  7422. <author>
  7423. <name>The youtube-dl maintainers</name>
  7424. </author>
  7425. <updated>2015-02-26T00:00:01Z</updated>
  7426. </entry>
  7427. <entry>
  7428. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.26.2</id>
  7429. <title>New version 2015.02.26.2</title>
  7430. <link href="http://ytdl-org.github.io/youtube-dl" />
  7431. <content type="xhtml">
  7432. <div xmlns="http://www.w3.org/1999/xhtml">
  7433. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.26.2/">https://yt-dl.org/downloads/2015.02.26.2/</a>
  7434. </div>
  7435. </content>
  7436. <author>
  7437. <name>The youtube-dl maintainers</name>
  7438. </author>
  7439. <updated>2015-02-26T00:00:02Z</updated>
  7440. </entry>
  7441. <entry>
  7442. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.02.28</id>
  7443. <title>New version 2015.02.28</title>
  7444. <link href="http://ytdl-org.github.io/youtube-dl" />
  7445. <content type="xhtml">
  7446. <div xmlns="http://www.w3.org/1999/xhtml">
  7447. Downloads available at <a href="https://yt-dl.org/downloads/2015.02.28/">https://yt-dl.org/downloads/2015.02.28/</a>
  7448. </div>
  7449. </content>
  7450. <author>
  7451. <name>The youtube-dl maintainers</name>
  7452. </author>
  7453. <updated>2015-02-28T00:00:00Z</updated>
  7454. </entry>
  7455. <entry>
  7456. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.03</id>
  7457. <title>New version 2015.03.03</title>
  7458. <link href="http://ytdl-org.github.io/youtube-dl" />
  7459. <content type="xhtml">
  7460. <div xmlns="http://www.w3.org/1999/xhtml">
  7461. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.03/">https://yt-dl.org/downloads/2015.03.03/</a>
  7462. </div>
  7463. </content>
  7464. <author>
  7465. <name>The youtube-dl maintainers</name>
  7466. </author>
  7467. <updated>2015-03-03T00:00:00Z</updated>
  7468. </entry>
  7469. <entry>
  7470. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.03.1</id>
  7471. <title>New version 2015.03.03.1</title>
  7472. <link href="http://ytdl-org.github.io/youtube-dl" />
  7473. <content type="xhtml">
  7474. <div xmlns="http://www.w3.org/1999/xhtml">
  7475. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.03.1/">https://yt-dl.org/downloads/2015.03.03.1/</a>
  7476. </div>
  7477. </content>
  7478. <author>
  7479. <name>The youtube-dl maintainers</name>
  7480. </author>
  7481. <updated>2015-03-03T00:00:01Z</updated>
  7482. </entry>
  7483. <entry>
  7484. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.09</id>
  7485. <title>New version 2015.03.09</title>
  7486. <link href="http://ytdl-org.github.io/youtube-dl" />
  7487. <content type="xhtml">
  7488. <div xmlns="http://www.w3.org/1999/xhtml">
  7489. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.09/">https://yt-dl.org/downloads/2015.03.09/</a>
  7490. </div>
  7491. </content>
  7492. <author>
  7493. <name>The youtube-dl maintainers</name>
  7494. </author>
  7495. <updated>2015-03-09T00:00:00Z</updated>
  7496. </entry>
  7497. <entry>
  7498. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.15</id>
  7499. <title>New version 2015.03.15</title>
  7500. <link href="http://ytdl-org.github.io/youtube-dl" />
  7501. <content type="xhtml">
  7502. <div xmlns="http://www.w3.org/1999/xhtml">
  7503. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.15/">https://yt-dl.org/downloads/2015.03.15/</a>
  7504. </div>
  7505. </content>
  7506. <author>
  7507. <name>The youtube-dl maintainers</name>
  7508. </author>
  7509. <updated>2015-03-15T00:00:00Z</updated>
  7510. </entry>
  7511. <entry>
  7512. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.18</id>
  7513. <title>New version 2015.03.18</title>
  7514. <link href="http://ytdl-org.github.io/youtube-dl" />
  7515. <content type="xhtml">
  7516. <div xmlns="http://www.w3.org/1999/xhtml">
  7517. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.18/">https://yt-dl.org/downloads/2015.03.18/</a>
  7518. </div>
  7519. </content>
  7520. <author>
  7521. <name>The youtube-dl maintainers</name>
  7522. </author>
  7523. <updated>2015-03-18T00:00:00Z</updated>
  7524. </entry>
  7525. <entry>
  7526. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.24</id>
  7527. <title>New version 2015.03.24</title>
  7528. <link href="http://ytdl-org.github.io/youtube-dl" />
  7529. <content type="xhtml">
  7530. <div xmlns="http://www.w3.org/1999/xhtml">
  7531. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.24/">https://yt-dl.org/downloads/2015.03.24/</a>
  7532. </div>
  7533. </content>
  7534. <author>
  7535. <name>The youtube-dl maintainers</name>
  7536. </author>
  7537. <updated>2015-03-24T00:00:00Z</updated>
  7538. </entry>
  7539. <entry>
  7540. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.03.28</id>
  7541. <title>New version 2015.03.28</title>
  7542. <link href="http://ytdl-org.github.io/youtube-dl" />
  7543. <content type="xhtml">
  7544. <div xmlns="http://www.w3.org/1999/xhtml">
  7545. Downloads available at <a href="https://yt-dl.org/downloads/2015.03.28/">https://yt-dl.org/downloads/2015.03.28/</a>
  7546. </div>
  7547. </content>
  7548. <author>
  7549. <name>The youtube-dl maintainers</name>
  7550. </author>
  7551. <updated>2015-03-28T00:00:00Z</updated>
  7552. </entry>
  7553. <entry>
  7554. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.04.03</id>
  7555. <title>New version 2015.04.03</title>
  7556. <link href="http://ytdl-org.github.io/youtube-dl" />
  7557. <content type="xhtml">
  7558. <div xmlns="http://www.w3.org/1999/xhtml">
  7559. Downloads available at <a href="https://yt-dl.org/downloads/2015.04.03/">https://yt-dl.org/downloads/2015.04.03/</a>
  7560. </div>
  7561. </content>
  7562. <author>
  7563. <name>The youtube-dl maintainers</name>
  7564. </author>
  7565. <updated>2015-04-03T00:00:00Z</updated>
  7566. </entry>
  7567. <entry>
  7568. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.04.09</id>
  7569. <title>New version 2015.04.09</title>
  7570. <link href="http://ytdl-org.github.io/youtube-dl" />
  7571. <content type="xhtml">
  7572. <div xmlns="http://www.w3.org/1999/xhtml">
  7573. Downloads available at <a href="https://yt-dl.org/downloads/2015.04.09/">https://yt-dl.org/downloads/2015.04.09/</a>
  7574. </div>
  7575. </content>
  7576. <author>
  7577. <name>The youtube-dl maintainers</name>
  7578. </author>
  7579. <updated>2015-04-09T00:00:00Z</updated>
  7580. </entry>
  7581. <entry>
  7582. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.04.17</id>
  7583. <title>New version 2015.04.17</title>
  7584. <link href="http://ytdl-org.github.io/youtube-dl" />
  7585. <content type="xhtml">
  7586. <div xmlns="http://www.w3.org/1999/xhtml">
  7587. Downloads available at <a href="https://yt-dl.org/downloads/2015.04.17/">https://yt-dl.org/downloads/2015.04.17/</a>
  7588. </div>
  7589. </content>
  7590. <author>
  7591. <name>The youtube-dl maintainers</name>
  7592. </author>
  7593. <updated>2015-04-17T00:00:00Z</updated>
  7594. </entry>
  7595. <entry>
  7596. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.04.26</id>
  7597. <title>New version 2015.04.26</title>
  7598. <link href="http://ytdl-org.github.io/youtube-dl" />
  7599. <content type="xhtml">
  7600. <div xmlns="http://www.w3.org/1999/xhtml">
  7601. Downloads available at <a href="https://yt-dl.org/downloads/2015.04.26/">https://yt-dl.org/downloads/2015.04.26/</a>
  7602. </div>
  7603. </content>
  7604. <author>
  7605. <name>The youtube-dl maintainers</name>
  7606. </author>
  7607. <updated>2015-04-26T00:00:00Z</updated>
  7608. </entry>
  7609. <entry>
  7610. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.04.28</id>
  7611. <title>New version 2015.04.28</title>
  7612. <link href="http://ytdl-org.github.io/youtube-dl" />
  7613. <content type="xhtml">
  7614. <div xmlns="http://www.w3.org/1999/xhtml">
  7615. Downloads available at <a href="https://yt-dl.org/downloads/2015.04.28/">https://yt-dl.org/downloads/2015.04.28/</a>
  7616. </div>
  7617. </content>
  7618. <author>
  7619. <name>The youtube-dl maintainers</name>
  7620. </author>
  7621. <updated>2015-04-28T00:00:00Z</updated>
  7622. </entry>
  7623. <entry>
  7624. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.03</id>
  7625. <title>New version 2015.05.03</title>
  7626. <link href="http://ytdl-org.github.io/youtube-dl" />
  7627. <content type="xhtml">
  7628. <div xmlns="http://www.w3.org/1999/xhtml">
  7629. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.03/">https://yt-dl.org/downloads/2015.05.03/</a>
  7630. </div>
  7631. </content>
  7632. <author>
  7633. <name>The youtube-dl maintainers</name>
  7634. </author>
  7635. <updated>2015-05-03T00:00:00Z</updated>
  7636. </entry>
  7637. <entry>
  7638. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.04</id>
  7639. <title>New version 2015.05.04</title>
  7640. <link href="http://ytdl-org.github.io/youtube-dl" />
  7641. <content type="xhtml">
  7642. <div xmlns="http://www.w3.org/1999/xhtml">
  7643. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.04/">https://yt-dl.org/downloads/2015.05.04/</a>
  7644. </div>
  7645. </content>
  7646. <author>
  7647. <name>The youtube-dl maintainers</name>
  7648. </author>
  7649. <updated>2015-05-04T00:00:00Z</updated>
  7650. </entry>
  7651. <entry>
  7652. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.10</id>
  7653. <title>New version 2015.05.10</title>
  7654. <link href="http://ytdl-org.github.io/youtube-dl" />
  7655. <content type="xhtml">
  7656. <div xmlns="http://www.w3.org/1999/xhtml">
  7657. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.10/">https://yt-dl.org/downloads/2015.05.10/</a>
  7658. </div>
  7659. </content>
  7660. <author>
  7661. <name>The youtube-dl maintainers</name>
  7662. </author>
  7663. <updated>2015-05-10T00:00:00Z</updated>
  7664. </entry>
  7665. <entry>
  7666. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.15</id>
  7667. <title>New version 2015.05.15</title>
  7668. <link href="http://ytdl-org.github.io/youtube-dl" />
  7669. <content type="xhtml">
  7670. <div xmlns="http://www.w3.org/1999/xhtml">
  7671. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.15/">https://yt-dl.org/downloads/2015.05.15/</a>
  7672. </div>
  7673. </content>
  7674. <author>
  7675. <name>The youtube-dl maintainers</name>
  7676. </author>
  7677. <updated>2015-05-15T00:00:00Z</updated>
  7678. </entry>
  7679. <entry>
  7680. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.20</id>
  7681. <title>New version 2015.05.20</title>
  7682. <link href="http://ytdl-org.github.io/youtube-dl" />
  7683. <content type="xhtml">
  7684. <div xmlns="http://www.w3.org/1999/xhtml">
  7685. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.20/">https://yt-dl.org/downloads/2015.05.20/</a>
  7686. </div>
  7687. </content>
  7688. <author>
  7689. <name>The youtube-dl maintainers</name>
  7690. </author>
  7691. <updated>2015-05-20T00:00:00Z</updated>
  7692. </entry>
  7693. <entry>
  7694. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.05.29</id>
  7695. <title>New version 2015.05.29</title>
  7696. <link href="http://ytdl-org.github.io/youtube-dl" />
  7697. <content type="xhtml">
  7698. <div xmlns="http://www.w3.org/1999/xhtml">
  7699. Downloads available at <a href="https://yt-dl.org/downloads/2015.05.29/">https://yt-dl.org/downloads/2015.05.29/</a>
  7700. </div>
  7701. </content>
  7702. <author>
  7703. <name>The youtube-dl maintainers</name>
  7704. </author>
  7705. <updated>2015-05-29T00:00:00Z</updated>
  7706. </entry>
  7707. <entry>
  7708. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.06.04.1</id>
  7709. <title>New version 2015.06.04.1</title>
  7710. <link href="http://ytdl-org.github.io/youtube-dl" />
  7711. <content type="xhtml">
  7712. <div xmlns="http://www.w3.org/1999/xhtml">
  7713. Downloads available at <a href="https://yt-dl.org/downloads/2015.06.04.1/">https://yt-dl.org/downloads/2015.06.04.1/</a>
  7714. </div>
  7715. </content>
  7716. <author>
  7717. <name>The youtube-dl maintainers</name>
  7718. </author>
  7719. <updated>2015-06-04T00:00:01Z</updated>
  7720. </entry>
  7721. <entry>
  7722. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.06.15</id>
  7723. <title>New version 2015.06.15</title>
  7724. <link href="http://ytdl-org.github.io/youtube-dl" />
  7725. <content type="xhtml">
  7726. <div xmlns="http://www.w3.org/1999/xhtml">
  7727. Downloads available at <a href="https://yt-dl.org/downloads/2015.06.15/">https://yt-dl.org/downloads/2015.06.15/</a>
  7728. </div>
  7729. </content>
  7730. <author>
  7731. <name>The youtube-dl maintainers</name>
  7732. </author>
  7733. <updated>2015-06-15T00:00:00Z</updated>
  7734. </entry>
  7735. <entry>
  7736. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.06.25</id>
  7737. <title>New version 2015.06.25</title>
  7738. <link href="http://ytdl-org.github.io/youtube-dl" />
  7739. <content type="xhtml">
  7740. <div xmlns="http://www.w3.org/1999/xhtml">
  7741. Downloads available at <a href="https://yt-dl.org/downloads/2015.06.25/">https://yt-dl.org/downloads/2015.06.25/</a>
  7742. </div>
  7743. </content>
  7744. <author>
  7745. <name>The youtube-dl maintainers</name>
  7746. </author>
  7747. <updated>2015-06-25T00:00:00Z</updated>
  7748. </entry>
  7749. <entry>
  7750. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.07.04</id>
  7751. <title>New version 2015.07.04</title>
  7752. <link href="http://ytdl-org.github.io/youtube-dl" />
  7753. <content type="xhtml">
  7754. <div xmlns="http://www.w3.org/1999/xhtml">
  7755. Downloads available at <a href="https://yt-dl.org/downloads/2015.07.04/">https://yt-dl.org/downloads/2015.07.04/</a>
  7756. </div>
  7757. </content>
  7758. <author>
  7759. <name>The youtube-dl maintainers</name>
  7760. </author>
  7761. <updated>2015-07-04T00:00:00Z</updated>
  7762. </entry>
  7763. <entry>
  7764. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.07.07</id>
  7765. <title>New version 2015.07.07</title>
  7766. <link href="http://ytdl-org.github.io/youtube-dl" />
  7767. <content type="xhtml">
  7768. <div xmlns="http://www.w3.org/1999/xhtml">
  7769. Downloads available at <a href="https://yt-dl.org/downloads/2015.07.07/">https://yt-dl.org/downloads/2015.07.07/</a>
  7770. </div>
  7771. </content>
  7772. <author>
  7773. <name>The youtube-dl maintainers</name>
  7774. </author>
  7775. <updated>2015-07-07T00:00:00Z</updated>
  7776. </entry>
  7777. <entry>
  7778. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.07.18</id>
  7779. <title>New version 2015.07.18</title>
  7780. <link href="http://ytdl-org.github.io/youtube-dl" />
  7781. <content type="xhtml">
  7782. <div xmlns="http://www.w3.org/1999/xhtml">
  7783. Downloads available at <a href="https://yt-dl.org/downloads/2015.07.18/">https://yt-dl.org/downloads/2015.07.18/</a>
  7784. </div>
  7785. </content>
  7786. <author>
  7787. <name>The youtube-dl maintainers</name>
  7788. </author>
  7789. <updated>2015-07-18T00:00:00Z</updated>
  7790. </entry>
  7791. <entry>
  7792. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.07.21</id>
  7793. <title>New version 2015.07.21</title>
  7794. <link href="http://ytdl-org.github.io/youtube-dl" />
  7795. <content type="xhtml">
  7796. <div xmlns="http://www.w3.org/1999/xhtml">
  7797. Downloads available at <a href="https://yt-dl.org/downloads/2015.07.21/">https://yt-dl.org/downloads/2015.07.21/</a>
  7798. </div>
  7799. </content>
  7800. <author>
  7801. <name>The youtube-dl maintainers</name>
  7802. </author>
  7803. <updated>2015-07-21T00:00:00Z</updated>
  7804. </entry>
  7805. <entry>
  7806. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.07.28</id>
  7807. <title>New version 2015.07.28</title>
  7808. <link href="http://ytdl-org.github.io/youtube-dl" />
  7809. <content type="xhtml">
  7810. <div xmlns="http://www.w3.org/1999/xhtml">
  7811. Downloads available at <a href="https://yt-dl.org/downloads/2015.07.28/">https://yt-dl.org/downloads/2015.07.28/</a>
  7812. </div>
  7813. </content>
  7814. <author>
  7815. <name>The youtube-dl maintainers</name>
  7816. </author>
  7817. <updated>2015-07-28T00:00:00Z</updated>
  7818. </entry>
  7819. <entry>
  7820. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.06.1</id>
  7821. <title>New version 2015.08.06.1</title>
  7822. <link href="http://ytdl-org.github.io/youtube-dl" />
  7823. <content type="xhtml">
  7824. <div xmlns="http://www.w3.org/1999/xhtml">
  7825. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.06.1/">https://yt-dl.org/downloads/2015.08.06.1/</a>
  7826. </div>
  7827. </content>
  7828. <author>
  7829. <name>The youtube-dl maintainers</name>
  7830. </author>
  7831. <updated>2015-08-06T00:00:01Z</updated>
  7832. </entry>
  7833. <entry>
  7834. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.09</id>
  7835. <title>New version 2015.08.09</title>
  7836. <link href="http://ytdl-org.github.io/youtube-dl" />
  7837. <content type="xhtml">
  7838. <div xmlns="http://www.w3.org/1999/xhtml">
  7839. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.09/">https://yt-dl.org/downloads/2015.08.09/</a>
  7840. </div>
  7841. </content>
  7842. <author>
  7843. <name>The youtube-dl maintainers</name>
  7844. </author>
  7845. <updated>2015-08-09T00:00:00Z</updated>
  7846. </entry>
  7847. <entry>
  7848. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.16</id>
  7849. <title>New version 2015.08.16</title>
  7850. <link href="http://ytdl-org.github.io/youtube-dl" />
  7851. <content type="xhtml">
  7852. <div xmlns="http://www.w3.org/1999/xhtml">
  7853. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.16/">https://yt-dl.org/downloads/2015.08.16/</a>
  7854. </div>
  7855. </content>
  7856. <author>
  7857. <name>The youtube-dl maintainers</name>
  7858. </author>
  7859. <updated>2015-08-16T00:00:00Z</updated>
  7860. </entry>
  7861. <entry>
  7862. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.16.1</id>
  7863. <title>New version 2015.08.16.1</title>
  7864. <link href="http://ytdl-org.github.io/youtube-dl" />
  7865. <content type="xhtml">
  7866. <div xmlns="http://www.w3.org/1999/xhtml">
  7867. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.16.1/">https://yt-dl.org/downloads/2015.08.16.1/</a>
  7868. </div>
  7869. </content>
  7870. <author>
  7871. <name>The youtube-dl maintainers</name>
  7872. </author>
  7873. <updated>2015-08-16T00:00:01Z</updated>
  7874. </entry>
  7875. <entry>
  7876. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.23</id>
  7877. <title>New version 2015.08.23</title>
  7878. <link href="http://ytdl-org.github.io/youtube-dl" />
  7879. <content type="xhtml">
  7880. <div xmlns="http://www.w3.org/1999/xhtml">
  7881. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.23/">https://yt-dl.org/downloads/2015.08.23/</a>
  7882. </div>
  7883. </content>
  7884. <author>
  7885. <name>The youtube-dl maintainers</name>
  7886. </author>
  7887. <updated>2015-08-23T00:00:00Z</updated>
  7888. </entry>
  7889. <entry>
  7890. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.08.28</id>
  7891. <title>New version 2015.08.28</title>
  7892. <link href="http://ytdl-org.github.io/youtube-dl" />
  7893. <content type="xhtml">
  7894. <div xmlns="http://www.w3.org/1999/xhtml">
  7895. Downloads available at <a href="https://yt-dl.org/downloads/2015.08.28/">https://yt-dl.org/downloads/2015.08.28/</a>
  7896. </div>
  7897. </content>
  7898. <author>
  7899. <name>The youtube-dl maintainers</name>
  7900. </author>
  7901. <updated>2015-08-28T00:00:00Z</updated>
  7902. </entry>
  7903. <entry>
  7904. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.09.03</id>
  7905. <title>New version 2015.09.03</title>
  7906. <link href="http://ytdl-org.github.io/youtube-dl" />
  7907. <content type="xhtml">
  7908. <div xmlns="http://www.w3.org/1999/xhtml">
  7909. Downloads available at <a href="https://yt-dl.org/downloads/2015.09.03/">https://yt-dl.org/downloads/2015.09.03/</a>
  7910. </div>
  7911. </content>
  7912. <author>
  7913. <name>The youtube-dl maintainers</name>
  7914. </author>
  7915. <updated>2015-09-03T00:00:00Z</updated>
  7916. </entry>
  7917. <entry>
  7918. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.09.09</id>
  7919. <title>New version 2015.09.09</title>
  7920. <link href="http://ytdl-org.github.io/youtube-dl" />
  7921. <content type="xhtml">
  7922. <div xmlns="http://www.w3.org/1999/xhtml">
  7923. Downloads available at <a href="https://yt-dl.org/downloads/2015.09.09/">https://yt-dl.org/downloads/2015.09.09/</a>
  7924. </div>
  7925. </content>
  7926. <author>
  7927. <name>The youtube-dl maintainers</name>
  7928. </author>
  7929. <updated>2015-09-09T00:00:00Z</updated>
  7930. </entry>
  7931. <entry>
  7932. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.09.22</id>
  7933. <title>New version 2015.09.22</title>
  7934. <link href="http://ytdl-org.github.io/youtube-dl" />
  7935. <content type="xhtml">
  7936. <div xmlns="http://www.w3.org/1999/xhtml">
  7937. Downloads available at <a href="https://yt-dl.org/downloads/2015.09.22/">https://yt-dl.org/downloads/2015.09.22/</a>
  7938. </div>
  7939. </content>
  7940. <author>
  7941. <name>The youtube-dl maintainers</name>
  7942. </author>
  7943. <updated>2015-09-22T00:00:00Z</updated>
  7944. </entry>
  7945. <entry>
  7946. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.09.28</id>
  7947. <title>New version 2015.09.28</title>
  7948. <link href="http://ytdl-org.github.io/youtube-dl" />
  7949. <content type="xhtml">
  7950. <div xmlns="http://www.w3.org/1999/xhtml">
  7951. Downloads available at <a href="https://yt-dl.org/downloads/2015.09.28/">https://yt-dl.org/downloads/2015.09.28/</a>
  7952. </div>
  7953. </content>
  7954. <author>
  7955. <name>The youtube-dl maintainers</name>
  7956. </author>
  7957. <updated>2015-09-28T00:00:00Z</updated>
  7958. </entry>
  7959. <entry>
  7960. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.06</id>
  7961. <title>New version 2015.10.06</title>
  7962. <link href="http://ytdl-org.github.io/youtube-dl" />
  7963. <content type="xhtml">
  7964. <div xmlns="http://www.w3.org/1999/xhtml">
  7965. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.06/">https://yt-dl.org/downloads/2015.10.06/</a>
  7966. </div>
  7967. </content>
  7968. <author>
  7969. <name>The youtube-dl maintainers</name>
  7970. </author>
  7971. <updated>2015-10-06T00:00:00Z</updated>
  7972. </entry>
  7973. <entry>
  7974. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.06.1</id>
  7975. <title>New version 2015.10.06.1</title>
  7976. <link href="http://ytdl-org.github.io/youtube-dl" />
  7977. <content type="xhtml">
  7978. <div xmlns="http://www.w3.org/1999/xhtml">
  7979. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.06.1/">https://yt-dl.org/downloads/2015.10.06.1/</a>
  7980. </div>
  7981. </content>
  7982. <author>
  7983. <name>The youtube-dl maintainers</name>
  7984. </author>
  7985. <updated>2015-10-06T00:00:01Z</updated>
  7986. </entry>
  7987. <entry>
  7988. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.06.2</id>
  7989. <title>New version 2015.10.06.2</title>
  7990. <link href="http://ytdl-org.github.io/youtube-dl" />
  7991. <content type="xhtml">
  7992. <div xmlns="http://www.w3.org/1999/xhtml">
  7993. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.06.2/">https://yt-dl.org/downloads/2015.10.06.2/</a>
  7994. </div>
  7995. </content>
  7996. <author>
  7997. <name>The youtube-dl maintainers</name>
  7998. </author>
  7999. <updated>2015-10-06T00:00:02Z</updated>
  8000. </entry>
  8001. <entry>
  8002. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.09</id>
  8003. <title>New version 2015.10.09</title>
  8004. <link href="http://ytdl-org.github.io/youtube-dl" />
  8005. <content type="xhtml">
  8006. <div xmlns="http://www.w3.org/1999/xhtml">
  8007. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.09/">https://yt-dl.org/downloads/2015.10.09/</a>
  8008. </div>
  8009. </content>
  8010. <author>
  8011. <name>The youtube-dl maintainers</name>
  8012. </author>
  8013. <updated>2015-10-09T00:00:00Z</updated>
  8014. </entry>
  8015. <entry>
  8016. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.12</id>
  8017. <title>New version 2015.10.12</title>
  8018. <link href="http://ytdl-org.github.io/youtube-dl" />
  8019. <content type="xhtml">
  8020. <div xmlns="http://www.w3.org/1999/xhtml">
  8021. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.12/">https://yt-dl.org/downloads/2015.10.12/</a>
  8022. </div>
  8023. </content>
  8024. <author>
  8025. <name>The youtube-dl maintainers</name>
  8026. </author>
  8027. <updated>2015-10-12T00:00:00Z</updated>
  8028. </entry>
  8029. <entry>
  8030. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.13</id>
  8031. <title>New version 2015.10.13</title>
  8032. <link href="http://ytdl-org.github.io/youtube-dl" />
  8033. <content type="xhtml">
  8034. <div xmlns="http://www.w3.org/1999/xhtml">
  8035. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.13/">https://yt-dl.org/downloads/2015.10.13/</a>
  8036. </div>
  8037. </content>
  8038. <author>
  8039. <name>The youtube-dl maintainers</name>
  8040. </author>
  8041. <updated>2015-10-13T00:00:00Z</updated>
  8042. </entry>
  8043. <entry>
  8044. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.16</id>
  8045. <title>New version 2015.10.16</title>
  8046. <link href="http://ytdl-org.github.io/youtube-dl" />
  8047. <content type="xhtml">
  8048. <div xmlns="http://www.w3.org/1999/xhtml">
  8049. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.16/">https://yt-dl.org/downloads/2015.10.16/</a>
  8050. </div>
  8051. </content>
  8052. <author>
  8053. <name>The youtube-dl maintainers</name>
  8054. </author>
  8055. <updated>2015-10-16T00:00:00Z</updated>
  8056. </entry>
  8057. <entry>
  8058. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.18</id>
  8059. <title>New version 2015.10.18</title>
  8060. <link href="http://ytdl-org.github.io/youtube-dl" />
  8061. <content type="xhtml">
  8062. <div xmlns="http://www.w3.org/1999/xhtml">
  8063. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.18/">https://yt-dl.org/downloads/2015.10.18/</a>
  8064. </div>
  8065. </content>
  8066. <author>
  8067. <name>The youtube-dl maintainers</name>
  8068. </author>
  8069. <updated>2015-10-18T00:00:00Z</updated>
  8070. </entry>
  8071. <entry>
  8072. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.23</id>
  8073. <title>New version 2015.10.23</title>
  8074. <link href="http://ytdl-org.github.io/youtube-dl" />
  8075. <content type="xhtml">
  8076. <div xmlns="http://www.w3.org/1999/xhtml">
  8077. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.23/">https://yt-dl.org/downloads/2015.10.23/</a>
  8078. </div>
  8079. </content>
  8080. <author>
  8081. <name>The youtube-dl maintainers</name>
  8082. </author>
  8083. <updated>2015-10-23T00:00:00Z</updated>
  8084. </entry>
  8085. <entry>
  8086. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.10.24</id>
  8087. <title>New version 2015.10.24</title>
  8088. <link href="http://ytdl-org.github.io/youtube-dl" />
  8089. <content type="xhtml">
  8090. <div xmlns="http://www.w3.org/1999/xhtml">
  8091. Downloads available at <a href="https://yt-dl.org/downloads/2015.10.24/">https://yt-dl.org/downloads/2015.10.24/</a>
  8092. </div>
  8093. </content>
  8094. <author>
  8095. <name>The youtube-dl maintainers</name>
  8096. </author>
  8097. <updated>2015-10-24T00:00:00Z</updated>
  8098. </entry>
  8099. <entry>
  8100. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.01</id>
  8101. <title>New version 2015.11.01</title>
  8102. <link href="http://ytdl-org.github.io/youtube-dl" />
  8103. <content type="xhtml">
  8104. <div xmlns="http://www.w3.org/1999/xhtml">
  8105. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.01/">https://yt-dl.org/downloads/2015.11.01/</a>
  8106. </div>
  8107. </content>
  8108. <author>
  8109. <name>The youtube-dl maintainers</name>
  8110. </author>
  8111. <updated>2015-11-01T00:00:00Z</updated>
  8112. </entry>
  8113. <entry>
  8114. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.02</id>
  8115. <title>New version 2015.11.02</title>
  8116. <link href="http://ytdl-org.github.io/youtube-dl" />
  8117. <content type="xhtml">
  8118. <div xmlns="http://www.w3.org/1999/xhtml">
  8119. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.02/">https://yt-dl.org/downloads/2015.11.02/</a>
  8120. </div>
  8121. </content>
  8122. <author>
  8123. <name>The youtube-dl maintainers</name>
  8124. </author>
  8125. <updated>2015-11-02T00:00:00Z</updated>
  8126. </entry>
  8127. <entry>
  8128. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.10</id>
  8129. <title>New version 2015.11.10</title>
  8130. <link href="http://ytdl-org.github.io/youtube-dl" />
  8131. <content type="xhtml">
  8132. <div xmlns="http://www.w3.org/1999/xhtml">
  8133. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.10/">https://yt-dl.org/downloads/2015.11.10/</a>
  8134. </div>
  8135. </content>
  8136. <author>
  8137. <name>The youtube-dl maintainers</name>
  8138. </author>
  8139. <updated>2015-11-10T00:00:00Z</updated>
  8140. </entry>
  8141. <entry>
  8142. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.13</id>
  8143. <title>New version 2015.11.13</title>
  8144. <link href="http://ytdl-org.github.io/youtube-dl" />
  8145. <content type="xhtml">
  8146. <div xmlns="http://www.w3.org/1999/xhtml">
  8147. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.13/">https://yt-dl.org/downloads/2015.11.13/</a>
  8148. </div>
  8149. </content>
  8150. <author>
  8151. <name>The youtube-dl maintainers</name>
  8152. </author>
  8153. <updated>2015-11-13T00:00:00Z</updated>
  8154. </entry>
  8155. <entry>
  8156. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.15</id>
  8157. <title>New version 2015.11.15</title>
  8158. <link href="http://ytdl-org.github.io/youtube-dl" />
  8159. <content type="xhtml">
  8160. <div xmlns="http://www.w3.org/1999/xhtml">
  8161. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.15/">https://yt-dl.org/downloads/2015.11.15/</a>
  8162. </div>
  8163. </content>
  8164. <author>
  8165. <name>The youtube-dl maintainers</name>
  8166. </author>
  8167. <updated>2015-11-15T00:00:00Z</updated>
  8168. </entry>
  8169. <entry>
  8170. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.18</id>
  8171. <title>New version 2015.11.18</title>
  8172. <link href="http://ytdl-org.github.io/youtube-dl" />
  8173. <content type="xhtml">
  8174. <div xmlns="http://www.w3.org/1999/xhtml">
  8175. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.18/">https://yt-dl.org/downloads/2015.11.18/</a>
  8176. </div>
  8177. </content>
  8178. <author>
  8179. <name>The youtube-dl maintainers</name>
  8180. </author>
  8181. <updated>2015-11-18T00:00:00Z</updated>
  8182. </entry>
  8183. <entry>
  8184. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.19</id>
  8185. <title>New version 2015.11.19</title>
  8186. <link href="http://ytdl-org.github.io/youtube-dl" />
  8187. <content type="xhtml">
  8188. <div xmlns="http://www.w3.org/1999/xhtml">
  8189. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.19/">https://yt-dl.org/downloads/2015.11.19/</a>
  8190. </div>
  8191. </content>
  8192. <author>
  8193. <name>The youtube-dl maintainers</name>
  8194. </author>
  8195. <updated>2015-11-19T00:00:00Z</updated>
  8196. </entry>
  8197. <entry>
  8198. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.21</id>
  8199. <title>New version 2015.11.21</title>
  8200. <link href="http://ytdl-org.github.io/youtube-dl" />
  8201. <content type="xhtml">
  8202. <div xmlns="http://www.w3.org/1999/xhtml">
  8203. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.21/">https://yt-dl.org/downloads/2015.11.21/</a>
  8204. </div>
  8205. </content>
  8206. <author>
  8207. <name>The youtube-dl maintainers</name>
  8208. </author>
  8209. <updated>2015-11-21T00:00:00Z</updated>
  8210. </entry>
  8211. <entry>
  8212. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.23</id>
  8213. <title>New version 2015.11.23</title>
  8214. <link href="http://ytdl-org.github.io/youtube-dl" />
  8215. <content type="xhtml">
  8216. <div xmlns="http://www.w3.org/1999/xhtml">
  8217. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.23/">https://yt-dl.org/downloads/2015.11.23/</a>
  8218. </div>
  8219. </content>
  8220. <author>
  8221. <name>The youtube-dl maintainers</name>
  8222. </author>
  8223. <updated>2015-11-23T00:00:00Z</updated>
  8224. </entry>
  8225. <entry>
  8226. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.24</id>
  8227. <title>New version 2015.11.24</title>
  8228. <link href="http://ytdl-org.github.io/youtube-dl" />
  8229. <content type="xhtml">
  8230. <div xmlns="http://www.w3.org/1999/xhtml">
  8231. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.24/">https://yt-dl.org/downloads/2015.11.24/</a>
  8232. </div>
  8233. </content>
  8234. <author>
  8235. <name>The youtube-dl maintainers</name>
  8236. </author>
  8237. <updated>2015-11-24T00:00:00Z</updated>
  8238. </entry>
  8239. <entry>
  8240. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.11.27.1</id>
  8241. <title>New version 2015.11.27.1</title>
  8242. <link href="http://ytdl-org.github.io/youtube-dl" />
  8243. <content type="xhtml">
  8244. <div xmlns="http://www.w3.org/1999/xhtml">
  8245. Downloads available at <a href="https://yt-dl.org/downloads/2015.11.27.1/">https://yt-dl.org/downloads/2015.11.27.1/</a>
  8246. </div>
  8247. </content>
  8248. <author>
  8249. <name>The youtube-dl maintainers</name>
  8250. </author>
  8251. <updated>2015-11-27T00:00:01Z</updated>
  8252. </entry>
  8253. <entry>
  8254. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.05</id>
  8255. <title>New version 2015.12.05</title>
  8256. <link href="http://ytdl-org.github.io/youtube-dl" />
  8257. <content type="xhtml">
  8258. <div xmlns="http://www.w3.org/1999/xhtml">
  8259. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.05/">https://yt-dl.org/downloads/2015.12.05/</a>
  8260. </div>
  8261. </content>
  8262. <author>
  8263. <name>The youtube-dl maintainers</name>
  8264. </author>
  8265. <updated>2015-12-05T00:00:00Z</updated>
  8266. </entry>
  8267. <entry>
  8268. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.06</id>
  8269. <title>New version 2015.12.06</title>
  8270. <link href="http://ytdl-org.github.io/youtube-dl" />
  8271. <content type="xhtml">
  8272. <div xmlns="http://www.w3.org/1999/xhtml">
  8273. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.06/">https://yt-dl.org/downloads/2015.12.06/</a>
  8274. </div>
  8275. </content>
  8276. <author>
  8277. <name>The youtube-dl maintainers</name>
  8278. </author>
  8279. <updated>2015-12-06T00:00:00Z</updated>
  8280. </entry>
  8281. <entry>
  8282. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.09</id>
  8283. <title>New version 2015.12.09</title>
  8284. <link href="http://ytdl-org.github.io/youtube-dl" />
  8285. <content type="xhtml">
  8286. <div xmlns="http://www.w3.org/1999/xhtml">
  8287. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.09/">https://yt-dl.org/downloads/2015.12.09/</a>
  8288. </div>
  8289. </content>
  8290. <author>
  8291. <name>The youtube-dl maintainers</name>
  8292. </author>
  8293. <updated>2015-12-09T00:00:00Z</updated>
  8294. </entry>
  8295. <entry>
  8296. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.10</id>
  8297. <title>New version 2015.12.10</title>
  8298. <link href="http://ytdl-org.github.io/youtube-dl" />
  8299. <content type="xhtml">
  8300. <div xmlns="http://www.w3.org/1999/xhtml">
  8301. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.10/">https://yt-dl.org/downloads/2015.12.10/</a>
  8302. </div>
  8303. </content>
  8304. <author>
  8305. <name>The youtube-dl maintainers</name>
  8306. </author>
  8307. <updated>2015-12-10T00:00:00Z</updated>
  8308. </entry>
  8309. <entry>
  8310. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.13</id>
  8311. <title>New version 2015.12.13</title>
  8312. <link href="http://ytdl-org.github.io/youtube-dl" />
  8313. <content type="xhtml">
  8314. <div xmlns="http://www.w3.org/1999/xhtml">
  8315. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.13/">https://yt-dl.org/downloads/2015.12.13/</a>
  8316. </div>
  8317. </content>
  8318. <author>
  8319. <name>The youtube-dl maintainers</name>
  8320. </author>
  8321. <updated>2015-12-13T00:00:00Z</updated>
  8322. </entry>
  8323. <entry>
  8324. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.18</id>
  8325. <title>New version 2015.12.18</title>
  8326. <link href="http://ytdl-org.github.io/youtube-dl" />
  8327. <content type="xhtml">
  8328. <div xmlns="http://www.w3.org/1999/xhtml">
  8329. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.18/">https://yt-dl.org/downloads/2015.12.18/</a>
  8330. </div>
  8331. </content>
  8332. <author>
  8333. <name>The youtube-dl maintainers</name>
  8334. </author>
  8335. <updated>2015-12-18T00:00:00Z</updated>
  8336. </entry>
  8337. <entry>
  8338. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.21</id>
  8339. <title>New version 2015.12.21</title>
  8340. <link href="http://ytdl-org.github.io/youtube-dl" />
  8341. <content type="xhtml">
  8342. <div xmlns="http://www.w3.org/1999/xhtml">
  8343. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.21/">https://yt-dl.org/downloads/2015.12.21/</a>
  8344. </div>
  8345. </content>
  8346. <author>
  8347. <name>The youtube-dl maintainers</name>
  8348. </author>
  8349. <updated>2015-12-21T00:00:00Z</updated>
  8350. </entry>
  8351. <entry>
  8352. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.23</id>
  8353. <title>New version 2015.12.23</title>
  8354. <link href="http://ytdl-org.github.io/youtube-dl" />
  8355. <content type="xhtml">
  8356. <div xmlns="http://www.w3.org/1999/xhtml">
  8357. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.23/">https://yt-dl.org/downloads/2015.12.23/</a>
  8358. </div>
  8359. </content>
  8360. <author>
  8361. <name>The youtube-dl maintainers</name>
  8362. </author>
  8363. <updated>2015-12-23T00:00:00Z</updated>
  8364. </entry>
  8365. <entry>
  8366. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.29</id>
  8367. <title>New version 2015.12.29</title>
  8368. <link href="http://ytdl-org.github.io/youtube-dl" />
  8369. <content type="xhtml">
  8370. <div xmlns="http://www.w3.org/1999/xhtml">
  8371. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.29/">https://yt-dl.org/downloads/2015.12.29/</a>
  8372. </div>
  8373. </content>
  8374. <author>
  8375. <name>The youtube-dl maintainers</name>
  8376. </author>
  8377. <updated>2015-12-29T00:00:00Z</updated>
  8378. </entry>
  8379. <entry>
  8380. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2015.12.31</id>
  8381. <title>New version 2015.12.31</title>
  8382. <link href="http://ytdl-org.github.io/youtube-dl" />
  8383. <content type="xhtml">
  8384. <div xmlns="http://www.w3.org/1999/xhtml">
  8385. Downloads available at <a href="https://yt-dl.org/downloads/2015.12.31/">https://yt-dl.org/downloads/2015.12.31/</a>
  8386. </div>
  8387. </content>
  8388. <author>
  8389. <name>The youtube-dl maintainers</name>
  8390. </author>
  8391. <updated>2015-12-31T00:00:00Z</updated>
  8392. </entry>
  8393. <entry>
  8394. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.01</id>
  8395. <title>New version 2016.01.01</title>
  8396. <link href="http://ytdl-org.github.io/youtube-dl" />
  8397. <content type="xhtml">
  8398. <div xmlns="http://www.w3.org/1999/xhtml">
  8399. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.01/">https://yt-dl.org/downloads/2016.01.01/</a>
  8400. </div>
  8401. </content>
  8402. <author>
  8403. <name>The youtube-dl maintainers</name>
  8404. </author>
  8405. <updated>2016-01-01T00:00:00Z</updated>
  8406. </entry>
  8407. <entry>
  8408. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.09</id>
  8409. <title>New version 2016.01.09</title>
  8410. <link href="http://ytdl-org.github.io/youtube-dl" />
  8411. <content type="xhtml">
  8412. <div xmlns="http://www.w3.org/1999/xhtml">
  8413. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.09/">https://yt-dl.org/downloads/2016.01.09/</a>
  8414. </div>
  8415. </content>
  8416. <author>
  8417. <name>The youtube-dl maintainers</name>
  8418. </author>
  8419. <updated>2016-01-09T00:00:00Z</updated>
  8420. </entry>
  8421. <entry>
  8422. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.14</id>
  8423. <title>New version 2016.01.14</title>
  8424. <link href="http://ytdl-org.github.io/youtube-dl" />
  8425. <content type="xhtml">
  8426. <div xmlns="http://www.w3.org/1999/xhtml">
  8427. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.14/">https://yt-dl.org/downloads/2016.01.14/</a>
  8428. </div>
  8429. </content>
  8430. <author>
  8431. <name>The youtube-dl maintainers</name>
  8432. </author>
  8433. <updated>2016-01-14T00:00:00Z</updated>
  8434. </entry>
  8435. <entry>
  8436. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.15</id>
  8437. <title>New version 2016.01.15</title>
  8438. <link href="http://ytdl-org.github.io/youtube-dl" />
  8439. <content type="xhtml">
  8440. <div xmlns="http://www.w3.org/1999/xhtml">
  8441. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.15/">https://yt-dl.org/downloads/2016.01.15/</a>
  8442. </div>
  8443. </content>
  8444. <author>
  8445. <name>The youtube-dl maintainers</name>
  8446. </author>
  8447. <updated>2016-01-15T00:00:00Z</updated>
  8448. </entry>
  8449. <entry>
  8450. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.23</id>
  8451. <title>New version 2016.01.23</title>
  8452. <link href="http://ytdl-org.github.io/youtube-dl" />
  8453. <content type="xhtml">
  8454. <div xmlns="http://www.w3.org/1999/xhtml">
  8455. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.23/">https://yt-dl.org/downloads/2016.01.23/</a>
  8456. </div>
  8457. </content>
  8458. <author>
  8459. <name>The youtube-dl maintainers</name>
  8460. </author>
  8461. <updated>2016-01-23T00:00:00Z</updated>
  8462. </entry>
  8463. <entry>
  8464. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.27</id>
  8465. <title>New version 2016.01.27</title>
  8466. <link href="http://ytdl-org.github.io/youtube-dl" />
  8467. <content type="xhtml">
  8468. <div xmlns="http://www.w3.org/1999/xhtml">
  8469. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.27/">https://yt-dl.org/downloads/2016.01.27/</a>
  8470. </div>
  8471. </content>
  8472. <author>
  8473. <name>The youtube-dl maintainers</name>
  8474. </author>
  8475. <updated>2016-01-27T00:00:00Z</updated>
  8476. </entry>
  8477. <entry>
  8478. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.29</id>
  8479. <title>New version 2016.01.29</title>
  8480. <link href="http://ytdl-org.github.io/youtube-dl" />
  8481. <content type="xhtml">
  8482. <div xmlns="http://www.w3.org/1999/xhtml">
  8483. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.29/">https://yt-dl.org/downloads/2016.01.29/</a>
  8484. </div>
  8485. </content>
  8486. <author>
  8487. <name>The youtube-dl maintainers</name>
  8488. </author>
  8489. <updated>2016-01-29T00:00:00Z</updated>
  8490. </entry>
  8491. <entry>
  8492. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.01.31</id>
  8493. <title>New version 2016.01.31</title>
  8494. <link href="http://ytdl-org.github.io/youtube-dl" />
  8495. <content type="xhtml">
  8496. <div xmlns="http://www.w3.org/1999/xhtml">
  8497. Downloads available at <a href="https://yt-dl.org/downloads/2016.01.31/">https://yt-dl.org/downloads/2016.01.31/</a>
  8498. </div>
  8499. </content>
  8500. <author>
  8501. <name>The youtube-dl maintainers</name>
  8502. </author>
  8503. <updated>2016-01-31T00:00:00Z</updated>
  8504. </entry>
  8505. <entry>
  8506. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.01</id>
  8507. <title>New version 2016.02.01</title>
  8508. <link href="http://ytdl-org.github.io/youtube-dl" />
  8509. <content type="xhtml">
  8510. <div xmlns="http://www.w3.org/1999/xhtml">
  8511. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.01/">https://yt-dl.org/downloads/2016.02.01/</a>
  8512. </div>
  8513. </content>
  8514. <author>
  8515. <name>The youtube-dl maintainers</name>
  8516. </author>
  8517. <updated>2016-02-01T00:00:00Z</updated>
  8518. </entry>
  8519. <entry>
  8520. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.04</id>
  8521. <title>New version 2016.02.04</title>
  8522. <link href="http://ytdl-org.github.io/youtube-dl" />
  8523. <content type="xhtml">
  8524. <div xmlns="http://www.w3.org/1999/xhtml">
  8525. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.04/">https://yt-dl.org/downloads/2016.02.04/</a>
  8526. </div>
  8527. </content>
  8528. <author>
  8529. <name>The youtube-dl maintainers</name>
  8530. </author>
  8531. <updated>2016-02-04T00:00:00Z</updated>
  8532. </entry>
  8533. <entry>
  8534. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.05</id>
  8535. <title>New version 2016.02.05</title>
  8536. <link href="http://ytdl-org.github.io/youtube-dl" />
  8537. <content type="xhtml">
  8538. <div xmlns="http://www.w3.org/1999/xhtml">
  8539. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.05/">https://yt-dl.org/downloads/2016.02.05/</a>
  8540. </div>
  8541. </content>
  8542. <author>
  8543. <name>The youtube-dl maintainers</name>
  8544. </author>
  8545. <updated>2016-02-05T00:00:00Z</updated>
  8546. </entry>
  8547. <entry>
  8548. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.05.1</id>
  8549. <title>New version 2016.02.05.1</title>
  8550. <link href="http://ytdl-org.github.io/youtube-dl" />
  8551. <content type="xhtml">
  8552. <div xmlns="http://www.w3.org/1999/xhtml">
  8553. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.05.1/">https://yt-dl.org/downloads/2016.02.05.1/</a>
  8554. </div>
  8555. </content>
  8556. <author>
  8557. <name>The youtube-dl maintainers</name>
  8558. </author>
  8559. <updated>2016-02-05T00:00:01Z</updated>
  8560. </entry>
  8561. <entry>
  8562. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.09</id>
  8563. <title>New version 2016.02.09</title>
  8564. <link href="http://ytdl-org.github.io/youtube-dl" />
  8565. <content type="xhtml">
  8566. <div xmlns="http://www.w3.org/1999/xhtml">
  8567. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.09/">https://yt-dl.org/downloads/2016.02.09/</a>
  8568. </div>
  8569. </content>
  8570. <author>
  8571. <name>The youtube-dl maintainers</name>
  8572. </author>
  8573. <updated>2016-02-09T00:00:00Z</updated>
  8574. </entry>
  8575. <entry>
  8576. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.09.1</id>
  8577. <title>New version 2016.02.09.1</title>
  8578. <link href="http://ytdl-org.github.io/youtube-dl" />
  8579. <content type="xhtml">
  8580. <div xmlns="http://www.w3.org/1999/xhtml">
  8581. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.09.1/">https://yt-dl.org/downloads/2016.02.09.1/</a>
  8582. </div>
  8583. </content>
  8584. <author>
  8585. <name>The youtube-dl maintainers</name>
  8586. </author>
  8587. <updated>2016-02-09T00:00:01Z</updated>
  8588. </entry>
  8589. <entry>
  8590. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.10</id>
  8591. <title>New version 2016.02.10</title>
  8592. <link href="http://ytdl-org.github.io/youtube-dl" />
  8593. <content type="xhtml">
  8594. <div xmlns="http://www.w3.org/1999/xhtml">
  8595. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.10/">https://yt-dl.org/downloads/2016.02.10/</a>
  8596. </div>
  8597. </content>
  8598. <author>
  8599. <name>The youtube-dl maintainers</name>
  8600. </author>
  8601. <updated>2016-02-10T00:00:00Z</updated>
  8602. </entry>
  8603. <entry>
  8604. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.13</id>
  8605. <title>New version 2016.02.13</title>
  8606. <link href="http://ytdl-org.github.io/youtube-dl" />
  8607. <content type="xhtml">
  8608. <div xmlns="http://www.w3.org/1999/xhtml">
  8609. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.13/">https://yt-dl.org/downloads/2016.02.13/</a>
  8610. </div>
  8611. </content>
  8612. <author>
  8613. <name>The youtube-dl maintainers</name>
  8614. </author>
  8615. <updated>2016-02-13T00:00:00Z</updated>
  8616. </entry>
  8617. <entry>
  8618. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.22</id>
  8619. <title>New version 2016.02.22</title>
  8620. <link href="http://ytdl-org.github.io/youtube-dl" />
  8621. <content type="xhtml">
  8622. <div xmlns="http://www.w3.org/1999/xhtml">
  8623. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.22/">https://yt-dl.org/downloads/2016.02.22/</a>
  8624. </div>
  8625. </content>
  8626. <author>
  8627. <name>The youtube-dl maintainers</name>
  8628. </author>
  8629. <updated>2016-02-22T00:00:00Z</updated>
  8630. </entry>
  8631. <entry>
  8632. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.02.27</id>
  8633. <title>New version 2016.02.27</title>
  8634. <link href="http://ytdl-org.github.io/youtube-dl" />
  8635. <content type="xhtml">
  8636. <div xmlns="http://www.w3.org/1999/xhtml">
  8637. Downloads available at <a href="https://yt-dl.org/downloads/2016.02.27/">https://yt-dl.org/downloads/2016.02.27/</a>
  8638. </div>
  8639. </content>
  8640. <author>
  8641. <name>The youtube-dl maintainers</name>
  8642. </author>
  8643. <updated>2016-02-27T00:00:00Z</updated>
  8644. </entry>
  8645. <entry>
  8646. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.01</id>
  8647. <title>New version 2016.03.01</title>
  8648. <link href="http://ytdl-org.github.io/youtube-dl" />
  8649. <content type="xhtml">
  8650. <div xmlns="http://www.w3.org/1999/xhtml">
  8651. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.01/">https://yt-dl.org/downloads/2016.03.01/</a>
  8652. </div>
  8653. </content>
  8654. <author>
  8655. <name>The youtube-dl maintainers</name>
  8656. </author>
  8657. <updated>2016-03-01T00:00:00Z</updated>
  8658. </entry>
  8659. <entry>
  8660. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.06</id>
  8661. <title>New version 2016.03.06</title>
  8662. <link href="http://ytdl-org.github.io/youtube-dl" />
  8663. <content type="xhtml">
  8664. <div xmlns="http://www.w3.org/1999/xhtml">
  8665. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.06/">https://yt-dl.org/downloads/2016.03.06/</a>
  8666. </div>
  8667. </content>
  8668. <author>
  8669. <name>The youtube-dl maintainers</name>
  8670. </author>
  8671. <updated>2016-03-06T00:00:00Z</updated>
  8672. </entry>
  8673. <entry>
  8674. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.14</id>
  8675. <title>New version 2016.03.14</title>
  8676. <link href="http://ytdl-org.github.io/youtube-dl" />
  8677. <content type="xhtml">
  8678. <div xmlns="http://www.w3.org/1999/xhtml">
  8679. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.14/">https://yt-dl.org/downloads/2016.03.14/</a>
  8680. </div>
  8681. </content>
  8682. <author>
  8683. <name>The youtube-dl maintainers</name>
  8684. </author>
  8685. <updated>2016-03-14T00:00:00Z</updated>
  8686. </entry>
  8687. <entry>
  8688. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.18</id>
  8689. <title>New version 2016.03.18</title>
  8690. <link href="http://ytdl-org.github.io/youtube-dl" />
  8691. <content type="xhtml">
  8692. <div xmlns="http://www.w3.org/1999/xhtml">
  8693. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.18/">https://yt-dl.org/downloads/2016.03.18/</a>
  8694. </div>
  8695. </content>
  8696. <author>
  8697. <name>The youtube-dl maintainers</name>
  8698. </author>
  8699. <updated>2016-03-18T00:00:00Z</updated>
  8700. </entry>
  8701. <entry>
  8702. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.25</id>
  8703. <title>New version 2016.03.25</title>
  8704. <link href="http://ytdl-org.github.io/youtube-dl" />
  8705. <content type="xhtml">
  8706. <div xmlns="http://www.w3.org/1999/xhtml">
  8707. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.25/">https://yt-dl.org/downloads/2016.03.25/</a>
  8708. </div>
  8709. </content>
  8710. <author>
  8711. <name>The youtube-dl maintainers</name>
  8712. </author>
  8713. <updated>2016-03-25T00:00:00Z</updated>
  8714. </entry>
  8715. <entry>
  8716. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.26</id>
  8717. <title>New version 2016.03.26</title>
  8718. <link href="http://ytdl-org.github.io/youtube-dl" />
  8719. <content type="xhtml">
  8720. <div xmlns="http://www.w3.org/1999/xhtml">
  8721. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.26/">https://yt-dl.org/downloads/2016.03.26/</a>
  8722. </div>
  8723. </content>
  8724. <author>
  8725. <name>The youtube-dl maintainers</name>
  8726. </author>
  8727. <updated>2016-03-26T00:00:00Z</updated>
  8728. </entry>
  8729. <entry>
  8730. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.03.27</id>
  8731. <title>New version 2016.03.27</title>
  8732. <link href="http://ytdl-org.github.io/youtube-dl" />
  8733. <content type="xhtml">
  8734. <div xmlns="http://www.w3.org/1999/xhtml">
  8735. Downloads available at <a href="https://yt-dl.org/downloads/2016.03.27/">https://yt-dl.org/downloads/2016.03.27/</a>
  8736. </div>
  8737. </content>
  8738. <author>
  8739. <name>The youtube-dl maintainers</name>
  8740. </author>
  8741. <updated>2016-03-27T00:00:00Z</updated>
  8742. </entry>
  8743. <entry>
  8744. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.01</id>
  8745. <title>New version 2016.04.01</title>
  8746. <link href="http://ytdl-org.github.io/youtube-dl" />
  8747. <content type="xhtml">
  8748. <div xmlns="http://www.w3.org/1999/xhtml">
  8749. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.01/">https://yt-dl.org/downloads/2016.04.01/</a>
  8750. </div>
  8751. </content>
  8752. <author>
  8753. <name>The youtube-dl maintainers</name>
  8754. </author>
  8755. <updated>2016-04-01T00:00:00Z</updated>
  8756. </entry>
  8757. <entry>
  8758. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.05</id>
  8759. <title>New version 2016.04.05</title>
  8760. <link href="http://ytdl-org.github.io/youtube-dl" />
  8761. <content type="xhtml">
  8762. <div xmlns="http://www.w3.org/1999/xhtml">
  8763. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.05/">https://yt-dl.org/downloads/2016.04.05/</a>
  8764. </div>
  8765. </content>
  8766. <author>
  8767. <name>The youtube-dl maintainers</name>
  8768. </author>
  8769. <updated>2016-04-05T00:00:00Z</updated>
  8770. </entry>
  8771. <entry>
  8772. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.06</id>
  8773. <title>New version 2016.04.06</title>
  8774. <link href="http://ytdl-org.github.io/youtube-dl" />
  8775. <content type="xhtml">
  8776. <div xmlns="http://www.w3.org/1999/xhtml">
  8777. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.06/">https://yt-dl.org/downloads/2016.04.06/</a>
  8778. </div>
  8779. </content>
  8780. <author>
  8781. <name>The youtube-dl maintainers</name>
  8782. </author>
  8783. <updated>2016-04-06T00:00:00Z</updated>
  8784. </entry>
  8785. <entry>
  8786. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.13</id>
  8787. <title>New version 2016.04.13</title>
  8788. <link href="http://ytdl-org.github.io/youtube-dl" />
  8789. <content type="xhtml">
  8790. <div xmlns="http://www.w3.org/1999/xhtml">
  8791. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.13/">https://yt-dl.org/downloads/2016.04.13/</a>
  8792. </div>
  8793. </content>
  8794. <author>
  8795. <name>The youtube-dl maintainers</name>
  8796. </author>
  8797. <updated>2016-04-13T00:00:00Z</updated>
  8798. </entry>
  8799. <entry>
  8800. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.19</id>
  8801. <title>New version 2016.04.19</title>
  8802. <link href="http://ytdl-org.github.io/youtube-dl" />
  8803. <content type="xhtml">
  8804. <div xmlns="http://www.w3.org/1999/xhtml">
  8805. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.19/">https://yt-dl.org/downloads/2016.04.19/</a>
  8806. </div>
  8807. </content>
  8808. <author>
  8809. <name>The youtube-dl maintainers</name>
  8810. </author>
  8811. <updated>2016-04-19T00:00:00Z</updated>
  8812. </entry>
  8813. <entry>
  8814. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.04.24</id>
  8815. <title>New version 2016.04.24</title>
  8816. <link href="http://ytdl-org.github.io/youtube-dl" />
  8817. <content type="xhtml">
  8818. <div xmlns="http://www.w3.org/1999/xhtml">
  8819. Downloads available at <a href="https://yt-dl.org/downloads/2016.04.24/">https://yt-dl.org/downloads/2016.04.24/</a>
  8820. </div>
  8821. </content>
  8822. <author>
  8823. <name>The youtube-dl maintainers</name>
  8824. </author>
  8825. <updated>2016-04-24T00:00:00Z</updated>
  8826. </entry>
  8827. <entry>
  8828. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.01</id>
  8829. <title>New version 2016.05.01</title>
  8830. <link href="http://ytdl-org.github.io/youtube-dl" />
  8831. <content type="xhtml">
  8832. <div xmlns="http://www.w3.org/1999/xhtml">
  8833. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.01/">https://yt-dl.org/downloads/2016.05.01/</a>
  8834. </div>
  8835. </content>
  8836. <author>
  8837. <name>The youtube-dl maintainers</name>
  8838. </author>
  8839. <updated>2016-05-01T00:00:00Z</updated>
  8840. </entry>
  8841. <entry>
  8842. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.10</id>
  8843. <title>New version 2016.05.10</title>
  8844. <link href="http://ytdl-org.github.io/youtube-dl" />
  8845. <content type="xhtml">
  8846. <div xmlns="http://www.w3.org/1999/xhtml">
  8847. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.10/">https://yt-dl.org/downloads/2016.05.10/</a>
  8848. </div>
  8849. </content>
  8850. <author>
  8851. <name>The youtube-dl maintainers</name>
  8852. </author>
  8853. <updated>2016-05-10T00:00:00Z</updated>
  8854. </entry>
  8855. <entry>
  8856. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.16</id>
  8857. <title>New version 2016.05.16</title>
  8858. <link href="http://ytdl-org.github.io/youtube-dl" />
  8859. <content type="xhtml">
  8860. <div xmlns="http://www.w3.org/1999/xhtml">
  8861. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.16/">https://yt-dl.org/downloads/2016.05.16/</a>
  8862. </div>
  8863. </content>
  8864. <author>
  8865. <name>The youtube-dl maintainers</name>
  8866. </author>
  8867. <updated>2016-05-16T00:00:00Z</updated>
  8868. </entry>
  8869. <entry>
  8870. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.21.2</id>
  8871. <title>New version 2016.05.21.2</title>
  8872. <link href="http://ytdl-org.github.io/youtube-dl" />
  8873. <content type="xhtml">
  8874. <div xmlns="http://www.w3.org/1999/xhtml">
  8875. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.21.2/">https://yt-dl.org/downloads/2016.05.21.2/</a>
  8876. </div>
  8877. </content>
  8878. <author>
  8879. <name>The youtube-dl maintainers</name>
  8880. </author>
  8881. <updated>2016-05-21T00:00:02Z</updated>
  8882. </entry>
  8883. <entry>
  8884. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.30</id>
  8885. <title>New version 2016.05.30</title>
  8886. <link href="http://ytdl-org.github.io/youtube-dl" />
  8887. <content type="xhtml">
  8888. <div xmlns="http://www.w3.org/1999/xhtml">
  8889. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.30/">https://yt-dl.org/downloads/2016.05.30/</a>
  8890. </div>
  8891. </content>
  8892. <author>
  8893. <name>The youtube-dl maintainers</name>
  8894. </author>
  8895. <updated>2016-05-30T00:00:00Z</updated>
  8896. </entry>
  8897. <entry>
  8898. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.30.1</id>
  8899. <title>New version 2016.05.30.1</title>
  8900. <link href="http://ytdl-org.github.io/youtube-dl" />
  8901. <content type="xhtml">
  8902. <div xmlns="http://www.w3.org/1999/xhtml">
  8903. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.30.1/">https://yt-dl.org/downloads/2016.05.30.1/</a>
  8904. </div>
  8905. </content>
  8906. <author>
  8907. <name>The youtube-dl maintainers</name>
  8908. </author>
  8909. <updated>2016-05-30T00:00:01Z</updated>
  8910. </entry>
  8911. <entry>
  8912. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.05.30.2</id>
  8913. <title>New version 2016.05.30.2</title>
  8914. <link href="http://ytdl-org.github.io/youtube-dl" />
  8915. <content type="xhtml">
  8916. <div xmlns="http://www.w3.org/1999/xhtml">
  8917. Downloads available at <a href="https://yt-dl.org/downloads/2016.05.30.2/">https://yt-dl.org/downloads/2016.05.30.2/</a>
  8918. </div>
  8919. </content>
  8920. <author>
  8921. <name>The youtube-dl maintainers</name>
  8922. </author>
  8923. <updated>2016-05-30T00:00:02Z</updated>
  8924. </entry>
  8925. <entry>
  8926. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.02</id>
  8927. <title>New version 2016.06.02</title>
  8928. <link href="http://ytdl-org.github.io/youtube-dl" />
  8929. <content type="xhtml">
  8930. <div xmlns="http://www.w3.org/1999/xhtml">
  8931. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.02/">https://yt-dl.org/downloads/2016.06.02/</a>
  8932. </div>
  8933. </content>
  8934. <author>
  8935. <name>The youtube-dl maintainers</name>
  8936. </author>
  8937. <updated>2016-06-02T00:00:00Z</updated>
  8938. </entry>
  8939. <entry>
  8940. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.03</id>
  8941. <title>New version 2016.06.03</title>
  8942. <link href="http://ytdl-org.github.io/youtube-dl" />
  8943. <content type="xhtml">
  8944. <div xmlns="http://www.w3.org/1999/xhtml">
  8945. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.03/">https://yt-dl.org/downloads/2016.06.03/</a>
  8946. </div>
  8947. </content>
  8948. <author>
  8949. <name>The youtube-dl maintainers</name>
  8950. </author>
  8951. <updated>2016-06-03T00:00:00Z</updated>
  8952. </entry>
  8953. <entry>
  8954. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.11</id>
  8955. <title>New version 2016.06.11</title>
  8956. <link href="http://ytdl-org.github.io/youtube-dl" />
  8957. <content type="xhtml">
  8958. <div xmlns="http://www.w3.org/1999/xhtml">
  8959. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.11/">https://yt-dl.org/downloads/2016.06.11/</a>
  8960. </div>
  8961. </content>
  8962. <author>
  8963. <name>The youtube-dl maintainers</name>
  8964. </author>
  8965. <updated>2016-06-11T00:00:00Z</updated>
  8966. </entry>
  8967. <entry>
  8968. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.11.1</id>
  8969. <title>New version 2016.06.11.1</title>
  8970. <link href="http://ytdl-org.github.io/youtube-dl" />
  8971. <content type="xhtml">
  8972. <div xmlns="http://www.w3.org/1999/xhtml">
  8973. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.11.1/">https://yt-dl.org/downloads/2016.06.11.1/</a>
  8974. </div>
  8975. </content>
  8976. <author>
  8977. <name>The youtube-dl maintainers</name>
  8978. </author>
  8979. <updated>2016-06-11T00:00:01Z</updated>
  8980. </entry>
  8981. <entry>
  8982. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.11.3</id>
  8983. <title>New version 2016.06.11.3</title>
  8984. <link href="http://ytdl-org.github.io/youtube-dl" />
  8985. <content type="xhtml">
  8986. <div xmlns="http://www.w3.org/1999/xhtml">
  8987. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.11.3/">https://yt-dl.org/downloads/2016.06.11.3/</a>
  8988. </div>
  8989. </content>
  8990. <author>
  8991. <name>The youtube-dl maintainers</name>
  8992. </author>
  8993. <updated>2016-06-11T00:00:03Z</updated>
  8994. </entry>
  8995. <entry>
  8996. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.12</id>
  8997. <title>New version 2016.06.12</title>
  8998. <link href="http://ytdl-org.github.io/youtube-dl" />
  8999. <content type="xhtml">
  9000. <div xmlns="http://www.w3.org/1999/xhtml">
  9001. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.12/">https://yt-dl.org/downloads/2016.06.12/</a>
  9002. </div>
  9003. </content>
  9004. <author>
  9005. <name>The youtube-dl maintainers</name>
  9006. </author>
  9007. <updated>2016-06-12T00:00:00Z</updated>
  9008. </entry>
  9009. <entry>
  9010. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.14</id>
  9011. <title>New version 2016.06.14</title>
  9012. <link href="http://ytdl-org.github.io/youtube-dl" />
  9013. <content type="xhtml">
  9014. <div xmlns="http://www.w3.org/1999/xhtml">
  9015. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.14/">https://yt-dl.org/downloads/2016.06.14/</a>
  9016. </div>
  9017. </content>
  9018. <author>
  9019. <name>The youtube-dl maintainers</name>
  9020. </author>
  9021. <updated>2016-06-14T00:00:00Z</updated>
  9022. </entry>
  9023. <entry>
  9024. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.16</id>
  9025. <title>New version 2016.06.16</title>
  9026. <link href="http://ytdl-org.github.io/youtube-dl" />
  9027. <content type="xhtml">
  9028. <div xmlns="http://www.w3.org/1999/xhtml">
  9029. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.16/">https://yt-dl.org/downloads/2016.06.16/</a>
  9030. </div>
  9031. </content>
  9032. <author>
  9033. <name>The youtube-dl maintainers</name>
  9034. </author>
  9035. <updated>2016-06-16T00:00:00Z</updated>
  9036. </entry>
  9037. <entry>
  9038. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.18.1</id>
  9039. <title>New version 2016.06.18.1</title>
  9040. <link href="http://ytdl-org.github.io/youtube-dl" />
  9041. <content type="xhtml">
  9042. <div xmlns="http://www.w3.org/1999/xhtml">
  9043. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.18.1/">https://yt-dl.org/downloads/2016.06.18.1/</a>
  9044. </div>
  9045. </content>
  9046. <author>
  9047. <name>The youtube-dl maintainers</name>
  9048. </author>
  9049. <updated>2016-06-18T00:00:01Z</updated>
  9050. </entry>
  9051. <entry>
  9052. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.19</id>
  9053. <title>New version 2016.06.19</title>
  9054. <link href="http://ytdl-org.github.io/youtube-dl" />
  9055. <content type="xhtml">
  9056. <div xmlns="http://www.w3.org/1999/xhtml">
  9057. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.19/">https://yt-dl.org/downloads/2016.06.19/</a>
  9058. </div>
  9059. </content>
  9060. <author>
  9061. <name>The youtube-dl maintainers</name>
  9062. </author>
  9063. <updated>2016-06-19T00:00:00Z</updated>
  9064. </entry>
  9065. <entry>
  9066. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.19.1</id>
  9067. <title>New version 2016.06.19.1</title>
  9068. <link href="http://ytdl-org.github.io/youtube-dl" />
  9069. <content type="xhtml">
  9070. <div xmlns="http://www.w3.org/1999/xhtml">
  9071. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.19.1/">https://yt-dl.org/downloads/2016.06.19.1/</a>
  9072. </div>
  9073. </content>
  9074. <author>
  9075. <name>The youtube-dl maintainers</name>
  9076. </author>
  9077. <updated>2016-06-19T00:00:01Z</updated>
  9078. </entry>
  9079. <entry>
  9080. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.20</id>
  9081. <title>New version 2016.06.20</title>
  9082. <link href="http://ytdl-org.github.io/youtube-dl" />
  9083. <content type="xhtml">
  9084. <div xmlns="http://www.w3.org/1999/xhtml">
  9085. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.20/">https://yt-dl.org/downloads/2016.06.20/</a>
  9086. </div>
  9087. </content>
  9088. <author>
  9089. <name>The youtube-dl maintainers</name>
  9090. </author>
  9091. <updated>2016-06-20T00:00:00Z</updated>
  9092. </entry>
  9093. <entry>
  9094. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.22</id>
  9095. <title>New version 2016.06.22</title>
  9096. <link href="http://ytdl-org.github.io/youtube-dl" />
  9097. <content type="xhtml">
  9098. <div xmlns="http://www.w3.org/1999/xhtml">
  9099. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.22/">https://yt-dl.org/downloads/2016.06.22/</a>
  9100. </div>
  9101. </content>
  9102. <author>
  9103. <name>The youtube-dl maintainers</name>
  9104. </author>
  9105. <updated>2016-06-22T00:00:00Z</updated>
  9106. </entry>
  9107. <entry>
  9108. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.23</id>
  9109. <title>New version 2016.06.23</title>
  9110. <link href="http://ytdl-org.github.io/youtube-dl" />
  9111. <content type="xhtml">
  9112. <div xmlns="http://www.w3.org/1999/xhtml">
  9113. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.23/">https://yt-dl.org/downloads/2016.06.23/</a>
  9114. </div>
  9115. </content>
  9116. <author>
  9117. <name>The youtube-dl maintainers</name>
  9118. </author>
  9119. <updated>2016-06-23T00:00:00Z</updated>
  9120. </entry>
  9121. <entry>
  9122. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.23.1</id>
  9123. <title>New version 2016.06.23.1</title>
  9124. <link href="http://ytdl-org.github.io/youtube-dl" />
  9125. <content type="xhtml">
  9126. <div xmlns="http://www.w3.org/1999/xhtml">
  9127. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.23.1/">https://yt-dl.org/downloads/2016.06.23.1/</a>
  9128. </div>
  9129. </content>
  9130. <author>
  9131. <name>The youtube-dl maintainers</name>
  9132. </author>
  9133. <updated>2016-06-23T00:00:01Z</updated>
  9134. </entry>
  9135. <entry>
  9136. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.25</id>
  9137. <title>New version 2016.06.25</title>
  9138. <link href="http://ytdl-org.github.io/youtube-dl" />
  9139. <content type="xhtml">
  9140. <div xmlns="http://www.w3.org/1999/xhtml">
  9141. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.25/">https://yt-dl.org/downloads/2016.06.25/</a>
  9142. </div>
  9143. </content>
  9144. <author>
  9145. <name>The youtube-dl maintainers</name>
  9146. </author>
  9147. <updated>2016-06-25T00:00:00Z</updated>
  9148. </entry>
  9149. <entry>
  9150. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.26</id>
  9151. <title>New version 2016.06.26</title>
  9152. <link href="http://ytdl-org.github.io/youtube-dl" />
  9153. <content type="xhtml">
  9154. <div xmlns="http://www.w3.org/1999/xhtml">
  9155. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.26/">https://yt-dl.org/downloads/2016.06.26/</a>
  9156. </div>
  9157. </content>
  9158. <author>
  9159. <name>The youtube-dl maintainers</name>
  9160. </author>
  9161. <updated>2016-06-26T00:00:00Z</updated>
  9162. </entry>
  9163. <entry>
  9164. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.27</id>
  9165. <title>New version 2016.06.27</title>
  9166. <link href="http://ytdl-org.github.io/youtube-dl" />
  9167. <content type="xhtml">
  9168. <div xmlns="http://www.w3.org/1999/xhtml">
  9169. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.27/">https://yt-dl.org/downloads/2016.06.27/</a>
  9170. </div>
  9171. </content>
  9172. <author>
  9173. <name>The youtube-dl maintainers</name>
  9174. </author>
  9175. <updated>2016-06-27T00:00:00Z</updated>
  9176. </entry>
  9177. <entry>
  9178. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.06.30</id>
  9179. <title>New version 2016.06.30</title>
  9180. <link href="http://ytdl-org.github.io/youtube-dl" />
  9181. <content type="xhtml">
  9182. <div xmlns="http://www.w3.org/1999/xhtml">
  9183. Downloads available at <a href="https://yt-dl.org/downloads/2016.06.30/">https://yt-dl.org/downloads/2016.06.30/</a>
  9184. </div>
  9185. </content>
  9186. <author>
  9187. <name>The youtube-dl maintainers</name>
  9188. </author>
  9189. <updated>2016-06-30T00:00:00Z</updated>
  9190. </entry>
  9191. <entry>
  9192. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.01</id>
  9193. <title>New version 2016.07.01</title>
  9194. <link href="http://ytdl-org.github.io/youtube-dl" />
  9195. <content type="xhtml">
  9196. <div xmlns="http://www.w3.org/1999/xhtml">
  9197. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.01/">https://yt-dl.org/downloads/2016.07.01/</a>
  9198. </div>
  9199. </content>
  9200. <author>
  9201. <name>The youtube-dl maintainers</name>
  9202. </author>
  9203. <updated>2016-07-01T00:00:00Z</updated>
  9204. </entry>
  9205. <entry>
  9206. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.02</id>
  9207. <title>New version 2016.07.02</title>
  9208. <link href="http://ytdl-org.github.io/youtube-dl" />
  9209. <content type="xhtml">
  9210. <div xmlns="http://www.w3.org/1999/xhtml">
  9211. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.02/">https://yt-dl.org/downloads/2016.07.02/</a>
  9212. </div>
  9213. </content>
  9214. <author>
  9215. <name>The youtube-dl maintainers</name>
  9216. </author>
  9217. <updated>2016-07-02T00:00:00Z</updated>
  9218. </entry>
  9219. <entry>
  9220. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.03</id>
  9221. <title>New version 2016.07.03</title>
  9222. <link href="http://ytdl-org.github.io/youtube-dl" />
  9223. <content type="xhtml">
  9224. <div xmlns="http://www.w3.org/1999/xhtml">
  9225. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.03/">https://yt-dl.org/downloads/2016.07.03/</a>
  9226. </div>
  9227. </content>
  9228. <author>
  9229. <name>The youtube-dl maintainers</name>
  9230. </author>
  9231. <updated>2016-07-03T00:00:00Z</updated>
  9232. </entry>
  9233. <entry>
  9234. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.03.1</id>
  9235. <title>New version 2016.07.03.1</title>
  9236. <link href="http://ytdl-org.github.io/youtube-dl" />
  9237. <content type="xhtml">
  9238. <div xmlns="http://www.w3.org/1999/xhtml">
  9239. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.03.1/">https://yt-dl.org/downloads/2016.07.03.1/</a>
  9240. </div>
  9241. </content>
  9242. <author>
  9243. <name>The youtube-dl maintainers</name>
  9244. </author>
  9245. <updated>2016-07-03T00:00:01Z</updated>
  9246. </entry>
  9247. <entry>
  9248. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.05</id>
  9249. <title>New version 2016.07.05</title>
  9250. <link href="http://ytdl-org.github.io/youtube-dl" />
  9251. <content type="xhtml">
  9252. <div xmlns="http://www.w3.org/1999/xhtml">
  9253. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.05/">https://yt-dl.org/downloads/2016.07.05/</a>
  9254. </div>
  9255. </content>
  9256. <author>
  9257. <name>The youtube-dl maintainers</name>
  9258. </author>
  9259. <updated>2016-07-05T00:00:00Z</updated>
  9260. </entry>
  9261. <entry>
  9262. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.06</id>
  9263. <title>New version 2016.07.06</title>
  9264. <link href="http://ytdl-org.github.io/youtube-dl" />
  9265. <content type="xhtml">
  9266. <div xmlns="http://www.w3.org/1999/xhtml">
  9267. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.06/">https://yt-dl.org/downloads/2016.07.06/</a>
  9268. </div>
  9269. </content>
  9270. <author>
  9271. <name>The youtube-dl maintainers</name>
  9272. </author>
  9273. <updated>2016-07-06T00:00:00Z</updated>
  9274. </entry>
  9275. <entry>
  9276. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.07</id>
  9277. <title>New version 2016.07.07</title>
  9278. <link href="http://ytdl-org.github.io/youtube-dl" />
  9279. <content type="xhtml">
  9280. <div xmlns="http://www.w3.org/1999/xhtml">
  9281. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.07/">https://yt-dl.org/downloads/2016.07.07/</a>
  9282. </div>
  9283. </content>
  9284. <author>
  9285. <name>The youtube-dl maintainers</name>
  9286. </author>
  9287. <updated>2016-07-07T00:00:00Z</updated>
  9288. </entry>
  9289. <entry>
  9290. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.09</id>
  9291. <title>New version 2016.07.09</title>
  9292. <link href="http://ytdl-org.github.io/youtube-dl" />
  9293. <content type="xhtml">
  9294. <div xmlns="http://www.w3.org/1999/xhtml">
  9295. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.09/">https://yt-dl.org/downloads/2016.07.09/</a>
  9296. </div>
  9297. </content>
  9298. <author>
  9299. <name>The youtube-dl maintainers</name>
  9300. </author>
  9301. <updated>2016-07-09T00:00:00Z</updated>
  9302. </entry>
  9303. <entry>
  9304. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.09.1</id>
  9305. <title>New version 2016.07.09.1</title>
  9306. <link href="http://ytdl-org.github.io/youtube-dl" />
  9307. <content type="xhtml">
  9308. <div xmlns="http://www.w3.org/1999/xhtml">
  9309. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.09.1/">https://yt-dl.org/downloads/2016.07.09.1/</a>
  9310. </div>
  9311. </content>
  9312. <author>
  9313. <name>The youtube-dl maintainers</name>
  9314. </author>
  9315. <updated>2016-07-09T00:00:01Z</updated>
  9316. </entry>
  9317. <entry>
  9318. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.09.2</id>
  9319. <title>New version 2016.07.09.2</title>
  9320. <link href="http://ytdl-org.github.io/youtube-dl" />
  9321. <content type="xhtml">
  9322. <div xmlns="http://www.w3.org/1999/xhtml">
  9323. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.09.2/">https://yt-dl.org/downloads/2016.07.09.2/</a>
  9324. </div>
  9325. </content>
  9326. <author>
  9327. <name>The youtube-dl maintainers</name>
  9328. </author>
  9329. <updated>2016-07-09T00:00:02Z</updated>
  9330. </entry>
  9331. <entry>
  9332. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.11</id>
  9333. <title>New version 2016.07.11</title>
  9334. <link href="http://ytdl-org.github.io/youtube-dl" />
  9335. <content type="xhtml">
  9336. <div xmlns="http://www.w3.org/1999/xhtml">
  9337. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.11/">https://yt-dl.org/downloads/2016.07.11/</a>
  9338. </div>
  9339. </content>
  9340. <author>
  9341. <name>The youtube-dl maintainers</name>
  9342. </author>
  9343. <updated>2016-07-11T00:00:00Z</updated>
  9344. </entry>
  9345. <entry>
  9346. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.13</id>
  9347. <title>New version 2016.07.13</title>
  9348. <link href="http://ytdl-org.github.io/youtube-dl" />
  9349. <content type="xhtml">
  9350. <div xmlns="http://www.w3.org/1999/xhtml">
  9351. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.13/">https://yt-dl.org/downloads/2016.07.13/</a>
  9352. </div>
  9353. </content>
  9354. <author>
  9355. <name>The youtube-dl maintainers</name>
  9356. </author>
  9357. <updated>2016-07-13T00:00:00Z</updated>
  9358. </entry>
  9359. <entry>
  9360. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.16</id>
  9361. <title>New version 2016.07.16</title>
  9362. <link href="http://ytdl-org.github.io/youtube-dl" />
  9363. <content type="xhtml">
  9364. <div xmlns="http://www.w3.org/1999/xhtml">
  9365. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.16/">https://yt-dl.org/downloads/2016.07.16/</a>
  9366. </div>
  9367. </content>
  9368. <author>
  9369. <name>The youtube-dl maintainers</name>
  9370. </author>
  9371. <updated>2016-07-16T00:00:00Z</updated>
  9372. </entry>
  9373. <entry>
  9374. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.17</id>
  9375. <title>New version 2016.07.17</title>
  9376. <link href="http://ytdl-org.github.io/youtube-dl" />
  9377. <content type="xhtml">
  9378. <div xmlns="http://www.w3.org/1999/xhtml">
  9379. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.17/">https://yt-dl.org/downloads/2016.07.17/</a>
  9380. </div>
  9381. </content>
  9382. <author>
  9383. <name>The youtube-dl maintainers</name>
  9384. </author>
  9385. <updated>2016-07-17T00:00:00Z</updated>
  9386. </entry>
  9387. <entry>
  9388. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.22</id>
  9389. <title>New version 2016.07.22</title>
  9390. <link href="http://ytdl-org.github.io/youtube-dl" />
  9391. <content type="xhtml">
  9392. <div xmlns="http://www.w3.org/1999/xhtml">
  9393. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.22/">https://yt-dl.org/downloads/2016.07.22/</a>
  9394. </div>
  9395. </content>
  9396. <author>
  9397. <name>The youtube-dl maintainers</name>
  9398. </author>
  9399. <updated>2016-07-22T00:00:00Z</updated>
  9400. </entry>
  9401. <entry>
  9402. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.24</id>
  9403. <title>New version 2016.07.24</title>
  9404. <link href="http://ytdl-org.github.io/youtube-dl" />
  9405. <content type="xhtml">
  9406. <div xmlns="http://www.w3.org/1999/xhtml">
  9407. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.24/">https://yt-dl.org/downloads/2016.07.24/</a>
  9408. </div>
  9409. </content>
  9410. <author>
  9411. <name>The youtube-dl maintainers</name>
  9412. </author>
  9413. <updated>2016-07-24T00:00:00Z</updated>
  9414. </entry>
  9415. <entry>
  9416. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.26.2</id>
  9417. <title>New version 2016.07.26.2</title>
  9418. <link href="http://ytdl-org.github.io/youtube-dl" />
  9419. <content type="xhtml">
  9420. <div xmlns="http://www.w3.org/1999/xhtml">
  9421. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.26.2/">https://yt-dl.org/downloads/2016.07.26.2/</a>
  9422. </div>
  9423. </content>
  9424. <author>
  9425. <name>The youtube-dl maintainers</name>
  9426. </author>
  9427. <updated>2016-07-26T00:00:02Z</updated>
  9428. </entry>
  9429. <entry>
  9430. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.28</id>
  9431. <title>New version 2016.07.28</title>
  9432. <link href="http://ytdl-org.github.io/youtube-dl" />
  9433. <content type="xhtml">
  9434. <div xmlns="http://www.w3.org/1999/xhtml">
  9435. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.28/">https://yt-dl.org/downloads/2016.07.28/</a>
  9436. </div>
  9437. </content>
  9438. <author>
  9439. <name>The youtube-dl maintainers</name>
  9440. </author>
  9441. <updated>2016-07-28T00:00:00Z</updated>
  9442. </entry>
  9443. <entry>
  9444. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.07.30</id>
  9445. <title>New version 2016.07.30</title>
  9446. <link href="http://ytdl-org.github.io/youtube-dl" />
  9447. <content type="xhtml">
  9448. <div xmlns="http://www.w3.org/1999/xhtml">
  9449. Downloads available at <a href="https://yt-dl.org/downloads/2016.07.30/">https://yt-dl.org/downloads/2016.07.30/</a>
  9450. </div>
  9451. </content>
  9452. <author>
  9453. <name>The youtube-dl maintainers</name>
  9454. </author>
  9455. <updated>2016-07-30T00:00:00Z</updated>
  9456. </entry>
  9457. <entry>
  9458. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.01</id>
  9459. <title>New version 2016.08.01</title>
  9460. <link href="http://ytdl-org.github.io/youtube-dl" />
  9461. <content type="xhtml">
  9462. <div xmlns="http://www.w3.org/1999/xhtml">
  9463. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.01/">https://yt-dl.org/downloads/2016.08.01/</a>
  9464. </div>
  9465. </content>
  9466. <author>
  9467. <name>The youtube-dl maintainers</name>
  9468. </author>
  9469. <updated>2016-08-01T00:00:00Z</updated>
  9470. </entry>
  9471. <entry>
  9472. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.06</id>
  9473. <title>New version 2016.08.06</title>
  9474. <link href="http://ytdl-org.github.io/youtube-dl" />
  9475. <content type="xhtml">
  9476. <div xmlns="http://www.w3.org/1999/xhtml">
  9477. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.06/">https://yt-dl.org/downloads/2016.08.06/</a>
  9478. </div>
  9479. </content>
  9480. <author>
  9481. <name>The youtube-dl maintainers</name>
  9482. </author>
  9483. <updated>2016-08-06T00:00:00Z</updated>
  9484. </entry>
  9485. <entry>
  9486. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.07</id>
  9487. <title>New version 2016.08.07</title>
  9488. <link href="http://ytdl-org.github.io/youtube-dl" />
  9489. <content type="xhtml">
  9490. <div xmlns="http://www.w3.org/1999/xhtml">
  9491. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.07/">https://yt-dl.org/downloads/2016.08.07/</a>
  9492. </div>
  9493. </content>
  9494. <author>
  9495. <name>The youtube-dl maintainers</name>
  9496. </author>
  9497. <updated>2016-08-07T00:00:00Z</updated>
  9498. </entry>
  9499. <entry>
  9500. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.10</id>
  9501. <title>New version 2016.08.10</title>
  9502. <link href="http://ytdl-org.github.io/youtube-dl" />
  9503. <content type="xhtml">
  9504. <div xmlns="http://www.w3.org/1999/xhtml">
  9505. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.10/">https://yt-dl.org/downloads/2016.08.10/</a>
  9506. </div>
  9507. </content>
  9508. <author>
  9509. <name>The youtube-dl maintainers</name>
  9510. </author>
  9511. <updated>2016-08-10T00:00:00Z</updated>
  9512. </entry>
  9513. <entry>
  9514. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.12</id>
  9515. <title>New version 2016.08.12</title>
  9516. <link href="http://ytdl-org.github.io/youtube-dl" />
  9517. <content type="xhtml">
  9518. <div xmlns="http://www.w3.org/1999/xhtml">
  9519. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.12/">https://yt-dl.org/downloads/2016.08.12/</a>
  9520. </div>
  9521. </content>
  9522. <author>
  9523. <name>The youtube-dl maintainers</name>
  9524. </author>
  9525. <updated>2016-08-12T00:00:00Z</updated>
  9526. </entry>
  9527. <entry>
  9528. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.13</id>
  9529. <title>New version 2016.08.13</title>
  9530. <link href="http://ytdl-org.github.io/youtube-dl" />
  9531. <content type="xhtml">
  9532. <div xmlns="http://www.w3.org/1999/xhtml">
  9533. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.13/">https://yt-dl.org/downloads/2016.08.13/</a>
  9534. </div>
  9535. </content>
  9536. <author>
  9537. <name>The youtube-dl maintainers</name>
  9538. </author>
  9539. <updated>2016-08-13T00:00:00Z</updated>
  9540. </entry>
  9541. <entry>
  9542. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.17</id>
  9543. <title>New version 2016.08.17</title>
  9544. <link href="http://ytdl-org.github.io/youtube-dl" />
  9545. <content type="xhtml">
  9546. <div xmlns="http://www.w3.org/1999/xhtml">
  9547. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.17/">https://yt-dl.org/downloads/2016.08.17/</a>
  9548. </div>
  9549. </content>
  9550. <author>
  9551. <name>The youtube-dl maintainers</name>
  9552. </author>
  9553. <updated>2016-08-17T00:00:00Z</updated>
  9554. </entry>
  9555. <entry>
  9556. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.19</id>
  9557. <title>New version 2016.08.19</title>
  9558. <link href="http://ytdl-org.github.io/youtube-dl" />
  9559. <content type="xhtml">
  9560. <div xmlns="http://www.w3.org/1999/xhtml">
  9561. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.19/">https://yt-dl.org/downloads/2016.08.19/</a>
  9562. </div>
  9563. </content>
  9564. <author>
  9565. <name>The youtube-dl maintainers</name>
  9566. </author>
  9567. <updated>2016-08-19T00:00:00Z</updated>
  9568. </entry>
  9569. <entry>
  9570. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.22</id>
  9571. <title>New version 2016.08.22</title>
  9572. <link href="http://ytdl-org.github.io/youtube-dl" />
  9573. <content type="xhtml">
  9574. <div xmlns="http://www.w3.org/1999/xhtml">
  9575. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.22/">https://yt-dl.org/downloads/2016.08.22/</a>
  9576. </div>
  9577. </content>
  9578. <author>
  9579. <name>The youtube-dl maintainers</name>
  9580. </author>
  9581. <updated>2016-08-22T00:00:00Z</updated>
  9582. </entry>
  9583. <entry>
  9584. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.24</id>
  9585. <title>New version 2016.08.24</title>
  9586. <link href="http://ytdl-org.github.io/youtube-dl" />
  9587. <content type="xhtml">
  9588. <div xmlns="http://www.w3.org/1999/xhtml">
  9589. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.24/">https://yt-dl.org/downloads/2016.08.24/</a>
  9590. </div>
  9591. </content>
  9592. <author>
  9593. <name>The youtube-dl maintainers</name>
  9594. </author>
  9595. <updated>2016-08-24T00:00:00Z</updated>
  9596. </entry>
  9597. <entry>
  9598. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.24.1</id>
  9599. <title>New version 2016.08.24.1</title>
  9600. <link href="http://ytdl-org.github.io/youtube-dl" />
  9601. <content type="xhtml">
  9602. <div xmlns="http://www.w3.org/1999/xhtml">
  9603. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.24.1/">https://yt-dl.org/downloads/2016.08.24.1/</a>
  9604. </div>
  9605. </content>
  9606. <author>
  9607. <name>The youtube-dl maintainers</name>
  9608. </author>
  9609. <updated>2016-08-24T00:00:01Z</updated>
  9610. </entry>
  9611. <entry>
  9612. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.28</id>
  9613. <title>New version 2016.08.28</title>
  9614. <link href="http://ytdl-org.github.io/youtube-dl" />
  9615. <content type="xhtml">
  9616. <div xmlns="http://www.w3.org/1999/xhtml">
  9617. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.28/">https://yt-dl.org/downloads/2016.08.28/</a>
  9618. </div>
  9619. </content>
  9620. <author>
  9621. <name>The youtube-dl maintainers</name>
  9622. </author>
  9623. <updated>2016-08-28T00:00:00Z</updated>
  9624. </entry>
  9625. <entry>
  9626. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.08.31</id>
  9627. <title>New version 2016.08.31</title>
  9628. <link href="http://ytdl-org.github.io/youtube-dl" />
  9629. <content type="xhtml">
  9630. <div xmlns="http://www.w3.org/1999/xhtml">
  9631. Downloads available at <a href="https://yt-dl.org/downloads/2016.08.31/">https://yt-dl.org/downloads/2016.08.31/</a>
  9632. </div>
  9633. </content>
  9634. <author>
  9635. <name>The youtube-dl maintainers</name>
  9636. </author>
  9637. <updated>2016-08-31T00:00:00Z</updated>
  9638. </entry>
  9639. <entry>
  9640. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.03</id>
  9641. <title>New version 2016.09.03</title>
  9642. <link href="http://ytdl-org.github.io/youtube-dl" />
  9643. <content type="xhtml">
  9644. <div xmlns="http://www.w3.org/1999/xhtml">
  9645. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.03/">https://yt-dl.org/downloads/2016.09.03/</a>
  9646. </div>
  9647. </content>
  9648. <author>
  9649. <name>The youtube-dl maintainers</name>
  9650. </author>
  9651. <updated>2016-09-03T00:00:00Z</updated>
  9652. </entry>
  9653. <entry>
  9654. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.04</id>
  9655. <title>New version 2016.09.04</title>
  9656. <link href="http://ytdl-org.github.io/youtube-dl" />
  9657. <content type="xhtml">
  9658. <div xmlns="http://www.w3.org/1999/xhtml">
  9659. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.04/">https://yt-dl.org/downloads/2016.09.04/</a>
  9660. </div>
  9661. </content>
  9662. <author>
  9663. <name>The youtube-dl maintainers</name>
  9664. </author>
  9665. <updated>2016-09-04T00:00:00Z</updated>
  9666. </entry>
  9667. <entry>
  9668. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.04.1</id>
  9669. <title>New version 2016.09.04.1</title>
  9670. <link href="http://ytdl-org.github.io/youtube-dl" />
  9671. <content type="xhtml">
  9672. <div xmlns="http://www.w3.org/1999/xhtml">
  9673. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.04.1/">https://yt-dl.org/downloads/2016.09.04.1/</a>
  9674. </div>
  9675. </content>
  9676. <author>
  9677. <name>The youtube-dl maintainers</name>
  9678. </author>
  9679. <updated>2016-09-04T00:00:01Z</updated>
  9680. </entry>
  9681. <entry>
  9682. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.08</id>
  9683. <title>New version 2016.09.08</title>
  9684. <link href="http://ytdl-org.github.io/youtube-dl" />
  9685. <content type="xhtml">
  9686. <div xmlns="http://www.w3.org/1999/xhtml">
  9687. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.08/">https://yt-dl.org/downloads/2016.09.08/</a>
  9688. </div>
  9689. </content>
  9690. <author>
  9691. <name>The youtube-dl maintainers</name>
  9692. </author>
  9693. <updated>2016-09-08T00:00:00Z</updated>
  9694. </entry>
  9695. <entry>
  9696. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.11</id>
  9697. <title>New version 2016.09.11</title>
  9698. <link href="http://ytdl-org.github.io/youtube-dl" />
  9699. <content type="xhtml">
  9700. <div xmlns="http://www.w3.org/1999/xhtml">
  9701. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.11/">https://yt-dl.org/downloads/2016.09.11/</a>
  9702. </div>
  9703. </content>
  9704. <author>
  9705. <name>The youtube-dl maintainers</name>
  9706. </author>
  9707. <updated>2016-09-11T00:00:00Z</updated>
  9708. </entry>
  9709. <entry>
  9710. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.11.1</id>
  9711. <title>New version 2016.09.11.1</title>
  9712. <link href="http://ytdl-org.github.io/youtube-dl" />
  9713. <content type="xhtml">
  9714. <div xmlns="http://www.w3.org/1999/xhtml">
  9715. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.11.1/">https://yt-dl.org/downloads/2016.09.11.1/</a>
  9716. </div>
  9717. </content>
  9718. <author>
  9719. <name>The youtube-dl maintainers</name>
  9720. </author>
  9721. <updated>2016-09-11T00:00:01Z</updated>
  9722. </entry>
  9723. <entry>
  9724. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.15</id>
  9725. <title>New version 2016.09.15</title>
  9726. <link href="http://ytdl-org.github.io/youtube-dl" />
  9727. <content type="xhtml">
  9728. <div xmlns="http://www.w3.org/1999/xhtml">
  9729. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.15/">https://yt-dl.org/downloads/2016.09.15/</a>
  9730. </div>
  9731. </content>
  9732. <author>
  9733. <name>The youtube-dl maintainers</name>
  9734. </author>
  9735. <updated>2016-09-15T00:00:00Z</updated>
  9736. </entry>
  9737. <entry>
  9738. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.18</id>
  9739. <title>New version 2016.09.18</title>
  9740. <link href="http://ytdl-org.github.io/youtube-dl" />
  9741. <content type="xhtml">
  9742. <div xmlns="http://www.w3.org/1999/xhtml">
  9743. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.18/">https://yt-dl.org/downloads/2016.09.18/</a>
  9744. </div>
  9745. </content>
  9746. <author>
  9747. <name>The youtube-dl maintainers</name>
  9748. </author>
  9749. <updated>2016-09-18T00:00:00Z</updated>
  9750. </entry>
  9751. <entry>
  9752. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.19</id>
  9753. <title>New version 2016.09.19</title>
  9754. <link href="http://ytdl-org.github.io/youtube-dl" />
  9755. <content type="xhtml">
  9756. <div xmlns="http://www.w3.org/1999/xhtml">
  9757. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.19/">https://yt-dl.org/downloads/2016.09.19/</a>
  9758. </div>
  9759. </content>
  9760. <author>
  9761. <name>The youtube-dl maintainers</name>
  9762. </author>
  9763. <updated>2016-09-19T00:00:00Z</updated>
  9764. </entry>
  9765. <entry>
  9766. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.24</id>
  9767. <title>New version 2016.09.24</title>
  9768. <link href="http://ytdl-org.github.io/youtube-dl" />
  9769. <content type="xhtml">
  9770. <div xmlns="http://www.w3.org/1999/xhtml">
  9771. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.24/">https://yt-dl.org/downloads/2016.09.24/</a>
  9772. </div>
  9773. </content>
  9774. <author>
  9775. <name>The youtube-dl maintainers</name>
  9776. </author>
  9777. <updated>2016-09-24T00:00:00Z</updated>
  9778. </entry>
  9779. <entry>
  9780. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.09.27</id>
  9781. <title>New version 2016.09.27</title>
  9782. <link href="http://ytdl-org.github.io/youtube-dl" />
  9783. <content type="xhtml">
  9784. <div xmlns="http://www.w3.org/1999/xhtml">
  9785. Downloads available at <a href="https://yt-dl.org/downloads/2016.09.27/">https://yt-dl.org/downloads/2016.09.27/</a>
  9786. </div>
  9787. </content>
  9788. <author>
  9789. <name>The youtube-dl maintainers</name>
  9790. </author>
  9791. <updated>2016-09-27T00:00:00Z</updated>
  9792. </entry>
  9793. <entry>
  9794. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.02</id>
  9795. <title>New version 2016.10.02</title>
  9796. <link href="http://ytdl-org.github.io/youtube-dl" />
  9797. <content type="xhtml">
  9798. <div xmlns="http://www.w3.org/1999/xhtml">
  9799. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.02/">https://yt-dl.org/downloads/2016.10.02/</a>
  9800. </div>
  9801. </content>
  9802. <author>
  9803. <name>The youtube-dl maintainers</name>
  9804. </author>
  9805. <updated>2016-10-02T00:00:00Z</updated>
  9806. </entry>
  9807. <entry>
  9808. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.07</id>
  9809. <title>New version 2016.10.07</title>
  9810. <link href="http://ytdl-org.github.io/youtube-dl" />
  9811. <content type="xhtml">
  9812. <div xmlns="http://www.w3.org/1999/xhtml">
  9813. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.07/">https://yt-dl.org/downloads/2016.10.07/</a>
  9814. </div>
  9815. </content>
  9816. <author>
  9817. <name>The youtube-dl maintainers</name>
  9818. </author>
  9819. <updated>2016-10-07T00:00:00Z</updated>
  9820. </entry>
  9821. <entry>
  9822. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.12</id>
  9823. <title>New version 2016.10.12</title>
  9824. <link href="http://ytdl-org.github.io/youtube-dl" />
  9825. <content type="xhtml">
  9826. <div xmlns="http://www.w3.org/1999/xhtml">
  9827. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.12/">https://yt-dl.org/downloads/2016.10.12/</a>
  9828. </div>
  9829. </content>
  9830. <author>
  9831. <name>The youtube-dl maintainers</name>
  9832. </author>
  9833. <updated>2016-10-12T00:00:00Z</updated>
  9834. </entry>
  9835. <entry>
  9836. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.16</id>
  9837. <title>New version 2016.10.16</title>
  9838. <link href="http://ytdl-org.github.io/youtube-dl" />
  9839. <content type="xhtml">
  9840. <div xmlns="http://www.w3.org/1999/xhtml">
  9841. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.16/">https://yt-dl.org/downloads/2016.10.16/</a>
  9842. </div>
  9843. </content>
  9844. <author>
  9845. <name>The youtube-dl maintainers</name>
  9846. </author>
  9847. <updated>2016-10-16T00:00:00Z</updated>
  9848. </entry>
  9849. <entry>
  9850. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.19</id>
  9851. <title>New version 2016.10.19</title>
  9852. <link href="http://ytdl-org.github.io/youtube-dl" />
  9853. <content type="xhtml">
  9854. <div xmlns="http://www.w3.org/1999/xhtml">
  9855. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.19/">https://yt-dl.org/downloads/2016.10.19/</a>
  9856. </div>
  9857. </content>
  9858. <author>
  9859. <name>The youtube-dl maintainers</name>
  9860. </author>
  9861. <updated>2016-10-19T00:00:00Z</updated>
  9862. </entry>
  9863. <entry>
  9864. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.21</id>
  9865. <title>New version 2016.10.21</title>
  9866. <link href="http://ytdl-org.github.io/youtube-dl" />
  9867. <content type="xhtml">
  9868. <div xmlns="http://www.w3.org/1999/xhtml">
  9869. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.21/">https://yt-dl.org/downloads/2016.10.21/</a>
  9870. </div>
  9871. </content>
  9872. <author>
  9873. <name>The youtube-dl maintainers</name>
  9874. </author>
  9875. <updated>2016-10-21T00:00:00Z</updated>
  9876. </entry>
  9877. <entry>
  9878. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.21.1</id>
  9879. <title>New version 2016.10.21.1</title>
  9880. <link href="http://ytdl-org.github.io/youtube-dl" />
  9881. <content type="xhtml">
  9882. <div xmlns="http://www.w3.org/1999/xhtml">
  9883. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.21.1/">https://yt-dl.org/downloads/2016.10.21.1/</a>
  9884. </div>
  9885. </content>
  9886. <author>
  9887. <name>The youtube-dl maintainers</name>
  9888. </author>
  9889. <updated>2016-10-21T00:00:01Z</updated>
  9890. </entry>
  9891. <entry>
  9892. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.25</id>
  9893. <title>New version 2016.10.25</title>
  9894. <link href="http://ytdl-org.github.io/youtube-dl" />
  9895. <content type="xhtml">
  9896. <div xmlns="http://www.w3.org/1999/xhtml">
  9897. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.25/">https://yt-dl.org/downloads/2016.10.25/</a>
  9898. </div>
  9899. </content>
  9900. <author>
  9901. <name>The youtube-dl maintainers</name>
  9902. </author>
  9903. <updated>2016-10-25T00:00:00Z</updated>
  9904. </entry>
  9905. <entry>
  9906. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.26</id>
  9907. <title>New version 2016.10.26</title>
  9908. <link href="http://ytdl-org.github.io/youtube-dl" />
  9909. <content type="xhtml">
  9910. <div xmlns="http://www.w3.org/1999/xhtml">
  9911. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.26/">https://yt-dl.org/downloads/2016.10.26/</a>
  9912. </div>
  9913. </content>
  9914. <author>
  9915. <name>The youtube-dl maintainers</name>
  9916. </author>
  9917. <updated>2016-10-26T00:00:00Z</updated>
  9918. </entry>
  9919. <entry>
  9920. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.10.31</id>
  9921. <title>New version 2016.10.31</title>
  9922. <link href="http://ytdl-org.github.io/youtube-dl" />
  9923. <content type="xhtml">
  9924. <div xmlns="http://www.w3.org/1999/xhtml">
  9925. Downloads available at <a href="https://yt-dl.org/downloads/2016.10.31/">https://yt-dl.org/downloads/2016.10.31/</a>
  9926. </div>
  9927. </content>
  9928. <author>
  9929. <name>The youtube-dl maintainers</name>
  9930. </author>
  9931. <updated>2016-10-31T00:00:00Z</updated>
  9932. </entry>
  9933. <entry>
  9934. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.02</id>
  9935. <title>New version 2016.11.02</title>
  9936. <link href="http://ytdl-org.github.io/youtube-dl" />
  9937. <content type="xhtml">
  9938. <div xmlns="http://www.w3.org/1999/xhtml">
  9939. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.02/">https://yt-dl.org/downloads/2016.11.02/</a>
  9940. </div>
  9941. </content>
  9942. <author>
  9943. <name>The youtube-dl maintainers</name>
  9944. </author>
  9945. <updated>2016-11-02T00:00:00Z</updated>
  9946. </entry>
  9947. <entry>
  9948. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.04</id>
  9949. <title>New version 2016.11.04</title>
  9950. <link href="http://ytdl-org.github.io/youtube-dl" />
  9951. <content type="xhtml">
  9952. <div xmlns="http://www.w3.org/1999/xhtml">
  9953. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.04/">https://yt-dl.org/downloads/2016.11.04/</a>
  9954. </div>
  9955. </content>
  9956. <author>
  9957. <name>The youtube-dl maintainers</name>
  9958. </author>
  9959. <updated>2016-11-04T00:00:00Z</updated>
  9960. </entry>
  9961. <entry>
  9962. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.08</id>
  9963. <title>New version 2016.11.08</title>
  9964. <link href="http://ytdl-org.github.io/youtube-dl" />
  9965. <content type="xhtml">
  9966. <div xmlns="http://www.w3.org/1999/xhtml">
  9967. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.08/">https://yt-dl.org/downloads/2016.11.08/</a>
  9968. </div>
  9969. </content>
  9970. <author>
  9971. <name>The youtube-dl maintainers</name>
  9972. </author>
  9973. <updated>2016-11-08T00:00:00Z</updated>
  9974. </entry>
  9975. <entry>
  9976. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.08.1</id>
  9977. <title>New version 2016.11.08.1</title>
  9978. <link href="http://ytdl-org.github.io/youtube-dl" />
  9979. <content type="xhtml">
  9980. <div xmlns="http://www.w3.org/1999/xhtml">
  9981. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.08.1/">https://yt-dl.org/downloads/2016.11.08.1/</a>
  9982. </div>
  9983. </content>
  9984. <author>
  9985. <name>The youtube-dl maintainers</name>
  9986. </author>
  9987. <updated>2016-11-08T00:00:01Z</updated>
  9988. </entry>
  9989. <entry>
  9990. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.14.1</id>
  9991. <title>New version 2016.11.14.1</title>
  9992. <link href="http://ytdl-org.github.io/youtube-dl" />
  9993. <content type="xhtml">
  9994. <div xmlns="http://www.w3.org/1999/xhtml">
  9995. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.14.1/">https://yt-dl.org/downloads/2016.11.14.1/</a>
  9996. </div>
  9997. </content>
  9998. <author>
  9999. <name>The youtube-dl maintainers</name>
  10000. </author>
  10001. <updated>2016-11-14T00:00:01Z</updated>
  10002. </entry>
  10003. <entry>
  10004. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.18</id>
  10005. <title>New version 2016.11.18</title>
  10006. <link href="http://ytdl-org.github.io/youtube-dl" />
  10007. <content type="xhtml">
  10008. <div xmlns="http://www.w3.org/1999/xhtml">
  10009. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.18/">https://yt-dl.org/downloads/2016.11.18/</a>
  10010. </div>
  10011. </content>
  10012. <author>
  10013. <name>The youtube-dl maintainers</name>
  10014. </author>
  10015. <updated>2016-11-18T00:00:00Z</updated>
  10016. </entry>
  10017. <entry>
  10018. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.22</id>
  10019. <title>New version 2016.11.22</title>
  10020. <link href="http://ytdl-org.github.io/youtube-dl" />
  10021. <content type="xhtml">
  10022. <div xmlns="http://www.w3.org/1999/xhtml">
  10023. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.22/">https://yt-dl.org/downloads/2016.11.22/</a>
  10024. </div>
  10025. </content>
  10026. <author>
  10027. <name>The youtube-dl maintainers</name>
  10028. </author>
  10029. <updated>2016-11-22T00:00:00Z</updated>
  10030. </entry>
  10031. <entry>
  10032. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.11.27</id>
  10033. <title>New version 2016.11.27</title>
  10034. <link href="http://ytdl-org.github.io/youtube-dl" />
  10035. <content type="xhtml">
  10036. <div xmlns="http://www.w3.org/1999/xhtml">
  10037. Downloads available at <a href="https://yt-dl.org/downloads/2016.11.27/">https://yt-dl.org/downloads/2016.11.27/</a>
  10038. </div>
  10039. </content>
  10040. <author>
  10041. <name>The youtube-dl maintainers</name>
  10042. </author>
  10043. <updated>2016-11-27T00:00:00Z</updated>
  10044. </entry>
  10045. <entry>
  10046. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.01</id>
  10047. <title>New version 2016.12.01</title>
  10048. <link href="http://ytdl-org.github.io/youtube-dl" />
  10049. <content type="xhtml">
  10050. <div xmlns="http://www.w3.org/1999/xhtml">
  10051. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.01/">https://yt-dl.org/downloads/2016.12.01/</a>
  10052. </div>
  10053. </content>
  10054. <author>
  10055. <name>The youtube-dl maintainers</name>
  10056. </author>
  10057. <updated>2016-12-01T00:00:00Z</updated>
  10058. </entry>
  10059. <entry>
  10060. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.09</id>
  10061. <title>New version 2016.12.09</title>
  10062. <link href="http://ytdl-org.github.io/youtube-dl" />
  10063. <content type="xhtml">
  10064. <div xmlns="http://www.w3.org/1999/xhtml">
  10065. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.09/">https://yt-dl.org/downloads/2016.12.09/</a>
  10066. </div>
  10067. </content>
  10068. <author>
  10069. <name>The youtube-dl maintainers</name>
  10070. </author>
  10071. <updated>2016-12-09T00:00:00Z</updated>
  10072. </entry>
  10073. <entry>
  10074. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.12</id>
  10075. <title>New version 2016.12.12</title>
  10076. <link href="http://ytdl-org.github.io/youtube-dl" />
  10077. <content type="xhtml">
  10078. <div xmlns="http://www.w3.org/1999/xhtml">
  10079. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.12/">https://yt-dl.org/downloads/2016.12.12/</a>
  10080. </div>
  10081. </content>
  10082. <author>
  10083. <name>The youtube-dl maintainers</name>
  10084. </author>
  10085. <updated>2016-12-12T00:00:00Z</updated>
  10086. </entry>
  10087. <entry>
  10088. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.15</id>
  10089. <title>New version 2016.12.15</title>
  10090. <link href="http://ytdl-org.github.io/youtube-dl" />
  10091. <content type="xhtml">
  10092. <div xmlns="http://www.w3.org/1999/xhtml">
  10093. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.15/">https://yt-dl.org/downloads/2016.12.15/</a>
  10094. </div>
  10095. </content>
  10096. <author>
  10097. <name>The youtube-dl maintainers</name>
  10098. </author>
  10099. <updated>2016-12-15T00:00:00Z</updated>
  10100. </entry>
  10101. <entry>
  10102. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.18</id>
  10103. <title>New version 2016.12.18</title>
  10104. <link href="http://ytdl-org.github.io/youtube-dl" />
  10105. <content type="xhtml">
  10106. <div xmlns="http://www.w3.org/1999/xhtml">
  10107. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.18/">https://yt-dl.org/downloads/2016.12.18/</a>
  10108. </div>
  10109. </content>
  10110. <author>
  10111. <name>The youtube-dl maintainers</name>
  10112. </author>
  10113. <updated>2016-12-18T00:00:00Z</updated>
  10114. </entry>
  10115. <entry>
  10116. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.20</id>
  10117. <title>New version 2016.12.20</title>
  10118. <link href="http://ytdl-org.github.io/youtube-dl" />
  10119. <content type="xhtml">
  10120. <div xmlns="http://www.w3.org/1999/xhtml">
  10121. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.20/">https://yt-dl.org/downloads/2016.12.20/</a>
  10122. </div>
  10123. </content>
  10124. <author>
  10125. <name>The youtube-dl maintainers</name>
  10126. </author>
  10127. <updated>2016-12-20T00:00:00Z</updated>
  10128. </entry>
  10129. <entry>
  10130. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.22</id>
  10131. <title>New version 2016.12.22</title>
  10132. <link href="http://ytdl-org.github.io/youtube-dl" />
  10133. <content type="xhtml">
  10134. <div xmlns="http://www.w3.org/1999/xhtml">
  10135. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.22/">https://yt-dl.org/downloads/2016.12.22/</a>
  10136. </div>
  10137. </content>
  10138. <author>
  10139. <name>The youtube-dl maintainers</name>
  10140. </author>
  10141. <updated>2016-12-22T00:00:00Z</updated>
  10142. </entry>
  10143. <entry>
  10144. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2016.12.31</id>
  10145. <title>New version 2016.12.31</title>
  10146. <link href="http://ytdl-org.github.io/youtube-dl" />
  10147. <content type="xhtml">
  10148. <div xmlns="http://www.w3.org/1999/xhtml">
  10149. Downloads available at <a href="https://yt-dl.org/downloads/2016.12.31/">https://yt-dl.org/downloads/2016.12.31/</a>
  10150. </div>
  10151. </content>
  10152. <author>
  10153. <name>The youtube-dl maintainers</name>
  10154. </author>
  10155. <updated>2016-12-31T00:00:00Z</updated>
  10156. </entry>
  10157. <entry>
  10158. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.02</id>
  10159. <title>New version 2017.01.02</title>
  10160. <link href="http://ytdl-org.github.io/youtube-dl" />
  10161. <content type="xhtml">
  10162. <div xmlns="http://www.w3.org/1999/xhtml">
  10163. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.02/">https://yt-dl.org/downloads/2017.01.02/</a>
  10164. </div>
  10165. </content>
  10166. <author>
  10167. <name>The youtube-dl maintainers</name>
  10168. </author>
  10169. <updated>2017-01-02T00:00:00Z</updated>
  10170. </entry>
  10171. <entry>
  10172. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.05</id>
  10173. <title>New version 2017.01.05</title>
  10174. <link href="http://ytdl-org.github.io/youtube-dl" />
  10175. <content type="xhtml">
  10176. <div xmlns="http://www.w3.org/1999/xhtml">
  10177. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.05/">https://yt-dl.org/downloads/2017.01.05/</a>
  10178. </div>
  10179. </content>
  10180. <author>
  10181. <name>The youtube-dl maintainers</name>
  10182. </author>
  10183. <updated>2017-01-05T00:00:00Z</updated>
  10184. </entry>
  10185. <entry>
  10186. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.08</id>
  10187. <title>New version 2017.01.08</title>
  10188. <link href="http://ytdl-org.github.io/youtube-dl" />
  10189. <content type="xhtml">
  10190. <div xmlns="http://www.w3.org/1999/xhtml">
  10191. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.08/">https://yt-dl.org/downloads/2017.01.08/</a>
  10192. </div>
  10193. </content>
  10194. <author>
  10195. <name>The youtube-dl maintainers</name>
  10196. </author>
  10197. <updated>2017-01-08T00:00:00Z</updated>
  10198. </entry>
  10199. <entry>
  10200. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.10</id>
  10201. <title>New version 2017.01.10</title>
  10202. <link href="http://ytdl-org.github.io/youtube-dl" />
  10203. <content type="xhtml">
  10204. <div xmlns="http://www.w3.org/1999/xhtml">
  10205. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.10/">https://yt-dl.org/downloads/2017.01.10/</a>
  10206. </div>
  10207. </content>
  10208. <author>
  10209. <name>The youtube-dl maintainers</name>
  10210. </author>
  10211. <updated>2017-01-10T00:00:00Z</updated>
  10212. </entry>
  10213. <entry>
  10214. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.14</id>
  10215. <title>New version 2017.01.14</title>
  10216. <link href="http://ytdl-org.github.io/youtube-dl" />
  10217. <content type="xhtml">
  10218. <div xmlns="http://www.w3.org/1999/xhtml">
  10219. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.14/">https://yt-dl.org/downloads/2017.01.14/</a>
  10220. </div>
  10221. </content>
  10222. <author>
  10223. <name>The youtube-dl maintainers</name>
  10224. </author>
  10225. <updated>2017-01-14T00:00:00Z</updated>
  10226. </entry>
  10227. <entry>
  10228. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.16</id>
  10229. <title>New version 2017.01.16</title>
  10230. <link href="http://ytdl-org.github.io/youtube-dl" />
  10231. <content type="xhtml">
  10232. <div xmlns="http://www.w3.org/1999/xhtml">
  10233. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.16/">https://yt-dl.org/downloads/2017.01.16/</a>
  10234. </div>
  10235. </content>
  10236. <author>
  10237. <name>The youtube-dl maintainers</name>
  10238. </author>
  10239. <updated>2017-01-16T00:00:00Z</updated>
  10240. </entry>
  10241. <entry>
  10242. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.18</id>
  10243. <title>New version 2017.01.18</title>
  10244. <link href="http://ytdl-org.github.io/youtube-dl" />
  10245. <content type="xhtml">
  10246. <div xmlns="http://www.w3.org/1999/xhtml">
  10247. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.18/">https://yt-dl.org/downloads/2017.01.18/</a>
  10248. </div>
  10249. </content>
  10250. <author>
  10251. <name>The youtube-dl maintainers</name>
  10252. </author>
  10253. <updated>2017-01-18T00:00:00Z</updated>
  10254. </entry>
  10255. <entry>
  10256. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.22</id>
  10257. <title>New version 2017.01.22</title>
  10258. <link href="http://ytdl-org.github.io/youtube-dl" />
  10259. <content type="xhtml">
  10260. <div xmlns="http://www.w3.org/1999/xhtml">
  10261. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.22/">https://yt-dl.org/downloads/2017.01.22/</a>
  10262. </div>
  10263. </content>
  10264. <author>
  10265. <name>The youtube-dl maintainers</name>
  10266. </author>
  10267. <updated>2017-01-22T00:00:00Z</updated>
  10268. </entry>
  10269. <entry>
  10270. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.24</id>
  10271. <title>New version 2017.01.24</title>
  10272. <link href="http://ytdl-org.github.io/youtube-dl" />
  10273. <content type="xhtml">
  10274. <div xmlns="http://www.w3.org/1999/xhtml">
  10275. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.24/">https://yt-dl.org/downloads/2017.01.24/</a>
  10276. </div>
  10277. </content>
  10278. <author>
  10279. <name>The youtube-dl maintainers</name>
  10280. </author>
  10281. <updated>2017-01-24T00:00:00Z</updated>
  10282. </entry>
  10283. <entry>
  10284. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.25</id>
  10285. <title>New version 2017.01.25</title>
  10286. <link href="http://ytdl-org.github.io/youtube-dl" />
  10287. <content type="xhtml">
  10288. <div xmlns="http://www.w3.org/1999/xhtml">
  10289. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.25/">https://yt-dl.org/downloads/2017.01.25/</a>
  10290. </div>
  10291. </content>
  10292. <author>
  10293. <name>The youtube-dl maintainers</name>
  10294. </author>
  10295. <updated>2017-01-25T00:00:00Z</updated>
  10296. </entry>
  10297. <entry>
  10298. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.28</id>
  10299. <title>New version 2017.01.28</title>
  10300. <link href="http://ytdl-org.github.io/youtube-dl" />
  10301. <content type="xhtml">
  10302. <div xmlns="http://www.w3.org/1999/xhtml">
  10303. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.28/">https://yt-dl.org/downloads/2017.01.28/</a>
  10304. </div>
  10305. </content>
  10306. <author>
  10307. <name>The youtube-dl maintainers</name>
  10308. </author>
  10309. <updated>2017-01-28T00:00:00Z</updated>
  10310. </entry>
  10311. <entry>
  10312. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.29</id>
  10313. <title>New version 2017.01.29</title>
  10314. <link href="http://ytdl-org.github.io/youtube-dl" />
  10315. <content type="xhtml">
  10316. <div xmlns="http://www.w3.org/1999/xhtml">
  10317. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.29/">https://yt-dl.org/downloads/2017.01.29/</a>
  10318. </div>
  10319. </content>
  10320. <author>
  10321. <name>The youtube-dl maintainers</name>
  10322. </author>
  10323. <updated>2017-01-29T00:00:00Z</updated>
  10324. </entry>
  10325. <entry>
  10326. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.01.31</id>
  10327. <title>New version 2017.01.31</title>
  10328. <link href="http://ytdl-org.github.io/youtube-dl" />
  10329. <content type="xhtml">
  10330. <div xmlns="http://www.w3.org/1999/xhtml">
  10331. Downloads available at <a href="https://yt-dl.org/downloads/2017.01.31/">https://yt-dl.org/downloads/2017.01.31/</a>
  10332. </div>
  10333. </content>
  10334. <author>
  10335. <name>The youtube-dl maintainers</name>
  10336. </author>
  10337. <updated>2017-01-31T00:00:00Z</updated>
  10338. </entry>
  10339. <entry>
  10340. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.01</id>
  10341. <title>New version 2017.02.01</title>
  10342. <link href="http://ytdl-org.github.io/youtube-dl" />
  10343. <content type="xhtml">
  10344. <div xmlns="http://www.w3.org/1999/xhtml">
  10345. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.01/">https://yt-dl.org/downloads/2017.02.01/</a>
  10346. </div>
  10347. </content>
  10348. <author>
  10349. <name>The youtube-dl maintainers</name>
  10350. </author>
  10351. <updated>2017-02-01T00:00:00Z</updated>
  10352. </entry>
  10353. <entry>
  10354. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.04</id>
  10355. <title>New version 2017.02.04</title>
  10356. <link href="http://ytdl-org.github.io/youtube-dl" />
  10357. <content type="xhtml">
  10358. <div xmlns="http://www.w3.org/1999/xhtml">
  10359. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.04/">https://yt-dl.org/downloads/2017.02.04/</a>
  10360. </div>
  10361. </content>
  10362. <author>
  10363. <name>The youtube-dl maintainers</name>
  10364. </author>
  10365. <updated>2017-02-04T00:00:00Z</updated>
  10366. </entry>
  10367. <entry>
  10368. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.04.1</id>
  10369. <title>New version 2017.02.04.1</title>
  10370. <link href="http://ytdl-org.github.io/youtube-dl" />
  10371. <content type="xhtml">
  10372. <div xmlns="http://www.w3.org/1999/xhtml">
  10373. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.04.1/">https://yt-dl.org/downloads/2017.02.04.1/</a>
  10374. </div>
  10375. </content>
  10376. <author>
  10377. <name>The youtube-dl maintainers</name>
  10378. </author>
  10379. <updated>2017-02-04T00:00:01Z</updated>
  10380. </entry>
  10381. <entry>
  10382. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.07</id>
  10383. <title>New version 2017.02.07</title>
  10384. <link href="http://ytdl-org.github.io/youtube-dl" />
  10385. <content type="xhtml">
  10386. <div xmlns="http://www.w3.org/1999/xhtml">
  10387. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.07/">https://yt-dl.org/downloads/2017.02.07/</a>
  10388. </div>
  10389. </content>
  10390. <author>
  10391. <name>The youtube-dl maintainers</name>
  10392. </author>
  10393. <updated>2017-02-07T00:00:00Z</updated>
  10394. </entry>
  10395. <entry>
  10396. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.10</id>
  10397. <title>New version 2017.02.10</title>
  10398. <link href="http://ytdl-org.github.io/youtube-dl" />
  10399. <content type="xhtml">
  10400. <div xmlns="http://www.w3.org/1999/xhtml">
  10401. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.10/">https://yt-dl.org/downloads/2017.02.10/</a>
  10402. </div>
  10403. </content>
  10404. <author>
  10405. <name>The youtube-dl maintainers</name>
  10406. </author>
  10407. <updated>2017-02-10T00:00:00Z</updated>
  10408. </entry>
  10409. <entry>
  10410. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.11</id>
  10411. <title>New version 2017.02.11</title>
  10412. <link href="http://ytdl-org.github.io/youtube-dl" />
  10413. <content type="xhtml">
  10414. <div xmlns="http://www.w3.org/1999/xhtml">
  10415. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.11/">https://yt-dl.org/downloads/2017.02.11/</a>
  10416. </div>
  10417. </content>
  10418. <author>
  10419. <name>The youtube-dl maintainers</name>
  10420. </author>
  10421. <updated>2017-02-11T00:00:00Z</updated>
  10422. </entry>
  10423. <entry>
  10424. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.14</id>
  10425. <title>New version 2017.02.14</title>
  10426. <link href="http://ytdl-org.github.io/youtube-dl" />
  10427. <content type="xhtml">
  10428. <div xmlns="http://www.w3.org/1999/xhtml">
  10429. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.14/">https://yt-dl.org/downloads/2017.02.14/</a>
  10430. </div>
  10431. </content>
  10432. <author>
  10433. <name>The youtube-dl maintainers</name>
  10434. </author>
  10435. <updated>2017-02-14T00:00:00Z</updated>
  10436. </entry>
  10437. <entry>
  10438. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.16</id>
  10439. <title>New version 2017.02.16</title>
  10440. <link href="http://ytdl-org.github.io/youtube-dl" />
  10441. <content type="xhtml">
  10442. <div xmlns="http://www.w3.org/1999/xhtml">
  10443. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.16/">https://yt-dl.org/downloads/2017.02.16/</a>
  10444. </div>
  10445. </content>
  10446. <author>
  10447. <name>The youtube-dl maintainers</name>
  10448. </author>
  10449. <updated>2017-02-16T00:00:00Z</updated>
  10450. </entry>
  10451. <entry>
  10452. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.17</id>
  10453. <title>New version 2017.02.17</title>
  10454. <link href="http://ytdl-org.github.io/youtube-dl" />
  10455. <content type="xhtml">
  10456. <div xmlns="http://www.w3.org/1999/xhtml">
  10457. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.17/">https://yt-dl.org/downloads/2017.02.17/</a>
  10458. </div>
  10459. </content>
  10460. <author>
  10461. <name>The youtube-dl maintainers</name>
  10462. </author>
  10463. <updated>2017-02-17T00:00:00Z</updated>
  10464. </entry>
  10465. <entry>
  10466. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.21</id>
  10467. <title>New version 2017.02.21</title>
  10468. <link href="http://ytdl-org.github.io/youtube-dl" />
  10469. <content type="xhtml">
  10470. <div xmlns="http://www.w3.org/1999/xhtml">
  10471. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.21/">https://yt-dl.org/downloads/2017.02.21/</a>
  10472. </div>
  10473. </content>
  10474. <author>
  10475. <name>The youtube-dl maintainers</name>
  10476. </author>
  10477. <updated>2017-02-21T00:00:00Z</updated>
  10478. </entry>
  10479. <entry>
  10480. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.22</id>
  10481. <title>New version 2017.02.22</title>
  10482. <link href="http://ytdl-org.github.io/youtube-dl" />
  10483. <content type="xhtml">
  10484. <div xmlns="http://www.w3.org/1999/xhtml">
  10485. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.22/">https://yt-dl.org/downloads/2017.02.22/</a>
  10486. </div>
  10487. </content>
  10488. <author>
  10489. <name>The youtube-dl maintainers</name>
  10490. </author>
  10491. <updated>2017-02-22T00:00:00Z</updated>
  10492. </entry>
  10493. <entry>
  10494. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.24</id>
  10495. <title>New version 2017.02.24</title>
  10496. <link href="http://ytdl-org.github.io/youtube-dl" />
  10497. <content type="xhtml">
  10498. <div xmlns="http://www.w3.org/1999/xhtml">
  10499. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.24/">https://yt-dl.org/downloads/2017.02.24/</a>
  10500. </div>
  10501. </content>
  10502. <author>
  10503. <name>The youtube-dl maintainers</name>
  10504. </author>
  10505. <updated>2017-02-24T00:00:00Z</updated>
  10506. </entry>
  10507. <entry>
  10508. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.24.1</id>
  10509. <title>New version 2017.02.24.1</title>
  10510. <link href="http://ytdl-org.github.io/youtube-dl" />
  10511. <content type="xhtml">
  10512. <div xmlns="http://www.w3.org/1999/xhtml">
  10513. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.24.1/">https://yt-dl.org/downloads/2017.02.24.1/</a>
  10514. </div>
  10515. </content>
  10516. <author>
  10517. <name>The youtube-dl maintainers</name>
  10518. </author>
  10519. <updated>2017-02-24T00:00:01Z</updated>
  10520. </entry>
  10521. <entry>
  10522. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.27</id>
  10523. <title>New version 2017.02.27</title>
  10524. <link href="http://ytdl-org.github.io/youtube-dl" />
  10525. <content type="xhtml">
  10526. <div xmlns="http://www.w3.org/1999/xhtml">
  10527. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.27/">https://yt-dl.org/downloads/2017.02.27/</a>
  10528. </div>
  10529. </content>
  10530. <author>
  10531. <name>The youtube-dl maintainers</name>
  10532. </author>
  10533. <updated>2017-02-27T00:00:00Z</updated>
  10534. </entry>
  10535. <entry>
  10536. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.02.28</id>
  10537. <title>New version 2017.02.28</title>
  10538. <link href="http://ytdl-org.github.io/youtube-dl" />
  10539. <content type="xhtml">
  10540. <div xmlns="http://www.w3.org/1999/xhtml">
  10541. Downloads available at <a href="https://yt-dl.org/downloads/2017.02.28/">https://yt-dl.org/downloads/2017.02.28/</a>
  10542. </div>
  10543. </content>
  10544. <author>
  10545. <name>The youtube-dl maintainers</name>
  10546. </author>
  10547. <updated>2017-02-28T00:00:00Z</updated>
  10548. </entry>
  10549. <entry>
  10550. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.02</id>
  10551. <title>New version 2017.03.02</title>
  10552. <link href="http://ytdl-org.github.io/youtube-dl" />
  10553. <content type="xhtml">
  10554. <div xmlns="http://www.w3.org/1999/xhtml">
  10555. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.02/">https://yt-dl.org/downloads/2017.03.02/</a>
  10556. </div>
  10557. </content>
  10558. <author>
  10559. <name>The youtube-dl maintainers</name>
  10560. </author>
  10561. <updated>2017-03-02T00:00:00Z</updated>
  10562. </entry>
  10563. <entry>
  10564. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.05</id>
  10565. <title>New version 2017.03.05</title>
  10566. <link href="http://ytdl-org.github.io/youtube-dl" />
  10567. <content type="xhtml">
  10568. <div xmlns="http://www.w3.org/1999/xhtml">
  10569. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.05/">https://yt-dl.org/downloads/2017.03.05/</a>
  10570. </div>
  10571. </content>
  10572. <author>
  10573. <name>The youtube-dl maintainers</name>
  10574. </author>
  10575. <updated>2017-03-05T00:00:00Z</updated>
  10576. </entry>
  10577. <entry>
  10578. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.06</id>
  10579. <title>New version 2017.03.06</title>
  10580. <link href="http://ytdl-org.github.io/youtube-dl" />
  10581. <content type="xhtml">
  10582. <div xmlns="http://www.w3.org/1999/xhtml">
  10583. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.06/">https://yt-dl.org/downloads/2017.03.06/</a>
  10584. </div>
  10585. </content>
  10586. <author>
  10587. <name>The youtube-dl maintainers</name>
  10588. </author>
  10589. <updated>2017-03-06T00:00:00Z</updated>
  10590. </entry>
  10591. <entry>
  10592. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.07</id>
  10593. <title>New version 2017.03.07</title>
  10594. <link href="http://ytdl-org.github.io/youtube-dl" />
  10595. <content type="xhtml">
  10596. <div xmlns="http://www.w3.org/1999/xhtml">
  10597. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.07/">https://yt-dl.org/downloads/2017.03.07/</a>
  10598. </div>
  10599. </content>
  10600. <author>
  10601. <name>The youtube-dl maintainers</name>
  10602. </author>
  10603. <updated>2017-03-07T00:00:00Z</updated>
  10604. </entry>
  10605. <entry>
  10606. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.10</id>
  10607. <title>New version 2017.03.10</title>
  10608. <link href="http://ytdl-org.github.io/youtube-dl" />
  10609. <content type="xhtml">
  10610. <div xmlns="http://www.w3.org/1999/xhtml">
  10611. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.10/">https://yt-dl.org/downloads/2017.03.10/</a>
  10612. </div>
  10613. </content>
  10614. <author>
  10615. <name>The youtube-dl maintainers</name>
  10616. </author>
  10617. <updated>2017-03-10T00:00:00Z</updated>
  10618. </entry>
  10619. <entry>
  10620. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.15</id>
  10621. <title>New version 2017.03.15</title>
  10622. <link href="http://ytdl-org.github.io/youtube-dl" />
  10623. <content type="xhtml">
  10624. <div xmlns="http://www.w3.org/1999/xhtml">
  10625. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.15/">https://yt-dl.org/downloads/2017.03.15/</a>
  10626. </div>
  10627. </content>
  10628. <author>
  10629. <name>The youtube-dl maintainers</name>
  10630. </author>
  10631. <updated>2017-03-15T00:00:00Z</updated>
  10632. </entry>
  10633. <entry>
  10634. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.16</id>
  10635. <title>New version 2017.03.16</title>
  10636. <link href="http://ytdl-org.github.io/youtube-dl" />
  10637. <content type="xhtml">
  10638. <div xmlns="http://www.w3.org/1999/xhtml">
  10639. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.16/">https://yt-dl.org/downloads/2017.03.16/</a>
  10640. </div>
  10641. </content>
  10642. <author>
  10643. <name>The youtube-dl maintainers</name>
  10644. </author>
  10645. <updated>2017-03-16T00:00:00Z</updated>
  10646. </entry>
  10647. <entry>
  10648. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.20</id>
  10649. <title>New version 2017.03.20</title>
  10650. <link href="http://ytdl-org.github.io/youtube-dl" />
  10651. <content type="xhtml">
  10652. <div xmlns="http://www.w3.org/1999/xhtml">
  10653. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.20/">https://yt-dl.org/downloads/2017.03.20/</a>
  10654. </div>
  10655. </content>
  10656. <author>
  10657. <name>The youtube-dl maintainers</name>
  10658. </author>
  10659. <updated>2017-03-20T00:00:00Z</updated>
  10660. </entry>
  10661. <entry>
  10662. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.22</id>
  10663. <title>New version 2017.03.22</title>
  10664. <link href="http://ytdl-org.github.io/youtube-dl" />
  10665. <content type="xhtml">
  10666. <div xmlns="http://www.w3.org/1999/xhtml">
  10667. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.22/">https://yt-dl.org/downloads/2017.03.22/</a>
  10668. </div>
  10669. </content>
  10670. <author>
  10671. <name>The youtube-dl maintainers</name>
  10672. </author>
  10673. <updated>2017-03-22T00:00:00Z</updated>
  10674. </entry>
  10675. <entry>
  10676. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.24</id>
  10677. <title>New version 2017.03.24</title>
  10678. <link href="http://ytdl-org.github.io/youtube-dl" />
  10679. <content type="xhtml">
  10680. <div xmlns="http://www.w3.org/1999/xhtml">
  10681. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.24/">https://yt-dl.org/downloads/2017.03.24/</a>
  10682. </div>
  10683. </content>
  10684. <author>
  10685. <name>The youtube-dl maintainers</name>
  10686. </author>
  10687. <updated>2017-03-24T00:00:00Z</updated>
  10688. </entry>
  10689. <entry>
  10690. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.03.26</id>
  10691. <title>New version 2017.03.26</title>
  10692. <link href="http://ytdl-org.github.io/youtube-dl" />
  10693. <content type="xhtml">
  10694. <div xmlns="http://www.w3.org/1999/xhtml">
  10695. Downloads available at <a href="https://yt-dl.org/downloads/2017.03.26/">https://yt-dl.org/downloads/2017.03.26/</a>
  10696. </div>
  10697. </content>
  10698. <author>
  10699. <name>The youtube-dl maintainers</name>
  10700. </author>
  10701. <updated>2017-03-26T00:00:00Z</updated>
  10702. </entry>
  10703. <entry>
  10704. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.02</id>
  10705. <title>New version 2017.04.02</title>
  10706. <link href="http://ytdl-org.github.io/youtube-dl" />
  10707. <content type="xhtml">
  10708. <div xmlns="http://www.w3.org/1999/xhtml">
  10709. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.02/">https://yt-dl.org/downloads/2017.04.02/</a>
  10710. </div>
  10711. </content>
  10712. <author>
  10713. <name>The youtube-dl maintainers</name>
  10714. </author>
  10715. <updated>2017-04-02T00:00:00Z</updated>
  10716. </entry>
  10717. <entry>
  10718. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.03</id>
  10719. <title>New version 2017.04.03</title>
  10720. <link href="http://ytdl-org.github.io/youtube-dl" />
  10721. <content type="xhtml">
  10722. <div xmlns="http://www.w3.org/1999/xhtml">
  10723. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.03/">https://yt-dl.org/downloads/2017.04.03/</a>
  10724. </div>
  10725. </content>
  10726. <author>
  10727. <name>The youtube-dl maintainers</name>
  10728. </author>
  10729. <updated>2017-04-03T00:00:00Z</updated>
  10730. </entry>
  10731. <entry>
  10732. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.09</id>
  10733. <title>New version 2017.04.09</title>
  10734. <link href="http://ytdl-org.github.io/youtube-dl" />
  10735. <content type="xhtml">
  10736. <div xmlns="http://www.w3.org/1999/xhtml">
  10737. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.09/">https://yt-dl.org/downloads/2017.04.09/</a>
  10738. </div>
  10739. </content>
  10740. <author>
  10741. <name>The youtube-dl maintainers</name>
  10742. </author>
  10743. <updated>2017-04-09T00:00:00Z</updated>
  10744. </entry>
  10745. <entry>
  10746. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.11</id>
  10747. <title>New version 2017.04.11</title>
  10748. <link href="http://ytdl-org.github.io/youtube-dl" />
  10749. <content type="xhtml">
  10750. <div xmlns="http://www.w3.org/1999/xhtml">
  10751. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.11/">https://yt-dl.org/downloads/2017.04.11/</a>
  10752. </div>
  10753. </content>
  10754. <author>
  10755. <name>The youtube-dl maintainers</name>
  10756. </author>
  10757. <updated>2017-04-11T00:00:00Z</updated>
  10758. </entry>
  10759. <entry>
  10760. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.14</id>
  10761. <title>New version 2017.04.14</title>
  10762. <link href="http://ytdl-org.github.io/youtube-dl" />
  10763. <content type="xhtml">
  10764. <div xmlns="http://www.w3.org/1999/xhtml">
  10765. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.14/">https://yt-dl.org/downloads/2017.04.14/</a>
  10766. </div>
  10767. </content>
  10768. <author>
  10769. <name>The youtube-dl maintainers</name>
  10770. </author>
  10771. <updated>2017-04-14T00:00:00Z</updated>
  10772. </entry>
  10773. <entry>
  10774. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.15</id>
  10775. <title>New version 2017.04.15</title>
  10776. <link href="http://ytdl-org.github.io/youtube-dl" />
  10777. <content type="xhtml">
  10778. <div xmlns="http://www.w3.org/1999/xhtml">
  10779. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.15/">https://yt-dl.org/downloads/2017.04.15/</a>
  10780. </div>
  10781. </content>
  10782. <author>
  10783. <name>The youtube-dl maintainers</name>
  10784. </author>
  10785. <updated>2017-04-15T00:00:00Z</updated>
  10786. </entry>
  10787. <entry>
  10788. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.16</id>
  10789. <title>New version 2017.04.16</title>
  10790. <link href="http://ytdl-org.github.io/youtube-dl" />
  10791. <content type="xhtml">
  10792. <div xmlns="http://www.w3.org/1999/xhtml">
  10793. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.16/">https://yt-dl.org/downloads/2017.04.16/</a>
  10794. </div>
  10795. </content>
  10796. <author>
  10797. <name>The youtube-dl maintainers</name>
  10798. </author>
  10799. <updated>2017-04-16T00:00:00Z</updated>
  10800. </entry>
  10801. <entry>
  10802. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.17</id>
  10803. <title>New version 2017.04.17</title>
  10804. <link href="http://ytdl-org.github.io/youtube-dl" />
  10805. <content type="xhtml">
  10806. <div xmlns="http://www.w3.org/1999/xhtml">
  10807. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.17/">https://yt-dl.org/downloads/2017.04.17/</a>
  10808. </div>
  10809. </content>
  10810. <author>
  10811. <name>The youtube-dl maintainers</name>
  10812. </author>
  10813. <updated>2017-04-17T00:00:00Z</updated>
  10814. </entry>
  10815. <entry>
  10816. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.26</id>
  10817. <title>New version 2017.04.26</title>
  10818. <link href="http://ytdl-org.github.io/youtube-dl" />
  10819. <content type="xhtml">
  10820. <div xmlns="http://www.w3.org/1999/xhtml">
  10821. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.26/">https://yt-dl.org/downloads/2017.04.26/</a>
  10822. </div>
  10823. </content>
  10824. <author>
  10825. <name>The youtube-dl maintainers</name>
  10826. </author>
  10827. <updated>2017-04-26T00:00:00Z</updated>
  10828. </entry>
  10829. <entry>
  10830. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.04.28</id>
  10831. <title>New version 2017.04.28</title>
  10832. <link href="http://ytdl-org.github.io/youtube-dl" />
  10833. <content type="xhtml">
  10834. <div xmlns="http://www.w3.org/1999/xhtml">
  10835. Downloads available at <a href="https://yt-dl.org/downloads/2017.04.28/">https://yt-dl.org/downloads/2017.04.28/</a>
  10836. </div>
  10837. </content>
  10838. <author>
  10839. <name>The youtube-dl maintainers</name>
  10840. </author>
  10841. <updated>2017-04-28T00:00:00Z</updated>
  10842. </entry>
  10843. <entry>
  10844. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.01</id>
  10845. <title>New version 2017.05.01</title>
  10846. <link href="http://ytdl-org.github.io/youtube-dl" />
  10847. <content type="xhtml">
  10848. <div xmlns="http://www.w3.org/1999/xhtml">
  10849. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.01/">https://yt-dl.org/downloads/2017.05.01/</a>
  10850. </div>
  10851. </content>
  10852. <author>
  10853. <name>The youtube-dl maintainers</name>
  10854. </author>
  10855. <updated>2017-05-01T00:00:00Z</updated>
  10856. </entry>
  10857. <entry>
  10858. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.07</id>
  10859. <title>New version 2017.05.07</title>
  10860. <link href="http://ytdl-org.github.io/youtube-dl" />
  10861. <content type="xhtml">
  10862. <div xmlns="http://www.w3.org/1999/xhtml">
  10863. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.07/">https://yt-dl.org/downloads/2017.05.07/</a>
  10864. </div>
  10865. </content>
  10866. <author>
  10867. <name>The youtube-dl maintainers</name>
  10868. </author>
  10869. <updated>2017-05-07T00:00:00Z</updated>
  10870. </entry>
  10871. <entry>
  10872. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.09</id>
  10873. <title>New version 2017.05.09</title>
  10874. <link href="http://ytdl-org.github.io/youtube-dl" />
  10875. <content type="xhtml">
  10876. <div xmlns="http://www.w3.org/1999/xhtml">
  10877. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.09/">https://yt-dl.org/downloads/2017.05.09/</a>
  10878. </div>
  10879. </content>
  10880. <author>
  10881. <name>The youtube-dl maintainers</name>
  10882. </author>
  10883. <updated>2017-05-09T00:00:00Z</updated>
  10884. </entry>
  10885. <entry>
  10886. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.14</id>
  10887. <title>New version 2017.05.14</title>
  10888. <link href="http://ytdl-org.github.io/youtube-dl" />
  10889. <content type="xhtml">
  10890. <div xmlns="http://www.w3.org/1999/xhtml">
  10891. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.14/">https://yt-dl.org/downloads/2017.05.14/</a>
  10892. </div>
  10893. </content>
  10894. <author>
  10895. <name>The youtube-dl maintainers</name>
  10896. </author>
  10897. <updated>2017-05-14T00:00:00Z</updated>
  10898. </entry>
  10899. <entry>
  10900. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.18</id>
  10901. <title>New version 2017.05.18</title>
  10902. <link href="http://ytdl-org.github.io/youtube-dl" />
  10903. <content type="xhtml">
  10904. <div xmlns="http://www.w3.org/1999/xhtml">
  10905. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.18/">https://yt-dl.org/downloads/2017.05.18/</a>
  10906. </div>
  10907. </content>
  10908. <author>
  10909. <name>The youtube-dl maintainers</name>
  10910. </author>
  10911. <updated>2017-05-18T00:00:00Z</updated>
  10912. </entry>
  10913. <entry>
  10914. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.18.1</id>
  10915. <title>New version 2017.05.18.1</title>
  10916. <link href="http://ytdl-org.github.io/youtube-dl" />
  10917. <content type="xhtml">
  10918. <div xmlns="http://www.w3.org/1999/xhtml">
  10919. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.18.1/">https://yt-dl.org/downloads/2017.05.18.1/</a>
  10920. </div>
  10921. </content>
  10922. <author>
  10923. <name>The youtube-dl maintainers</name>
  10924. </author>
  10925. <updated>2017-05-18T00:00:01Z</updated>
  10926. </entry>
  10927. <entry>
  10928. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.23</id>
  10929. <title>New version 2017.05.23</title>
  10930. <link href="http://ytdl-org.github.io/youtube-dl" />
  10931. <content type="xhtml">
  10932. <div xmlns="http://www.w3.org/1999/xhtml">
  10933. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.23/">https://yt-dl.org/downloads/2017.05.23/</a>
  10934. </div>
  10935. </content>
  10936. <author>
  10937. <name>The youtube-dl maintainers</name>
  10938. </author>
  10939. <updated>2017-05-23T00:00:00Z</updated>
  10940. </entry>
  10941. <entry>
  10942. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.26</id>
  10943. <title>New version 2017.05.26</title>
  10944. <link href="http://ytdl-org.github.io/youtube-dl" />
  10945. <content type="xhtml">
  10946. <div xmlns="http://www.w3.org/1999/xhtml">
  10947. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.26/">https://yt-dl.org/downloads/2017.05.26/</a>
  10948. </div>
  10949. </content>
  10950. <author>
  10951. <name>The youtube-dl maintainers</name>
  10952. </author>
  10953. <updated>2017-05-26T00:00:00Z</updated>
  10954. </entry>
  10955. <entry>
  10956. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.05.29</id>
  10957. <title>New version 2017.05.29</title>
  10958. <link href="http://ytdl-org.github.io/youtube-dl" />
  10959. <content type="xhtml">
  10960. <div xmlns="http://www.w3.org/1999/xhtml">
  10961. Downloads available at <a href="https://yt-dl.org/downloads/2017.05.29/">https://yt-dl.org/downloads/2017.05.29/</a>
  10962. </div>
  10963. </content>
  10964. <author>
  10965. <name>The youtube-dl maintainers</name>
  10966. </author>
  10967. <updated>2017-05-29T00:00:00Z</updated>
  10968. </entry>
  10969. <entry>
  10970. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.06.05</id>
  10971. <title>New version 2017.06.05</title>
  10972. <link href="http://ytdl-org.github.io/youtube-dl" />
  10973. <content type="xhtml">
  10974. <div xmlns="http://www.w3.org/1999/xhtml">
  10975. Downloads available at <a href="https://yt-dl.org/downloads/2017.06.05/">https://yt-dl.org/downloads/2017.06.05/</a>
  10976. </div>
  10977. </content>
  10978. <author>
  10979. <name>The youtube-dl maintainers</name>
  10980. </author>
  10981. <updated>2017-06-05T00:00:00Z</updated>
  10982. </entry>
  10983. <entry>
  10984. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.06.12</id>
  10985. <title>New version 2017.06.12</title>
  10986. <link href="http://ytdl-org.github.io/youtube-dl" />
  10987. <content type="xhtml">
  10988. <div xmlns="http://www.w3.org/1999/xhtml">
  10989. Downloads available at <a href="https://yt-dl.org/downloads/2017.06.12/">https://yt-dl.org/downloads/2017.06.12/</a>
  10990. </div>
  10991. </content>
  10992. <author>
  10993. <name>The youtube-dl maintainers</name>
  10994. </author>
  10995. <updated>2017-06-12T00:00:00Z</updated>
  10996. </entry>
  10997. <entry>
  10998. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.06.18</id>
  10999. <title>New version 2017.06.18</title>
  11000. <link href="http://ytdl-org.github.io/youtube-dl" />
  11001. <content type="xhtml">
  11002. <div xmlns="http://www.w3.org/1999/xhtml">
  11003. Downloads available at <a href="https://yt-dl.org/downloads/2017.06.18/">https://yt-dl.org/downloads/2017.06.18/</a>
  11004. </div>
  11005. </content>
  11006. <author>
  11007. <name>The youtube-dl maintainers</name>
  11008. </author>
  11009. <updated>2017-06-18T00:00:00Z</updated>
  11010. </entry>
  11011. <entry>
  11012. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.06.23</id>
  11013. <title>New version 2017.06.23</title>
  11014. <link href="http://ytdl-org.github.io/youtube-dl" />
  11015. <content type="xhtml">
  11016. <div xmlns="http://www.w3.org/1999/xhtml">
  11017. Downloads available at <a href="https://yt-dl.org/downloads/2017.06.23/">https://yt-dl.org/downloads/2017.06.23/</a>
  11018. </div>
  11019. </content>
  11020. <author>
  11021. <name>The youtube-dl maintainers</name>
  11022. </author>
  11023. <updated>2017-06-23T00:00:00Z</updated>
  11024. </entry>
  11025. <entry>
  11026. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.06.25</id>
  11027. <title>New version 2017.06.25</title>
  11028. <link href="http://ytdl-org.github.io/youtube-dl" />
  11029. <content type="xhtml">
  11030. <div xmlns="http://www.w3.org/1999/xhtml">
  11031. Downloads available at <a href="https://yt-dl.org/downloads/2017.06.25/">https://yt-dl.org/downloads/2017.06.25/</a>
  11032. </div>
  11033. </content>
  11034. <author>
  11035. <name>The youtube-dl maintainers</name>
  11036. </author>
  11037. <updated>2017-06-25T00:00:00Z</updated>
  11038. </entry>
  11039. <entry>
  11040. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.07.02</id>
  11041. <title>New version 2017.07.02</title>
  11042. <link href="http://ytdl-org.github.io/youtube-dl" />
  11043. <content type="xhtml">
  11044. <div xmlns="http://www.w3.org/1999/xhtml">
  11045. Downloads available at <a href="https://yt-dl.org/downloads/2017.07.02/">https://yt-dl.org/downloads/2017.07.02/</a>
  11046. </div>
  11047. </content>
  11048. <author>
  11049. <name>The youtube-dl maintainers</name>
  11050. </author>
  11051. <updated>2017-07-02T00:00:00Z</updated>
  11052. </entry>
  11053. <entry>
  11054. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.07.09</id>
  11055. <title>New version 2017.07.09</title>
  11056. <link href="http://ytdl-org.github.io/youtube-dl" />
  11057. <content type="xhtml">
  11058. <div xmlns="http://www.w3.org/1999/xhtml">
  11059. Downloads available at <a href="https://yt-dl.org/downloads/2017.07.09/">https://yt-dl.org/downloads/2017.07.09/</a>
  11060. </div>
  11061. </content>
  11062. <author>
  11063. <name>The youtube-dl maintainers</name>
  11064. </author>
  11065. <updated>2017-07-09T00:00:00Z</updated>
  11066. </entry>
  11067. <entry>
  11068. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.07.15</id>
  11069. <title>New version 2017.07.15</title>
  11070. <link href="http://ytdl-org.github.io/youtube-dl" />
  11071. <content type="xhtml">
  11072. <div xmlns="http://www.w3.org/1999/xhtml">
  11073. Downloads available at <a href="https://yt-dl.org/downloads/2017.07.15/">https://yt-dl.org/downloads/2017.07.15/</a>
  11074. </div>
  11075. </content>
  11076. <author>
  11077. <name>The youtube-dl maintainers</name>
  11078. </author>
  11079. <updated>2017-07-15T00:00:00Z</updated>
  11080. </entry>
  11081. <entry>
  11082. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.07.23</id>
  11083. <title>New version 2017.07.23</title>
  11084. <link href="http://ytdl-org.github.io/youtube-dl" />
  11085. <content type="xhtml">
  11086. <div xmlns="http://www.w3.org/1999/xhtml">
  11087. Downloads available at <a href="https://yt-dl.org/downloads/2017.07.23/">https://yt-dl.org/downloads/2017.07.23/</a>
  11088. </div>
  11089. </content>
  11090. <author>
  11091. <name>The youtube-dl maintainers</name>
  11092. </author>
  11093. <updated>2017-07-23T00:00:00Z</updated>
  11094. </entry>
  11095. <entry>
  11096. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.07.30.1</id>
  11097. <title>New version 2017.07.30.1</title>
  11098. <link href="http://ytdl-org.github.io/youtube-dl" />
  11099. <content type="xhtml">
  11100. <div xmlns="http://www.w3.org/1999/xhtml">
  11101. Downloads available at <a href="https://yt-dl.org/downloads/2017.07.30.1/">https://yt-dl.org/downloads/2017.07.30.1/</a>
  11102. </div>
  11103. </content>
  11104. <author>
  11105. <name>The youtube-dl maintainers</name>
  11106. </author>
  11107. <updated>2017-07-30T00:00:01Z</updated>
  11108. </entry>
  11109. <entry>
  11110. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.06</id>
  11111. <title>New version 2017.08.06</title>
  11112. <link href="http://ytdl-org.github.io/youtube-dl" />
  11113. <content type="xhtml">
  11114. <div xmlns="http://www.w3.org/1999/xhtml">
  11115. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.06/">https://yt-dl.org/downloads/2017.08.06/</a>
  11116. </div>
  11117. </content>
  11118. <author>
  11119. <name>The youtube-dl maintainers</name>
  11120. </author>
  11121. <updated>2017-08-06T00:00:00Z</updated>
  11122. </entry>
  11123. <entry>
  11124. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.09</id>
  11125. <title>New version 2017.08.09</title>
  11126. <link href="http://ytdl-org.github.io/youtube-dl" />
  11127. <content type="xhtml">
  11128. <div xmlns="http://www.w3.org/1999/xhtml">
  11129. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.09/">https://yt-dl.org/downloads/2017.08.09/</a>
  11130. </div>
  11131. </content>
  11132. <author>
  11133. <name>The youtube-dl maintainers</name>
  11134. </author>
  11135. <updated>2017-08-09T00:00:00Z</updated>
  11136. </entry>
  11137. <entry>
  11138. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.13</id>
  11139. <title>New version 2017.08.13</title>
  11140. <link href="http://ytdl-org.github.io/youtube-dl" />
  11141. <content type="xhtml">
  11142. <div xmlns="http://www.w3.org/1999/xhtml">
  11143. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.13/">https://yt-dl.org/downloads/2017.08.13/</a>
  11144. </div>
  11145. </content>
  11146. <author>
  11147. <name>The youtube-dl maintainers</name>
  11148. </author>
  11149. <updated>2017-08-13T00:00:00Z</updated>
  11150. </entry>
  11151. <entry>
  11152. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.18</id>
  11153. <title>New version 2017.08.18</title>
  11154. <link href="http://ytdl-org.github.io/youtube-dl" />
  11155. <content type="xhtml">
  11156. <div xmlns="http://www.w3.org/1999/xhtml">
  11157. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.18/">https://yt-dl.org/downloads/2017.08.18/</a>
  11158. </div>
  11159. </content>
  11160. <author>
  11161. <name>The youtube-dl maintainers</name>
  11162. </author>
  11163. <updated>2017-08-18T00:00:00Z</updated>
  11164. </entry>
  11165. <entry>
  11166. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.23</id>
  11167. <title>New version 2017.08.23</title>
  11168. <link href="http://ytdl-org.github.io/youtube-dl" />
  11169. <content type="xhtml">
  11170. <div xmlns="http://www.w3.org/1999/xhtml">
  11171. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.23/">https://yt-dl.org/downloads/2017.08.23/</a>
  11172. </div>
  11173. </content>
  11174. <author>
  11175. <name>The youtube-dl maintainers</name>
  11176. </author>
  11177. <updated>2017-08-23T00:00:00Z</updated>
  11178. </entry>
  11179. <entry>
  11180. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.27</id>
  11181. <title>New version 2017.08.27</title>
  11182. <link href="http://ytdl-org.github.io/youtube-dl" />
  11183. <content type="xhtml">
  11184. <div xmlns="http://www.w3.org/1999/xhtml">
  11185. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.27/">https://yt-dl.org/downloads/2017.08.27/</a>
  11186. </div>
  11187. </content>
  11188. <author>
  11189. <name>The youtube-dl maintainers</name>
  11190. </author>
  11191. <updated>2017-08-27T00:00:00Z</updated>
  11192. </entry>
  11193. <entry>
  11194. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.08.27.1</id>
  11195. <title>New version 2017.08.27.1</title>
  11196. <link href="http://ytdl-org.github.io/youtube-dl" />
  11197. <content type="xhtml">
  11198. <div xmlns="http://www.w3.org/1999/xhtml">
  11199. Downloads available at <a href="https://yt-dl.org/downloads/2017.08.27.1/">https://yt-dl.org/downloads/2017.08.27.1/</a>
  11200. </div>
  11201. </content>
  11202. <author>
  11203. <name>The youtube-dl maintainers</name>
  11204. </author>
  11205. <updated>2017-08-27T00:00:01Z</updated>
  11206. </entry>
  11207. <entry>
  11208. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.09.02</id>
  11209. <title>New version 2017.09.02</title>
  11210. <link href="http://ytdl-org.github.io/youtube-dl" />
  11211. <content type="xhtml">
  11212. <div xmlns="http://www.w3.org/1999/xhtml">
  11213. Downloads available at <a href="https://yt-dl.org/downloads/2017.09.02/">https://yt-dl.org/downloads/2017.09.02/</a>
  11214. </div>
  11215. </content>
  11216. <author>
  11217. <name>The youtube-dl maintainers</name>
  11218. </author>
  11219. <updated>2017-09-02T00:00:00Z</updated>
  11220. </entry>
  11221. <entry>
  11222. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.09.10</id>
  11223. <title>New version 2017.09.10</title>
  11224. <link href="http://ytdl-org.github.io/youtube-dl" />
  11225. <content type="xhtml">
  11226. <div xmlns="http://www.w3.org/1999/xhtml">
  11227. Downloads available at <a href="https://yt-dl.org/downloads/2017.09.10/">https://yt-dl.org/downloads/2017.09.10/</a>
  11228. </div>
  11229. </content>
  11230. <author>
  11231. <name>The youtube-dl maintainers</name>
  11232. </author>
  11233. <updated>2017-09-10T00:00:00Z</updated>
  11234. </entry>
  11235. <entry>
  11236. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.09.11</id>
  11237. <title>New version 2017.09.11</title>
  11238. <link href="http://ytdl-org.github.io/youtube-dl" />
  11239. <content type="xhtml">
  11240. <div xmlns="http://www.w3.org/1999/xhtml">
  11241. Downloads available at <a href="https://yt-dl.org/downloads/2017.09.11/">https://yt-dl.org/downloads/2017.09.11/</a>
  11242. </div>
  11243. </content>
  11244. <author>
  11245. <name>The youtube-dl maintainers</name>
  11246. </author>
  11247. <updated>2017-09-11T00:00:00Z</updated>
  11248. </entry>
  11249. <entry>
  11250. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.09.15</id>
  11251. <title>New version 2017.09.15</title>
  11252. <link href="http://ytdl-org.github.io/youtube-dl" />
  11253. <content type="xhtml">
  11254. <div xmlns="http://www.w3.org/1999/xhtml">
  11255. Downloads available at <a href="https://yt-dl.org/downloads/2017.09.15/">https://yt-dl.org/downloads/2017.09.15/</a>
  11256. </div>
  11257. </content>
  11258. <author>
  11259. <name>The youtube-dl maintainers</name>
  11260. </author>
  11261. <updated>2017-09-15T00:00:00Z</updated>
  11262. </entry>
  11263. <entry>
  11264. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.09.24</id>
  11265. <title>New version 2017.09.24</title>
  11266. <link href="http://ytdl-org.github.io/youtube-dl" />
  11267. <content type="xhtml">
  11268. <div xmlns="http://www.w3.org/1999/xhtml">
  11269. Downloads available at <a href="https://yt-dl.org/downloads/2017.09.24/">https://yt-dl.org/downloads/2017.09.24/</a>
  11270. </div>
  11271. </content>
  11272. <author>
  11273. <name>The youtube-dl maintainers</name>
  11274. </author>
  11275. <updated>2017-09-24T00:00:00Z</updated>
  11276. </entry>
  11277. <entry>
  11278. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.01</id>
  11279. <title>New version 2017.10.01</title>
  11280. <link href="http://ytdl-org.github.io/youtube-dl" />
  11281. <content type="xhtml">
  11282. <div xmlns="http://www.w3.org/1999/xhtml">
  11283. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.01/">https://yt-dl.org/downloads/2017.10.01/</a>
  11284. </div>
  11285. </content>
  11286. <author>
  11287. <name>The youtube-dl maintainers</name>
  11288. </author>
  11289. <updated>2017-10-01T00:00:00Z</updated>
  11290. </entry>
  11291. <entry>
  11292. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.07</id>
  11293. <title>New version 2017.10.07</title>
  11294. <link href="http://ytdl-org.github.io/youtube-dl" />
  11295. <content type="xhtml">
  11296. <div xmlns="http://www.w3.org/1999/xhtml">
  11297. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.07/">https://yt-dl.org/downloads/2017.10.07/</a>
  11298. </div>
  11299. </content>
  11300. <author>
  11301. <name>The youtube-dl maintainers</name>
  11302. </author>
  11303. <updated>2017-10-07T00:00:00Z</updated>
  11304. </entry>
  11305. <entry>
  11306. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.12</id>
  11307. <title>New version 2017.10.12</title>
  11308. <link href="http://ytdl-org.github.io/youtube-dl" />
  11309. <content type="xhtml">
  11310. <div xmlns="http://www.w3.org/1999/xhtml">
  11311. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.12/">https://yt-dl.org/downloads/2017.10.12/</a>
  11312. </div>
  11313. </content>
  11314. <author>
  11315. <name>The youtube-dl maintainers</name>
  11316. </author>
  11317. <updated>2017-10-12T00:00:00Z</updated>
  11318. </entry>
  11319. <entry>
  11320. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.15</id>
  11321. <title>New version 2017.10.15</title>
  11322. <link href="http://ytdl-org.github.io/youtube-dl" />
  11323. <content type="xhtml">
  11324. <div xmlns="http://www.w3.org/1999/xhtml">
  11325. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.15/">https://yt-dl.org/downloads/2017.10.15/</a>
  11326. </div>
  11327. </content>
  11328. <author>
  11329. <name>The youtube-dl maintainers</name>
  11330. </author>
  11331. <updated>2017-10-15T00:00:00Z</updated>
  11332. </entry>
  11333. <entry>
  11334. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.15.1</id>
  11335. <title>New version 2017.10.15.1</title>
  11336. <link href="http://ytdl-org.github.io/youtube-dl" />
  11337. <content type="xhtml">
  11338. <div xmlns="http://www.w3.org/1999/xhtml">
  11339. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.15.1/">https://yt-dl.org/downloads/2017.10.15.1/</a>
  11340. </div>
  11341. </content>
  11342. <author>
  11343. <name>The youtube-dl maintainers</name>
  11344. </author>
  11345. <updated>2017-10-15T00:00:01Z</updated>
  11346. </entry>
  11347. <entry>
  11348. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.20</id>
  11349. <title>New version 2017.10.20</title>
  11350. <link href="http://ytdl-org.github.io/youtube-dl" />
  11351. <content type="xhtml">
  11352. <div xmlns="http://www.w3.org/1999/xhtml">
  11353. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.20/">https://yt-dl.org/downloads/2017.10.20/</a>
  11354. </div>
  11355. </content>
  11356. <author>
  11357. <name>The youtube-dl maintainers</name>
  11358. </author>
  11359. <updated>2017-10-20T00:00:00Z</updated>
  11360. </entry>
  11361. <entry>
  11362. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.10.29</id>
  11363. <title>New version 2017.10.29</title>
  11364. <link href="http://ytdl-org.github.io/youtube-dl" />
  11365. <content type="xhtml">
  11366. <div xmlns="http://www.w3.org/1999/xhtml">
  11367. Downloads available at <a href="https://yt-dl.org/downloads/2017.10.29/">https://yt-dl.org/downloads/2017.10.29/</a>
  11368. </div>
  11369. </content>
  11370. <author>
  11371. <name>The youtube-dl maintainers</name>
  11372. </author>
  11373. <updated>2017-10-29T00:00:00Z</updated>
  11374. </entry>
  11375. <entry>
  11376. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.11.06</id>
  11377. <title>New version 2017.11.06</title>
  11378. <link href="http://ytdl-org.github.io/youtube-dl" />
  11379. <content type="xhtml">
  11380. <div xmlns="http://www.w3.org/1999/xhtml">
  11381. Downloads available at <a href="https://yt-dl.org/downloads/2017.11.06/">https://yt-dl.org/downloads/2017.11.06/</a>
  11382. </div>
  11383. </content>
  11384. <author>
  11385. <name>The youtube-dl maintainers</name>
  11386. </author>
  11387. <updated>2017-11-06T00:00:00Z</updated>
  11388. </entry>
  11389. <entry>
  11390. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.11.15</id>
  11391. <title>New version 2017.11.15</title>
  11392. <link href="http://ytdl-org.github.io/youtube-dl" />
  11393. <content type="xhtml">
  11394. <div xmlns="http://www.w3.org/1999/xhtml">
  11395. Downloads available at <a href="https://yt-dl.org/downloads/2017.11.15/">https://yt-dl.org/downloads/2017.11.15/</a>
  11396. </div>
  11397. </content>
  11398. <author>
  11399. <name>The youtube-dl maintainers</name>
  11400. </author>
  11401. <updated>2017-11-15T00:00:00Z</updated>
  11402. </entry>
  11403. <entry>
  11404. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.11.26</id>
  11405. <title>New version 2017.11.26</title>
  11406. <link href="http://ytdl-org.github.io/youtube-dl" />
  11407. <content type="xhtml">
  11408. <div xmlns="http://www.w3.org/1999/xhtml">
  11409. Downloads available at <a href="https://yt-dl.org/downloads/2017.11.26/">https://yt-dl.org/downloads/2017.11.26/</a>
  11410. </div>
  11411. </content>
  11412. <author>
  11413. <name>The youtube-dl maintainers</name>
  11414. </author>
  11415. <updated>2017-11-26T00:00:00Z</updated>
  11416. </entry>
  11417. <entry>
  11418. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.02</id>
  11419. <title>New version 2017.12.02</title>
  11420. <link href="http://ytdl-org.github.io/youtube-dl" />
  11421. <content type="xhtml">
  11422. <div xmlns="http://www.w3.org/1999/xhtml">
  11423. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.02/">https://yt-dl.org/downloads/2017.12.02/</a>
  11424. </div>
  11425. </content>
  11426. <author>
  11427. <name>The youtube-dl maintainers</name>
  11428. </author>
  11429. <updated>2017-12-02T00:00:00Z</updated>
  11430. </entry>
  11431. <entry>
  11432. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.10</id>
  11433. <title>New version 2017.12.10</title>
  11434. <link href="http://ytdl-org.github.io/youtube-dl" />
  11435. <content type="xhtml">
  11436. <div xmlns="http://www.w3.org/1999/xhtml">
  11437. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.10/">https://yt-dl.org/downloads/2017.12.10/</a>
  11438. </div>
  11439. </content>
  11440. <author>
  11441. <name>The youtube-dl maintainers</name>
  11442. </author>
  11443. <updated>2017-12-10T00:00:00Z</updated>
  11444. </entry>
  11445. <entry>
  11446. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.14</id>
  11447. <title>New version 2017.12.14</title>
  11448. <link href="http://ytdl-org.github.io/youtube-dl" />
  11449. <content type="xhtml">
  11450. <div xmlns="http://www.w3.org/1999/xhtml">
  11451. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.14/">https://yt-dl.org/downloads/2017.12.14/</a>
  11452. </div>
  11453. </content>
  11454. <author>
  11455. <name>The youtube-dl maintainers</name>
  11456. </author>
  11457. <updated>2017-12-14T00:00:00Z</updated>
  11458. </entry>
  11459. <entry>
  11460. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.23</id>
  11461. <title>New version 2017.12.23</title>
  11462. <link href="http://ytdl-org.github.io/youtube-dl" />
  11463. <content type="xhtml">
  11464. <div xmlns="http://www.w3.org/1999/xhtml">
  11465. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.23/">https://yt-dl.org/downloads/2017.12.23/</a>
  11466. </div>
  11467. </content>
  11468. <author>
  11469. <name>The youtube-dl maintainers</name>
  11470. </author>
  11471. <updated>2017-12-23T00:00:00Z</updated>
  11472. </entry>
  11473. <entry>
  11474. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.28</id>
  11475. <title>New version 2017.12.28</title>
  11476. <link href="http://ytdl-org.github.io/youtube-dl" />
  11477. <content type="xhtml">
  11478. <div xmlns="http://www.w3.org/1999/xhtml">
  11479. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.28/">https://yt-dl.org/downloads/2017.12.28/</a>
  11480. </div>
  11481. </content>
  11482. <author>
  11483. <name>The youtube-dl maintainers</name>
  11484. </author>
  11485. <updated>2017-12-28T00:00:00Z</updated>
  11486. </entry>
  11487. <entry>
  11488. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2017.12.31</id>
  11489. <title>New version 2017.12.31</title>
  11490. <link href="http://ytdl-org.github.io/youtube-dl" />
  11491. <content type="xhtml">
  11492. <div xmlns="http://www.w3.org/1999/xhtml">
  11493. Downloads available at <a href="https://yt-dl.org/downloads/2017.12.31/">https://yt-dl.org/downloads/2017.12.31/</a>
  11494. </div>
  11495. </content>
  11496. <author>
  11497. <name>The youtube-dl maintainers</name>
  11498. </author>
  11499. <updated>2017-12-31T00:00:00Z</updated>
  11500. </entry>
  11501. <entry>
  11502. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.01.07</id>
  11503. <title>New version 2018.01.07</title>
  11504. <link href="http://ytdl-org.github.io/youtube-dl" />
  11505. <content type="xhtml">
  11506. <div xmlns="http://www.w3.org/1999/xhtml">
  11507. Downloads available at <a href="https://yt-dl.org/downloads/2018.01.07/">https://yt-dl.org/downloads/2018.01.07/</a>
  11508. </div>
  11509. </content>
  11510. <author>
  11511. <name>The youtube-dl maintainers</name>
  11512. </author>
  11513. <updated>2018-01-07T00:00:00Z</updated>
  11514. </entry>
  11515. <entry>
  11516. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.01.14</id>
  11517. <title>New version 2018.01.14</title>
  11518. <link href="http://ytdl-org.github.io/youtube-dl" />
  11519. <content type="xhtml">
  11520. <div xmlns="http://www.w3.org/1999/xhtml">
  11521. Downloads available at <a href="https://yt-dl.org/downloads/2018.01.14/">https://yt-dl.org/downloads/2018.01.14/</a>
  11522. </div>
  11523. </content>
  11524. <author>
  11525. <name>The youtube-dl maintainers</name>
  11526. </author>
  11527. <updated>2018-01-14T00:00:00Z</updated>
  11528. </entry>
  11529. <entry>
  11530. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.01.18</id>
  11531. <title>New version 2018.01.18</title>
  11532. <link href="http://ytdl-org.github.io/youtube-dl" />
  11533. <content type="xhtml">
  11534. <div xmlns="http://www.w3.org/1999/xhtml">
  11535. Downloads available at <a href="https://yt-dl.org/downloads/2018.01.18/">https://yt-dl.org/downloads/2018.01.18/</a>
  11536. </div>
  11537. </content>
  11538. <author>
  11539. <name>The youtube-dl maintainers</name>
  11540. </author>
  11541. <updated>2018-01-18T00:00:00Z</updated>
  11542. </entry>
  11543. <entry>
  11544. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.01.21</id>
  11545. <title>New version 2018.01.21</title>
  11546. <link href="http://ytdl-org.github.io/youtube-dl" />
  11547. <content type="xhtml">
  11548. <div xmlns="http://www.w3.org/1999/xhtml">
  11549. Downloads available at <a href="https://yt-dl.org/downloads/2018.01.21/">https://yt-dl.org/downloads/2018.01.21/</a>
  11550. </div>
  11551. </content>
  11552. <author>
  11553. <name>The youtube-dl maintainers</name>
  11554. </author>
  11555. <updated>2018-01-21T00:00:00Z</updated>
  11556. </entry>
  11557. <entry>
  11558. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.01.27</id>
  11559. <title>New version 2018.01.27</title>
  11560. <link href="http://ytdl-org.github.io/youtube-dl" />
  11561. <content type="xhtml">
  11562. <div xmlns="http://www.w3.org/1999/xhtml">
  11563. Downloads available at <a href="https://yt-dl.org/downloads/2018.01.27/">https://yt-dl.org/downloads/2018.01.27/</a>
  11564. </div>
  11565. </content>
  11566. <author>
  11567. <name>The youtube-dl maintainers</name>
  11568. </author>
  11569. <updated>2018-01-27T00:00:00Z</updated>
  11570. </entry>
  11571. <entry>
  11572. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.03</id>
  11573. <title>New version 2018.02.03</title>
  11574. <link href="http://ytdl-org.github.io/youtube-dl" />
  11575. <content type="xhtml">
  11576. <div xmlns="http://www.w3.org/1999/xhtml">
  11577. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.03/">https://yt-dl.org/downloads/2018.02.03/</a>
  11578. </div>
  11579. </content>
  11580. <author>
  11581. <name>The youtube-dl maintainers</name>
  11582. </author>
  11583. <updated>2018-02-03T00:00:00Z</updated>
  11584. </entry>
  11585. <entry>
  11586. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.04</id>
  11587. <title>New version 2018.02.04</title>
  11588. <link href="http://ytdl-org.github.io/youtube-dl" />
  11589. <content type="xhtml">
  11590. <div xmlns="http://www.w3.org/1999/xhtml">
  11591. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.04/">https://yt-dl.org/downloads/2018.02.04/</a>
  11592. </div>
  11593. </content>
  11594. <author>
  11595. <name>The youtube-dl maintainers</name>
  11596. </author>
  11597. <updated>2018-02-04T00:00:00Z</updated>
  11598. </entry>
  11599. <entry>
  11600. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.08</id>
  11601. <title>New version 2018.02.08</title>
  11602. <link href="http://ytdl-org.github.io/youtube-dl" />
  11603. <content type="xhtml">
  11604. <div xmlns="http://www.w3.org/1999/xhtml">
  11605. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.08/">https://yt-dl.org/downloads/2018.02.08/</a>
  11606. </div>
  11607. </content>
  11608. <author>
  11609. <name>The youtube-dl maintainers</name>
  11610. </author>
  11611. <updated>2018-02-08T00:00:00Z</updated>
  11612. </entry>
  11613. <entry>
  11614. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.11</id>
  11615. <title>New version 2018.02.11</title>
  11616. <link href="http://ytdl-org.github.io/youtube-dl" />
  11617. <content type="xhtml">
  11618. <div xmlns="http://www.w3.org/1999/xhtml">
  11619. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.11/">https://yt-dl.org/downloads/2018.02.11/</a>
  11620. </div>
  11621. </content>
  11622. <author>
  11623. <name>The youtube-dl maintainers</name>
  11624. </author>
  11625. <updated>2018-02-11T00:00:00Z</updated>
  11626. </entry>
  11627. <entry>
  11628. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.22</id>
  11629. <title>New version 2018.02.22</title>
  11630. <link href="http://ytdl-org.github.io/youtube-dl" />
  11631. <content type="xhtml">
  11632. <div xmlns="http://www.w3.org/1999/xhtml">
  11633. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.22/">https://yt-dl.org/downloads/2018.02.22/</a>
  11634. </div>
  11635. </content>
  11636. <author>
  11637. <name>The youtube-dl maintainers</name>
  11638. </author>
  11639. <updated>2018-02-22T00:00:00Z</updated>
  11640. </entry>
  11641. <entry>
  11642. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.25</id>
  11643. <title>New version 2018.02.25</title>
  11644. <link href="http://ytdl-org.github.io/youtube-dl" />
  11645. <content type="xhtml">
  11646. <div xmlns="http://www.w3.org/1999/xhtml">
  11647. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.25/">https://yt-dl.org/downloads/2018.02.25/</a>
  11648. </div>
  11649. </content>
  11650. <author>
  11651. <name>The youtube-dl maintainers</name>
  11652. </author>
  11653. <updated>2018-02-25T00:00:00Z</updated>
  11654. </entry>
  11655. <entry>
  11656. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.02.26</id>
  11657. <title>New version 2018.02.26</title>
  11658. <link href="http://ytdl-org.github.io/youtube-dl" />
  11659. <content type="xhtml">
  11660. <div xmlns="http://www.w3.org/1999/xhtml">
  11661. Downloads available at <a href="https://yt-dl.org/downloads/2018.02.26/">https://yt-dl.org/downloads/2018.02.26/</a>
  11662. </div>
  11663. </content>
  11664. <author>
  11665. <name>The youtube-dl maintainers</name>
  11666. </author>
  11667. <updated>2018-02-26T00:00:00Z</updated>
  11668. </entry>
  11669. <entry>
  11670. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.03</id>
  11671. <title>New version 2018.03.03</title>
  11672. <link href="http://ytdl-org.github.io/youtube-dl" />
  11673. <content type="xhtml">
  11674. <div xmlns="http://www.w3.org/1999/xhtml">
  11675. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.03/">https://yt-dl.org/downloads/2018.03.03/</a>
  11676. </div>
  11677. </content>
  11678. <author>
  11679. <name>The youtube-dl maintainers</name>
  11680. </author>
  11681. <updated>2018-03-03T00:00:00Z</updated>
  11682. </entry>
  11683. <entry>
  11684. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.10</id>
  11685. <title>New version 2018.03.10</title>
  11686. <link href="http://ytdl-org.github.io/youtube-dl" />
  11687. <content type="xhtml">
  11688. <div xmlns="http://www.w3.org/1999/xhtml">
  11689. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.10/">https://yt-dl.org/downloads/2018.03.10/</a>
  11690. </div>
  11691. </content>
  11692. <author>
  11693. <name>The youtube-dl maintainers</name>
  11694. </author>
  11695. <updated>2018-03-10T00:00:00Z</updated>
  11696. </entry>
  11697. <entry>
  11698. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.14</id>
  11699. <title>New version 2018.03.14</title>
  11700. <link href="http://ytdl-org.github.io/youtube-dl" />
  11701. <content type="xhtml">
  11702. <div xmlns="http://www.w3.org/1999/xhtml">
  11703. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.14/">https://yt-dl.org/downloads/2018.03.14/</a>
  11704. </div>
  11705. </content>
  11706. <author>
  11707. <name>The youtube-dl maintainers</name>
  11708. </author>
  11709. <updated>2018-03-14T00:00:00Z</updated>
  11710. </entry>
  11711. <entry>
  11712. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.20</id>
  11713. <title>New version 2018.03.20</title>
  11714. <link href="http://ytdl-org.github.io/youtube-dl" />
  11715. <content type="xhtml">
  11716. <div xmlns="http://www.w3.org/1999/xhtml">
  11717. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.20/">https://yt-dl.org/downloads/2018.03.20/</a>
  11718. </div>
  11719. </content>
  11720. <author>
  11721. <name>The youtube-dl maintainers</name>
  11722. </author>
  11723. <updated>2018-03-20T00:00:00Z</updated>
  11724. </entry>
  11725. <entry>
  11726. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.26</id>
  11727. <title>New version 2018.03.26</title>
  11728. <link href="http://ytdl-org.github.io/youtube-dl" />
  11729. <content type="xhtml">
  11730. <div xmlns="http://www.w3.org/1999/xhtml">
  11731. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.26/">https://yt-dl.org/downloads/2018.03.26/</a>
  11732. </div>
  11733. </content>
  11734. <author>
  11735. <name>The youtube-dl maintainers</name>
  11736. </author>
  11737. <updated>2018-03-26T00:00:00Z</updated>
  11738. </entry>
  11739. <entry>
  11740. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.03.26.1</id>
  11741. <title>New version 2018.03.26.1</title>
  11742. <link href="http://ytdl-org.github.io/youtube-dl" />
  11743. <content type="xhtml">
  11744. <div xmlns="http://www.w3.org/1999/xhtml">
  11745. Downloads available at <a href="https://yt-dl.org/downloads/2018.03.26.1/">https://yt-dl.org/downloads/2018.03.26.1/</a>
  11746. </div>
  11747. </content>
  11748. <author>
  11749. <name>The youtube-dl maintainers</name>
  11750. </author>
  11751. <updated>2018-03-26T00:00:01Z</updated>
  11752. </entry>
  11753. <entry>
  11754. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.04.03</id>
  11755. <title>New version 2018.04.03</title>
  11756. <link href="http://ytdl-org.github.io/youtube-dl" />
  11757. <content type="xhtml">
  11758. <div xmlns="http://www.w3.org/1999/xhtml">
  11759. Downloads available at <a href="https://yt-dl.org/downloads/2018.04.03/">https://yt-dl.org/downloads/2018.04.03/</a>
  11760. </div>
  11761. </content>
  11762. <author>
  11763. <name>The youtube-dl maintainers</name>
  11764. </author>
  11765. <updated>2018-04-03T00:00:00Z</updated>
  11766. </entry>
  11767. <entry>
  11768. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.04.09</id>
  11769. <title>New version 2018.04.09</title>
  11770. <link href="http://ytdl-org.github.io/youtube-dl" />
  11771. <content type="xhtml">
  11772. <div xmlns="http://www.w3.org/1999/xhtml">
  11773. Downloads available at <a href="https://yt-dl.org/downloads/2018.04.09/">https://yt-dl.org/downloads/2018.04.09/</a>
  11774. </div>
  11775. </content>
  11776. <author>
  11777. <name>The youtube-dl maintainers</name>
  11778. </author>
  11779. <updated>2018-04-09T00:00:00Z</updated>
  11780. </entry>
  11781. <entry>
  11782. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.04.16</id>
  11783. <title>New version 2018.04.16</title>
  11784. <link href="http://ytdl-org.github.io/youtube-dl" />
  11785. <content type="xhtml">
  11786. <div xmlns="http://www.w3.org/1999/xhtml">
  11787. Downloads available at <a href="https://yt-dl.org/downloads/2018.04.16/">https://yt-dl.org/downloads/2018.04.16/</a>
  11788. </div>
  11789. </content>
  11790. <author>
  11791. <name>The youtube-dl maintainers</name>
  11792. </author>
  11793. <updated>2018-04-16T00:00:00Z</updated>
  11794. </entry>
  11795. <entry>
  11796. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.04.25</id>
  11797. <title>New version 2018.04.25</title>
  11798. <link href="http://ytdl-org.github.io/youtube-dl" />
  11799. <content type="xhtml">
  11800. <div xmlns="http://www.w3.org/1999/xhtml">
  11801. Downloads available at <a href="https://yt-dl.org/downloads/2018.04.25/">https://yt-dl.org/downloads/2018.04.25/</a>
  11802. </div>
  11803. </content>
  11804. <author>
  11805. <name>The youtube-dl maintainers</name>
  11806. </author>
  11807. <updated>2018-04-25T00:00:00Z</updated>
  11808. </entry>
  11809. <entry>
  11810. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.05.01</id>
  11811. <title>New version 2018.05.01</title>
  11812. <link href="http://ytdl-org.github.io/youtube-dl" />
  11813. <content type="xhtml">
  11814. <div xmlns="http://www.w3.org/1999/xhtml">
  11815. Downloads available at <a href="https://yt-dl.org/downloads/2018.05.01/">https://yt-dl.org/downloads/2018.05.01/</a>
  11816. </div>
  11817. </content>
  11818. <author>
  11819. <name>The youtube-dl maintainers</name>
  11820. </author>
  11821. <updated>2018-05-01T00:00:00Z</updated>
  11822. </entry>
  11823. <entry>
  11824. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.05.09</id>
  11825. <title>New version 2018.05.09</title>
  11826. <link href="http://ytdl-org.github.io/youtube-dl" />
  11827. <content type="xhtml">
  11828. <div xmlns="http://www.w3.org/1999/xhtml">
  11829. Downloads available at <a href="https://yt-dl.org/downloads/2018.05.09/">https://yt-dl.org/downloads/2018.05.09/</a>
  11830. </div>
  11831. </content>
  11832. <author>
  11833. <name>The youtube-dl maintainers</name>
  11834. </author>
  11835. <updated>2018-05-09T00:00:00Z</updated>
  11836. </entry>
  11837. <entry>
  11838. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.05.18</id>
  11839. <title>New version 2018.05.18</title>
  11840. <link href="http://ytdl-org.github.io/youtube-dl" />
  11841. <content type="xhtml">
  11842. <div xmlns="http://www.w3.org/1999/xhtml">
  11843. Downloads available at <a href="https://yt-dl.org/downloads/2018.05.18/">https://yt-dl.org/downloads/2018.05.18/</a>
  11844. </div>
  11845. </content>
  11846. <author>
  11847. <name>The youtube-dl maintainers</name>
  11848. </author>
  11849. <updated>2018-05-18T00:00:00Z</updated>
  11850. </entry>
  11851. <entry>
  11852. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.05.26</id>
  11853. <title>New version 2018.05.26</title>
  11854. <link href="http://ytdl-org.github.io/youtube-dl" />
  11855. <content type="xhtml">
  11856. <div xmlns="http://www.w3.org/1999/xhtml">
  11857. Downloads available at <a href="https://yt-dl.org/downloads/2018.05.26/">https://yt-dl.org/downloads/2018.05.26/</a>
  11858. </div>
  11859. </content>
  11860. <author>
  11861. <name>The youtube-dl maintainers</name>
  11862. </author>
  11863. <updated>2018-05-26T00:00:00Z</updated>
  11864. </entry>
  11865. <entry>
  11866. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.05.30</id>
  11867. <title>New version 2018.05.30</title>
  11868. <link href="http://ytdl-org.github.io/youtube-dl" />
  11869. <content type="xhtml">
  11870. <div xmlns="http://www.w3.org/1999/xhtml">
  11871. Downloads available at <a href="https://yt-dl.org/downloads/2018.05.30/">https://yt-dl.org/downloads/2018.05.30/</a>
  11872. </div>
  11873. </content>
  11874. <author>
  11875. <name>The youtube-dl maintainers</name>
  11876. </author>
  11877. <updated>2018-05-30T00:00:00Z</updated>
  11878. </entry>
  11879. <entry>
  11880. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.02</id>
  11881. <title>New version 2018.06.02</title>
  11882. <link href="http://ytdl-org.github.io/youtube-dl" />
  11883. <content type="xhtml">
  11884. <div xmlns="http://www.w3.org/1999/xhtml">
  11885. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.02/">https://yt-dl.org/downloads/2018.06.02/</a>
  11886. </div>
  11887. </content>
  11888. <author>
  11889. <name>The youtube-dl maintainers</name>
  11890. </author>
  11891. <updated>2018-06-02T00:00:00Z</updated>
  11892. </entry>
  11893. <entry>
  11894. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.04</id>
  11895. <title>New version 2018.06.04</title>
  11896. <link href="http://ytdl-org.github.io/youtube-dl" />
  11897. <content type="xhtml">
  11898. <div xmlns="http://www.w3.org/1999/xhtml">
  11899. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.04/">https://yt-dl.org/downloads/2018.06.04/</a>
  11900. </div>
  11901. </content>
  11902. <author>
  11903. <name>The youtube-dl maintainers</name>
  11904. </author>
  11905. <updated>2018-06-04T00:00:00Z</updated>
  11906. </entry>
  11907. <entry>
  11908. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.11</id>
  11909. <title>New version 2018.06.11</title>
  11910. <link href="http://ytdl-org.github.io/youtube-dl" />
  11911. <content type="xhtml">
  11912. <div xmlns="http://www.w3.org/1999/xhtml">
  11913. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.11/">https://yt-dl.org/downloads/2018.06.11/</a>
  11914. </div>
  11915. </content>
  11916. <author>
  11917. <name>The youtube-dl maintainers</name>
  11918. </author>
  11919. <updated>2018-06-11T00:00:00Z</updated>
  11920. </entry>
  11921. <entry>
  11922. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.14</id>
  11923. <title>New version 2018.06.14</title>
  11924. <link href="http://ytdl-org.github.io/youtube-dl" />
  11925. <content type="xhtml">
  11926. <div xmlns="http://www.w3.org/1999/xhtml">
  11927. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.14/">https://yt-dl.org/downloads/2018.06.14/</a>
  11928. </div>
  11929. </content>
  11930. <author>
  11931. <name>The youtube-dl maintainers</name>
  11932. </author>
  11933. <updated>2018-06-14T00:00:00Z</updated>
  11934. </entry>
  11935. <entry>
  11936. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.18</id>
  11937. <title>New version 2018.06.18</title>
  11938. <link href="http://ytdl-org.github.io/youtube-dl" />
  11939. <content type="xhtml">
  11940. <div xmlns="http://www.w3.org/1999/xhtml">
  11941. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.18/">https://yt-dl.org/downloads/2018.06.18/</a>
  11942. </div>
  11943. </content>
  11944. <author>
  11945. <name>The youtube-dl maintainers</name>
  11946. </author>
  11947. <updated>2018-06-18T00:00:00Z</updated>
  11948. </entry>
  11949. <entry>
  11950. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.19</id>
  11951. <title>New version 2018.06.19</title>
  11952. <link href="http://ytdl-org.github.io/youtube-dl" />
  11953. <content type="xhtml">
  11954. <div xmlns="http://www.w3.org/1999/xhtml">
  11955. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.19/">https://yt-dl.org/downloads/2018.06.19/</a>
  11956. </div>
  11957. </content>
  11958. <author>
  11959. <name>The youtube-dl maintainers</name>
  11960. </author>
  11961. <updated>2018-06-19T00:00:00Z</updated>
  11962. </entry>
  11963. <entry>
  11964. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.06.25</id>
  11965. <title>New version 2018.06.25</title>
  11966. <link href="http://ytdl-org.github.io/youtube-dl" />
  11967. <content type="xhtml">
  11968. <div xmlns="http://www.w3.org/1999/xhtml">
  11969. Downloads available at <a href="https://yt-dl.org/downloads/2018.06.25/">https://yt-dl.org/downloads/2018.06.25/</a>
  11970. </div>
  11971. </content>
  11972. <author>
  11973. <name>The youtube-dl maintainers</name>
  11974. </author>
  11975. <updated>2018-06-25T00:00:00Z</updated>
  11976. </entry>
  11977. <entry>
  11978. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.07.04</id>
  11979. <title>New version 2018.07.04</title>
  11980. <link href="http://ytdl-org.github.io/youtube-dl" />
  11981. <content type="xhtml">
  11982. <div xmlns="http://www.w3.org/1999/xhtml">
  11983. Downloads available at <a href="https://yt-dl.org/downloads/2018.07.04/">https://yt-dl.org/downloads/2018.07.04/</a>
  11984. </div>
  11985. </content>
  11986. <author>
  11987. <name>The youtube-dl maintainers</name>
  11988. </author>
  11989. <updated>2018-07-04T00:00:00Z</updated>
  11990. </entry>
  11991. <entry>
  11992. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.07.10</id>
  11993. <title>New version 2018.07.10</title>
  11994. <link href="http://ytdl-org.github.io/youtube-dl" />
  11995. <content type="xhtml">
  11996. <div xmlns="http://www.w3.org/1999/xhtml">
  11997. Downloads available at <a href="https://yt-dl.org/downloads/2018.07.10/">https://yt-dl.org/downloads/2018.07.10/</a>
  11998. </div>
  11999. </content>
  12000. <author>
  12001. <name>The youtube-dl maintainers</name>
  12002. </author>
  12003. <updated>2018-07-10T00:00:00Z</updated>
  12004. </entry>
  12005. <entry>
  12006. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.07.21</id>
  12007. <title>New version 2018.07.21</title>
  12008. <link href="http://ytdl-org.github.io/youtube-dl" />
  12009. <content type="xhtml">
  12010. <div xmlns="http://www.w3.org/1999/xhtml">
  12011. Downloads available at <a href="https://yt-dl.org/downloads/2018.07.21/">https://yt-dl.org/downloads/2018.07.21/</a>
  12012. </div>
  12013. </content>
  12014. <author>
  12015. <name>The youtube-dl maintainers</name>
  12016. </author>
  12017. <updated>2018-07-21T00:00:00Z</updated>
  12018. </entry>
  12019. <entry>
  12020. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.07.29</id>
  12021. <title>New version 2018.07.29</title>
  12022. <link href="http://ytdl-org.github.io/youtube-dl" />
  12023. <content type="xhtml">
  12024. <div xmlns="http://www.w3.org/1999/xhtml">
  12025. Downloads available at <a href="https://yt-dl.org/downloads/2018.07.29/">https://yt-dl.org/downloads/2018.07.29/</a>
  12026. </div>
  12027. </content>
  12028. <author>
  12029. <name>The youtube-dl maintainers</name>
  12030. </author>
  12031. <updated>2018-07-29T00:00:00Z</updated>
  12032. </entry>
  12033. <entry>
  12034. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.08.04</id>
  12035. <title>New version 2018.08.04</title>
  12036. <link href="http://ytdl-org.github.io/youtube-dl" />
  12037. <content type="xhtml">
  12038. <div xmlns="http://www.w3.org/1999/xhtml">
  12039. Downloads available at <a href="https://yt-dl.org/downloads/2018.08.04/">https://yt-dl.org/downloads/2018.08.04/</a>
  12040. </div>
  12041. </content>
  12042. <author>
  12043. <name>The youtube-dl maintainers</name>
  12044. </author>
  12045. <updated>2018-08-04T00:00:00Z</updated>
  12046. </entry>
  12047. <entry>
  12048. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.08.22</id>
  12049. <title>New version 2018.08.22</title>
  12050. <link href="http://ytdl-org.github.io/youtube-dl" />
  12051. <content type="xhtml">
  12052. <div xmlns="http://www.w3.org/1999/xhtml">
  12053. Downloads available at <a href="https://yt-dl.org/downloads/2018.08.22/">https://yt-dl.org/downloads/2018.08.22/</a>
  12054. </div>
  12055. </content>
  12056. <author>
  12057. <name>The youtube-dl maintainers</name>
  12058. </author>
  12059. <updated>2018-08-22T00:00:00Z</updated>
  12060. </entry>
  12061. <entry>
  12062. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.08.28</id>
  12063. <title>New version 2018.08.28</title>
  12064. <link href="http://ytdl-org.github.io/youtube-dl" />
  12065. <content type="xhtml">
  12066. <div xmlns="http://www.w3.org/1999/xhtml">
  12067. Downloads available at <a href="https://yt-dl.org/downloads/2018.08.28/">https://yt-dl.org/downloads/2018.08.28/</a>
  12068. </div>
  12069. </content>
  12070. <author>
  12071. <name>The youtube-dl maintainers</name>
  12072. </author>
  12073. <updated>2018-08-28T00:00:00Z</updated>
  12074. </entry>
  12075. <entry>
  12076. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.09.01</id>
  12077. <title>New version 2018.09.01</title>
  12078. <link href="http://ytdl-org.github.io/youtube-dl" />
  12079. <content type="xhtml">
  12080. <div xmlns="http://www.w3.org/1999/xhtml">
  12081. Downloads available at <a href="https://yt-dl.org/downloads/2018.09.01/">https://yt-dl.org/downloads/2018.09.01/</a>
  12082. </div>
  12083. </content>
  12084. <author>
  12085. <name>The youtube-dl maintainers</name>
  12086. </author>
  12087. <updated>2018-09-01T00:00:00Z</updated>
  12088. </entry>
  12089. <entry>
  12090. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.09.08</id>
  12091. <title>New version 2018.09.08</title>
  12092. <link href="http://ytdl-org.github.io/youtube-dl" />
  12093. <content type="xhtml">
  12094. <div xmlns="http://www.w3.org/1999/xhtml">
  12095. Downloads available at <a href="https://yt-dl.org/downloads/2018.09.08/">https://yt-dl.org/downloads/2018.09.08/</a>
  12096. </div>
  12097. </content>
  12098. <author>
  12099. <name>The youtube-dl maintainers</name>
  12100. </author>
  12101. <updated>2018-09-08T00:00:00Z</updated>
  12102. </entry>
  12103. <entry>
  12104. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.09.10</id>
  12105. <title>New version 2018.09.10</title>
  12106. <link href="http://ytdl-org.github.io/youtube-dl" />
  12107. <content type="xhtml">
  12108. <div xmlns="http://www.w3.org/1999/xhtml">
  12109. Downloads available at <a href="https://yt-dl.org/downloads/2018.09.10/">https://yt-dl.org/downloads/2018.09.10/</a>
  12110. </div>
  12111. </content>
  12112. <author>
  12113. <name>The youtube-dl maintainers</name>
  12114. </author>
  12115. <updated>2018-09-10T00:00:00Z</updated>
  12116. </entry>
  12117. <entry>
  12118. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.09.18</id>
  12119. <title>New version 2018.09.18</title>
  12120. <link href="http://ytdl-org.github.io/youtube-dl" />
  12121. <content type="xhtml">
  12122. <div xmlns="http://www.w3.org/1999/xhtml">
  12123. Downloads available at <a href="https://yt-dl.org/downloads/2018.09.18/">https://yt-dl.org/downloads/2018.09.18/</a>
  12124. </div>
  12125. </content>
  12126. <author>
  12127. <name>The youtube-dl maintainers</name>
  12128. </author>
  12129. <updated>2018-09-18T00:00:00Z</updated>
  12130. </entry>
  12131. <entry>
  12132. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.09.26</id>
  12133. <title>New version 2018.09.26</title>
  12134. <link href="http://ytdl-org.github.io/youtube-dl" />
  12135. <content type="xhtml">
  12136. <div xmlns="http://www.w3.org/1999/xhtml">
  12137. Downloads available at <a href="https://yt-dl.org/downloads/2018.09.26/">https://yt-dl.org/downloads/2018.09.26/</a>
  12138. </div>
  12139. </content>
  12140. <author>
  12141. <name>The youtube-dl maintainers</name>
  12142. </author>
  12143. <updated>2018-09-26T00:00:00Z</updated>
  12144. </entry>
  12145. <entry>
  12146. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.10.05</id>
  12147. <title>New version 2018.10.05</title>
  12148. <link href="http://ytdl-org.github.io/youtube-dl" />
  12149. <content type="xhtml">
  12150. <div xmlns="http://www.w3.org/1999/xhtml">
  12151. Downloads available at <a href="https://yt-dl.org/downloads/2018.10.05/">https://yt-dl.org/downloads/2018.10.05/</a>
  12152. </div>
  12153. </content>
  12154. <author>
  12155. <name>The youtube-dl maintainers</name>
  12156. </author>
  12157. <updated>2018-10-05T00:00:00Z</updated>
  12158. </entry>
  12159. <entry>
  12160. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.10.29</id>
  12161. <title>New version 2018.10.29</title>
  12162. <link href="http://ytdl-org.github.io/youtube-dl" />
  12163. <content type="xhtml">
  12164. <div xmlns="http://www.w3.org/1999/xhtml">
  12165. Downloads available at <a href="https://yt-dl.org/downloads/2018.10.29/">https://yt-dl.org/downloads/2018.10.29/</a>
  12166. </div>
  12167. </content>
  12168. <author>
  12169. <name>The youtube-dl maintainers</name>
  12170. </author>
  12171. <updated>2018-10-29T00:00:00Z</updated>
  12172. </entry>
  12173. <entry>
  12174. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.11.03</id>
  12175. <title>New version 2018.11.03</title>
  12176. <link href="http://ytdl-org.github.io/youtube-dl" />
  12177. <content type="xhtml">
  12178. <div xmlns="http://www.w3.org/1999/xhtml">
  12179. Downloads available at <a href="https://yt-dl.org/downloads/2018.11.03/">https://yt-dl.org/downloads/2018.11.03/</a>
  12180. </div>
  12181. </content>
  12182. <author>
  12183. <name>The youtube-dl maintainers</name>
  12184. </author>
  12185. <updated>2018-11-03T00:00:00Z</updated>
  12186. </entry>
  12187. <entry>
  12188. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.11.07</id>
  12189. <title>New version 2018.11.07</title>
  12190. <link href="http://ytdl-org.github.io/youtube-dl" />
  12191. <content type="xhtml">
  12192. <div xmlns="http://www.w3.org/1999/xhtml">
  12193. Downloads available at <a href="https://yt-dl.org/downloads/2018.11.07/">https://yt-dl.org/downloads/2018.11.07/</a>
  12194. </div>
  12195. </content>
  12196. <author>
  12197. <name>The youtube-dl maintainers</name>
  12198. </author>
  12199. <updated>2018-11-07T00:00:00Z</updated>
  12200. </entry>
  12201. <entry>
  12202. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.11.18</id>
  12203. <title>New version 2018.11.18</title>
  12204. <link href="http://ytdl-org.github.io/youtube-dl" />
  12205. <content type="xhtml">
  12206. <div xmlns="http://www.w3.org/1999/xhtml">
  12207. Downloads available at <a href="https://yt-dl.org/downloads/2018.11.18/">https://yt-dl.org/downloads/2018.11.18/</a>
  12208. </div>
  12209. </content>
  12210. <author>
  12211. <name>The youtube-dl maintainers</name>
  12212. </author>
  12213. <updated>2018-11-18T00:00:00Z</updated>
  12214. </entry>
  12215. <entry>
  12216. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.11.23</id>
  12217. <title>New version 2018.11.23</title>
  12218. <link href="http://ytdl-org.github.io/youtube-dl" />
  12219. <content type="xhtml">
  12220. <div xmlns="http://www.w3.org/1999/xhtml">
  12221. Downloads available at <a href="https://yt-dl.org/downloads/2018.11.23/">https://yt-dl.org/downloads/2018.11.23/</a>
  12222. </div>
  12223. </content>
  12224. <author>
  12225. <name>The youtube-dl maintainers</name>
  12226. </author>
  12227. <updated>2018-11-23T00:00:00Z</updated>
  12228. </entry>
  12229. <entry>
  12230. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.12.03</id>
  12231. <title>New version 2018.12.03</title>
  12232. <link href="http://ytdl-org.github.io/youtube-dl" />
  12233. <content type="xhtml">
  12234. <div xmlns="http://www.w3.org/1999/xhtml">
  12235. Downloads available at <a href="https://yt-dl.org/downloads/2018.12.03/">https://yt-dl.org/downloads/2018.12.03/</a>
  12236. </div>
  12237. </content>
  12238. <author>
  12239. <name>The youtube-dl maintainers</name>
  12240. </author>
  12241. <updated>2018-12-03T00:00:00Z</updated>
  12242. </entry>
  12243. <entry>
  12244. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.12.09</id>
  12245. <title>New version 2018.12.09</title>
  12246. <link href="http://ytdl-org.github.io/youtube-dl" />
  12247. <content type="xhtml">
  12248. <div xmlns="http://www.w3.org/1999/xhtml">
  12249. Downloads available at <a href="https://yt-dl.org/downloads/2018.12.09/">https://yt-dl.org/downloads/2018.12.09/</a>
  12250. </div>
  12251. </content>
  12252. <author>
  12253. <name>The youtube-dl maintainers</name>
  12254. </author>
  12255. <updated>2018-12-09T00:00:00Z</updated>
  12256. </entry>
  12257. <entry>
  12258. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.12.17</id>
  12259. <title>New version 2018.12.17</title>
  12260. <link href="http://ytdl-org.github.io/youtube-dl" />
  12261. <content type="xhtml">
  12262. <div xmlns="http://www.w3.org/1999/xhtml">
  12263. Downloads available at <a href="https://yt-dl.org/downloads/2018.12.17/">https://yt-dl.org/downloads/2018.12.17/</a>
  12264. </div>
  12265. </content>
  12266. <author>
  12267. <name>The youtube-dl maintainers</name>
  12268. </author>
  12269. <updated>2018-12-17T00:00:00Z</updated>
  12270. </entry>
  12271. <entry>
  12272. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2018.12.31</id>
  12273. <title>New version 2018.12.31</title>
  12274. <link href="http://ytdl-org.github.io/youtube-dl" />
  12275. <content type="xhtml">
  12276. <div xmlns="http://www.w3.org/1999/xhtml">
  12277. Downloads available at <a href="https://yt-dl.org/downloads/2018.12.31/">https://yt-dl.org/downloads/2018.12.31/</a>
  12278. </div>
  12279. </content>
  12280. <author>
  12281. <name>The youtube-dl maintainers</name>
  12282. </author>
  12283. <updated>2018-12-31T00:00:00Z</updated>
  12284. </entry>
  12285. <entry>
  12286. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.02</id>
  12287. <title>New version 2019.01.02</title>
  12288. <link href="http://ytdl-org.github.io/youtube-dl" />
  12289. <content type="xhtml">
  12290. <div xmlns="http://www.w3.org/1999/xhtml">
  12291. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.02/">https://yt-dl.org/downloads/2019.01.02/</a>
  12292. </div>
  12293. </content>
  12294. <author>
  12295. <name>The youtube-dl maintainers</name>
  12296. </author>
  12297. <updated>2019-01-02T00:00:00Z</updated>
  12298. </entry>
  12299. <entry>
  12300. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.10</id>
  12301. <title>New version 2019.01.10</title>
  12302. <link href="http://ytdl-org.github.io/youtube-dl" />
  12303. <content type="xhtml">
  12304. <div xmlns="http://www.w3.org/1999/xhtml">
  12305. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.10/">https://yt-dl.org/downloads/2019.01.10/</a>
  12306. </div>
  12307. </content>
  12308. <author>
  12309. <name>The youtube-dl maintainers</name>
  12310. </author>
  12311. <updated>2019-01-10T00:00:00Z</updated>
  12312. </entry>
  12313. <entry>
  12314. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.16</id>
  12315. <title>New version 2019.01.16</title>
  12316. <link href="http://ytdl-org.github.io/youtube-dl" />
  12317. <content type="xhtml">
  12318. <div xmlns="http://www.w3.org/1999/xhtml">
  12319. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.16/">https://yt-dl.org/downloads/2019.01.16/</a>
  12320. </div>
  12321. </content>
  12322. <author>
  12323. <name>The youtube-dl maintainers</name>
  12324. </author>
  12325. <updated>2019-01-16T00:00:00Z</updated>
  12326. </entry>
  12327. <entry>
  12328. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.17</id>
  12329. <title>New version 2019.01.17</title>
  12330. <link href="http://ytdl-org.github.io/youtube-dl" />
  12331. <content type="xhtml">
  12332. <div xmlns="http://www.w3.org/1999/xhtml">
  12333. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.17/">https://yt-dl.org/downloads/2019.01.17/</a>
  12334. </div>
  12335. </content>
  12336. <author>
  12337. <name>The youtube-dl maintainers</name>
  12338. </author>
  12339. <updated>2019-01-17T00:00:00Z</updated>
  12340. </entry>
  12341. <entry>
  12342. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.23</id>
  12343. <title>New version 2019.01.23</title>
  12344. <link href="http://ytdl-org.github.io/youtube-dl" />
  12345. <content type="xhtml">
  12346. <div xmlns="http://www.w3.org/1999/xhtml">
  12347. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.23/">https://yt-dl.org/downloads/2019.01.23/</a>
  12348. </div>
  12349. </content>
  12350. <author>
  12351. <name>The youtube-dl maintainers</name>
  12352. </author>
  12353. <updated>2019-01-23T00:00:00Z</updated>
  12354. </entry>
  12355. <entry>
  12356. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.24</id>
  12357. <title>New version 2019.01.24</title>
  12358. <link href="http://ytdl-org.github.io/youtube-dl" />
  12359. <content type="xhtml">
  12360. <div xmlns="http://www.w3.org/1999/xhtml">
  12361. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.24/">https://yt-dl.org/downloads/2019.01.24/</a>
  12362. </div>
  12363. </content>
  12364. <author>
  12365. <name>The youtube-dl maintainers</name>
  12366. </author>
  12367. <updated>2019-01-24T00:00:00Z</updated>
  12368. </entry>
  12369. <entry>
  12370. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.27</id>
  12371. <title>New version 2019.01.27</title>
  12372. <link href="http://ytdl-org.github.io/youtube-dl" />
  12373. <content type="xhtml">
  12374. <div xmlns="http://www.w3.org/1999/xhtml">
  12375. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.27/">https://yt-dl.org/downloads/2019.01.27/</a>
  12376. </div>
  12377. </content>
  12378. <author>
  12379. <name>The youtube-dl maintainers</name>
  12380. </author>
  12381. <updated>2019-01-27T00:00:00Z</updated>
  12382. </entry>
  12383. <entry>
  12384. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.30</id>
  12385. <title>New version 2019.01.30</title>
  12386. <link href="http://ytdl-org.github.io/youtube-dl" />
  12387. <content type="xhtml">
  12388. <div xmlns="http://www.w3.org/1999/xhtml">
  12389. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.30/">https://yt-dl.org/downloads/2019.01.30/</a>
  12390. </div>
  12391. </content>
  12392. <author>
  12393. <name>The youtube-dl maintainers</name>
  12394. </author>
  12395. <updated>2019-01-30T00:00:00Z</updated>
  12396. </entry>
  12397. <entry>
  12398. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.01.30.1</id>
  12399. <title>New version 2019.01.30.1</title>
  12400. <link href="http://ytdl-org.github.io/youtube-dl" />
  12401. <content type="xhtml">
  12402. <div xmlns="http://www.w3.org/1999/xhtml">
  12403. Downloads available at <a href="https://yt-dl.org/downloads/2019.01.30.1/">https://yt-dl.org/downloads/2019.01.30.1/</a>
  12404. </div>
  12405. </content>
  12406. <author>
  12407. <name>The youtube-dl maintainers</name>
  12408. </author>
  12409. <updated>2019-01-30T00:00:01Z</updated>
  12410. </entry>
  12411. <entry>
  12412. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.02.08</id>
  12413. <title>New version 2019.02.08</title>
  12414. <link href="http://ytdl-org.github.io/youtube-dl" />
  12415. <content type="xhtml">
  12416. <div xmlns="http://www.w3.org/1999/xhtml">
  12417. Downloads available at <a href="https://yt-dl.org/downloads/2019.02.08/">https://yt-dl.org/downloads/2019.02.08/</a>
  12418. </div>
  12419. </content>
  12420. <author>
  12421. <name>The youtube-dl maintainers</name>
  12422. </author>
  12423. <updated>2019-02-08T00:00:00Z</updated>
  12424. </entry>
  12425. <entry>
  12426. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.02.18</id>
  12427. <title>New version 2019.02.18</title>
  12428. <link href="http://ytdl-org.github.io/youtube-dl" />
  12429. <content type="xhtml">
  12430. <div xmlns="http://www.w3.org/1999/xhtml">
  12431. Downloads available at <a href="https://yt-dl.org/downloads/2019.02.18/">https://yt-dl.org/downloads/2019.02.18/</a>
  12432. </div>
  12433. </content>
  12434. <author>
  12435. <name>The youtube-dl maintainers</name>
  12436. </author>
  12437. <updated>2019-02-18T00:00:00Z</updated>
  12438. </entry>
  12439. <entry>
  12440. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.03.01</id>
  12441. <title>New version 2019.03.01</title>
  12442. <link href="http://ytdl-org.github.io/youtube-dl" />
  12443. <content type="xhtml">
  12444. <div xmlns="http://www.w3.org/1999/xhtml">
  12445. Downloads available at <a href="https://yt-dl.org/downloads/2019.03.01/">https://yt-dl.org/downloads/2019.03.01/</a>
  12446. </div>
  12447. </content>
  12448. <author>
  12449. <name>The youtube-dl maintainers</name>
  12450. </author>
  12451. <updated>2019-03-01T00:00:00Z</updated>
  12452. </entry>
  12453. <entry>
  12454. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.03.09</id>
  12455. <title>New version 2019.03.09</title>
  12456. <link href="http://ytdl-org.github.io/youtube-dl" />
  12457. <content type="xhtml">
  12458. <div xmlns="http://www.w3.org/1999/xhtml">
  12459. Downloads available at <a href="https://yt-dl.org/downloads/2019.03.09/">https://yt-dl.org/downloads/2019.03.09/</a>
  12460. </div>
  12461. </content>
  12462. <author>
  12463. <name>The youtube-dl maintainers</name>
  12464. </author>
  12465. <updated>2019-03-09T00:00:00Z</updated>
  12466. </entry>
  12467. <entry>
  12468. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.03.18</id>
  12469. <title>New version 2019.03.18</title>
  12470. <link href="http://ytdl-org.github.io/youtube-dl" />
  12471. <content type="xhtml">
  12472. <div xmlns="http://www.w3.org/1999/xhtml">
  12473. Downloads available at <a href="https://yt-dl.org/downloads/2019.03.18/">https://yt-dl.org/downloads/2019.03.18/</a>
  12474. </div>
  12475. </content>
  12476. <author>
  12477. <name>The youtube-dl maintainers</name>
  12478. </author>
  12479. <updated>2019-03-18T00:00:00Z</updated>
  12480. </entry>
  12481. <entry>
  12482. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.04.01</id>
  12483. <title>New version 2019.04.01</title>
  12484. <link href="http://ytdl-org.github.io/youtube-dl" />
  12485. <content type="xhtml">
  12486. <div xmlns="http://www.w3.org/1999/xhtml">
  12487. Downloads available at <a href="https://yt-dl.org/downloads/2019.04.01/">https://yt-dl.org/downloads/2019.04.01/</a>
  12488. </div>
  12489. </content>
  12490. <author>
  12491. <name>The youtube-dl maintainers</name>
  12492. </author>
  12493. <updated>2019-04-01T00:00:00Z</updated>
  12494. </entry>
  12495. <entry>
  12496. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.04.07</id>
  12497. <title>New version 2019.04.07</title>
  12498. <link href="http://ytdl-org.github.io/youtube-dl" />
  12499. <content type="xhtml">
  12500. <div xmlns="http://www.w3.org/1999/xhtml">
  12501. Downloads available at <a href="https://yt-dl.org/downloads/2019.04.07/">https://yt-dl.org/downloads/2019.04.07/</a>
  12502. </div>
  12503. </content>
  12504. <author>
  12505. <name>The youtube-dl maintainers</name>
  12506. </author>
  12507. <updated>2019-04-07T00:00:00Z</updated>
  12508. </entry>
  12509. <entry>
  12510. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.04.17</id>
  12511. <title>New version 2019.04.17</title>
  12512. <link href="http://ytdl-org.github.io/youtube-dl" />
  12513. <content type="xhtml">
  12514. <div xmlns="http://www.w3.org/1999/xhtml">
  12515. Downloads available at <a href="https://yt-dl.org/downloads/2019.04.17/">https://yt-dl.org/downloads/2019.04.17/</a>
  12516. </div>
  12517. </content>
  12518. <author>
  12519. <name>The youtube-dl maintainers</name>
  12520. </author>
  12521. <updated>2019-04-17T00:00:00Z</updated>
  12522. </entry>
  12523. <entry>
  12524. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.04.24</id>
  12525. <title>New version 2019.04.24</title>
  12526. <link href="http://ytdl-org.github.io/youtube-dl" />
  12527. <content type="xhtml">
  12528. <div xmlns="http://www.w3.org/1999/xhtml">
  12529. Downloads available at <a href="https://yt-dl.org/downloads/2019.04.24/">https://yt-dl.org/downloads/2019.04.24/</a>
  12530. </div>
  12531. </content>
  12532. <author>
  12533. <name>The youtube-dl maintainers</name>
  12534. </author>
  12535. <updated>2019-04-24T00:00:00Z</updated>
  12536. </entry>
  12537. <entry>
  12538. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.04.30</id>
  12539. <title>New version 2019.04.30</title>
  12540. <link href="http://ytdl-org.github.io/youtube-dl" />
  12541. <content type="xhtml">
  12542. <div xmlns="http://www.w3.org/1999/xhtml">
  12543. Downloads available at <a href="https://yt-dl.org/downloads/2019.04.30/">https://yt-dl.org/downloads/2019.04.30/</a>
  12544. </div>
  12545. </content>
  12546. <author>
  12547. <name>The youtube-dl maintainers</name>
  12548. </author>
  12549. <updated>2019-04-30T00:00:00Z</updated>
  12550. </entry>
  12551. <entry>
  12552. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.05.11</id>
  12553. <title>New version 2019.05.11</title>
  12554. <link href="http://ytdl-org.github.io/youtube-dl" />
  12555. <content type="xhtml">
  12556. <div xmlns="http://www.w3.org/1999/xhtml">
  12557. Downloads available at <a href="https://yt-dl.org/downloads/2019.05.11/">https://yt-dl.org/downloads/2019.05.11/</a>
  12558. </div>
  12559. </content>
  12560. <author>
  12561. <name>The youtube-dl maintainers</name>
  12562. </author>
  12563. <updated>2019-05-11T00:00:00Z</updated>
  12564. </entry>
  12565. <entry>
  12566. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.05.20</id>
  12567. <title>New version 2019.05.20</title>
  12568. <link href="http://ytdl-org.github.io/youtube-dl" />
  12569. <content type="xhtml">
  12570. <div xmlns="http://www.w3.org/1999/xhtml">
  12571. Downloads available at <a href="https://yt-dl.org/downloads/2019.05.20/">https://yt-dl.org/downloads/2019.05.20/</a>
  12572. </div>
  12573. </content>
  12574. <author>
  12575. <name>The youtube-dl maintainers</name>
  12576. </author>
  12577. <updated>2019-05-20T00:00:00Z</updated>
  12578. </entry>
  12579. <entry>
  12580. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.06.08</id>
  12581. <title>New version 2019.06.08</title>
  12582. <link href="http://ytdl-org.github.io/youtube-dl" />
  12583. <content type="xhtml">
  12584. <div xmlns="http://www.w3.org/1999/xhtml">
  12585. Downloads available at <a href="https://yt-dl.org/downloads/2019.06.08/">https://yt-dl.org/downloads/2019.06.08/</a>
  12586. </div>
  12587. </content>
  12588. <author>
  12589. <name>The youtube-dl maintainers</name>
  12590. </author>
  12591. <updated>2019-06-08T00:00:00Z</updated>
  12592. </entry>
  12593. <entry>
  12594. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.06.21</id>
  12595. <title>New version 2019.06.21</title>
  12596. <link href="http://ytdl-org.github.io/youtube-dl" />
  12597. <content type="xhtml">
  12598. <div xmlns="http://www.w3.org/1999/xhtml">
  12599. Downloads available at <a href="https://yt-dl.org/downloads/2019.06.21/">https://yt-dl.org/downloads/2019.06.21/</a>
  12600. </div>
  12601. </content>
  12602. <author>
  12603. <name>The youtube-dl maintainers</name>
  12604. </author>
  12605. <updated>2019-06-21T00:00:00Z</updated>
  12606. </entry>
  12607. <entry>
  12608. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.06.27</id>
  12609. <title>New version 2019.06.27</title>
  12610. <link href="http://ytdl-org.github.io/youtube-dl" />
  12611. <content type="xhtml">
  12612. <div xmlns="http://www.w3.org/1999/xhtml">
  12613. Downloads available at <a href="https://yt-dl.org/downloads/2019.06.27/">https://yt-dl.org/downloads/2019.06.27/</a>
  12614. </div>
  12615. </content>
  12616. <author>
  12617. <name>The youtube-dl maintainers</name>
  12618. </author>
  12619. <updated>2019-06-27T00:00:00Z</updated>
  12620. </entry>
  12621. <entry>
  12622. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.02</id>
  12623. <title>New version 2019.07.02</title>
  12624. <link href="http://ytdl-org.github.io/youtube-dl" />
  12625. <content type="xhtml">
  12626. <div xmlns="http://www.w3.org/1999/xhtml">
  12627. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.02/">https://yt-dl.org/downloads/2019.07.02/</a>
  12628. </div>
  12629. </content>
  12630. <author>
  12631. <name>The youtube-dl maintainers</name>
  12632. </author>
  12633. <updated>2019-07-02T00:00:00Z</updated>
  12634. </entry>
  12635. <entry>
  12636. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.12</id>
  12637. <title>New version 2019.07.12</title>
  12638. <link href="http://ytdl-org.github.io/youtube-dl" />
  12639. <content type="xhtml">
  12640. <div xmlns="http://www.w3.org/1999/xhtml">
  12641. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.12/">https://yt-dl.org/downloads/2019.07.12/</a>
  12642. </div>
  12643. </content>
  12644. <author>
  12645. <name>The youtube-dl maintainers</name>
  12646. </author>
  12647. <updated>2019-07-12T00:00:00Z</updated>
  12648. </entry>
  12649. <entry>
  12650. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.14</id>
  12651. <title>New version 2019.07.14</title>
  12652. <link href="http://ytdl-org.github.io/youtube-dl" />
  12653. <content type="xhtml">
  12654. <div xmlns="http://www.w3.org/1999/xhtml">
  12655. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.14/">https://yt-dl.org/downloads/2019.07.14/</a>
  12656. </div>
  12657. </content>
  12658. <author>
  12659. <name>The youtube-dl maintainers</name>
  12660. </author>
  12661. <updated>2019-07-14T00:00:00Z</updated>
  12662. </entry>
  12663. <entry>
  12664. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.16</id>
  12665. <title>New version 2019.07.16</title>
  12666. <link href="http://ytdl-org.github.io/youtube-dl" />
  12667. <content type="xhtml">
  12668. <div xmlns="http://www.w3.org/1999/xhtml">
  12669. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.16/">https://yt-dl.org/downloads/2019.07.16/</a>
  12670. </div>
  12671. </content>
  12672. <author>
  12673. <name>The youtube-dl maintainers</name>
  12674. </author>
  12675. <updated>2019-07-16T00:00:00Z</updated>
  12676. </entry>
  12677. <entry>
  12678. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.27</id>
  12679. <title>New version 2019.07.27</title>
  12680. <link href="http://ytdl-org.github.io/youtube-dl" />
  12681. <content type="xhtml">
  12682. <div xmlns="http://www.w3.org/1999/xhtml">
  12683. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.27/">https://yt-dl.org/downloads/2019.07.27/</a>
  12684. </div>
  12685. </content>
  12686. <author>
  12687. <name>The youtube-dl maintainers</name>
  12688. </author>
  12689. <updated>2019-07-27T00:00:00Z</updated>
  12690. </entry>
  12691. <entry>
  12692. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.07.30</id>
  12693. <title>New version 2019.07.30</title>
  12694. <link href="http://ytdl-org.github.io/youtube-dl" />
  12695. <content type="xhtml">
  12696. <div xmlns="http://www.w3.org/1999/xhtml">
  12697. Downloads available at <a href="https://yt-dl.org/downloads/2019.07.30/">https://yt-dl.org/downloads/2019.07.30/</a>
  12698. </div>
  12699. </content>
  12700. <author>
  12701. <name>The youtube-dl maintainers</name>
  12702. </author>
  12703. <updated>2019-07-30T00:00:00Z</updated>
  12704. </entry>
  12705. <entry>
  12706. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.08.02</id>
  12707. <title>New version 2019.08.02</title>
  12708. <link href="http://ytdl-org.github.io/youtube-dl" />
  12709. <content type="xhtml">
  12710. <div xmlns="http://www.w3.org/1999/xhtml">
  12711. Downloads available at <a href="https://yt-dl.org/downloads/2019.08.02/">https://yt-dl.org/downloads/2019.08.02/</a>
  12712. </div>
  12713. </content>
  12714. <author>
  12715. <name>The youtube-dl maintainers</name>
  12716. </author>
  12717. <updated>2019-08-02T00:00:00Z</updated>
  12718. </entry>
  12719. <entry>
  12720. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.08.13</id>
  12721. <title>New version 2019.08.13</title>
  12722. <link href="http://ytdl-org.github.io/youtube-dl" />
  12723. <content type="xhtml">
  12724. <div xmlns="http://www.w3.org/1999/xhtml">
  12725. Downloads available at <a href="https://yt-dl.org/downloads/2019.08.13/">https://yt-dl.org/downloads/2019.08.13/</a>
  12726. </div>
  12727. </content>
  12728. <author>
  12729. <name>The youtube-dl maintainers</name>
  12730. </author>
  12731. <updated>2019-08-13T00:00:00Z</updated>
  12732. </entry>
  12733. <entry>
  12734. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.09.01</id>
  12735. <title>New version 2019.09.01</title>
  12736. <link href="http://ytdl-org.github.io/youtube-dl" />
  12737. <content type="xhtml">
  12738. <div xmlns="http://www.w3.org/1999/xhtml">
  12739. Downloads available at <a href="https://yt-dl.org/downloads/2019.09.01/">https://yt-dl.org/downloads/2019.09.01/</a>
  12740. </div>
  12741. </content>
  12742. <author>
  12743. <name>The youtube-dl maintainers</name>
  12744. </author>
  12745. <updated>2019-09-01T00:00:00Z</updated>
  12746. </entry>
  12747. <entry>
  12748. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.09.12</id>
  12749. <title>New version 2019.09.12</title>
  12750. <link href="http://ytdl-org.github.io/youtube-dl" />
  12751. <content type="xhtml">
  12752. <div xmlns="http://www.w3.org/1999/xhtml">
  12753. Downloads available at <a href="https://yt-dl.org/downloads/2019.09.12/">https://yt-dl.org/downloads/2019.09.12/</a>
  12754. </div>
  12755. </content>
  12756. <author>
  12757. <name>The youtube-dl maintainers</name>
  12758. </author>
  12759. <updated>2019-09-12T00:00:00Z</updated>
  12760. </entry>
  12761. <entry>
  12762. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.09.12.1</id>
  12763. <title>New version 2019.09.12.1</title>
  12764. <link href="http://ytdl-org.github.io/youtube-dl" />
  12765. <content type="xhtml">
  12766. <div xmlns="http://www.w3.org/1999/xhtml">
  12767. Downloads available at <a href="https://yt-dl.org/downloads/2019.09.12.1/">https://yt-dl.org/downloads/2019.09.12.1/</a>
  12768. </div>
  12769. </content>
  12770. <author>
  12771. <name>The youtube-dl maintainers</name>
  12772. </author>
  12773. <updated>2019-09-12T00:00:01Z</updated>
  12774. </entry>
  12775. <entry>
  12776. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.09.28</id>
  12777. <title>New version 2019.09.28</title>
  12778. <link href="http://ytdl-org.github.io/youtube-dl" />
  12779. <content type="xhtml">
  12780. <div xmlns="http://www.w3.org/1999/xhtml">
  12781. Downloads available at <a href="https://yt-dl.org/downloads/2019.09.28/">https://yt-dl.org/downloads/2019.09.28/</a>
  12782. </div>
  12783. </content>
  12784. <author>
  12785. <name>The youtube-dl maintainers</name>
  12786. </author>
  12787. <updated>2019-09-28T00:00:00Z</updated>
  12788. </entry>
  12789. <entry>
  12790. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.10.16</id>
  12791. <title>New version 2019.10.16</title>
  12792. <link href="http://ytdl-org.github.io/youtube-dl" />
  12793. <content type="xhtml">
  12794. <div xmlns="http://www.w3.org/1999/xhtml">
  12795. Downloads available at <a href="https://yt-dl.org/downloads/2019.10.16/">https://yt-dl.org/downloads/2019.10.16/</a>
  12796. </div>
  12797. </content>
  12798. <author>
  12799. <name>The youtube-dl maintainers</name>
  12800. </author>
  12801. <updated>2019-10-16T00:00:00Z</updated>
  12802. </entry>
  12803. <entry>
  12804. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.10.22</id>
  12805. <title>New version 2019.10.22</title>
  12806. <link href="http://ytdl-org.github.io/youtube-dl" />
  12807. <content type="xhtml">
  12808. <div xmlns="http://www.w3.org/1999/xhtml">
  12809. Downloads available at <a href="https://yt-dl.org/downloads/2019.10.22/">https://yt-dl.org/downloads/2019.10.22/</a>
  12810. </div>
  12811. </content>
  12812. <author>
  12813. <name>The youtube-dl maintainers</name>
  12814. </author>
  12815. <updated>2019-10-22T00:00:00Z</updated>
  12816. </entry>
  12817. <entry>
  12818. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.10.29</id>
  12819. <title>New version 2019.10.29</title>
  12820. <link href="http://ytdl-org.github.io/youtube-dl" />
  12821. <content type="xhtml">
  12822. <div xmlns="http://www.w3.org/1999/xhtml">
  12823. Downloads available at <a href="https://yt-dl.org/downloads/2019.10.29/">https://yt-dl.org/downloads/2019.10.29/</a>
  12824. </div>
  12825. </content>
  12826. <author>
  12827. <name>The youtube-dl maintainers</name>
  12828. </author>
  12829. <updated>2019-10-29T00:00:00Z</updated>
  12830. </entry>
  12831. <entry>
  12832. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.11.05</id>
  12833. <title>New version 2019.11.05</title>
  12834. <link href="http://ytdl-org.github.io/youtube-dl" />
  12835. <content type="xhtml">
  12836. <div xmlns="http://www.w3.org/1999/xhtml">
  12837. Downloads available at <a href="https://yt-dl.org/downloads/2019.11.05/">https://yt-dl.org/downloads/2019.11.05/</a>
  12838. </div>
  12839. </content>
  12840. <author>
  12841. <name>The youtube-dl maintainers</name>
  12842. </author>
  12843. <updated>2019-11-05T00:00:00Z</updated>
  12844. </entry>
  12845. <entry>
  12846. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.11.22</id>
  12847. <title>New version 2019.11.22</title>
  12848. <link href="http://ytdl-org.github.io/youtube-dl" />
  12849. <content type="xhtml">
  12850. <div xmlns="http://www.w3.org/1999/xhtml">
  12851. Downloads available at <a href="https://yt-dl.org/downloads/2019.11.22/">https://yt-dl.org/downloads/2019.11.22/</a>
  12852. </div>
  12853. </content>
  12854. <author>
  12855. <name>The youtube-dl maintainers</name>
  12856. </author>
  12857. <updated>2019-11-22T00:00:00Z</updated>
  12858. </entry>
  12859. <entry>
  12860. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.11.28</id>
  12861. <title>New version 2019.11.28</title>
  12862. <link href="http://ytdl-org.github.io/youtube-dl" />
  12863. <content type="xhtml">
  12864. <div xmlns="http://www.w3.org/1999/xhtml">
  12865. Downloads available at <a href="https://yt-dl.org/downloads/2019.11.28/">https://yt-dl.org/downloads/2019.11.28/</a>
  12866. </div>
  12867. </content>
  12868. <author>
  12869. <name>The youtube-dl maintainers</name>
  12870. </author>
  12871. <updated>2019-11-28T00:00:00Z</updated>
  12872. </entry>
  12873. <entry>
  12874. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2019.12.25</id>
  12875. <title>New version 2019.12.25</title>
  12876. <link href="http://ytdl-org.github.io/youtube-dl" />
  12877. <content type="xhtml">
  12878. <div xmlns="http://www.w3.org/1999/xhtml">
  12879. Downloads available at <a href="https://yt-dl.org/downloads/2019.12.25/">https://yt-dl.org/downloads/2019.12.25/</a>
  12880. </div>
  12881. </content>
  12882. <author>
  12883. <name>The youtube-dl maintainers</name>
  12884. </author>
  12885. <updated>2019-12-25T00:00:00Z</updated>
  12886. </entry>
  12887. <entry>
  12888. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.01.01</id>
  12889. <title>New version 2020.01.01</title>
  12890. <link href="http://ytdl-org.github.io/youtube-dl" />
  12891. <content type="xhtml">
  12892. <div xmlns="http://www.w3.org/1999/xhtml">
  12893. Downloads available at <a href="https://yt-dl.org/downloads/2020.01.01/">https://yt-dl.org/downloads/2020.01.01/</a>
  12894. </div>
  12895. </content>
  12896. <author>
  12897. <name>The youtube-dl maintainers</name>
  12898. </author>
  12899. <updated>2020-01-01T00:00:00Z</updated>
  12900. </entry>
  12901. <entry>
  12902. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.01.15</id>
  12903. <title>New version 2020.01.15</title>
  12904. <link href="http://ytdl-org.github.io/youtube-dl" />
  12905. <content type="xhtml">
  12906. <div xmlns="http://www.w3.org/1999/xhtml">
  12907. Downloads available at <a href="https://yt-dl.org/downloads/2020.01.15/">https://yt-dl.org/downloads/2020.01.15/</a>
  12908. </div>
  12909. </content>
  12910. <author>
  12911. <name>The youtube-dl maintainers</name>
  12912. </author>
  12913. <updated>2020-01-15T00:00:00Z</updated>
  12914. </entry>
  12915. <entry>
  12916. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.01.24</id>
  12917. <title>New version 2020.01.24</title>
  12918. <link href="http://ytdl-org.github.io/youtube-dl" />
  12919. <content type="xhtml">
  12920. <div xmlns="http://www.w3.org/1999/xhtml">
  12921. Downloads available at <a href="https://yt-dl.org/downloads/2020.01.24/">https://yt-dl.org/downloads/2020.01.24/</a>
  12922. </div>
  12923. </content>
  12924. <author>
  12925. <name>The youtube-dl maintainers</name>
  12926. </author>
  12927. <updated>2020-01-24T00:00:00Z</updated>
  12928. </entry>
  12929. <entry>
  12930. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.02.16</id>
  12931. <title>New version 2020.02.16</title>
  12932. <link href="http://ytdl-org.github.io/youtube-dl" />
  12933. <content type="xhtml">
  12934. <div xmlns="http://www.w3.org/1999/xhtml">
  12935. Downloads available at <a href="https://yt-dl.org/downloads/2020.02.16/">https://yt-dl.org/downloads/2020.02.16/</a>
  12936. </div>
  12937. </content>
  12938. <author>
  12939. <name>The youtube-dl maintainers</name>
  12940. </author>
  12941. <updated>2020-02-16T00:00:00Z</updated>
  12942. </entry>
  12943. <entry>
  12944. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.03.01</id>
  12945. <title>New version 2020.03.01</title>
  12946. <link href="http://ytdl-org.github.io/youtube-dl" />
  12947. <content type="xhtml">
  12948. <div xmlns="http://www.w3.org/1999/xhtml">
  12949. Downloads available at <a href="https://yt-dl.org/downloads/2020.03.01/">https://yt-dl.org/downloads/2020.03.01/</a>
  12950. </div>
  12951. </content>
  12952. <author>
  12953. <name>The youtube-dl maintainers</name>
  12954. </author>
  12955. <updated>2020-03-01T00:00:00Z</updated>
  12956. </entry>
  12957. <entry>
  12958. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.03.06</id>
  12959. <title>New version 2020.03.06</title>
  12960. <link href="http://ytdl-org.github.io/youtube-dl" />
  12961. <content type="xhtml">
  12962. <div xmlns="http://www.w3.org/1999/xhtml">
  12963. Downloads available at <a href="https://yt-dl.org/downloads/2020.03.06/">https://yt-dl.org/downloads/2020.03.06/</a>
  12964. </div>
  12965. </content>
  12966. <author>
  12967. <name>The youtube-dl maintainers</name>
  12968. </author>
  12969. <updated>2020-03-06T00:00:00Z</updated>
  12970. </entry>
  12971. <entry>
  12972. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.03.08</id>
  12973. <title>New version 2020.03.08</title>
  12974. <link href="http://ytdl-org.github.io/youtube-dl" />
  12975. <content type="xhtml">
  12976. <div xmlns="http://www.w3.org/1999/xhtml">
  12977. Downloads available at <a href="https://yt-dl.org/downloads/2020.03.08/">https://yt-dl.org/downloads/2020.03.08/</a>
  12978. </div>
  12979. </content>
  12980. <author>
  12981. <name>The youtube-dl maintainers</name>
  12982. </author>
  12983. <updated>2020-03-08T00:00:00Z</updated>
  12984. </entry>
  12985. <entry>
  12986. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.03.24</id>
  12987. <title>New version 2020.03.24</title>
  12988. <link href="http://ytdl-org.github.io/youtube-dl" />
  12989. <content type="xhtml">
  12990. <div xmlns="http://www.w3.org/1999/xhtml">
  12991. Downloads available at <a href="https://yt-dl.org/downloads/2020.03.24/">https://yt-dl.org/downloads/2020.03.24/</a>
  12992. </div>
  12993. </content>
  12994. <author>
  12995. <name>The youtube-dl maintainers</name>
  12996. </author>
  12997. <updated>2020-03-24T00:00:00Z</updated>
  12998. </entry>
  12999. <entry>
  13000. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.05.03</id>
  13001. <title>New version 2020.05.03</title>
  13002. <link href="http://ytdl-org.github.io/youtube-dl" />
  13003. <content type="xhtml">
  13004. <div xmlns="http://www.w3.org/1999/xhtml">
  13005. Downloads available at <a href="https://yt-dl.org/downloads/2020.05.03/">https://yt-dl.org/downloads/2020.05.03/</a>
  13006. </div>
  13007. </content>
  13008. <author>
  13009. <name>The youtube-dl maintainers</name>
  13010. </author>
  13011. <updated>2020-05-03T00:00:00Z</updated>
  13012. </entry>
  13013. <entry>
  13014. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.05.08</id>
  13015. <title>New version 2020.05.08</title>
  13016. <link href="http://ytdl-org.github.io/youtube-dl" />
  13017. <content type="xhtml">
  13018. <div xmlns="http://www.w3.org/1999/xhtml">
  13019. Downloads available at <a href="https://yt-dl.org/downloads/2020.05.08/">https://yt-dl.org/downloads/2020.05.08/</a>
  13020. </div>
  13021. </content>
  13022. <author>
  13023. <name>The youtube-dl maintainers</name>
  13024. </author>
  13025. <updated>2020-05-08T00:00:00Z</updated>
  13026. </entry>
  13027. <entry>
  13028. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.05.29</id>
  13029. <title>New version 2020.05.29</title>
  13030. <link href="http://ytdl-org.github.io/youtube-dl" />
  13031. <content type="xhtml">
  13032. <div xmlns="http://www.w3.org/1999/xhtml">
  13033. Downloads available at <a href="https://yt-dl.org/downloads/2020.05.29/">https://yt-dl.org/downloads/2020.05.29/</a>
  13034. </div>
  13035. </content>
  13036. <author>
  13037. <name>The youtube-dl maintainers</name>
  13038. </author>
  13039. <updated>2020-05-29T00:00:00Z</updated>
  13040. </entry>
  13041. <entry>
  13042. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.06.06</id>
  13043. <title>New version 2020.06.06</title>
  13044. <link href="http://ytdl-org.github.io/youtube-dl" />
  13045. <content type="xhtml">
  13046. <div xmlns="http://www.w3.org/1999/xhtml">
  13047. Downloads available at <a href="https://yt-dl.org/downloads/2020.06.06/">https://yt-dl.org/downloads/2020.06.06/</a>
  13048. </div>
  13049. </content>
  13050. <author>
  13051. <name>The youtube-dl maintainers</name>
  13052. </author>
  13053. <updated>2020-06-06T00:00:00Z</updated>
  13054. </entry>
  13055. <entry>
  13056. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.06.16</id>
  13057. <title>New version 2020.06.16</title>
  13058. <link href="http://ytdl-org.github.io/youtube-dl" />
  13059. <content type="xhtml">
  13060. <div xmlns="http://www.w3.org/1999/xhtml">
  13061. Downloads available at <a href="https://yt-dl.org/downloads/2020.06.16/">https://yt-dl.org/downloads/2020.06.16/</a>
  13062. </div>
  13063. </content>
  13064. <author>
  13065. <name>The youtube-dl maintainers</name>
  13066. </author>
  13067. <updated>2020-06-16T00:00:00Z</updated>
  13068. </entry>
  13069. <entry>
  13070. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.06.16.1</id>
  13071. <title>New version 2020.06.16.1</title>
  13072. <link href="http://ytdl-org.github.io/youtube-dl" />
  13073. <content type="xhtml">
  13074. <div xmlns="http://www.w3.org/1999/xhtml">
  13075. Downloads available at <a href="https://yt-dl.org/downloads/2020.06.16.1/">https://yt-dl.org/downloads/2020.06.16.1/</a>
  13076. </div>
  13077. </content>
  13078. <author>
  13079. <name>The youtube-dl maintainers</name>
  13080. </author>
  13081. <updated>2020-06-16T00:00:01Z</updated>
  13082. </entry>
  13083. <entry>
  13084. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.07.28</id>
  13085. <title>New version 2020.07.28</title>
  13086. <link href="http://ytdl-org.github.io/youtube-dl" />
  13087. <content type="xhtml">
  13088. <div xmlns="http://www.w3.org/1999/xhtml">
  13089. Downloads available at <a href="https://yt-dl.org/downloads/2020.07.28/">https://yt-dl.org/downloads/2020.07.28/</a>
  13090. </div>
  13091. </content>
  13092. <author>
  13093. <name>The youtube-dl maintainers</name>
  13094. </author>
  13095. <updated>2020-07-28T00:00:00Z</updated>
  13096. </entry>
  13097. <entry>
  13098. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.09.06</id>
  13099. <title>New version 2020.09.06</title>
  13100. <link href="http://ytdl-org.github.io/youtube-dl" />
  13101. <content type="xhtml">
  13102. <div xmlns="http://www.w3.org/1999/xhtml">
  13103. Downloads available at <a href="https://yt-dl.org/downloads/2020.09.06/">https://yt-dl.org/downloads/2020.09.06/</a>
  13104. </div>
  13105. </content>
  13106. <author>
  13107. <name>The youtube-dl maintainers</name>
  13108. </author>
  13109. <updated>2020-09-06T00:00:00Z</updated>
  13110. </entry>
  13111. <entry>
  13112. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.09.14</id>
  13113. <title>New version 2020.09.14</title>
  13114. <link href="http://ytdl-org.github.io/youtube-dl" />
  13115. <content type="xhtml">
  13116. <div xmlns="http://www.w3.org/1999/xhtml">
  13117. Downloads available at <a href="https://yt-dl.org/downloads/2020.09.14/">https://yt-dl.org/downloads/2020.09.14/</a>
  13118. </div>
  13119. </content>
  13120. <author>
  13121. <name>The youtube-dl maintainers</name>
  13122. </author>
  13123. <updated>2020-09-14T00:00:00Z</updated>
  13124. </entry>
  13125. <entry>
  13126. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.09.20</id>
  13127. <title>New version 2020.09.20</title>
  13128. <link href="http://ytdl-org.github.io/youtube-dl" />
  13129. <content type="xhtml">
  13130. <div xmlns="http://www.w3.org/1999/xhtml">
  13131. Downloads available at <a href="https://yt-dl.org/downloads/2020.09.20/">https://yt-dl.org/downloads/2020.09.20/</a>
  13132. </div>
  13133. </content>
  13134. <author>
  13135. <name>The youtube-dl maintainers</name>
  13136. </author>
  13137. <updated>2020-09-20T00:00:00Z</updated>
  13138. </entry>
  13139. <entry>
  13140. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.01</id>
  13141. <title>New version 2020.11.01</title>
  13142. <link href="http://ytdl-org.github.io/youtube-dl" />
  13143. <content type="xhtml">
  13144. <div xmlns="http://www.w3.org/1999/xhtml">
  13145. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.01/">https://yt-dl.org/downloads/2020.11.01/</a>
  13146. </div>
  13147. </content>
  13148. <author>
  13149. <name>The youtube-dl maintainers</name>
  13150. </author>
  13151. <updated>2020-11-01T00:00:00Z</updated>
  13152. </entry>
  13153. <entry>
  13154. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.01.1</id>
  13155. <title>New version 2020.11.01.1</title>
  13156. <link href="http://ytdl-org.github.io/youtube-dl" />
  13157. <content type="xhtml">
  13158. <div xmlns="http://www.w3.org/1999/xhtml">
  13159. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.01.1/">https://yt-dl.org/downloads/2020.11.01.1/</a>
  13160. </div>
  13161. </content>
  13162. <author>
  13163. <name>The youtube-dl maintainers</name>
  13164. </author>
  13165. <updated>2020-11-01T00:00:01Z</updated>
  13166. </entry>
  13167. <entry>
  13168. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.12</id>
  13169. <title>New version 2020.11.12</title>
  13170. <link href="http://ytdl-org.github.io/youtube-dl" />
  13171. <content type="xhtml">
  13172. <div xmlns="http://www.w3.org/1999/xhtml">
  13173. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.12/">https://yt-dl.org/downloads/2020.11.12/</a>
  13174. </div>
  13175. </content>
  13176. <author>
  13177. <name>The youtube-dl maintainers</name>
  13178. </author>
  13179. <updated>2020-11-12T00:00:00Z</updated>
  13180. </entry>
  13181. <entry>
  13182. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.17</id>
  13183. <title>New version 2020.11.17</title>
  13184. <link href="http://ytdl-org.github.io/youtube-dl" />
  13185. <content type="xhtml">
  13186. <div xmlns="http://www.w3.org/1999/xhtml">
  13187. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.17/">https://yt-dl.org/downloads/2020.11.17/</a>
  13188. </div>
  13189. </content>
  13190. <author>
  13191. <name>The youtube-dl maintainers</name>
  13192. </author>
  13193. <updated>2020-11-17T00:00:00Z</updated>
  13194. </entry>
  13195. <entry>
  13196. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.18</id>
  13197. <title>New version 2020.11.18</title>
  13198. <link href="http://ytdl-org.github.io/youtube-dl" />
  13199. <content type="xhtml">
  13200. <div xmlns="http://www.w3.org/1999/xhtml">
  13201. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.18/">https://yt-dl.org/downloads/2020.11.18/</a>
  13202. </div>
  13203. </content>
  13204. <author>
  13205. <name>The youtube-dl maintainers</name>
  13206. </author>
  13207. <updated>2020-11-18T00:00:00Z</updated>
  13208. </entry>
  13209. <entry>
  13210. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.19</id>
  13211. <title>New version 2020.11.19</title>
  13212. <link href="http://ytdl-org.github.io/youtube-dl" />
  13213. <content type="xhtml">
  13214. <div xmlns="http://www.w3.org/1999/xhtml">
  13215. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.19/">https://yt-dl.org/downloads/2020.11.19/</a>
  13216. </div>
  13217. </content>
  13218. <author>
  13219. <name>The youtube-dl maintainers</name>
  13220. </author>
  13221. <updated>2020-11-19T00:00:00Z</updated>
  13222. </entry>
  13223. <entry>
  13224. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.21</id>
  13225. <title>New version 2020.11.21</title>
  13226. <link href="http://ytdl-org.github.io/youtube-dl" />
  13227. <content type="xhtml">
  13228. <div xmlns="http://www.w3.org/1999/xhtml">
  13229. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.21/">https://yt-dl.org/downloads/2020.11.21/</a>
  13230. </div>
  13231. </content>
  13232. <author>
  13233. <name>The youtube-dl maintainers</name>
  13234. </author>
  13235. <updated>2020-11-21T00:00:00Z</updated>
  13236. </entry>
  13237. <entry>
  13238. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.21.1</id>
  13239. <title>New version 2020.11.21.1</title>
  13240. <link href="http://ytdl-org.github.io/youtube-dl" />
  13241. <content type="xhtml">
  13242. <div xmlns="http://www.w3.org/1999/xhtml">
  13243. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.21.1/">https://yt-dl.org/downloads/2020.11.21.1/</a>
  13244. </div>
  13245. </content>
  13246. <author>
  13247. <name>The youtube-dl maintainers</name>
  13248. </author>
  13249. <updated>2020-11-21T00:00:01Z</updated>
  13250. </entry>
  13251. <entry>
  13252. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.24</id>
  13253. <title>New version 2020.11.24</title>
  13254. <link href="http://ytdl-org.github.io/youtube-dl" />
  13255. <content type="xhtml">
  13256. <div xmlns="http://www.w3.org/1999/xhtml">
  13257. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.24/">https://yt-dl.org/downloads/2020.11.24/</a>
  13258. </div>
  13259. </content>
  13260. <author>
  13261. <name>The youtube-dl maintainers</name>
  13262. </author>
  13263. <updated>2020-11-24T00:00:00Z</updated>
  13264. </entry>
  13265. <entry>
  13266. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.26</id>
  13267. <title>New version 2020.11.26</title>
  13268. <link href="http://ytdl-org.github.io/youtube-dl" />
  13269. <content type="xhtml">
  13270. <div xmlns="http://www.w3.org/1999/xhtml">
  13271. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.26/">https://yt-dl.org/downloads/2020.11.26/</a>
  13272. </div>
  13273. </content>
  13274. <author>
  13275. <name>The youtube-dl maintainers</name>
  13276. </author>
  13277. <updated>2020-11-26T00:00:00Z</updated>
  13278. </entry>
  13279. <entry>
  13280. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.11.29</id>
  13281. <title>New version 2020.11.29</title>
  13282. <link href="http://ytdl-org.github.io/youtube-dl" />
  13283. <content type="xhtml">
  13284. <div xmlns="http://www.w3.org/1999/xhtml">
  13285. Downloads available at <a href="https://yt-dl.org/downloads/2020.11.29/">https://yt-dl.org/downloads/2020.11.29/</a>
  13286. </div>
  13287. </content>
  13288. <author>
  13289. <name>The youtube-dl maintainers</name>
  13290. </author>
  13291. <updated>2020-11-29T00:00:00Z</updated>
  13292. </entry>
  13293. <entry>
  13294. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.02</id>
  13295. <title>New version 2020.12.02</title>
  13296. <link href="http://ytdl-org.github.io/youtube-dl" />
  13297. <content type="xhtml">
  13298. <div xmlns="http://www.w3.org/1999/xhtml">
  13299. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.02/">https://yt-dl.org/downloads/2020.12.02/</a>
  13300. </div>
  13301. </content>
  13302. <author>
  13303. <name>The youtube-dl maintainers</name>
  13304. </author>
  13305. <updated>2020-12-02T00:00:00Z</updated>
  13306. </entry>
  13307. <entry>
  13308. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.05</id>
  13309. <title>New version 2020.12.05</title>
  13310. <link href="http://ytdl-org.github.io/youtube-dl" />
  13311. <content type="xhtml">
  13312. <div xmlns="http://www.w3.org/1999/xhtml">
  13313. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.05/">https://yt-dl.org/downloads/2020.12.05/</a>
  13314. </div>
  13315. </content>
  13316. <author>
  13317. <name>The youtube-dl maintainers</name>
  13318. </author>
  13319. <updated>2020-12-05T00:00:00Z</updated>
  13320. </entry>
  13321. <entry>
  13322. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.07</id>
  13323. <title>New version 2020.12.07</title>
  13324. <link href="http://ytdl-org.github.io/youtube-dl" />
  13325. <content type="xhtml">
  13326. <div xmlns="http://www.w3.org/1999/xhtml">
  13327. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.07/">https://yt-dl.org/downloads/2020.12.07/</a>
  13328. </div>
  13329. </content>
  13330. <author>
  13331. <name>The youtube-dl maintainers</name>
  13332. </author>
  13333. <updated>2020-12-07T00:00:00Z</updated>
  13334. </entry>
  13335. <entry>
  13336. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.09</id>
  13337. <title>New version 2020.12.09</title>
  13338. <link href="http://ytdl-org.github.io/youtube-dl" />
  13339. <content type="xhtml">
  13340. <div xmlns="http://www.w3.org/1999/xhtml">
  13341. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.09/">https://yt-dl.org/downloads/2020.12.09/</a>
  13342. </div>
  13343. </content>
  13344. <author>
  13345. <name>The youtube-dl maintainers</name>
  13346. </author>
  13347. <updated>2020-12-09T00:00:00Z</updated>
  13348. </entry>
  13349. <entry>
  13350. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.12</id>
  13351. <title>New version 2020.12.12</title>
  13352. <link href="http://ytdl-org.github.io/youtube-dl" />
  13353. <content type="xhtml">
  13354. <div xmlns="http://www.w3.org/1999/xhtml">
  13355. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.12/">https://yt-dl.org/downloads/2020.12.12/</a>
  13356. </div>
  13357. </content>
  13358. <author>
  13359. <name>The youtube-dl maintainers</name>
  13360. </author>
  13361. <updated>2020-12-12T00:00:00Z</updated>
  13362. </entry>
  13363. <entry>
  13364. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.14</id>
  13365. <title>New version 2020.12.14</title>
  13366. <link href="http://ytdl-org.github.io/youtube-dl" />
  13367. <content type="xhtml">
  13368. <div xmlns="http://www.w3.org/1999/xhtml">
  13369. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.14/">https://yt-dl.org/downloads/2020.12.14/</a>
  13370. </div>
  13371. </content>
  13372. <author>
  13373. <name>The youtube-dl maintainers</name>
  13374. </author>
  13375. <updated>2020-12-14T00:00:00Z</updated>
  13376. </entry>
  13377. <entry>
  13378. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.22</id>
  13379. <title>New version 2020.12.22</title>
  13380. <link href="http://ytdl-org.github.io/youtube-dl" />
  13381. <content type="xhtml">
  13382. <div xmlns="http://www.w3.org/1999/xhtml">
  13383. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.22/">https://yt-dl.org/downloads/2020.12.22/</a>
  13384. </div>
  13385. </content>
  13386. <author>
  13387. <name>The youtube-dl maintainers</name>
  13388. </author>
  13389. <updated>2020-12-22T00:00:00Z</updated>
  13390. </entry>
  13391. <entry>
  13392. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.26</id>
  13393. <title>New version 2020.12.26</title>
  13394. <link href="http://ytdl-org.github.io/youtube-dl" />
  13395. <content type="xhtml">
  13396. <div xmlns="http://www.w3.org/1999/xhtml">
  13397. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.26/">https://yt-dl.org/downloads/2020.12.26/</a>
  13398. </div>
  13399. </content>
  13400. <author>
  13401. <name>The youtube-dl maintainers</name>
  13402. </author>
  13403. <updated>2020-12-26T00:00:00Z</updated>
  13404. </entry>
  13405. <entry>
  13406. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.29</id>
  13407. <title>New version 2020.12.29</title>
  13408. <link href="http://ytdl-org.github.io/youtube-dl" />
  13409. <content type="xhtml">
  13410. <div xmlns="http://www.w3.org/1999/xhtml">
  13411. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.29/">https://yt-dl.org/downloads/2020.12.29/</a>
  13412. </div>
  13413. </content>
  13414. <author>
  13415. <name>The youtube-dl maintainers</name>
  13416. </author>
  13417. <updated>2020-12-29T00:00:00Z</updated>
  13418. </entry>
  13419. <entry>
  13420. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2020.12.31</id>
  13421. <title>New version 2020.12.31</title>
  13422. <link href="http://ytdl-org.github.io/youtube-dl" />
  13423. <content type="xhtml">
  13424. <div xmlns="http://www.w3.org/1999/xhtml">
  13425. Downloads available at <a href="https://yt-dl.org/downloads/2020.12.31/">https://yt-dl.org/downloads/2020.12.31/</a>
  13426. </div>
  13427. </content>
  13428. <author>
  13429. <name>The youtube-dl maintainers</name>
  13430. </author>
  13431. <updated>2020-12-31T00:00:00Z</updated>
  13432. </entry>
  13433. <entry>
  13434. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.01.03</id>
  13435. <title>New version 2021.01.03</title>
  13436. <link href="http://ytdl-org.github.io/youtube-dl" />
  13437. <content type="xhtml">
  13438. <div xmlns="http://www.w3.org/1999/xhtml">
  13439. Downloads available at <a href="https://yt-dl.org/downloads/2021.01.03/">https://yt-dl.org/downloads/2021.01.03/</a>
  13440. </div>
  13441. </content>
  13442. <author>
  13443. <name>The youtube-dl maintainers</name>
  13444. </author>
  13445. <updated>2021-01-03T00:00:00Z</updated>
  13446. </entry>
  13447. <entry>
  13448. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.01.08</id>
  13449. <title>New version 2021.01.08</title>
  13450. <link href="http://ytdl-org.github.io/youtube-dl" />
  13451. <content type="xhtml">
  13452. <div xmlns="http://www.w3.org/1999/xhtml">
  13453. Downloads available at <a href="https://yt-dl.org/downloads/2021.01.08/">https://yt-dl.org/downloads/2021.01.08/</a>
  13454. </div>
  13455. </content>
  13456. <author>
  13457. <name>The youtube-dl maintainers</name>
  13458. </author>
  13459. <updated>2021-01-08T00:00:00Z</updated>
  13460. </entry>
  13461. <entry>
  13462. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.01.16</id>
  13463. <title>New version 2021.01.16</title>
  13464. <link href="http://ytdl-org.github.io/youtube-dl" />
  13465. <content type="xhtml">
  13466. <div xmlns="http://www.w3.org/1999/xhtml">
  13467. Downloads available at <a href="https://yt-dl.org/downloads/2021.01.16/">https://yt-dl.org/downloads/2021.01.16/</a>
  13468. </div>
  13469. </content>
  13470. <author>
  13471. <name>The youtube-dl maintainers</name>
  13472. </author>
  13473. <updated>2021-01-16T00:00:00Z</updated>
  13474. </entry>
  13475. <entry>
  13476. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.01.24.1</id>
  13477. <title>New version 2021.01.24.1</title>
  13478. <link href="http://ytdl-org.github.io/youtube-dl" />
  13479. <content type="xhtml">
  13480. <div xmlns="http://www.w3.org/1999/xhtml">
  13481. Downloads available at <a href="https://yt-dl.org/downloads/2021.01.24.1/">https://yt-dl.org/downloads/2021.01.24.1/</a>
  13482. </div>
  13483. </content>
  13484. <author>
  13485. <name>The youtube-dl maintainers</name>
  13486. </author>
  13487. <updated>2021-01-24T00:00:01Z</updated>
  13488. </entry>
  13489. <entry>
  13490. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.02.04</id>
  13491. <title>New version 2021.02.04</title>
  13492. <link href="http://ytdl-org.github.io/youtube-dl" />
  13493. <content type="xhtml">
  13494. <div xmlns="http://www.w3.org/1999/xhtml">
  13495. Downloads available at <a href="https://yt-dl.org/downloads/2021.02.04/">https://yt-dl.org/downloads/2021.02.04/</a>
  13496. </div>
  13497. </content>
  13498. <author>
  13499. <name>The youtube-dl maintainers</name>
  13500. </author>
  13501. <updated>2021-02-04T00:00:00Z</updated>
  13502. </entry>
  13503. <entry>
  13504. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.02.04.1</id>
  13505. <title>New version 2021.02.04.1</title>
  13506. <link href="http://ytdl-org.github.io/youtube-dl" />
  13507. <content type="xhtml">
  13508. <div xmlns="http://www.w3.org/1999/xhtml">
  13509. Downloads available at <a href="https://yt-dl.org/downloads/2021.02.04.1/">https://yt-dl.org/downloads/2021.02.04.1/</a>
  13510. </div>
  13511. </content>
  13512. <author>
  13513. <name>The youtube-dl maintainers</name>
  13514. </author>
  13515. <updated>2021-02-04T00:00:01Z</updated>
  13516. </entry>
  13517. <entry>
  13518. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.02.10</id>
  13519. <title>New version 2021.02.10</title>
  13520. <link href="http://ytdl-org.github.io/youtube-dl" />
  13521. <content type="xhtml">
  13522. <div xmlns="http://www.w3.org/1999/xhtml">
  13523. Downloads available at <a href="https://yt-dl.org/downloads/2021.02.10/">https://yt-dl.org/downloads/2021.02.10/</a>
  13524. </div>
  13525. </content>
  13526. <author>
  13527. <name>The youtube-dl maintainers</name>
  13528. </author>
  13529. <updated>2021-02-10T00:00:00Z</updated>
  13530. </entry>
  13531. <entry>
  13532. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.02.22</id>
  13533. <title>New version 2021.02.22</title>
  13534. <link href="http://ytdl-org.github.io/youtube-dl" />
  13535. <content type="xhtml">
  13536. <div xmlns="http://www.w3.org/1999/xhtml">
  13537. Downloads available at <a href="https://yt-dl.org/downloads/2021.02.22/">https://yt-dl.org/downloads/2021.02.22/</a>
  13538. </div>
  13539. </content>
  13540. <author>
  13541. <name>The youtube-dl maintainers</name>
  13542. </author>
  13543. <updated>2021-02-22T00:00:00Z</updated>
  13544. </entry>
  13545. <entry>
  13546. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.03.02</id>
  13547. <title>New version 2021.03.02</title>
  13548. <link href="http://ytdl-org.github.io/youtube-dl" />
  13549. <content type="xhtml">
  13550. <div xmlns="http://www.w3.org/1999/xhtml">
  13551. Downloads available at <a href="https://yt-dl.org/downloads/2021.03.02/">https://yt-dl.org/downloads/2021.03.02/</a>
  13552. </div>
  13553. </content>
  13554. <author>
  13555. <name>The youtube-dl maintainers</name>
  13556. </author>
  13557. <updated>2021-03-02T00:00:00Z</updated>
  13558. </entry>
  13559. <entry>
  13560. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.03.03</id>
  13561. <title>New version 2021.03.03</title>
  13562. <link href="http://ytdl-org.github.io/youtube-dl" />
  13563. <content type="xhtml">
  13564. <div xmlns="http://www.w3.org/1999/xhtml">
  13565. Downloads available at <a href="https://yt-dl.org/downloads/2021.03.03/">https://yt-dl.org/downloads/2021.03.03/</a>
  13566. </div>
  13567. </content>
  13568. <author>
  13569. <name>The youtube-dl maintainers</name>
  13570. </author>
  13571. <updated>2021-03-03T00:00:00Z</updated>
  13572. </entry>
  13573. <entry>
  13574. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.03.14</id>
  13575. <title>New version 2021.03.14</title>
  13576. <link href="http://ytdl-org.github.io/youtube-dl" />
  13577. <content type="xhtml">
  13578. <div xmlns="http://www.w3.org/1999/xhtml">
  13579. Downloads available at <a href="https://yt-dl.org/downloads/2021.03.14/">https://yt-dl.org/downloads/2021.03.14/</a>
  13580. </div>
  13581. </content>
  13582. <author>
  13583. <name>The youtube-dl maintainers</name>
  13584. </author>
  13585. <updated>2021-03-14T00:00:00Z</updated>
  13586. </entry>
  13587. <entry>
  13588. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.03.25</id>
  13589. <title>New version 2021.03.25</title>
  13590. <link href="http://ytdl-org.github.io/youtube-dl" />
  13591. <content type="xhtml">
  13592. <div xmlns="http://www.w3.org/1999/xhtml">
  13593. Downloads available at <a href="https://yt-dl.org/downloads/2021.03.25/">https://yt-dl.org/downloads/2021.03.25/</a>
  13594. </div>
  13595. </content>
  13596. <author>
  13597. <name>The youtube-dl maintainers</name>
  13598. </author>
  13599. <updated>2021-03-25T00:00:00Z</updated>
  13600. </entry>
  13601. <entry>
  13602. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.03.31</id>
  13603. <title>New version 2021.03.31</title>
  13604. <link href="http://ytdl-org.github.io/youtube-dl" />
  13605. <content type="xhtml">
  13606. <div xmlns="http://www.w3.org/1999/xhtml">
  13607. Downloads available at <a href="https://yt-dl.org/downloads/2021.03.31/">https://yt-dl.org/downloads/2021.03.31/</a>
  13608. </div>
  13609. </content>
  13610. <author>
  13611. <name>The youtube-dl maintainers</name>
  13612. </author>
  13613. <updated>2021-03-31T00:00:00Z</updated>
  13614. </entry>
  13615. <entry>
  13616. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.04.01</id>
  13617. <title>New version 2021.04.01</title>
  13618. <link href="http://ytdl-org.github.io/youtube-dl" />
  13619. <content type="xhtml">
  13620. <div xmlns="http://www.w3.org/1999/xhtml">
  13621. Downloads available at <a href="https://yt-dl.org/downloads/2021.04.01/">https://yt-dl.org/downloads/2021.04.01/</a>
  13622. </div>
  13623. </content>
  13624. <author>
  13625. <name>The youtube-dl maintainers</name>
  13626. </author>
  13627. <updated>2021-04-01T00:00:00Z</updated>
  13628. </entry>
  13629. <entry>
  13630. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.04.07</id>
  13631. <title>New version 2021.04.07</title>
  13632. <link href="http://ytdl-org.github.io/youtube-dl" />
  13633. <content type="xhtml">
  13634. <div xmlns="http://www.w3.org/1999/xhtml">
  13635. Downloads available at <a href="https://yt-dl.org/downloads/2021.04.07/">https://yt-dl.org/downloads/2021.04.07/</a>
  13636. </div>
  13637. </content>
  13638. <author>
  13639. <name>The youtube-dl maintainers</name>
  13640. </author>
  13641. <updated>2021-04-07T00:00:00Z</updated>
  13642. </entry>
  13643. <entry>
  13644. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.04.17</id>
  13645. <title>New version 2021.04.17</title>
  13646. <link href="http://ytdl-org.github.io/youtube-dl" />
  13647. <content type="xhtml">
  13648. <div xmlns="http://www.w3.org/1999/xhtml">
  13649. Downloads available at <a href="https://yt-dl.org/downloads/2021.04.17/">https://yt-dl.org/downloads/2021.04.17/</a>
  13650. </div>
  13651. </content>
  13652. <author>
  13653. <name>The youtube-dl maintainers</name>
  13654. </author>
  13655. <updated>2021-04-17T00:00:00Z</updated>
  13656. </entry>
  13657. <entry>
  13658. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.04.26</id>
  13659. <title>New version 2021.04.26</title>
  13660. <link href="http://ytdl-org.github.io/youtube-dl" />
  13661. <content type="xhtml">
  13662. <div xmlns="http://www.w3.org/1999/xhtml">
  13663. Downloads available at <a href="https://yt-dl.org/downloads/2021.04.26/">https://yt-dl.org/downloads/2021.04.26/</a>
  13664. </div>
  13665. </content>
  13666. <author>
  13667. <name>The youtube-dl maintainers</name>
  13668. </author>
  13669. <updated>2021-04-26T00:00:00Z</updated>
  13670. </entry>
  13671. <entry>
  13672. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.05.16</id>
  13673. <title>New version 2021.05.16</title>
  13674. <link href="http://ytdl-org.github.io/youtube-dl" />
  13675. <content type="xhtml">
  13676. <div xmlns="http://www.w3.org/1999/xhtml">
  13677. Downloads available at <a href="https://yt-dl.org/downloads/2021.05.16/">https://yt-dl.org/downloads/2021.05.16/</a>
  13678. </div>
  13679. </content>
  13680. <author>
  13681. <name>The youtube-dl maintainers</name>
  13682. </author>
  13683. <updated>2021-05-16T00:00:00Z</updated>
  13684. </entry>
  13685. <entry>
  13686. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.06.06</id>
  13687. <title>New version 2021.06.06</title>
  13688. <link href="http://ytdl-org.github.io/youtube-dl" />
  13689. <content type="xhtml">
  13690. <div xmlns="http://www.w3.org/1999/xhtml">
  13691. Downloads available at <a href="https://yt-dl.org/downloads/2021.06.06/">https://yt-dl.org/downloads/2021.06.06/</a>
  13692. </div>
  13693. </content>
  13694. <author>
  13695. <name>The youtube-dl maintainers</name>
  13696. </author>
  13697. <updated>2021-06-06T00:00:00Z</updated>
  13698. </entry>
  13699. <entry>
  13700. <id>https://yt-dl.org/feed/youtube-dl-updates-feed/youtube-dl-2021.12.17</id>
  13701. <title>New version 2021.12.17</title>
  13702. <link href="http://ytdl-org.github.io/youtube-dl" />
  13703. <content type="xhtml">
  13704. <div xmlns="http://www.w3.org/1999/xhtml">
  13705. Downloads available at <a href="https://yt-dl.org/downloads/2021.12.17/">https://yt-dl.org/downloads/2021.12.17/</a>
  13706. </div>
  13707. </content>
  13708. <author>
  13709. <name>The youtube-dl maintainers</name>
  13710. </author>
  13711. <updated>2021-12-17T00:00:00Z</updated>
  13712. </entry>
  13713. </feed>