releases.atom 328 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <feed xmlns="http://www.w3.org/2005/Atom">
  3. <link rel="self" href="http://rg3.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>2015-12-06T18:52:10.155316Z</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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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://rg3.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. </feed>