<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/multiget/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/multiget/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sun, 12 Sep 2010 10:12:53 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/multiget/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Show all items</title><link>https://sourceforge.net/p/multiget/feature-requests/16/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">PhoneixS</dc:creator><pubDate>Sun, 12 Sep 2010 10:12:53 -0000</pubDate><guid>https://sourceforge.net7c193bc03d9b83581300836ef148d529b793a4c0</guid></item><item><title>Translate translation into launchpad</title><link>https://sourceforge.net/p/multiget/feature-requests/15/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">PhoneixS</dc:creator><pubDate>Mon, 12 Jul 2010 09:02:46 -0000</pubDate><guid>https://sourceforge.net15d5b48d84183eda295916e4d7c8e7665578462c</guid></item><item><title>Ability to copy tasks</title><link>https://sourceforge.net/p/multiget/feature-requests/14/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 03 Jun 2009 19:07:14 -0000</pubDate><guid>https://sourceforge.netbcedac474b9721a0eb826acda60201bdf0a67805</guid></item><item><title>support for xunlei and flashget links</title><link>https://sourceforge.net/p/multiget/feature-requests/13/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wei Mingzhi</dc:creator><pubDate>Tue, 27 Jan 2009 13:24:29 -0000</pubDate><guid>https://sourceforge.net28527f44933d9fec4587c7943b554e2e64941d5c</guid></item><item><title>integrate qbittorrent</title><link>https://sourceforge.net/p/multiget/feature-requests/12/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 02 Dec 2007 12:39:28 -0000</pubDate><guid>https://sourceforge.nete4da9460371a72a437bc5a322eda143948790fb6</guid></item><item><title>make a plugin for retroshare messenger</title><link>https://sourceforge.net/p/multiget/feature-requests/11/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 27 Nov 2007 06:10:59 -0000</pubDate><guid>https://sourceforge.net0eb973c01bf34b46997736ec3b7061e7166d3fc8</guid></item><item><title>download ed2k links</title><link>https://sourceforge.net/p/multiget/feature-requests/10/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 27 Nov 2007 06:02:57 -0000</pubDate><guid>https://sourceforge.net4adc5f0fa57cb4475c74ae4b8f1a311c74bde497</guid></item><item><title>make a Qt gui</title><link>https://sourceforge.net/p/multiget/feature-requests/9/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 27 Nov 2007 06:00:41 -0000</pubDate><guid>https://sourceforge.nete6176dc3a81598222741d7fe54b8337831b1fdd1</guid></item><item><title>windows version?</title><link>https://sourceforge.net/p/multiget/feature-requests/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;please make a windows installer&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 27 Nov 2007 05:56:45 -0000</pubDate><guid>https://sourceforge.net3d3044319108ea03a64e3c07946a289255a82409</guid></item><item><title>Size in KBs, MBS instead of just bytes</title><link>https://sourceforge.net/p/multiget/feature-requests/7/</link><description>&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;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Elaina Technophile</dc:creator><pubDate>Tue, 02 Oct 2007 07:35:58 -0000</pubDate><guid>https://sourceforge.net9e0e80b7bbf988636edf1e099d917ebe82e90e06</guid></item></channel></rss>