<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent changes to feature-requests</title><link href="https://sourceforge.net/p/multiget/feature-requests/" rel="alternate"/><link href="https://sourceforge.net/p/multiget/feature-requests/feed.atom" rel="self"/><id>https://sourceforge.net/p/multiget/feature-requests/</id><updated>2010-09-12T10:12:53Z</updated><subtitle>Recent changes to feature-requests</subtitle><entry><title>Show all items</title><link href="https://sourceforge.net/p/multiget/feature-requests/16/" rel="alternate"/><published>2010-09-12T10:12:53Z</published><updated>2010-09-12T10:12:53Z</updated><author><name>PhoneixS</name><uri>https://sourceforge.net/u/phoneixsegovia/</uri></author><id>https://sourceforge.net7c193bc03d9b83581300836ef148d529b793a4c0</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;When you select "MultiGet", I think it should show all the subcategories (Running, Paused, Failed and Finish). As well as when you click on Finish, it should show all subcategories.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Translate translation into launchpad</title><link href="https://sourceforge.net/p/multiget/feature-requests/15/" rel="alternate"/><published>2010-07-12T09:02:46Z</published><updated>2010-07-12T09:02:46Z</updated><author><name>PhoneixS</name><uri>https://sourceforge.net/u/phoneixsegovia/</uri></author><id>https://sourceforge.net15d5b48d84183eda295916e4d7c8e7665578462c</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi, I ask for moving the localization of the engine to &lt;a href="http://translations.launchpad.net/" rel="nofollow"&gt;http://translations.launchpad.net/&lt;/a&gt; (I think sourceforge not have a specific section for localization) for make it easy to be localized and to get it more controlled.&lt;br /&gt;
launchpad is compatible with the po/mo file type of gettext.&lt;/p&gt;
&lt;p&gt;In Free Heroes 2 Engine project of sourceforge, we have made it and then multiple idioms have come available.&lt;/p&gt;
&lt;p&gt;If you can't create it, I can do it for you.&lt;/p&gt;
&lt;p&gt;PS I'm Spanish too :) and then I can translate it to Spanish. &lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Ability to copy tasks</title><link href="https://sourceforge.net/p/multiget/feature-requests/14/" rel="alternate"/><published>2009-06-03T19:07:14Z</published><updated>2009-06-03T19:07:14Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.netbcedac474b9721a0eb826acda60201bdf0a67805</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Is there a way to copy a task so I can do this again and again. I download certain files daily with slight name change like day of the week or date. I do these on a weekly basis. if I can copy the task and prepare a batch list to run for each day of the week that would be great.&lt;/p&gt;
&lt;p&gt;Thanks this is a great product. Some what similar to MassDownloader from Meta Products (check them out)&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>support for xunlei and flashget links</title><link href="https://sourceforge.net/p/multiget/feature-requests/13/" rel="alternate"/><published>2009-01-27T13:24:29Z</published><updated>2009-01-27T13:24:29Z</updated><author><name>Wei Mingzhi</name><uri>https://sourceforge.net/u/userid-1024473/</uri></author><id>https://sourceforge.net28527f44933d9fec4587c7943b554e2e64941d5c</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;some links on Chinese sites has thunder:// and flashget:// protocols, which can be decoded with the following algorithm:&lt;/p&gt;
&lt;p&gt;static inline int get_index(const char c)&lt;br /&gt;
{&lt;br /&gt;
if (c &amp;gt;= 'A' &amp;amp;&amp;amp; c &amp;lt;= 'Z')&lt;br /&gt;
return c - 'A';&lt;br /&gt;
else if (c &amp;gt;= 'a' &amp;amp;&amp;amp; c &amp;lt;= 'z')&lt;br /&gt;
return c - 'a' + 26;&lt;br /&gt;
else if (c &amp;gt;= '0' &amp;amp;&amp;amp; c &amp;lt;= '9')&lt;br /&gt;
return c - '0' + 52;&lt;br /&gt;
else if (c == '+')&lt;br /&gt;
return 62;&lt;br /&gt;
else if (c == '/')&lt;br /&gt;
return 63;&lt;br /&gt;
else if (c == '=')&lt;br /&gt;
return 64;&lt;/p&gt;
&lt;p&gt;return -1;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;static std::string analyze_xunlei_link(const std::string &amp;amp;xunlei_link)&lt;br /&gt;
{&lt;br /&gt;
char chr1, chr2, chr3;&lt;br /&gt;
int  enc1, enc2, enc3, enc4;&lt;br /&gt;
int  i;&lt;br /&gt;
int  length = xunlei_link.length();&lt;/p&gt;
&lt;p&gt;std::string decoded = "";&lt;/p&gt;
&lt;p&gt;if (xunlei_link.compare(0, 10, "thunder://") == 0)&lt;br /&gt;
i = 10;&lt;br /&gt;
else if (xunlei_link.compare(0, 11, "flashget://") == 0)&lt;br /&gt;
i = 11;&lt;br /&gt;
else&lt;br /&gt;
return xunlei_link;&lt;/p&gt;
&lt;p&gt;while (1)&lt;br /&gt;
{&lt;br /&gt;
enc1 = -1;&lt;br /&gt;
enc2 = -1;&lt;br /&gt;
enc3 = -1;&lt;br /&gt;
enc4 = -1;&lt;/p&gt;
&lt;p&gt;while (enc1 == -1 &amp;amp;&amp;amp; i &amp;lt; length) { enc1 = get_index(xunlei_link[i++]); }&lt;br /&gt;
while (enc2 == -1 &amp;amp;&amp;amp; i &amp;lt; length) { enc2 = get_index(xunlei_link[i++]); }&lt;br /&gt;
while (enc3 == -1 &amp;amp;&amp;amp; i &amp;lt; length) { enc3 = get_index(xunlei_link[i++]); }&lt;br /&gt;
while (enc4 == -1 &amp;amp;&amp;amp; i &amp;lt; length) { enc4 = get_index(xunlei_link[i++]); }&lt;/p&gt;
&lt;p&gt;if (enc1 == -1 || enc2 == -1 || enc3 == -1 || enc4 == -1)&lt;br /&gt;
break;&lt;/p&gt;
&lt;p&gt;chr1 = (enc1 &amp;lt;&amp;lt; 2) | (enc2 &amp;gt;&amp;gt; 4);&lt;br /&gt;
chr2 = ((enc2 &amp;amp; 15) &amp;lt;&amp;lt; 4) | (enc3 &amp;gt;&amp;gt; 2);&lt;br /&gt;
chr3 = ((enc3 &amp;amp; 3) &amp;lt;&amp;lt; 6) | enc4;&lt;/p&gt;
&lt;p&gt;decoded += chr1;&lt;/p&gt;
&lt;p&gt;if (enc3 != 64)&lt;br /&gt;
decoded += chr2;&lt;/p&gt;
&lt;p&gt;if (enc4 != 64)&lt;br /&gt;
decoded += chr3;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;if (decoded.compare(0, 2, "AA") == 0)&lt;br /&gt;
return decoded.substr(2, decoded.length() - 4);&lt;br /&gt;
else if (decoded.compare(0, 10, "[FLASHGET]") == 0)&lt;br /&gt;
return decoded.substr(10, decoded.length() - 20);&lt;/p&gt;
&lt;p&gt;return decoded;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;it would be nice if these links can be supported.&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>integrate qbittorrent</title><link href="https://sourceforge.net/p/multiget/feature-requests/12/" rel="alternate"/><published>2007-12-02T12:39:28Z</published><updated>2007-12-02T12:39:28Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.nete4da9460371a72a437bc5a322eda143948790fb6</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;a href="http://qbittorrent.sf.net"&gt;http://qbittorrent.sf.net&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;is a gui and library for torrent download&lt;br /&gt;
if there would be a change to Qt gui, it would be easy to implement torrent as well.&lt;/p&gt;
&lt;p&gt;thx&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>make a plugin for retroshare messenger</title><link href="https://sourceforge.net/p/multiget/feature-requests/11/" rel="alternate"/><published>2007-11-27T06:10:59Z</published><updated>2007-11-27T06:10:59Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net0eb973c01bf34b46997736ec3b7061e7166d3fc8</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;hi can you make a Qt plugin, which makes a main tab into the serverless messenger &lt;a href="http://retroshare.sf.net?"&gt;http://retroshare.sf.net?&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Then users canuse this application to monitor the downloads in an own tab and then they can share with friends the &lt;a href="http://downloads." rel="nofollow"&gt;http://downloads.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;changie anyway to a Qt gui would be better and would allow to make some language translations much more easy&lt;/p&gt;
&lt;p&gt;thx&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>download ed2k links</title><link href="https://sourceforge.net/p/multiget/feature-requests/10/" rel="alternate"/><published>2007-11-27T06:02:57Z</published><updated>2007-11-27T06:02:57Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net4adc5f0fa57cb4475c74ae4b8f1a311c74bde497</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Hi flashget has the option to download torrent and edonkey links&lt;/p&gt;
&lt;p&gt;getrigth too,&lt;/p&gt;
&lt;p&gt;can you ingrate the option to download ed2k links?&lt;/p&gt;
&lt;p&gt;So no sharing or keywordsearch, but the option to download from the www.emule-project.net &lt;/p&gt;
&lt;p&gt;network.&lt;/p&gt;
&lt;p&gt;thx&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>make a Qt gui</title><link href="https://sourceforge.net/p/multiget/feature-requests/9/" rel="alternate"/><published>2007-11-27T06:00:41Z</published><updated>2007-11-27T06:00:41Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.nete6176dc3a81598222741d7fe54b8337831b1fdd1</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;please make a Qt gui for all Posix: WIndows, Mac and Linux&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>windows version?</title><link href="https://sourceforge.net/p/multiget/feature-requests/8/" rel="alternate"/><published>2007-11-27T05:56:45Z</published><updated>2007-11-27T05:56:45Z</updated><author><name>Anonymous</name><uri>https://sourceforge.net/u/userid-None/</uri></author><id>https://sourceforge.net3d3044319108ea03a64e3c07946a289255a82409</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;please make a windows installer&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Size in KBs, MBS instead of just bytes</title><link href="https://sourceforge.net/p/multiget/feature-requests/7/" rel="alternate"/><published>2007-10-02T07:35:58Z</published><updated>2007-10-02T07:35:58Z</updated><author><name>Elaina Technophile</name><uri>https://sourceforge.net/u/etechnophile/</uri></author><id>https://sourceforge.net9e0e80b7bbf988636edf1e099d917ebe82e90e06</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;When a file is currently being downloaded, Multiget shows the total file size and completed file size. While this is helpful, perhaps it might make better sense to the average user if the file sizes were shown in KBs or MBs instead of just bytes. Whether to use KB or MB as the unit could be decided based on the size of the file being downloaded. Or alternatively the user could choose the unit.&lt;/p&gt;&lt;/div&gt;</summary></entry></feed>