<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <id>https://amule-org.github.io/es/changelog</id>
    <title>aMule Blog</title>
    <updated>2026-06-01T00:00:00.000Z</updated>
    <generator>https://github.com/jpmonette/feed</generator>
    <link rel="alternate" href="https://amule-org.github.io/es/changelog"/>
    <subtitle>aMule Blog</subtitle>
    <icon>https://amule-org.github.io/es/img/favicon.ico</icon>
    <rights>aMule developers</rights>
    <entry>
        <title type="html"><![CDATA[aMule 3.0.0]]></title>
        <id>https://amule-org.github.io/es/changelog/3.0.0</id>
        <link href="https://amule-org.github.io/es/changelog/3.0.0"/>
        <updated>2026-06-01T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'alive again' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'alive again' version</em></p>
<p>First major release in 5+ years (since 2.3.3, 2021-02-07). Headline changes are dramatic throughput improvements, full build-system overhaul, modernized dependency stack, native binaries for Linux / macOS / Windows, and a broad legacy-API cleanup.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="highlights">Highlights<a href="https://amule-org.github.io/es/changelog/3.0.0#highlights" class="hash-link" aria-label="Enlace directo al Highlights" title="Enlace directo al Highlights" translate="no">​</a></h3>
<ul>
<li class=""><strong>Throughput rewrite.</strong> Disk I/O moved off the main thread, ASIO/EPOLLET races fixed, throttlers replaced with proper token-bucket limiters. Peer-to-peer download on the same hardware sees <strong>~100–380× speedups</strong> across macOS / Linux / Windows over 2.3.3, plus aMule 3.0.0 sustains <strong>~4.8×</strong> the upload throughput of eMule 0.70b on Windows. See <a href="https://amule-org.github.io/es/changelog/3.0.0#performance" class="">Performance</a> for the full matrix and per-PR breakdown.</li>
<li class="">Both throttlers (<code>MaxUpload</code>, <code>MaxDownload</code>) were also broken pre-fix — <code>MaxUpload=0</code> capped at "current rate + 5 KB/s", <code>MaxDownload</code> was a ratio controller rather than a literal cap. Both rewritten (#461, #491). Important user-facing bug fixes, but secondary to the headline numbers.</li>
<li class=""><strong>Big-library / big-shareset scaling.</strong> Follow-up wave targeting nodes with 100 k+ shared files: per-file EC payload caches (#725, #736), skip-unchanged EC updates (#727), local-peer ZLIB bypass (#728), and a string of O(N²) → O(N log N) / O(1) algorithmic fixes across <code>SharedFileList</code>, <code>SharedFilesCtrl</code>, <code>KnownFileList</code>, <code>wxListCtrl</code>, <code>ExternalConn</code>, and amuleweb — the WebUI / amulegui stay responsive even on libraries where the previous GUI took minutes to redraw.</li>
<li class=""><strong>CMake replaces autotools.</strong> Single build system, modern toolchain — minimum CMake 3.10, minimum wxWidgets 3.2.0.</li>
<li class=""><strong>Native binaries for every major desktop.</strong> AppImage (x86_64 + aarch64), Flatpak (x86_64 + aarch64), macOS Universal2 .dmg (now bundling <code>aMuleGUI.app</code> alongside <code>aMule.app</code>, #529), Windows portable .zip <strong>and NSIS installer</strong> (x64 + ARM64, #740). First-run desktop integration prompt for AppImage; cross-platform autostart-on-login toggle (#744).</li>
<li class=""><strong>Auto-rescan of shared folders.</strong> <code>wxFileSystemWatcher</code>-driven (#591), with recursive vs explicit-share intent split (#606) and coverage of Incoming + per-category Incoming dirs (#743).</li>
<li class=""><strong>HTTPS works again.</strong> <code>CHTTPDownloadThread</code> rewritten on top of <code>wxWebRequest</code>; the hand-rolled stack had silently stopped working against modern TLS.</li>
<li class=""><strong>Kad parallel searches</strong> with alpha-frontier widening.</li>
<li class=""><strong>MaxMindDB replaces deprecated GeoIP</strong> for IP→country.</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="performance">Performance<a href="https://amule-org.github.io/es/changelog/3.0.0#performance" class="hash-link" aria-label="Enlace directo al Performance" title="Enlace directo al Performance" translate="no">​</a></h3>
<p>Throughput work landed across April 2026. The bottom-line cross-platform
numbers first, then the per-PR contributions that produced them.</p>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="cross-platform-end-to-end-233-vs-300">Cross-platform end-to-end (2.3.3 vs 3.0.0)<a href="https://amule-org.github.io/es/changelog/3.0.0#cross-platform-end-to-end-233-vs-300" class="hash-link" aria-label="Enlace directo al Cross-platform end-to-end (2.3.3 vs 3.0.0)" title="Enlace directo al Cross-platform end-to-end (2.3.3 vs 3.0.0)" translate="no">​</a></h4>
<table><thead><tr><th>Leecher platform</th><th style="text-align:right">2.3.3 (sustained)</th><th style="text-align:right">3.0.0 (sustained)</th><th style="text-align:right">Speedup</th></tr></thead><tbody><tr><td>macOS (Apple Silicon, Mac Studio)</td><td style="text-align:right">0.35 MB/s</td><td style="text-align:right"><strong>135 MB/s</strong></td><td style="text-align:right"><strong>381×</strong></td></tr><tr><td>Linux ARM (UTM VM, Ubuntu 25.10)</td><td style="text-align:right">0.34 MB/s</td><td style="text-align:right"><strong>117 MB/s</strong></td><td style="text-align:right"><strong>345×</strong></td></tr><tr><td>Windows ARM (UTM VM, Windows 11)</td><td style="text-align:right">0.36 MB/s</td><td style="text-align:right"><strong>39 MB/s</strong></td><td style="text-align:right"><strong>107×</strong></td></tr></tbody></table>
<p>Sustained over a 90 s window, single LAN peer downloading a 30 GB file
from an x86_64 Linux seeder running the same aMule version under test.</p>
<p>Per-platform breakdown of the seeder-side vs leecher-side contributions:</p>
<table><thead><tr><th>Platform</th><th style="text-align:right">2.3.3</th><th style="text-align:right">+ seeder fix</th><th style="text-align:right">+ leecher fix (3.0.0)</th></tr></thead><tbody><tr><td>macOS</td><td style="text-align:right">0.35 MB/s</td><td style="text-align:right">30 MB/s</td><td style="text-align:right"><strong>135 MB/s</strong></td></tr><tr><td>Linux</td><td style="text-align:right">0.34 MB/s</td><td style="text-align:right">20 MB/s</td><td style="text-align:right"><strong>117 MB/s</strong></td></tr><tr><td>Windows</td><td style="text-align:right">0.36 MB/s</td><td style="text-align:right">6.8 MB/s</td><td style="text-align:right"><strong>39 MB/s</strong></td></tr></tbody></table>
<p>The seeder-side contribution (PR #451 <code>CUploadDiskIOThread</code> + ASIO fixes)
dominates everywhere; the leecher-side contribution (#454 partfile-write
offload + #484 throttler-wake fix + #491 token-bucket cap) stacks another
~4–6× on top.</p>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="vs-emule-070b-windows--same-utm-hardware">vs eMule 0.70b (Windows · same UTM hardware)<a href="https://amule-org.github.io/es/changelog/3.0.0#vs-emule-070b-windows--same-utm-hardware" class="hash-link" aria-label="Enlace directo al vs eMule 0.70b (Windows · same UTM hardware)" title="Enlace directo al vs eMule 0.70b (Windows · same UTM hardware)" translate="no">​</a></h4>
<table><thead><tr><th>Direction</th><th style="text-align:right">eMule 0.70b</th><th style="text-align:right">aMule 3.0.0</th><th style="text-align:right">Speedup</th></tr></thead><tbody><tr><td><strong>Upload</strong> (Windows seeds → Mac leecher)</td><td style="text-align:right">22 MB/s</td><td style="text-align:right"><strong>106 MB/s</strong></td><td style="text-align:right"><strong>~4.8×</strong></td></tr><tr><td><strong>Download</strong> (Linux seeds → Windows leeches)</td><td style="text-align:right">20 MB/s</td><td style="text-align:right"><strong>39 MB/s</strong></td><td style="text-align:right"><strong>~1.9×</strong></td></tr></tbody></table>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="upload">Upload<a href="https://amule-org.github.io/es/changelog/3.0.0#upload" class="hash-link" aria-label="Enlace directo al Upload" title="Enlace directo al Upload" translate="no">​</a></h4>
<ul>
<li class=""><strong>#451 — eMule <code>CUploadDiskIOThread</code> port.</strong> Disk reads + ed2k packet construction off the main thread, RC4 stream-desync race fixed in the ASIO layer, EPOLLET spurious-wakeup fix in <code>HandleRead</code>, adaptive per-slot packet sizing (10 KiB → EMBLOCKSIZE). Dominant contributor to the upload gain.</li>
<li class=""><strong>#461 — <code>MaxUpload=0</code> is now literal unlimited.</strong> The legacy code set <code>allowedDataRate = current_rate + 5 KB/s</code> per iteration — a tracking cap that pinned the uplink at a fraction of capacity on any link above a few hundred KB/s.</li>
<li class=""><strong>#436 — Speed-limit fields widened from <code>uint16</code> to <code>uint32</code>.</strong> Legacy 65,534 KB/s (~524 Mbps) configuration ceiling gone; gigabit-class links can now be configured.</li>
<li class=""><strong>#463 — Bandwidth-cap UI.</strong> Spin button ceiling 19,375 → 1,000,000 KB/s; field width 100 → 140 px so the <code>+</code> button no longer clips off on modern themes. Slot Allocation cap 100 → 100,000 KB/s.</li>
</ul>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="download">Download<a href="https://amule-org.github.io/es/changelog/3.0.0#download" class="hash-link" aria-label="Enlace directo al Download" title="Enlace directo al Download" translate="no">​</a></h4>
<ul>
<li class=""><strong>#454 — <code>CPartFileWriteThread</code>.</strong> Disk writes for downloads moved off the main thread.</li>
<li class=""><strong>#484 — Throttler-wake fix.</strong> <code>UploadBandwidthThrottler::Entry()</code> adaptive backoff dozed for 5–25 ms between control-queue pumps, stalling the request→response loop. Empty→non-empty wake gate added on the control-queue path, plus IOCP-native <code>async_read_some</code> on Windows, <code>wxMutex</code> → <code>std::mutex</code>, and decoupling <code>m_MaxBlockRequests</code> from per-packet block count. The biggest win on Windows specifically.</li>
<li class=""><strong>#491 — <code>MaxDownload</code> is now a literal byte/sec cap.</strong> The legacy code was a closed-loop ratio controller that nudged each peer's rate ±5%/tick relative to its own current speed, so <code>MaxDownload=20000</code> (20 MB/s) shaped traffic toward whatever the aggregate converged on — generally well below configured. Replaced with a global token bucket (<code>CDownloadBandwidthThrottler</code>) enforcing the cap to within 2.5% across platforms.</li>
<li class=""><strong>#498 — Per-part hash verification deferred to a dedicated worker thread</strong> (only runs when the file isn't actively transferring). Follow-ups #499, #500.</li>
</ul>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="other">Other<a href="https://amule-org.github.io/es/changelog/3.0.0#other" class="hash-link" aria-label="Enlace directo al Other" title="Enlace directo al Other" translate="no">​</a></h4>
<ul>
<li class=""><strong>#467 — ASIO handler binding modernised.</strong> <code>boost::bind</code> → C++11 lambda, <code>strand.wrap()</code> → <code>bind_executor()</code>, <code>deadline_timer</code> → <code>steady_timer</code>, <code>null_buffers</code> → <code>async_wait(wait_read)</code>. Fixes the long-standing <code>boost::bind</code> placeholder warning. Minimum Boost bumped 1.47 → 1.70.</li>
<li class=""><strong>#504 — Fast-path bare-filename comparison</strong> skips <code>wxGetCwd()</code>.</li>
</ul>
<h4 class="anchor anchorTargetStickyNavbar_Vzrq" id="big-library--big-shareset-scaling">Big-library / big-shareset scaling<a href="https://amule-org.github.io/es/changelog/3.0.0#big-library--big-shareset-scaling" class="hash-link" aria-label="Enlace directo al Big-library / big-shareset scaling" title="Enlace directo al Big-library / big-shareset scaling" translate="no">​</a></h4>
<p>A follow-up wave targeting nodes with 100 k+ shared files, where the daemon ↔ GUI / WebUI / amuleweb traffic and several internal data structures were quadratic in the shareset size:</p>
<ul>
<li class=""><strong>EC payload caches.</strong> Per-file <code>ed2k://</code> link and partmet basename cached on <code>CKnownFile</code> / <code>CPartFile</code> so EC enumeration stops rebuilding them on every tick (#725). Per-file byte cache covers the FULL <code>GET_SHARED_FILES</code> / <code>GET_DLOAD_QUEUE</code> paths so wire-marshalling cost drops by orders of magnitude on huge sharesets (#736).</li>
<li class=""><strong>EC skip-unchanged.</strong> Per-file change tracking infrastructure threaded through every field-change site so <code>INC_UPDATE</code> only re-sends what actually moved, with a backward-compatible partial-update protocol opt-in for amuleweb (#727 — landed as a 6-commit series). <code>MarkECChanged</code> gaps closed for paused / user-action setters.</li>
<li class=""><strong>Local-peer EC bypass.</strong> ZLIB compression skipped on local peers (#728), receiver limit raised to 256 MB, and the locality decision later moved to the client side with a user override checkbox / <code>--force-zlib</code> flag (#840 — handles the WireGuard-as-LAN case).</li>
<li class=""><strong>O(N²) → O(N log N) / O(1) algorithmic fixes.</strong>
<ul>
<li class=""><code>SharedFilesCtrl</code> bulk-update API skips per-row repaints during <code>ClearED2KPublishInfo</code> (#561, #2bf9b8f34).</li>
<li class=""><code>SharedFileList</code> keyword indexing in <code>Reload</code> (#566).</li>
<li class=""><code>known2.met</code> AICH <code>SaveHashSet</code> dedup made O(1) (#581).</li>
<li class=""><code>known.met</code> hash-collision dedup on Init dropped to O(N log N) (#584).</li>
<li class=""><code>wxListCtrl::FindItem(data)</code> O(N) → O(1) via user-data hash map (#614).</li>
<li class=""><code>ExternalConn</code> file-list enumeration snapshotted to avoid O(N²) <code>GetFileByIndex</code> loops (#687).</li>
<li class="">amuleweb <code>array_push_back</code> made O(N) via cached scan hint (#689).</li>
<li class=""><code>KnownFileList</code> indexes its size-map by <code>(size, mtime)</code> instead of size alone to cut false-positive collision-dedup walks (#593).</li>
</ul>
</li>
<li class=""><strong>Disk I/O.</strong> <code>CFile</code> gains a 64 KB userspace write buffer to coalesce metadata-save syscalls (#573); the buffer was subsequently moved off the stack onto the heap so it survives musl's 128 KiB pthread stack, and an internal recursive_mutex was added to serialise buffer + fd access against the concurrent-corruption race surfaced on Alpine (#576). <code>SavePartFile</code> switched to atomic-rename (#670) and gated on an in-memory dirty flag so periodic ticks only touch disk when something actually changed (#671). Upload-stats persistence on 10-min heartbeat when only stats moved (#e8363bf42).</li>
<li class=""><strong>Memory bounds.</strong> <code>amuleIPV4Address::operator=</code> no longer leaks the endpoint copy on every assign (#716) — was 7 MB / 514 k objects per ~10 h of runtime on a busy node. <code>CKeyEntry::m_filenames</code> capped so the list can't grow unbounded (#652). <code>known.met</code> growth bounded by per-hash cap + 30-day TTL (#598, #f33c56b44). <code>KnownFileList::Append</code> only stamps <code>lastSeen=now</code> on actual sightings (#fafbb8a66). Wake-from-sleep SIGSEGV in asio socket impls fixed via <code>shared_from_this</code> (#596).</li>
<li class=""><strong>Backpressure &amp; yielding.</strong> <code>ECSocket::OnOutput</code> yields when asio backpressures <code>Write</code> to zero bytes (#672). <code>CECServerSocket</code> notification-dispatch recursion capped so EC bursts no longer stall the event loop (#667). <code>HTTPDownload</code> bounds libcurl connect-phase via <code>GetNativeHandle()</code> (#565). Startup HTTP downloads deferred until after partfile + shared-file scan (#719) so cold-start UI is responsive while ipfilter.dat and friends are fetched.</li>
<li class=""><strong>Recursive share walks</strong> deferred + cancellable, with confirmation prompts for sensitive home-parent paths (#594, #599).</li>
<li class=""><strong>macOS daemon shutdown</strong> driven from <code>OnCoreTimer</code> to fix the long-standing hang (#563).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="networking--discovery">Networking &amp; Discovery<a href="https://amule-org.github.io/es/changelog/3.0.0#networking--discovery" class="hash-link" aria-label="Enlace directo al Networking &amp; Discovery" title="Enlace directo al Networking &amp; Discovery" translate="no">​</a></h3>
<ul>
<li class=""><strong>Kad parallel searches</strong> with alpha-frontier widening; new "More" button to ask additional peers for results (#505).</li>
<li class=""><strong>MaxMindDB replaces deprecated GeoIP</strong> for IP→country (.dat → .mmdb; free MaxMind account required for the database) (#502, #507, #509).</li>
<li class="">HTTPS downloads work again — <code>CHTTPDownloadThread</code> rewritten on top of <code>wxWebRequest</code> (#462), with a hard-fail when <code>wxUSE_WEBREQUEST</code> is off (#481).</li>
<li class="">Wire-parser hardening: <code>OP_SERVERMESSAGE</code> size validation (#447), buffer overflow fix in <code>ECSocket</code> (#421), uninitialized memory fix in <code>UInt128</code> (#424).</li>
<li class="">ed2k-link float tags endian-swapped correctly on big-endian hosts (#368).</li>
<li class="">Friend's shared list and search-result rating exposed via EC (#430, #452).</li>
<li class=""><strong>Shared-folder watcher.</strong> <code>wxFileSystemWatcher</code>-driven auto-rescan (#591), with recursive vs explicit-share intent split + cold-discover of subdirs created while offline (#606). Watcher also covers the Incoming dir + per-category Incoming dirs so completed downloads register without a manual reload (#743). Incremental rescan replaces full <code>Reload</code> per filesystem event (#751); <code>SharedFileList</code> AICH-hash scan dropped from O(N·M) to O(N+M) (#746); optional "Follow symbolic links in shared folders" preference (#809). macOS amuled now pumps <code>CFRunLoop</code> so FSEvents deliver (#975f60fb0).</li>
<li class=""><strong>Kad index hygiene.</strong> <code>CEntry::SetFileName</code> rejects empty filenames in the merge path (#675); <code>CKeyEntry::m_filenames</code> bounded (#652); <code>known2_64.met</code> orphan-pruned at sync startup (#605). <code>m_filenames</code> rotation now uses O(N) compare-and-skip insertion instead of sort+resize (#795); a popularity-decay experiment (#799) was introduced and then reverted (#805), keeping the <code>GetCommonFileName</code> all-zero robustness fix. Kad late UDP firewall responses dropped; Recheck assert downgraded (#afb9da010). SearchID collisions between Kad and ed2k searches no longer mix tab results (#530, #3008ada0f).</li>
<li class=""><strong>Server protocol.</strong> Future ping timestamps discarded from server.met (#3f70856a0); several server-ping fixes (#715). Control-traffic bypasses the download throttler (#615); inbound server probes also bypass it (#787). Server-name updates parsed as Unicode without the obsolete <code>SRV_TCPFLG_UNICODE</code> gate (#835); explicit disconnect when the server assigns no client ID (#788). <code>OP_IDCHANGE</code> sanity checks demoted to debug log (#613). <code>ServerUDPSocket</code> "additional packet" notice demoted to non-critical debug (#548). HTTP/HTTPS auto-update for <code>addresses.dat</code> accepts https URLs (#721); default eMule-security + shortypower URLs upgraded to HTTPS (#718).</li>
<li class=""><strong>EC / WebUI / amuleweb.</strong> 65535-children-per-tag wire-format ceiling lifted (#570). <code>FRIEND_REMOVE</code> made idempotent (#632); friend-slot flag persisted on <code>CFriend</code> so it survives disconnects (#633). amuleweb honours <code>amule_set_options()</code> nickname (#634); fixes POST body parsing when URL has a query string (#729); fixes <code>split()</code> byte/wide-char confusion on UTF-8 input (#619); fixes SIGSEGV rendering y-axis labels above 9999 (#618); fixes crash with &gt;65535 shared files (#700). WebUI adds Kad + ed2k connect/disconnect controls (#660), Kad nodes-URL control, "Disconnect from current ed2k server" (#a82cd2e1a, #b5d83829a), and persistent ED2K / Kad enable checkboxes (#661, #8ce30f910); sends max upload/download rate as uint32 (#645). amulegui surfaces <code>EC_OP_FAILED</code> from <code>ADD_LINK</code> (#557), implements category-tab Stop/Pause/Resume/Cancel + Prio (#701), renders statistics graphs via <code>EC_OP_GET_STATSGRAPHS</code> (#639), and overrides <code>OnFatalException</code> with libbfd backtrace (#695). Aggregated single-popup AddLink error reporting (#577).</li>
<li class=""><strong>UPnP.</strong> Filter non-WAN device announcements before fetching description (#623). Cache failed XML fetches + demote routine discovery logs from critical to debug (#653, #627).</li>
<li class=""><strong>ClientTCPSocket</strong> strict "no trailing bytes" asserts demoted to debug log (#710).</li>
<li class=""><strong>SharedFileList</strong> emits the honest file count in <code>OP_OFFERFILES</code> (#556) and skips empty <code>OP_OFFERFILES</code> when nothing made the LF cut (#169910998).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="build-system--dependencies">Build System &amp; Dependencies<a href="https://amule-org.github.io/es/changelog/3.0.0#build-system--dependencies" class="hash-link" aria-label="Enlace directo al Build System &amp; Dependencies" title="Enlace directo al Build System &amp; Dependencies" translate="no">​</a></h3>
<p>aMule 3.0 requires <strong>CMake ≥ 3.10</strong> and <strong>wxWidgets ≥ 3.2.0</strong>. Autotools is removed entirely.</p>
<ul>
<li class="">Full CMake build replaces autotools (#449).</li>
<li class="">Autotools, <code>debian/</code> packaging dir, and dead platform/subtool trees retired (#466).</li>
<li class="">wxWidgets 3.x build fixes (#438, #443, #453); macOS framework / app-bundle compat (#453).</li>
<li class="">Boost 1.87 / 1.89 build fixes (#387, #429) — modern Boost ASIO no longer breaks the build.</li>
<li class="">CMake hard-fails when <code>ENABLE_X=YES</code> cannot be honored: UPnP (#511), NLS (#512), Boost (#513), IP2Country (#509). No more silent disable.</li>
<li class="">CMake mins / detection: minimum 3.10 and <code>version.rc</code> path fix (#490), <code>MIN_WX_VERSION</code> 3.2 with legacy <code>wx.cmake</code> retired (#459), default build type Release (#469), broken <code>UPNP.cmake</code> workaround (#439), BFD link fixes for modern binutils (#487, #489), <code>find_package(Intl)</code> outside <code>YYENABLE_NLS</code> gate (#495).</li>
<li class="">SVNDATE banner: stops freezing at first configure (#483); refreshes on <code>git reset</code> / commit (#493). <strong><code>SVN</code> macros / files renamed to <code>GIT</code> throughout the source tree (#726)</strong> — <code>SVNDATE</code> → <code>GITDATE</code>, <code>__SVN__</code> → <code>__GIT__</code>, <code>config.h.cm</code> and Windows <code>version.rc.in</code> follow suit. No user-facing impact; reflects 5+ years of Git as the canonical SCM.</li>
<li class=""><code>compile_commands.json</code> generated (#441); <code>compile.sh</code> and <code>find_uncompiled.py</code> build/analysis scripts (#494, #501).</li>
<li class="">Loongarch64 architecture support (#286).</li>
<li class="">OpenSUSE platform fixes (#440); libupnp 1.18 compatibility (#448).</li>
<li class=""><strong>boost::asio mandatory.</strong> wxWidgets-sockets fallback path removed; <code>ENABLE_BOOST</code> and <code>DOWNLOAD_AND_BUILD_DEPS</code> escape hatches retired (#603).</li>
<li class=""><strong>CMake polish (post-#518).</strong> <code>wx_NEED_NET</code> kept on for BUILD_WEBSERVER-only (#620) and BUILD_AMULECMD-only (#630) configurations. <code>libatomic</code> linked directly on 32-bit targets where <code>std::atomic&lt;int64_t&gt;</code> needs it (#648, #662) — the heuristic atomic-probe is gone. <code>glib-2.0</code> hard-fail when missing for <code>amule</code> / <code>amuled</code> / <code>amulegui</code> (#571), but the dependency itself is dropped on macOS even under wxGTK (#647). <code>PACKAGE</code> / <code>PACKAGE_VERSION</code> pre-defined for the bfd.h probe (#545).</li>
<li class=""><strong>license.txt</strong> moved to project root (#730).</li>
<li class=""><strong>CodeQL</strong> alerts cleared (#732, #733); CI runs CodeQL on push to master only, not on PRs (#c02d5ec04). <code>actions/checkout</code> bumped (#446 in initial pass).</li>
<li class=""><strong>README + docs polish.</strong> Distro version and GitHub activity badges (#7a1b310b5); markdown / ortography sweep (#6e9a9fe5a); INSTALL.md MD012/MD060 markup warnings fixed (#31aff1499).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="packaging">Packaging<a href="https://amule-org.github.io/es/changelog/3.0.0#packaging" class="hash-link" aria-label="Enlace directo al Packaging" title="Enlace directo al Packaging" translate="no">​</a></h3>
<p>aMule 3.0 ships native binaries covering most modern desktops:</p>
<ul>
<li class=""><strong>Linux AppImage</strong> (x86_64, aarch64) — works across all major distros.</li>
<li class=""><strong>Linux Flatpak</strong> (x86_64, aarch64) — runs in the GNOME Platform sandbox.</li>
<li class=""><strong>macOS Universal2 <code>.dmg</code></strong> — single installer containing Apple Silicon and Intel binaries (the per-arch <code>.app</code> trees are CI intermediates for the <code>lipo</code> merge job and are not published as separate downloads).</li>
<li class=""><strong>Windows portable <code>.zip</code></strong> (x64, ARM64).</li>
<li class=""><strong>Windows NSIS installer <code>.exe</code></strong> (x64, ARM64) — guided installation, alternative to the portable zip.</li>
</ul>
<p>Recipes, manifests, and the GitHub Actions packaging matrix landed in #510. AppImage's first-run prompt installs a desktop launcher to the user's application menu (reversible, opt-in).</p>
<p>Other platform integration work:</p>
<ul>
<li class="">Wayland-friendly desktop integration: matching <code>app_id</code>, SNI tray icon (replaces deprecated <code>GtkStatusIcon</code>), macOS dock-restore on quit, tray opt-in (#508; fallback workaround in #474).</li>
<li class="">macOS Carbon <code>FSRef</code> API retired in favor of <code>$HOME</code>-based paths (#468).</li>
<li class="">macOS Dock right-click Quit triggers proper shutdown cleanup (#456).</li>
<li class="">Windows / MinGW build support: cmake fixes, LLP64 pointer safety, ASIO on Windows (#457).</li>
<li class="">Icons across all platforms: Linux hicolor PNG, Windows <code>.rc</code> icon, macOS <code>amulegui.app</code> (#464).</li>
<li class="">Initial AppStream metainfo (#367).</li>
<li class="">Localization on macOS and Windows fixed — wxLocale lookup paths repaired (#492).</li>
<li class="">macOS spurious <code>wxGetCwd()</code> errors silenced (#480).</li>
<li class="">Flatpak <code>libupnp</code> install-libdir pinned for pkg-config (#515).</li>
<li class=""><strong>macOS .dmg now bundles <code>aMuleGUI.app</code></strong> alongside <code>aMule.app</code> so installing the .dmg gives both the daemon-style and GUI binaries in <code>/Applications</code> (#529). Locale catalogs are bundled inside the <code>aMuleGUI.app</code> <code>Contents/Resources</code> tree so translated strings render correctly when run from the .dmg (#543).</li>
<li class=""><strong>Windows NSIS installer</strong> shipped alongside the existing portable .zip (#740), with un.SecRemoveUserData no longer appearing on the install Components page (#65178406a).</li>
<li class=""><strong>Cross-platform autostart-on-login</strong> toggle in Preferences (#744): Linux .desktop, macOS LaunchAgent, Windows registry under one checkbox.</li>
<li class="">All platforms ship <code>alc</code> / <code>alcc</code> / <code>cas</code> / <code>wxcas</code>; Windows additionally ships <code>amuleweb</code> (#785); macOS <code>.dmg</code> now contains <code>amuleweb</code> after build-path correction (#794).</li>
<li class="">Release-asset filenames standardised on <code>&lt;OS&gt;-&lt;arch&gt;</code> so every package is reachable by predictable URL (#789).</li>
<li class="">Windows non-DPI executables (<code>alc</code>, <code>wxcas</code>) get a comctl32 v6 + PerMonitorV2 manifest so they aren't bitmap-scaled on hi-DPI displays (#796); the main GUI got the same <code>PerMonitorV2</code> declaration in #780.</li>
<li class="">Windows resource lookup paths corrected so skins and webserver templates resolve to <code>share/amule</code> (#784).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="internals--refactoring">Internals &amp; Refactoring<a href="https://amule-org.github.io/es/changelog/3.0.0#internals--refactoring" class="hash-link" aria-label="Enlace directo al Internals &amp; Refactoring" title="Enlace directo al Internals &amp; Refactoring" translate="no">​</a></h3>
<ul>
<li class="">Legacy wx 2.x-era deprecated APIs removed (#470).</li>
<li class="">2.x-compat globals and event-table macros retired (#475).</li>
<li class="">Dialog code migrated to <code>wxSizerFlags</code>; wxDesigner-generated code retired; GCC 15 enum-enum conversion warnings eliminated (#473).</li>
<li class="">macOS 10.10-era deprecation cleanup (#470).</li>
<li class=""><code>OnAssertFailure</code> ternary fixed for strict GCC / Alpine builds (#476).</li>
<li class="">Documentation transitioned to Markdown; staleness audit; broken README icon URL fixed (#514).</li>
<li class="">po4a config restored + optional CMake <code>po4a-update</code> target (#485).</li>
<li class="">Wiki content migrated into the repository (#496).</li>
<li class=""><strong>Crash diagnostics.</strong> <code>MuleDebug</code> PIE-translates runtime PCs back to link-time addresses for bfd (#677, #678), uses <code>popen()</code> instead of <code>wxExecute()</code> for the addr2line fallback (#682), and the <code>Do_not_auto_remove</code> marker is replaced with the modern <code>IWYU pragma: keep</code> (#679). amulegui's <code>OnFatalException</code> overridden with libbfd backtrace (#695). <code>wxcas</code> / <code>alc</code> disable wxSizerFlags consistency checks at startup (#694) — eliminates spurious assertion noise that broke the apps under wx 3.3.</li>
<li class=""><strong>Tray-icon overhaul.</strong> Unified Linux/macOS/Windows tray path (#574); dock icon dropped while hidden via tray on macOS (#a5a9a5866); <code>HideOnClose</code> decoupled from confirm-exit (#f1d0e85f0); iconize-aware menu + single-left toggle + robust ShowGUI (#0640373c8); <code>ServerWnd</code> sash anchored to top, persist-on-drag only (#47c811191); 'Enable Tray Icon' master placed before its dependents (#64b83e48e). Linux-specific tray-icon limitations gated separately (#2a0b874d7). 'Hide on close' exposed cross-platform behind the tray-icon gate (#e82b4bac5).</li>
<li class=""><strong>Wayland.</strong> amule-remote-gui binds <code>wl_app_id</code> via <code>g_set_prgname()</code> (#572).</li>
<li class=""><strong>GUI dispatch polish.</strong> <code>MuleNotebook</code> dispatches the right-click forward synchronously so PopupMenu's grab is fresh (#683). <code>ClientDetailDialog</code> binds Escape to Close (#681). Destructive YES_NO prompts no longer treat ESC as confirm (#612).</li>
<li class=""><strong>amulecmd.</strong> Search filters (type/extension/availability/size) now exposed via flags (#542) and documented (#544, #547). amulecmd.1 stops translating command names in section headers (#4296bbccf).</li>
<li class=""><strong>amule</strong> <code>--disable-fatal</code> also skips the assertion dialog (#549).</li>
<li class=""><strong>First-run prompt</strong> for nodes.dat alongside server.met (#558), with translations regenerated (#71542203f).</li>
<li class=""><strong>Logger.</strong> Sticky stdio EOF cleared on <code>CLoggerAccess</code> so EC log polls see new lines (#567). Control characters escaped in 'Invalid Kad tag type' log lines (#550). <code>ExternalConnector</code> console binaries respect <code>VerboseDebug</code> from amule.conf (#654) and <code>setlocale</code> at init so non-interactive output keeps accented chars (#629).</li>
<li class=""><strong>Y2038.</strong> Internal time-handling unified on <code>uint64 GetTickCount64()</code> to properly manage milliseconds past 2038 (#702). <code>CLOCK_REALTIME</code> → <code>CLOCK_MONOTONIC</code> for steady-state intervals (#56a369e95).</li>
<li class=""><strong>EC ADD_LINK</strong> aggregates per-link result into a single response (#551).</li>
<li class=""><strong>Misc.</strong> <code>asio</code> sets <code>FD_CLOEXEC</code> on listen + UDP sockets (#552). <code>FileFunctions</code> bails out when <code>wxZipInputStream</code> stalls on a bad entry (#553). <code>GuiEvents</code> NULL-guards <code>ECNotifier</code> before dereferencing on download notifies (#554). <code>StatTree</code> stops double-counting session bytes (#555) and guards total ratio div-by-zero on fresh installs (#585). <code>KnownFileList</code> takes list_mut before opening <code>known.met.new</code> (#546) and closes a TOCTOU UAF window in <code>Save()</code> / <code>PruneDuplicates</code> (#690). <code>SharedFileList</code> takes <code>list_mut</code> around <code>m_keywords</code> ops in <code>Reload</code> and <code>Publish</code> so concurrent Kad publishes don't iterate a mid-mutation map (#686). <code>PrefsUnifiedDlg</code> flags user-home parents as sensitive (#599). amuleweb URL migration to <code>amule-org</code> and dead <code>amule.org</code> refs removed (#526).</li>
<li class=""><strong>Tooling / type cleanup.</strong> <code>fileview</code> CLogger stub extended with <code>IsEnabled()</code> for Debug builds (#657). <code>muleunit</code> adds missing override keywords (#664). Sockets <code>override</code> keyword sweep on <code>CEMSocket</code>-derived classes (#625). <code>WebServer</code> uses <code>vector::data()</code> in <code>CProgressImage::CreateSpan</code> (#684). Constant rename: <code>PR_VERYLOW</code> → <code>PR_VERY_LOW</code> (#97fcd3ae8); <code>PS_WAITINGFORHASH</code> → <code>PS_WAITING_FOR_HASH</code> (#2ae100b56). Webserver internal renames: <code>gaptag</code> / <code>parttag</code> / <code>reqtag</code> → <code>gap_tag</code> / <code>part_tag</code> / <code>req_tag</code> (#412f5aa27); <code>autoprio</code> → <code>auto_priority</code> (#f0bca611b). Backtrace internal rename: <code>s_abfd</code> → <code>s_a_bfd</code> (#5a576c3c1). Webserver enum typo fixes (#5a0d13718). Spelling sweeps across webserver (#fd823eff8, #0cda3b03c) and backtrace (#bb76d0ad8).</li>
<li class=""><strong>PartFile.</strong> <code>m_lastDateChanged</code> stamped on data arrival, not flush (#638). <code>FlushBuffer</code> size-correction guarded against closed fd (#609). <code>m_hpartfile</code> locked in <code>ReadData</code> + <code>AICHRecoveryDataAvailable</code> (#709). <code>HashSinglePart</code> bound-checked against partfile length (#130b0f495). Async hash enqueue gated on <code>IsComplete</code> (#c660e1281). Per-part hashing hardened against gap/disk-state drift (#560).</li>
<li class=""><strong>Preferences.</strong> No longer drops inaccessible shared dirs on load (#707); preserves unknown WebServer Template across GUI Save (#621); prefs/directories surfaces that the Incoming folder is shared (#631). <code>ExternalConnector</code> deletes <code>m_ECClient</code> in dtor to stop one-shot leak (#706).</li>
<li class=""><strong>Listctrl polish.</strong> <code>RefreshLines</code> skipped when range is outside visible (#624). Unfocused selection visible on themes where <code>BTNSHADOW == LISTBOX</code> (#646). LTR cell paint forced to fix RTL-locale glyph mirroring (#540).</li>
<li class=""><strong>Search dialog.</strong> Clipped Min/Max Size + Availability spin controls on Linux (#607, #82626f2f3). 10px-tall extension input field (#569 / #971310402).</li>
<li class=""><strong>Misc UI.</strong> <code>amuleDlg</code> re-Realizes toolbar after Show() to fix wxMSW long-locale clipping (#532). Hardcoded 20px height on the FastEd2kLinks bar dropped (#534, #c710c08fe). Icons migrated from <code>XPM #include</code> to <code>wxArtProvider</code> + embedded PNG (#537, #59d718818). Gtk-CRITICAL warnings on Preferences + Networks tabs silenced (#739).</li>
<li class=""><strong>PartFileConvertDlg</strong> collects ids before removing rows so <code>GetNextItem</code> stays valid (#649).</li>
<li class=""><strong>SafeFile</strong> oversized-string assertion demoted to debug log (#617).</li>
<li class=""><strong>KnownFile.</strong> Skip notify when <code>SetPublishedED2K</code> value didn't change (#dde5294fc). <code>m_duplicateFileList</code> growth bounded with a per-hash cap (#f33c56b44).</li>
<li class=""><strong>Code-quality baseline.</strong> Baseline <code>.clang-tidy</code> configuration introduced (#770); first sweeps produced 6 safety fixes (#773) and 4 cosmetic fixes (#774); <code>wxASSERT</code> → <code>wxCHECK_MSG</code> on array-access guards in <code>Logger</code> / <code>UserEvents</code> (#772).</li>
<li class=""><strong>Dead-code removal.</strong> 2011-era <code>/Statistics</code> legacy config migration dropped (#825); long-broken "Automatic server connect without proxy" checkbox removed from preferences (#806).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="translations">Translations<a href="https://amule-org.github.io/es/changelog/3.0.0#translations" class="hash-link" aria-label="Enlace directo al Translations" title="Enlace directo al Translations" translate="no">​</a></h3>
<ul>
<li class="">Italian: AppImage integration prompt translated (#518).</li>
<li class="">Spanish updated and completed (#497).</li>
<li class="">Dutch updated (#343).</li>
<li class="">Catalan updated (#425).</li>
<li class="">Simplified Chinese updated (#348).</li>
<li class="">Translation pipeline: <code>scripts/update-po.sh</code> introduced.</li>
<li class=""><strong>AI-assisted gap-fill</strong> for it / fr / de / es app strings (#582) and man pages (#580).</li>
<li class=""><strong>Spanish</strong> further updates (cpp + docs, manpages rebuilt) (#655).</li>
<li class=""><strong>French + Turkish</strong> updated (#691) and added to the AppStream info file (#698, #86a08ffc7).</li>
<li class=""><strong>Brazilian Portuguese (pt-BR)</strong> added to metainfo (#86bafee35); metainfo screenshot URLs fixed (<code>amule/amule</code> → <code>amule-org/amule</code>, #cf84ec2c6); TODO comment syntax fix (<code>shell</code> → <code>XML</code>, #fc205619f).</li>
<li class=""><strong>po regeneration</strong> from updated sources + msgmerge across all locales (#c2bbea0ed).</li>
<li class=""><strong>Late-cycle wave</strong>: French + Turkish manual pages (#753, #754, #776); Galician update (#763); Slovenian recovered from forum.amule.org (#771); Brazilian Portuguese man page added (#768) and the <code>.po</code> completed (#775); pt-BR translations on 4 <code>.desktop</code> files (#812); French manual-page update (#811).</li>
<li class=""><strong>Man-page tooling</strong>: <code>.TH</code> headers templatized for date + version so they no longer drift per release (#802).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="bug-fixes--stability">Bug Fixes &amp; Stability<a href="https://amule-org.github.io/es/changelog/3.0.0#bug-fixes--stability" class="hash-link" aria-label="Enlace directo al Bug Fixes &amp; Stability" title="Enlace directo al Bug Fixes &amp; Stability" translate="no">​</a></h3>
<ul>
<li class=""><code>CFile::doSeek</code> no longer asserts when <code>IsOpened()</code> is false (#294).</li>
<li class=""><code>RLE_Data</code> memory delete issue fixed (Valgrind report) (#379).</li>
<li class="">Selected lines in Download/Shared lists no longer become illegible when losing focus (#385).</li>
<li class="">amulegui: clean startup on Cancel + watchdog on wrong connection data (#465).</li>
<li class="">amuleweb: missing <code>prefs apply</code> options restored (#419).</li>
<li class=""><code>PartFileWriteThread</code> catches <code>CIOFailureException</code> so disk-full doesn't kill the process (#499).</li>
<li class="">StatTree fix (#319); totalizers added to download/upload stats (#338, #339).</li>
<li class="">Doc / source-comment typos cleanup (#297); missing include (#360).</li>
<li class=""><strong>amuleweb crash with &gt;65535 shared files</strong> fixed (#700) with regression test (#61276d70d).</li>
<li class=""><strong>CFile musl SIGSEGV + concurrent corruption</strong> caught and fixed (#576) — musl's 128 KiB pthread stack interacted badly with the 64 KB userspace write buffer added in #573; a separate concurrent-corruption race on a shared write buffer was also fixed in the same PR.</li>
<li class=""><strong>macOS link error</strong> caused by implicit AppKit framework dependency now resolved by naming it explicitly (#578).</li>
<li class=""><strong>Wake-from-sleep SIGSEGV</strong> in asio socket impls — root cause <code>shared_from_this</code> lifetime gap (#596). NULL <code>m_socket</code> also guarded in UDP DispatchClose (#82b5400dc).</li>
<li class=""><strong>WebUI</strong> rate-limit fields no longer truncate at 16 bits (#645).</li>
<li class=""><strong>PartFileConvertDlg</strong> iteration invalidation crash (#649).</li>
<li class=""><strong>amulegui</strong> EC connect-timeout shutdown crash (#717).</li>
<li class=""><strong>ExternalConnector</strong> one-shot <code>m_ECClient</code> leak on dtor (#706).</li>
<li class=""><strong>EC notification path</strong> raw-pointer <code>CECPacket</code> leak plugged (#797).</li>
<li class=""><strong>Detect dead amuled</strong> cleanly across all clients (#758); EC <code>--upnp-port</code> fixed from switch to numeric option in <code>amuleweb</code> (#820); <code>amuleweb</code> <code>remote.conf</code> round-trip + Windows webserver template path fixed (#822).</li>
<li class=""><strong>amulegui improvements and fixes</strong>: ghost-entry sources — stale EC alive-marker for unknown ID no longer creates phantom rows (#810), <code>INC_UPDATE</code> tag for unknown file ID with suppressed identifying metadata now skipped cleanly (#819); connection dialog reappears on failure instead of quitting (#841); ED2K Info pane readability + clipboard copy fixed (#824); <code>DirectoryTreeCtrl</code> <code>wxNullFont</code> crash on the Windows revert-recursive-share path (#830); modal popups deferred out of <code>OnPacketReceived</code> call stack (#760).</li>
<li class=""><strong>PartFile</strong>: first-share early hash so a downloading file appears in "Shared files" before it completes (#762); drop LowID-0 sources in <code>CanAddSource</code> (#790).</li>
<li class=""><strong>Crypto stream</strong>: don't UB if <code>EncryptedStreamSocket::Negotiate()</code> is entered with no expected bytes (#779).</li>
<li class=""><strong>UAF prevention</strong>: <code>Notify_KnownFileBeingDestroyed</code> broadcast on every <code>CKnownFile</code> destruction (#756).</li>
<li class=""><strong>GUI / GTK warnings</strong>: silenced on the Advanced Preferences tab via sizer simplification (#833); slider min-height pin attempted (#826) then reverted (#836) after wxGTK 3.2.9 surfaced an invisibility regression.</li>
<li class=""><strong>SearchListCtrl</strong> dropped bogus "File" title from right-click popup (#769).</li>
<li class=""><strong>Three GUI fixes from #800</strong>: toolbar races and web-template placeholder loop closed (#803).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="ci">CI<a href="https://amule-org.github.io/es/changelog/3.0.0#ci" class="hash-link" aria-label="Enlace directo al CI" title="Enlace directo al CI" translate="no">​</a></h3>
<ul>
<li class="">macOS and Windows MinGW64 build jobs added (#458); ccpp.yml adjustments (#460).</li>
<li class="">Ubuntu CI installs <code>binutils-dev</code> so the BFD path is exercised (#488).</li>
<li class="">Assert tests gated on <code>wxDEBUG_LEVEL</code>; <code>ctest</code> runs in Release in CI (#506).</li>
<li class="">CodeQL adjustments and code-scanning fixes (#477, #478, #482).</li>
<li class=""><code>actions/checkout</code> bumped from v4 to v6 (#446).</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="known-limitations">Known Limitations<a href="https://amule-org.github.io/es/changelog/3.0.0#known-limitations" class="hash-link" aria-label="Enlace directo al Known Limitations" title="Enlace directo al Known Limitations" translate="no">​</a></h3>
<p>Known caveats users should be aware of for this release:</p>
<ul>
<li class="">macOS <code>.dmg</code> is <strong>not yet code-signed or notarized</strong> — users will see Gatekeeper warnings on first launch.</li>
<li class=""><strong>Flathub submission pending</strong> — for now, install the <code>.flatpak</code> directly with <code>flatpak install &lt;file&gt;</code>.</li>
<li class="">AppImage doesn't yet ship through AppImageLauncher's catalogue.</li>
<li class="">Tray-icon library (<code>libayatana-appindicator</code>) is deprecated upstream; migration to <code>libayatana-appindicator-glib</code> deferred until LTS distros pick it up.</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="contributors">Contributors<a href="https://amule-org.github.io/es/changelog/3.0.0#contributors" class="hash-link" aria-label="Enlace directo al Contributors" title="Enlace directo al Contributors" translate="no">​</a></h3>
<p>This release reflects 5+ years of work across 234 merged PRs (98 initial + 136 follow-ups through to the tag). Particular thanks to:</p>
<ul>
<li class=""><strong>got3nks</strong> — 182 PRs.</li>
<li class=""><strong>Marcelo Jimenez</strong> (mrjimenez) — 17 PRs.</li>
<li class=""><strong>Werner Mahr</strong> (Vollstrecker) — 38 commits.</li>
<li class=""><strong>Pablo Barciela</strong> (sc0w) — 3 PRs, 17 commits.</li>
<li class=""><strong>Dévai Tamás</strong> (GonoszTopi) — 16 commits.</li>
<li class=""><strong>danim7</strong> — 5 PRs across the follow-up cycle (translations, server pings, y2038, cmake polish).</li>
<li class=""><strong>cardpuncher</strong> — French + Turkish translations and AppStream entries (#691, #698).</li>
<li class=""><strong>ngosang</strong> — UX feedback driving the late-3.0 cycle (issues #817, #818, #821, #828, #844) and ongoing work on the user-facing manual at <a href="https://amule-org.github.io/" target="_blank" rel="noopener noreferrer" class="">amule-org.github.io</a>.</li>
</ul>
<p>Plus contributions from RealGreenDragon, frnjjq, Sergi Amoros, Stefano Picerno, Alexander Tsoy, sergiomb2, puleglot, mercu01, lggcs, comio, MPolleke, mike2718, joebonrichie, matoro, dependabot, tbo47, SevC10, topotech, minterior, luzpaz, loongson-zn.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="merged-prs-in-this-release">Merged PRs in this release<a href="https://amule-org.github.io/es/changelog/3.0.0#merged-prs-in-this-release" class="hash-link" aria-label="Enlace directo al Merged PRs in this release" title="Enlace directo al Merged PRs in this release" translate="no">​</a></h3>
<p>Complete list of PRs that landed for 3.0.0, in numerical order. The narrative sections above call out the most impactful changes; this index gives the full traceback.</p>
<p>#286, #294, #297, #319, #338, #339, #343, #348, #360, #367, #368, #379, #385, #387, #419, #421, #424, #425, #429, #430, #436, #438, #439, #440, #441, #443, #446, #447, #448, #449, #451, #452, #453, #454, #456, #457, #458, #459, #460, #461, #462, #463, #464, #465, #466, #467, #468, #469, #470, #473, #474, #475, #476, #477, #478, #480, #481, #482, #483, #484, #485, #487, #488, #489, #490, #491, #492, #493, #494, #495, #496, #497, #498, #499, #500, #501, #502, #504, #505, #506, #507, #508, #509, #510, #511, #512, #513, #514, #515, #518, #526, #529, #530, #532, #534, #537, #540, #542, #543, #544, #545, #546, #547, #548, #549, #550, #551, #552, #553, #554, #555, #556, #557, #558, #560, #561, #563, #565, #566, #567, #569, #570, #571, #572, #573, #574, #576, #577, #578, #580, #581, #582, #584, #585, #591, #593, #594, #596, #598, #599, #603, #605, #606, #607, #609, #612, #613, #614, #615, #617, #618, #619, #620, #621, #623, #624, #625, #627, #629, #630, #631, #632, #633, #634, #638, #639, #645, #646, #647, #648, #649, #652, #653, #654, #655, #657, #660, #661, #662, #664, #667, #670, #671, #672, #675, #677, #678, #679, #681, #682, #683, #684, #686, #687, #689, #690, #691, #694, #695, #698, #700, #701, #702, #706, #707, #709, #710, #715, #716, #717, #718, #719, #721, #725, #726, #727, #728, #729, #730, #732, #733, #736, #739, #740, #743, #744, #746, #747, #750, #751, #753, #754, #756, #758, #760, #762, #763, #768, #769, #770, #771, #772, #773, #774, #775, #776, #779, #780, #784, #785, #787, #788, #789, #790, #794, #795, #796, #797, #799, #801, #802, #803, #805, #806, #809, #810, #811, #812, #819, #820, #822, #824, #825, #826, #830, #833, #834, #835, #836, #839, #840, #841, #845.</p>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.3.3]]></title>
        <id>https://amule-org.github.io/es/changelog/2.3.3</id>
        <link href="https://amule-org.github.io/es/changelog/2.3.3"/>
        <updated>2021-02-07T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'delayed too many times, but still not too late' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'delayed too many times, but still not too late' version</em></p>
<p>alesnav:</p>
<ul>
<li class="">Permit amuleweb in an iframe</li>
</ul>
<p>Dmitry Smirnov:</p>
<ul>
<li class="">Added mimetype-hanlder to amule.desktop originally in debian</li>
</ul>
<p>gaffatape:</p>
<ul>
<li class="">Workaround for bug in wxWidgets causing aMule to crash on closing the last search tab</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fix restoring toolbar orientation on 'Cancel'</li>
<li class="">Features ported from eMule:<!-- -->
<ul>
<li class="">Find best keyword for Kad search (0.49c)</li>
</ul>
</li>
<li class="">Various fixes to gdlib detection</li>
<li class="">Support for compiling aMule with wxGTK under Cygwin</li>
<li class="">Various small fixes to the MacOSX packager script</li>
<li class="">Workaround for wxWidgets bug #17740 (Wrong path used to search for translations), fixes GitHub issue #74 (.mo files for translation are not loaded if amule is built to install to a prefix other than /usr (e.g. /usr/local).)</li>
<li class="">Portability fixes</li>
<li class="">Handle the deprecation of std::auto_ptr in C++11 by using std::unique_ptr instead.</li>
<li class="">Fix linking with readline if configure uses caching</li>
<li class="">Remove 'web search' search type as there are no search engines to support</li>
<li class="">Readline related fixes and improvements in amulecmd:<!-- -->
<ul>
<li class="">Set the proper application name (amulecmd) for readline. This allows conditional parsing of the readline configuration files (like ~/.inputrc). See the GNU Readline Library documentation (section 1.3.2) for more details.</li>
<li class="">Set up command completion on pressing the TAB key. Since command names are case insensitive, completion uses the default capitalization (shown by the 'Help' command). Completion also works for the 'Help &lt;command name&gt;' construct.</li>
<li class="">Pressing &lt;Enter&gt; on an empty line won't give 'Syntax error!' anymore, the empty line is silently ignored.</li>
</ul>
</li>
<li class="">Flex and bison generated files will no longer be regenerated occasionally on the user's system.</li>
<li class="">Proxy authorization fixes</li>
<li class="">Explicitly disable support for autoconf &gt;= 2.70</li>
<li class="">Fix compilation using C++17</li>
</ul>
<p>jEsuSdA:</p>
<ul>
<li class="">Added papirus theme</li>
</ul>
<p>KeyofBlueS:</p>
<ul>
<li class="">Fix compilation with newer bfd</li>
</ul>
<p>kinote:</p>
<ul>
<li class="">Fix integer conversions in amulecmd</li>
</ul>
<p>persmule:</p>
<ul>
<li class="">Fix sharing directories with non-ASCII names with aMule daemon</li>
<li class="">Fix potential invalid detection for empty wxCharBuffer</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Fixed libupnp API breakage.</li>
</ul>
<p>poplite:</p>
<ul>
<li class="">Fixed issue #99 by properly initializing wxSockets in the remote gui</li>
</ul>
<p>Sandro Tosi:</p>
<ul>
<li class="">remove garbage from gdlib originally in debian</li>
</ul>
<p>sc0w:</p>
<ul>
<li class="">Fixed compilation with upnp-1.8</li>
<li class="">C++11 fixes</li>
<li class="">Only handle mouse-up events if the mouse-down event happened on the same tab</li>
<li class="">Fix issue #114: Switching search result tabs doesn't work</li>
<li class="">Fix a number of build warnings</li>
<li class="">Fix a few memory leaks</li>
<li class="">Various small code improvements</li>
<li class="">Add option to show notifications when finished downloading</li>
<li class="">Fixed issue #54: the minimize button doesn't work propertly when "minimize to tray icon" is activated on preferences</li>
<li class="">Fixed issue #59: start minimized doesn't work</li>
<li class="">Fixed issue #225: amule shows wrong 100% when files aren't downloaded</li>
<li class="">Show speeds in MB/s instead of kB/s when appropriate</li>
</ul>
<p>Sebastiano Pistore:</p>
<ul>
<li class="">Unified translation file headers to make it easier to identify contributors</li>
</ul>
<p>Thibaut Lassalle:</p>
<ul>
<li class="">Add README.md</li>
</ul>
<p>Tom Li:</p>
<ul>
<li class="">OScopeCtrl.cpp: use Refresh() instead of ProcessEvent() to refresh the UI, fix issue #146.</li>
</ul>
<p>Tommy Jerry Mairo:</p>
<ul>
<li class="">Fixed issue #119: API mismatch with Crypto++ 6.0.0</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Initial support for detecting pkg-config based gdlib versions</li>
<li class="">Compilation fixes for VS2015</li>
<li class="">Fixed compilation with wx-3.1</li>
<li class="">Added cmake-support (Linux and Windows tested)</li>
<li class="">Dropped support for cryptopp versions before 5.5</li>
</ul>
<p>xinhuang:</p>
<ul>
<li class="">Fix crash when shared files changed on Shared files tab</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.3.2]]></title>
        <id>https://amule-org.github.io/es/changelog/2.3.2</id>
        <link href="https://amule-org.github.io/es/changelog/2.3.2"/>
        <updated>2016-09-16T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'don't close tabs' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'don't close tabs' version</em></p>
<p>circulosmeos:</p>
<ul>
<li class="">amuleweb cookies read behind a "lowercase" proxy (http/2 compliant)</li>
</ul>
<p>Dan64:</p>
<ul>
<li class="">Read AICH root hashes from binary eMuleCollection files</li>
</ul>
<p>gnazio:</p>
<ul>
<li class="">Fixed configure of libpng when sh != bash</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Allow any kind of file links in collections</li>
<li class="">Make UPnP log go to the appropriate category (#1681)</li>
<li class="">Use the C++ compiler to check for features we're about to use in C++ source files (#1572)</li>
<li class="">Adapt configure to handle subversion repository clones in mercurial and git</li>
<li class="">Fix bfd detection for systems missing -liberty</li>
<li class="">Add support for 'canceled.met' to the fileview tool</li>
<li class="">Implemented the missing 'show shared' command in amulecmd</li>
<li class="">Fix check for a valid locale config entry being done <em>after</em> the locale has been set</li>
<li class="">Fix Crypto++ detection routine happily using build library for host when cross-compiling</li>
<li class="">Fix bug #1711: Kad Info tab should display my own user ID</li>
<li class="">Fix wrong sized images in the priscilla skin</li>
<li class="">Fix bug #1423: Add the possibility to not create sparse files</li>
<li class="">Fix bug #1743: crash when importing part files</li>
<li class="">Review assertions in the eD2k and Kademlia code and remove those that could be triggered by a malformed incoming packet</li>
<li class="">Fix a possible uninitialized variable access and a definite memory leak in the UPnP code</li>
</ul>
<p>iz0bbz:</p>
<ul>
<li class="">Fix WinSock library version detection with MinGW-w64</li>
<li class="">Fix compilation with MinGW-w64</li>
</ul>
<p>kam:</p>
<ul>
<li class="">WebServer serves .json, .manifest and .appacache files</li>
</ul>
<p>Mr Hyde:</p>
<ul>
<li class="">Fix "Disable computer's timed standby mode" for MacOS 10.9 Mavericks</li>
<li class="">Compilation fix on Linux Slackware 64bit and MacOS 10.9.4</li>
<li class="">Fix configure on Mac</li>
</ul>
<p>sc0w:</p>
<ul>
<li class="">Add ability to use middle-click to close search tabs</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Display hashing progress in progress bars</li>
<li class="">Assertion from background thread now prints a message and not just closes the app</li>
<li class="">Backtrace (crash or assertion) is written to logfile</li>
<li class="">Fix: disabling protocol obfuscation broke Kad and triggered assertions</li>
<li class="">Fixed "Prompt on exit" preference</li>
<li class="">Fixed country flags for Turkish localization</li>
<li class="">Fixed loading of zipped IP filter (#1674)</li>
<li class="">Fixed showing of shared files to other clients</li>
<li class="">Fixed assertions in CFormat("%p") on 64 bit OS with wx 2.9</li>
<li class="">Boost Asio can now be used as networking layer instead of wxWidgets</li>
<li class="">Fixed memory leak when AICH hashing already known files</li>
<li class="">New download links for server list and nodes.dat (with gav616 and xosevp)</li>
<li class="">Projects for Visual Studio 2013 (which is now the preferred Win32 compiler)</li>
<li class="">Fixed build with wx 3.0 (including STL build)</li>
</ul>
<p>tgragnato:</p>
<ul>
<li class="">Fixed ASIO compilation with libcxx</li>
</ul>
<p>Tianming Xie:</p>
<ul>
<li class="">Fix for debian bug #795061: There is no rule to generate Scanner.h</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.3.1]]></title>
        <id>https://amule-org.github.io/es/changelog/2.3.1</id>
        <link href="https://amule-org.github.io/es/changelog/2.3.1"/>
        <updated>2011-11-11T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[btkaos:]]></summary>
        <content type="html"><![CDATA[<p>btkaos:</p>
<ul>
<li class="">Show if a client shares its file list in client view</li>
</ul>
<p>freddy77:</p>
<ul>
<li class="">Various optimizations of memory usage</li>
<li class="">Access files for reading/writing via mapped memory (with custom exception handling)</li>
<li class="">Fix download of files &gt; 1GB on ucLibc</li>
<li class="">Fix autogen.sh under Ubuntu</li>
<li class="">Fixed TCP obfuscation negotiation</li>
</ul>
<p>Gnucco:</p>
<ul>
<li class="">Add option to ed2k link parser to display links in emulecollection</li>
<li class="">Added test case for the CTag class</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Various fixes to new colour code</li>
<li class="">Allow user to select display of transfer rates</li>
<li class="">Extendable list-control settings save/load code</li>
<li class="">Drop assumption that last search keyword is a filename extension if length == 3</li>
<li class="">Instead of counting unicode characters in a Kad search now we use the UTF-8 byte count to determine whether the keyword is allowed or not</li>
<li class="">Use actual page size in mmap calls instead of a randomly selected number</li>
<li class="">Fix custom Crypto++ path not shown by configure</li>
<li class="">Make &lt;IMG&gt; tags in aMuleWeb HTML 4.01 conforming</li>
<li class="">Fix HTTP proxy authentication</li>
<li class="">Use -static for the tests too, when a static binary is requested to prevent configure succeed where compilation would fail</li>
<li class="">Configure now checks only for the tools and libraries needed for the selected components</li>
<li class="">Fix aMuleGUI looking for undefined switches</li>
<li class="">Fix the "blinking" in aMuleGUI's status line</li>
<li class="">Better reporting of Kad tag reading/parsing errors</li>
<li class="">Fix the unittests</li>
<li class="">Some code reorganization</li>
<li class="">Features/fixes ported from eMule:<!-- -->
<ul>
<li class="">Implement an alternate method to estimate the real user count in the Kad network, which is not based on our local routing table (0.49b)</li>
<li class="">Add double quote to word-boundary characters (0.50a)</li>
<li class="">Drop support for Kad 1.0 (0.50a)</li>
<li class="">Try to find the closest node alive (0.50a)</li>
<li class="">Fix a bug in Kad which would not enforce the search tolerance in certain cases (0.50a)</li>
<li class="">Change Kad to work better in small LANs (0.50a)</li>
</ul>
</li>
<li class="">Remove the unimplemented "Create backup for preview" option</li>
<li class="">Add variables to preview command like in user event commands</li>
<li class="">Disable 'Show all comments' in the file's context menu if there are no comments/ratings available</li>
<li class="">Enable renaming (completed) shared files</li>
<li class="">Proper handling of %-escaped UTF-8 sequences in ed2k:// URIs</li>
<li class="">Drop support for nodes.dat version 0</li>
<li class="">Fix issue #1621: 'ed2k links containing unicode characters will cause the filename to be truncated'</li>
<li class="">Fix issue #1634: Change charset to UTF-8 in amuleweb template</li>
<li class="">Fix installation with denoiser enabled</li>
<li class="">Add support for automake's --enable-silent-rules feature (original idea by Gerd78)</li>
<li class="">Improved CFormat and enabled reordering of arguments for translators</li>
<li class="">Several fixes and improvements for the sanity checker script</li>
<li class="">Fix bfd detection</li>
<li class="">Add year bumper script</li>
<li class="">Move statistics from config to statistics.dat</li>
<li class="">New preference setting to show application version on the title</li>
<li class="">Fix man page installation for several languages</li>
</ul>
<p>Greek:</p>
<ul>
<li class="">Part number is now an extra column in the download list</li>
<li class="">Improvements to preferences dialogs</li>
<li class="">Redesign skin selection</li>
</ul>
<p>Grunt:</p>
<ul>
<li class="">Sort downloads by time remaining now has shortest time on top and unknown on bottom</li>
</ul>
<p>jolz:</p>
<ul>
<li class="">Fixed file locking between ed2k and aMule on Windows</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Reworked user interface, separating download and upload views</li>
<li class="">Fix list double-buffering causing artifacts on refresh and when showing a context menu.</li>
<li class="">Fix indexes after removing GUI items</li>
<li class="">Fixes to Windows build</li>
<li class="">Allow compilation with wxCocoa</li>
<li class="">Replace Color.h by new class implementation MuleColour</li>
<li class="">Lower class overhead and use two-level cache for pens/brushes</li>
<li class="">Added aMuleCMD project for MSVC.</li>
<li class="">Fixed UnitTests and aMuleCMD in MSVC to use _CONSOLE subsystem.</li>
<li class="">Preferences changes</li>
<li class="">Fixed problem with uploading to lowid clients (szsuj)</li>
<li class="">Sorting lists (automatically or by user interaction) doesn't clear selection anymore</li>
<li class="">Fix client version display for MLdonkeys</li>
<li class="">Added Xcode project for MacOSX build</li>
<li class="">Fixed the centering of icons and text</li>
<li class="">Enable vertical toolbar orientation on WIN32 too</li>
<li class="">Option to resume next file alphabetically, keeping in mind categories and priority</li>
<li class="">Fixed crash when column gets removed</li>
<li class="">Show remote filename in source list</li>
<li class="">Fixed crash in upload thread on shutdown</li>
<li class="">Dynamic adjustment of threshold for rarity of download files</li>
<li class="">Option to prevent the computer from sleeping while downloading in MSW and MacOSX &gt;= 10.5</li>
<li class="">Mac fixes</li>
<li class="">Fixed "out of memory" crashes caused by wxWidgets - so wxWidgets 2.8.12 is required now!</li>
<li class="">Show warning dialog if "Change language" is selected and no languages are installed</li>
<li class="">Added backtrace support for MacOSX</li>
<li class="">Add locale support in the mac bundle with updated scripts (translations are now supported on MacOSX builds)</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">php prefix for lex/yacc</li>
</ul>
<p>LittleAbacus:</p>
<ul>
<li class="">Search results can now be sorted by "knownness" state.</li>
</ul>
<p>marcell:</p>
<ul>
<li class="">Fixed issue #892: Show data sizes &gt;= 1.0 GB with three digits.</li>
<li class="">Fixed search 'Stop' button not stopping Kad searches.</li>
<li class="">Check Kademlia search results against original criteria.</li>
<li class="">Allow Kademlia searches with repetitive keywords.</li>
<li class="">Allow adding current chat partner to friend list from tab's context menu.</li>
<li class="">Allow not downloading files via HTTP if the requested file is not newer.</li>
<li class="">Removed white boxes around file rating icons</li>
<li class="">Implemented public shared directory names only containing actually shared subfolders.</li>
</ul>
<p>morph:</p>
<ul>
<li class="">Patch to uniform and fix minor errors on man pages</li>
</ul>
<p>myth:</p>
<ul>
<li class="">Feedback from shared files - add number of clients on queue.</li>
<li class="">New stats server</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Fixed assertion when trying to preview files smaller than 256 K.</li>
</ul>
<p>Skolnick:</p>
<ul>
<li class="">Fixed autogen.sh for Bourne Shell</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Sort source list on opening and add file name to A4AF files</li>
<li class="">MSVC: optional GeoIP support</li>
<li class="">Faster progress bars with less overhead (without pens/brushes)</li>
<li class="">Show log messages in remote gui</li>
<li class="">More info in the Kad tab</li>
<li class="">Improved gaplist performance</li>
<li class="">Ported chat captchas (receive and send) and "Advanced Chat Spam Filter" from eMule</li>
<li class="">Allow download of multiple search results if search list is sorted by status (thanks to DarkNRG)</li>
<li class="">Fixed CFile::SetLength for large files</li>
<li class="">Reduce file handle usage by closing part files after idle time</li>
<li class="">Speed up selection of shared directories with many subdirectories, fixed red marking of folders with shared subdirectories</li>
<li class="">Ban clients that uploaded bad data (based on CorruptionBlackBox from eMule)</li>
<li class="">Support wxWidgets 2.9</li>
<li class="">amuled for Windows (with wx 2.9)</li>
<li class="">Friends get recognized in the friend list control even if their IP has changed</li>
<li class="">Don't kick friend upload, don't kick release prio uploads (unless they take more than half of the slots), and don't kick anybody else unless necessary (with GonoszTopi)</li>
<li class="">Fixed crash in remote gui when aMule exits</li>
<li class="">Added more media file types from eMule</li>
<li class="">Allow the user to cancel the app if Temp/Incoming is not found</li>
<li class="">Show downloads as shares in remote gui</li>
<li class="">MANY fixes/implementations for amulegui</li>
<li class="">amuleweb for Windows (with wx 2.9)</li>
<li class="">Show connected friends in blue in the friend list</li>
<li class="">Show total upload/download ratio in statistic tree</li>
<li class="">Fixed category administration in remote gui</li>
<li class="">Implement directory preferences in remote gui</li>
<li class="">MSVC build for alcc, wxCas</li>
<li class="">Fixed errors and crashes on parsing ED2K links with '/' in them</li>
<li class="">Configure option --enable-fileview</li>
<li class="">Bypass amulegui connection dialog with switch -s / --skip</li>
<li class="">Fixed Core Timer</li>
<li class="">Allow passing of ED2K links by command line to aMule, aMuled and aMulegui, making ed2k program obsolete</li>
<li class="">Don't ignore current category in amulegui when pasting a link</li>
<li class="">EC tools (amulegui, amulecmd, amuleweb) can use a local config dir now</li>
<li class="">Fixed crash in file system detection in Solaris</li>
<li class="">Fix: window size/position didn't get saved on some systems</li>
<li class="">More command line options for aMulegui</li>
<li class="">Allow webserver autostart on Windows</li>
<li class="">Fixed crash in "Out of space" user event handler</li>
<li class="">ALCC prints links to stdout now instead of stderr</li>
<li class="">Fixed memory exhaustion on high speed uploads Thanks to RRM for endless patience!</li>
<li class="">Fix: Language English was not recognized and so reverted to "System default" at any change</li>
<li class="">Fixed printf output (unicode2char()) on consoles incapable of UTF8</li>
<li class="">Keep a list of all canceled files (canceled.met) and show them in magenta in the search list</li>
<li class="">Update status/color of search results on events from outside the search window (like download started from EC) and in amulegui</li>
<li class="">Enable update of IP filter list through aMulegui and aMulecmd</li>
<li class="">Enable setting of "Check for new version on startup" through aMulegui</li>
<li class="">Fixed crash in CClientList::ProcessDirectCallbackList that had been around for ages (hopefully)</li>
<li class="">Fixed size of large files in aMuleweb's search results</li>
<li class="">Show completed downloads in aMulegui</li>
<li class="">Fixed international file names on Windows</li>
<li class="">Fixed hangup of EC connection in aMulegui</li>
<li class="">Fixed category deletion in aMuled</li>
<li class="">Fixed several crash bugs in Webserver</li>
<li class="">Improved memory usage, load time and speed of IP filter</li>
<li class="">Load IP filter in the background on startup</li>
<li class="">Show when a Kad search is finished in aMulegui (remove '!')</li>
<li class="">Fixed "pause/cancel/resume all" in aMulecmd</li>
<li class="">EC ZLIB compression can now be turned off in remote.conf with EC/ZLIB=0</li>
<li class="">Terminate HTTP downloads on exit</li>
<li class="">Projects for Visual Studio 2010</li>
<li class="">Fixed crash in http download</li>
<li class="">Speed boost for reload of shared files with large list of known files</li>
<li class="">Resolve MSVC compilation problem with separate strings in GUI</li>
<li class="">Fixed splitter bars in download and share view</li>
<li class="">Allowed creation of ED2K source links in KAD-only mode</li>
<li class="">Make friendlist in chat window resizable</li>
<li class="">Removed lag (caused by language pref) when opening preferences dialog</li>
<li class="">"Swap all A4AF to this (auto)" doesn't block sources with no needed parts any more</li>
<li class="">Don't lock up in an infinite loop if all servers are not resolvable or blocked by IP filter</li>
<li class="">Clients now always get uploaded a full chunk (removed setting)</li>
<li class="">Tell the user that changes of EC settings require a restart</li>
<li class="">Deleted and readded download now get shared</li>
<li class="">Speed improvement for upload queue, and clients never have same rank anymore</li>
<li class="">Fixed ed2k links where '|' has been replaced with '%7C'</li>
<li class="">Fixed multi line stdin redirected as batch into amulecmd</li>
<li class="">Allow enable/disable of IP2Country through GUI</li>
<li class="">"Clear completed" button now only clears downloads in current category</li>
<li class="">Completed downloads can be seen and cleared in amulegui</li>
<li class="">Bold lines in log window now for Windows too</li>
<li class="">Allow setting of friend slot from client list control</li>
<li class="">Fixed saving of splitter bar positions</li>
<li class="">Get rid of "clearlooks_style_draw_box_gap" messages in console</li>
<li class="">Fixed several crash bugs caused by deleted client objects</li>
<li class="">Fix a small memory leak in Kademlia code</li>
<li class="">Fix occasionally sending junk at end of packets</li>
<li class="">Fix child items in search result getting inserted in wrong positions</li>
<li class="">Shared files don't lose all information when they get renamed</li>
<li class="">Fixed crash bug with sources which are incompatible with our encryption setting</li>
<li class="">Allow passing of links &gt; 256 chars to amulecmd</li>
<li class="">Prevent flicker when sorting already sorted lists</li>
<li class="">Prevent creation of more than 99 categories, since that's the limit</li>
<li class="">Fixed saving of sort orders</li>
<li class="">Allow switching through files in file detail dialog</li>
<li class="">Improve performance when many small files are hashed</li>
<li class="">Fix: if a file had more than two copies shared it was hashed on every startup</li>
<li class="">Show directory in search list for "view shared files" searches</li>
<li class="">Safe writing of known.met and nodes.dat (don't overwrite existing until write is finished)</li>
<li class="">Show directory in search list for "view shared files" searches</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Unify copyright lines</li>
<li class="">Fixed clean and distclean targets for make</li>
<li class="">Various Updates in debian/ see debian/changelog</li>
<li class="">Added crash handling in command-line tools</li>
<li class="">Fix for autoconf-2.64.</li>
<li class="">Make amulecmd help command work without connection</li>
<li class="">New translation concept for manpages</li>
<li class="">KDE Plasma applet to show stats</li>
<li class="">Fix warnings with latest autoconf (2.67)</li>
</ul>
<p>woutermense:</p>
<ul>
<li class="">Fix 'break/continue [n]' PHP implementation</li>
<li class="">Allow multiple download links in webserver</li>
</ul>
<p>Wuischke:</p>
<ul>
<li class="">Simplify browser selection</li>
<li class="">Use DoIconize() for dclick on tray icon, too</li>
<li class="">Fix minimizing from tray icon</li>
<li class="">Add option to show chat messages in log</li>
<li class="">Add option to specify amuleweb binary location</li>
<li class="">Make EC authentication procedure more secure</li>
<li class="">Add support for categories to ed2k</li>
<li class="">Backup config file on shutdown</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Greek for his contributions to aMule's user interface.</li>
<li class="">btkaos for his important work finding the source of bugs.</li>
<li class="">myth for seeing when everyone else was blind and uncovering the grandfather of all fuck-ups</li>
<li class="">mirko.g for being so committed to compile aMule on Snow Leopard.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.6]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.6</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.6"/>
        <updated>2009-09-16T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[GonoszTopi:]]></summary>
        <content type="html"><![CDATA[<p>GonoszTopi:</p>
<ul>
<li class="">Fixed obfuscated server UDP communication.</li>
<li class="">Fixed cross-endian Kad node verification.</li>
<li class="">Fixed name conflict in builtin PHP parser.</li>
<li class="">Fixed configure finding unwanted Crypto++ installations.</li>
</ul>
<p>Marcell:</p>
<ul>
<li class="">Properly update transfers tab's bottom pane's title.</li>
</ul>
<p>mr_hyde:</p>
<ul>
<li class="">Fixed a bug in detecting and using the fallocate() function.</li>
</ul>
<p>Sam Hocevar:</p>
<ul>
<li class="">Now really fixed that security issue.</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Fixed HTTP download if server transmits no content-length</li>
<li class="">Fixed several cases of amulecmd printing zero on big endian machines</li>
<li class="">Fixed amuleweb crashing on tiny downloads</li>
<li class="">Added version resources to MSVC binaries</li>
<li class="">Fixed wrong search text in search dialog after deleting a tab</li>
<li class="">Fixed download limit in amuled (which was 50% of what was set)</li>
</ul>
<p>Wuischke:</p>
<ul>
<li class="">Fix amuleweb progress bar display for files &gt; 4GB</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">stefanero and his bleeding-edge system</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.5]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.5</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.5"/>
        <updated>2009-05-16T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[GonoszTopi:]]></summary>
        <content type="html"><![CDATA[<p>GonoszTopi:</p>
<ul>
<li class="">Fixed possible security hole when previewing filenames containing single quotes</li>
<li class="">Fixed default webserver port</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Fixed upload of the last part of a file which he broke in 2.2.4</li>
<li class="">Fixed setting speed limits from remote gui's tray icon</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">CroMag for pointing out the upload problem</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.4]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.4</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.4"/>
        <updated>2009-04-03T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[freddy77:]]></summary>
        <content type="html"><![CDATA[<p>freddy77:</p>
<ul>
<li class="">Plugged various memory leaks.</li>
</ul>
<p>FreeToGo:</p>
<ul>
<li class="">Add comment to desktop file to allow autostart in Gnome</li>
</ul>
<p>gabrielix:</p>
<ul>
<li class="">Compilation fix for gcc-4.3.2.</li>
</ul>
<p>Gaznevada:</p>
<ul>
<li class="">Compilation fix for IRIX.</li>
<li class="">Fixed file handles on IRIX.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed compilation of Format.cpp for some platforms.</li>
<li class="">Fixed wxWidgets socket library initialization.</li>
<li class="">Fixed partfile importer destroying imported data.</li>
<li class="">Separated GUI and core code in partfile importer, thus fixing occasional crashes/hangs.</li>
<li class="">Fixed GeoIP-enabled builds crashing on 64b boxes.</li>
<li class="">Added another common URN ID to the Magnet link handler.</li>
<li class="">Switch to the 'busy' cursor while bringing up the preferences window.</li>
<li class="">Ported several Kademlia fixes and improvements from eMule0.49c:<!-- -->
<ul>
<li class="">Fixes on handling incoming packets with port zero.</li>
<li class="">The Kad UDP firewalltest now asks several clients for its external port, avoiding to get a wrong "Open" state on NATs which change the source port on each request but behave like a Full-Cone otherwise.</li>
<li class="">Made sure a received Kad routing answer doesn't contain more contacts than requested. [Xin Sun]</li>
<li class="">Kad no longer allows more than 2 IPs from the same subnet within one routing query reply (except on LANs).</li>
<li class="">Kad routing query contacts are checked against the routing table.</li>
</ul>
</li>
<li class="">Implemented non-interactive mode for amulecmd/amuleweb.</li>
<li class="">Fixed detection of crypto++ library for versions &gt;= 5.6.0.</li>
<li class="">Fixed saving wrong window position when exiting while minimized.</li>
<li class="">Fixed rare case when we tried to connect to a LowID client.</li>
<li class="">MSW: detect WinSock API version needed by GeoIP.</li>
<li class="">Fixed libbfd sometimes depends on libintl, with help from PacoBell.</li>
</ul>
<p>iz0bbz:</p>
<ul>
<li class="">Fixed static linking with GeoIP on MinGW/MSYS.</li>
<li class="">Fixed detecting GeoIP library when building for MinGW.</li>
<li class="">Compilation fix for GeoIP-1.4.6.</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Fix crash on global search on Windows</li>
<li class="">Fix splitter bar position in transfer window not restored properly</li>
<li class="">Caught some insane upload requests</li>
<li class="">Fixed finished files sometimes getting rehashed (thanks to Skolnick)</li>
<li class="">Added restart warning if the ED2K network was re-enabled.</li>
<li class="">Fixed Windows lag when opening preferences dialog</li>
<li class="">Fixed creation of ED2K links with AICH (thanks to Archmage)</li>
<li class="">Remote Gui shows a dialog box with a reason on connection failure</li>
<li class="">Changed fix for wrong ordering/placing of clients in the download window so that sort order is again like in 2.2.2.</li>
</ul>
<p>Wuischke:</p>
<ul>
<li class="">Add Asturian language</li>
<li class="">Updated INSTALL file</li>
<li class="">When EC authentication fails, close connection before we send the response.</li>
<li class="">Tell the user why the EC connection failed.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">wires for the strenuous testing on 64-bit</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.3]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.3</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.3"/>
        <updated>2008-12-28T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Alfred:]]></summary>
        <content type="html"><![CDATA[<p>Alfred:</p>
<ul>
<li class="">Fixes to compile with Sun Studio 12.</li>
</ul>
<p>Gerd78:</p>
<ul>
<li class="">Fix for linking with a static bfd library.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed improper handling of EC connection failures.</li>
<li class="">Fix for shells not properly handling empty lists.</li>
<li class="">POSIX fixes in shell code.</li>
<li class="">Made not finding GeoIP non-fatal.</li>
<li class="">Check if --enable-geoip-static can be fulfilled.</li>
<li class="">Fixed loading of zipped ipfilter files. Thanks to CtrlAltDel for the investigation of the problem.</li>
<li class="">Fixed alc progress bar for files &gt;4GB.</li>
<li class="">Fixed #1056: amulegui: incorrect results when searching with min size &gt;= 4GB</li>
<li class="">Disable automatic sorting of dowload list while there is a pop-up menu or file detail dialog displayed.</li>
<li class="">MinGW compilation fix.</li>
<li class="">Fixed GTK crash on closing search tabs. Thanks to btkaos.</li>
</ul>
<p>LittleAbacus:</p>
<ul>
<li class="">Support multiple selections on CSearchListCtrl::OnMarkAsKnown().</li>
</ul>
<p>Skolnick:</p>
<ul>
<li class="">Fix alc and alcc to work with files bigger than 4GB</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Fix crash when last category was removed with a completed file in it</li>
<li class="">Fix wrong ordering/placing of clients in the download window</li>
<li class="">Fix available fileparts display for large files</li>
<li class="">Don't open server UDP socked if ED2K is disabled</li>
<li class="">Reordered preferences, disabled ED2K/UPnP prefs if ED2K/UPnP is disabled</li>
<li class="">MSVC: solution for MSVC 2008 Express edition, project for ed2k and fileview</li>
<li class="">Fix wrong file download rates in transfer window</li>
<li class="">Windows: fix broken core timer, use precise tickcount and so fix download limit</li>
</ul>
<p>Wuischke:</p>
<ul>
<li class="">Add checks to cas to prevent segfaults</li>
<li class="">Fix wxCas save file dialog for file types</li>
<li class="">Fix a buffer overflow error in cas</li>
</ul>
<p>Special Thanks to:</p>
<ul>
<li class="">btkaos and CtrlAltDel for their invaluable help in tracking off bugs.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.2]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.2</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.2"/>
        <updated>2008-08-08T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[bomj:]]></summary>
        <content type="html"><![CDATA[<p>bomj:</p>
<ul>
<li class="">Patch for alcc to improve usability</li>
</ul>
<p>Gaznevada:</p>
<ul>
<li class="">implement getopt_long in cas for systems which lack it</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixing denoiser</li>
<li class="">include <code>&lt;sys/types.h&gt;</code> before <code>&lt;regex.h&gt;</code> as by POSIX</li>
<li class="">Fix noinline in crypto for some systems</li>
<li class="">Fix display of ccache option</li>
<li class="">Add sources from search results for new downloads</li>
<li class="">Use output of gdlib-config for gd.h detection</li>
<li class="">Solaris mntent fix</li>
<li class="">wxMSW fix</li>
<li class="">Fix NULL pointer dereference</li>
<li class="">Fix for configure not using --with-geoip value in library check</li>
<li class="">Added pkg.m4 from pkg-config-0.23</li>
<li class="">Ported Kademlia Protocol Version 8 from eMule0.49b.<!-- -->
<ul>
<li class="">Kad now ignores multiple IDs pointing to one IP in routing request answers</li>
<li class="">When calculating the total user count, Kad now uses (if available) the real number of firewalled clients for the calculation instead a fixed value. This will take more effect when 0.49+ nodes become common</li>
<li class="">Kad no longer tries to add UDP firewalled (and therefore mostly unreachable) nodes into its routing table, reducing overhead and increasing reliability [Idea: Netfinity]</li>
<li class="">Optimized the Kad packettracking code to only track packets which we check later, to save resources</li>
<li class="">Fixed a bug which let Kad sometimes assume a Kad2 contact to be Kad1 after probing for both versions</li>
<li class="">Did first small step in dropping Kad1 support by not probing unknown Kad contacts for Kad1 anymore to save overhead. Kad1 clients will nevertheless still be work for now.</li>
<li class="">Several changes were made to Kad in order to defy routing attacks researched by University of Minnesota guys [Peng Wang, James Tyra, Eric Chan-Tin, Tyson Malchow, Denis Foo Kune, Nicholas Hopper, Yongdae Kim], in particular:<!-- -->
<ul>
<li class="">Kad contacts will only be able to update themself in others routing tables if they provide the proper key (supported by 0.49a+ nodes) in order to make it impossible to hijack them</li>
<li class="">Kad uses now a three-way-handshake (or for older version a similar check) for new contacts, making sure they do not use a spoofed IP</li>
<li class="">Unverified contacts are not used for routing tasks</li>
</ul>
</li>
<li class="">When reading a nodes.dat without any verified contacts (possible an old file version), aMule will assume all contacts to be verified to avoid slowing down the connecting process</li>
<li class="">Implemented a special nodes.dat file version suitable for mass distribution.</li>
</ul>
</li>
<li class="">Fixed not sending sources for clients that did not announce their part availability.</li>
<li class="">Fixed all list columns being disabled in case of invalid data in config file.</li>
<li class="">Fixed directory tree not available.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed: Incorrect SX packets sent, plus no reply to out-of-multipacket SX as a bonus</li>
</ul>
<p>MalaPraxis:</p>
<ul>
<li class="">Remap colours on Windows</li>
<li class="">Add resources</li>
<li class="">Fix wrong usage of CPath::IsOk which caused an infinite loop on Import</li>
<li class="">Fix wxTempFile usage for compressed IPFilter files</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Removed the dlopen() code from UPnP.cpp.</li>
<li class="">Added the m4 macro to test for libupnp.</li>
<li class="">Updated amule_build_install.sh to work with --with-libupnp-prefix.</li>
<li class="">Changed the UPnP code to allow the use of a service without having successfully subscribed to it. That should be enough to deal with some lazy router implementations.</li>
<li class="">Do not unregister if no service is found</li>
<li class="">Save the found service even if subscription has failed</li>
<li class="">Fix for initialization of "resultstr" in cryptopp.m4.</li>
<li class="">Fix for message "Duplicate partfile with hash..." in DonwloadQueue.cpp. It was using deleted corrupted data.</li>
<li class="">amule_build_install.sh now uses -a flag in unzip so that cryptopp files are properly converted from DOS text format.</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Scanner fix for MSVC compilation</li>
<li class="">Fixed crash when progress bar was resized to zero width</li>
<li class="">Fixed sharing of large files on Windows</li>
<li class="">Fixed free disc space check</li>
<li class="">Sanity check before writing nodes.dat - don't write it if there are less than 25 contacts</li>
<li class="">Download List sorted on startup</li>
<li class="">Splitter bar position in transfer window is restored again</li>
<li class="">Fixed a GDI resource leak for Windows</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Made possible to deactivate xas</li>
<li class="">Various Updates in debian/ see debian/changelog</li>
</ul>
<p>Wuischke:</p>
<ul>
<li class="">Show connection status in toolbar when changing skin, thanks to greek</li>
</ul>
<p>xor:</p>
<ul>
<li class="">Fix window resize problem on Mac OS X</li>
<li class="">Fix for packets being lost in EC communication. Fixes aMuleGUI not updating after a while.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.2.1]]></title>
        <id>https://amule-org.github.io/es/changelog/2.2.1</id>
        <link href="https://amule-org.github.io/es/changelog/2.2.1"/>
        <updated>2008-06-11T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Bas Zoetekouw:]]></summary>
        <content type="html"><![CDATA[<p>Bas Zoetekouw:</p>
<ul>
<li class="">Patch for debian bug #350396: "amule depletes entropy pool".</li>
</ul>
<p>brainnolo:</p>
<ul>
<li class="">Patch for loading the correct path for the UPnP libraries in Mac.</li>
<li class="">Added the binaries for libUPnP for Mac to the directory aMule.app/Contents/Frameworks.</li>
<li class="">Universal Binary ed2kHelperScript update.</li>
<li class="">avoid removing libupnp libs during initial cleanup (this would defeat bundling them) . It will now remove only libwx in the Frameworks directory (which are supposed to be from an old build).</li>
</ul>
<p>centaur:</p>
<ul>
<li class="">OpenBSD patch.</li>
</ul>
<p>Coronas:</p>
<ul>
<li class="">Patch to show kad status in amuleweb (Bug 1103)</li>
<li class="">typo in src/webserver/default/shared.php</li>
</ul>
<p>drkirkby:</p>
<ul>
<li class="">Test for gcc before including gcc specific flags on the compiler line.</li>
</ul>
<p>DLH:</p>
<ul>
<li class="">amulegui.xpm icon.</li>
</ul>
<p>EastWind:</p>
<ul>
<li class="">Patch to prevent overwriting of GDLIB_LIBS</li>
</ul>
<p>Gaznevada:</p>
<ul>
<li class="">IRIX compatibility patches</li>
<li class="">amuleweb php IRIX patches</li>
<li class="">Make 64-bit architecture check independant of _ABI64</li>
</ul>
<p>Gerd78:</p>
<ul>
<li class="">Added autostart-xas to rpm .spec files.</li>
<li class="">Patch for autoconf &gt;= 2.60.</li>
<li class="">Patch for redefinition of $(docdir) in docs/Makefile.am.</li>
<li class="">Patch for aMule .desktop files.</li>
<li class="">Added amulegui desktop icon (with Vollstrecker).</li>
<li class="">Patch for fixing aMule spec file in Fedora and Mandriva.</li>
<li class="">Test for perl File::Copy in configure.</li>
<li class="">Fix for building with _FORTIFY_SOURCE.</li>
</ul>
<p>Gnucco:</p>
<ul>
<li class="">Workaround for string serialization bug.</li>
<li class="">Workaround for aMule does not publish new files on kad.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Added ability to compile amulecmd without thread support in wx.</li>
<li class="">Fixed source seeds handling on startup.</li>
<li class="">Proper restoration of startup locale after checking available locales.</li>
<li class="">Fixed linkage with wxMSW.</li>
<li class="">Got rid of a few more warnings.</li>
<li class="">Fixed #929: configure: BUILD_CC uses CC's CFLAGS</li>
<li class="">Implemented #962: don't display (0) when not downloading from source</li>
<li class="">Fixed #954 - added ability turn IPFilter on/off for servers/clients independently.</li>
<li class="">Added support for magnet ed2k links.</li>
<li class="">Improve cross compilation</li>
<li class="">Fixed segmentation fault in amuled</li>
<li class="">Don't allow sources coming from .seeds to be cleaned up for a while after startup</li>
<li class="">Improve accuracy for ticks</li>
<li class="">Improve debug output</li>
<li class="">Don't add clients when shutting down</li>
<li class="">Added a simple (ascii) text file reader class</li>
<li class="">Sed denoiser - removes excessive messages from compilation - Thanks to Vollstrecker for the idea and discussions.</li>
<li class="">Drop path component from logged file names.</li>
<li class="">Fix for perl v5.8.8</li>
<li class="">wxCas compilation fixes for wxCVS</li>
<li class="">Doxyfile doesn't need to be installed, it's unusable without the sources.</li>
<li class="">Fixed #979: No win32 version information</li>
<li class="">Updated listctrl code to 2.8.7</li>
<li class="">Fixed a buffer overflow in TextFile.cpp</li>
<li class="">Cross-compilation fixes.</li>
<li class="">Some little optimizations on configure.</li>
<li class="">Re-categorized a number of strings whether they need translation or not.</li>
<li class="">Added plurals support.</li>
<li class="">Removed a number of unused leftover files from the repositiory.</li>
<li class="">Various fixes for wxMSW builds.</li>
<li class="">Made 'make dist' work.</li>
<li class="">Fixed 'make check' for subdirectory builds.</li>
<li class="">Fixed manpages install/uninstall script to handle correctly subdirectory builds and respect the --program-transform-* switches.</li>
<li class="">Fixed a minor bug in the denoiser script.</li>
<li class="">Fixed several portability issues in scripts.</li>
<li class="">Fixed keeping the preferences in sync with tray icon existance.</li>
<li class="">Removed a check that wasn't ever valid.</li>
<li class="">Fixed #651: Wrong expansion in statistics.</li>
<li class="">Fixed #1082: Events in preferences have layout problems.</li>
<li class="">Fixed debug categories being added multiple times to the checklistbox.</li>
<li class="">Fixed translations on MSW.</li>
<li class="">Languages are not sorted anymore, but displayed in their own name.</li>
<li class="">Fixed a number of gcc4 warnings.</li>
<li class="">Fixed amuleweb compilation on MSW.</li>
<li class="">Added checks for a POSIX compliant regex library.</li>
<li class="">Fixed #1289: amule fails to build on non glibc systems (e.g. uclibc)</li>
<li class="">Hungarian translation.</li>
<li class="">Allow generating feedback from shared files.</li>
<li class="">Ported Kademlia2.0 Protocol Version 7.</li>
<li class="">Fixed 'bad file descriptor' error on Mac.</li>
<li class="">Unittest for the Kademlia::CUInt128 class.</li>
<li class="">Added kademlia and obfuscation status to the client details.</li>
<li class="">Fix for bars positioned 1 pixel too low.</li>
<li class="">Added a small debug utility to display contents of mule files (kad only yet).</li>
<li class="">Fix for #1184; fixed both ed2k and kad searches for &gt;4GB files.</li>
<li class="">Proper detection and usage (if possible) of strerror_r()</li>
<li class="">Added English names to the language selector - for the curious ones.</li>
<li class="">Fixed some memory leaks.</li>
<li class="">Got rid of the deprecated HAVE_GETTEXT macros.</li>
<li class="">Added gettext support to amuleweb.</li>
<li class="">Added preferences option 'Allocate full size'.</li>
<li class="">Added crypt overhead to statistics, UDP only for now.</li>
<li class="">Added checks to prevent downloading large files to file systems not supporting them.</li>
<li class="">Added check for NetBSD systems.</li>
<li class="">Heavy rewrite of autoconf/automake stuff.</li>
</ul>
<p>gtoso:</p>
<ul>
<li class="">Fix for GeoIP crashing if the default GeoIP.dat file cannot be found.</li>
<li class="">Patch to find GeoIP.dat in the application bundle.</li>
</ul>
<p>Hermit:</p>
<ul>
<li class="">Patch for amulecmd history which ensures that when the same command is repeated several times in a row it only gets recorded in the history once.</li>
</ul>
<p>jcoy:</p>
<ul>
<li class="">Set download priority in amulecmd.</li>
</ul>
<p>ken:</p>
<ul>
<li class="">Fixed control-clicking (right-clicking) on tabs in notebooks on the Mac.</li>
<li class="">Compilation fix for MacOSX 10.3</li>
<li class="">Fixed a crashing bug with static initialization order</li>
<li class="">Ship the license as required by the GPL.</li>
<li class="">Fixes linking of embedded CryptoPP (on the Mac, if nowhere else).</li>
<li class="">Quick-n-dirty hack for stats graphs on the Mac.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Protocol Obfuscation (enabled by default)</li>
<li class="">Large file support (&gt;4GB)</li>
<li class="">Disabled auto-update of servers from clients and other servers by default.</li>
<li class="">Fixed a bug while getting sources for large files (&gt;4GB)</li>
<li class="">Fixed mldonkey_importer to work with mldonkey &gt;= 2.7.6</li>
<li class="">Improve exception handling</li>
<li class="">Added a column on client view that shows if the user has reported having disabled shared files.</li>
<li class="">Disable the "Show files" option in context menu if the user has reported having disabled shared files.</li>
<li class="">Add generic CTag classes support for Kad data types</li>
<li class="">Remove kad IO classes</li>
<li class="">Safety on memfiles created from packets</li>
<li class="">Fixed publishing and sending shared files requests</li>
<li class="">Fixed Unittest</li>
<li class="">Update audio and video types</li>
<li class="">Update EC to use the equivalent of VBT tags</li>
<li class="">Fix ID sending on hello packet to use the hybrid ID instead of plain ed2k id</li>
<li class="">Fix a bug on sending info to other clients on file list request</li>
<li class="">Upgrade lex generated code</li>
<li class="">Add the --reset-config flag</li>
<li class="">Modified getclosetsto() fix, originally by tatikiran</li>
<li class="">Changes to flex parsing of search expressions.</li>
<li class="">Fix several missing variable initializations</li>
<li class="">Swap bytes for int types in EC code</li>
<li class="">Lower reask times</li>
<li class="">Fix Memleak in ECSocket</li>
<li class="">Extend amulecmd with 'show log' and 'reset' command, originally by quinox, bug #856</li>
<li class="">Usage of HOSTCC for compile-time executions</li>
<li class="">Created translation status scripts</li>
<li class="">Move server packets to the back of the UDP queue if the server is still resolving a dynamic host</li>
<li class="">Script to wikify changelog</li>
<li class="">Separate ECTag from ECPacket</li>
<li class="">Fix crash on startup</li>
<li class="">Fix several rare memleaks</li>
<li class="">Fixes on Kademlia keyword store</li>
<li class="">Initial Kademlia 2 integration</li>
<li class="">Remove duplicated SendPacket functions in Kad</li>
<li class="">CPacket uses const CMemfile reference instead of pointer</li>
<li class="">Fix for (rare) bogus packets being send on kad</li>
<li class="">Fix for empty packets in Kad Search</li>
<li class="">Fixed server IP for EC</li>
<li class="">Don't destroy shareddir.dat on remote GUI, bug #945</li>
<li class="">Incorrect percentage displayed by amulecmd for files &gt; 4Gb, bug #949</li>
<li class="">Ask user to download server list when list is empty and ed2k active</li>
<li class="">Support automake 1.10</li>
<li class="">Reorganization of EC code</li>
<li class="">Added script to generate EC files for different programming languages (C#, Java and C++) from an abstract language</li>
<li class="">Dropped support for &lt; wx2.8.x (in case you want to blame someone)</li>
<li class="">Added remote gui datastructure for new classes.</li>
<li class="">Fixed compilation with wx2.9, also with disabled 2.6 comatibility.</li>
<li class="">Heavily modified IP2Country code. Proper names, guards, creation on the heap... etc.</li>
<li class="">Added script to create Kad nodes files</li>
<li class="">Fixes for emule-collection support</li>
<li class="">Added some sanity checks</li>
<li class="">Source links with crypt data support.</li>
<li class="">Fix Mac build</li>
<li class="">Remember kad and ed2k urls and restore them on restart.</li>
<li class="">Force conversion to be ISO8859 for tag names, obvious from the network standards. This also fixes Kad.</li>
<li class="">Changed the inheritance for the UDP sockets to include the encrypted layer</li>
<li class="">Fix for MuleGifDecoder issue</li>
<li class="">Windows fixes</li>
<li class="">Added OnO patch for Toolbar display.</li>
<li class="">Fixed validation of preferences items for wxWidgets 2.8.4</li>
<li class="">Fixed cryptopp version recognition on Mac.</li>
<li class="">Finish Protocol Obfuscation including GUI</li>
<li class="">Fix base for emsocket</li>
<li class="">Disable bison generation on Mac</li>
<li class="">Endian fixes</li>
<li class="">Fix compilation on wxCocoa</li>
<li class="">Make obfuscated state persistant</li>
<li class="">Change preferences order, add debug info</li>
<li class="">Fix getsources with large files</li>
<li class="">Add message on triggering new version</li>
<li class="">Fix spelling</li>
<li class="">Fix Windows compilation</li>
<li class="">Remove backups before moving logfile</li>
<li class="">Fix compilation</li>
<li class="">Fix for connecting to servers if encryption is required</li>
<li class="">Fix memleaks</li>
<li class="">Use proper base class</li>
<li class="">Remove unmaintained translations</li>
<li class="">Honour data root settings to remove warning</li>
<li class="">Make code compatible to MSVC</li>
<li class="">Fix to avoid losing packets</li>
<li class="">Avoid multi line strings in GUI to allow MSVC compilation</li>
<li class="">Fix wxIPV4address usage where amuleIPV4 is unnecessary</li>
<li class="">Change CVS string to SVN</li>
<li class="">Adjust MuleDebug</li>
<li class="">Fix file types due to overloads of EC</li>
<li class="">Moved browser preferences to "Browser/" section on config file.</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">Fix partcount not being set in remote gui</li>
<li class="">Use only one EC library with amuleweb</li>
<li class="">Fix LastSeenComplete</li>
<li class="">Fix for NonCurrentSources</li>
<li class="">Fix incorrect cookie parsing for amuleweb</li>
<li class="">Fix passing strings in EC</li>
<li class="">Lock webserver when serving images</li>
<li class="">EC implementation in C# (work in progress)</li>
<li class="">Fix preferences in amuleweb</li>
<li class="">Fix EC crashing webserver when new item added</li>
<li class="">GUI implementation in C# (work in progress)</li>
<li class="">Implementing split() call</li>
<li class="">Compilation fix for MuleGifDecoder</li>
</ul>
<p>LittleAbacus:</p>
<ul>
<li class="">Patch to show part file numbers.</li>
<li class="">set the search string to the search text of currently selected tab.</li>
</ul>
<p>magicamule:</p>
<ul>
<li class="">filtered off comments still affect rating</li>
</ul>
<p>MalaPraxis:</p>
<ul>
<li class="">Fixed some cases where the full IP of a new client would be shown incorrectly.</li>
<li class="">Added a "System Default" option to browser selection that uses wxWidget's capabilities.</li>
<li class="">Fix MSVC compilation errors</li>
<li class="">Don't use wxFile flush on Windows</li>
<li class="">Toolbar fixes to fix assert on Windows</li>
<li class="">Use better defaults for preferences</li>
<li class="">Simplified minimize/raise code, remember maxmimized status between sessions.</li>
<li class="">Make sure starting points are inside screen and sanity fixes</li>
<li class="">Fixes to view/restore, original function doesn't skip</li>
<li class="">Final fixes to Iconize()</li>
<li class="">Fix for broken native counter.</li>
<li class="">Change data types to clear warnings at /W4 on MSVC</li>
<li class="">Cleared MD5_ functions to use standard memset/memcpy</li>
<li class="">Cleared types, added asserts for debug, remove unused functions</li>
<li class="">More warnings cleared and more asserts</li>
<li class="">/W2 fixes on main MSVC project</li>
<li class="">Fix compilation of aMuleGUI</li>
<li class="">Enable compilation with wx 2.9</li>
<li class="">Fix Kad1.0 and Kad2.0 search types</li>
<li class="">Enable dynamic GUI reordering when networks are disabled</li>
<li class="">Disable packing of non-POD structures</li>
<li class="">Change structures with constructors to classes</li>
<li class="">Small MSVC fixes, major speedup and adjustment for networks</li>
<li class="">Don't use ++ to modify a var value if you assign to same var</li>
<li class="">Speedup for some classes as copying is unnecessary</li>
<li class="">Further fixes for VS</li>
<li class="">Fix notebook logs/info tabs display</li>
<li class="">Better macro use</li>
<li class="">Add MSVC solution and readme</li>
<li class="">Fixed bug on socket event GetResult(), MSVC fixes on files</li>
<li class="">Fixed direct callback for type 6 sources for Kad2.0</li>
</ul>
<p>morricone:</p>
<ul>
<li class="">Fix for wxwin.m4 not autodetecting wxBase.</li>
</ul>
<p>mr_hyde:</p>
<ul>
<li class="">Patch to enable Kad search with amulecmd.</li>
<li class="">Fix for some man pages have wrong name with --program-suffix.</li>
<li class="">Temporary fix for tarball configure.in using SVNDATE.</li>
</ul>
<p>Nodsu:</p>
<ul>
<li class="">Patch to make amulecmd cancel/pause/resume work with many files and file names.</li>
<li class="">Patch to enable preview in remote GUI.</li>
<li class="">Patch to create the magic string $file in previews. This string is replaced with the file name in the command line, in case it exists.</li>
<li class="">Patch to prevent amule compiled with --disable-nls from crashing.</li>
</ul>
<p>nvinay:</p>
<ul>
<li class="">Trivial issue with memset found using google codesearch which may affect only the debugging.</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Fix for crash in amulegui/DownloadListCtrl.cpp.</li>
<li class="">Upgraded <code>extern/listctrl.{cpp,h}</code> from wxWidgets cvs code.</li>
<li class="">Fixed some gtk2 warnings in extern/listctrl.cpp.</li>
<li class="">Fix for unhandled exception in new skinned toolbar code.</li>
<li class="">Coding style fixes.</li>
<li class="">Fix for server disconnection during global search.</li>
<li class="">No more wxARRAY's in amuleweb.</li>
<li class="">Fixed bug in mutex code in amuleweb (s_mutex_wcThreads).</li>
<li class="">No more wxARRAY's in aMule code.</li>
<li class="">Fixed bug in ECPacket.cpp: assignment inside assertion.</li>
<li class="">Changed CECSocket constructor to be exception safe.</li>
<li class="">Fix for invalid rectangle size on COScopeCtrl::PlotHistory().</li>
<li class="">Removed the default constructor for Kademlia contacts.</li>
<li class="">Fix for "get bwlimits" command in amulecmd always returning zero for maximum download value.</li>
<li class="">Added UPnP support.</li>
<li class="">Fix for crash in ECSocket.cpp.</li>
<li class="">FileDetailDialog:: now has more intuitive Apply, Ok, Cancel interface.</li>
<li class="">GUI to enter a specific bind IP in "Preferences-&gt;Connection-&gt;BindAddress".</li>
<li class="">Resurrected support for the tag FT_DL_ACTIVE_TIME in the met file. It's value, the download active time, can now be seen in the file details dialog.</li>
<li class="">Added the DLACTIVETIME variable to the list of replaced variables in the DowloadCompleted user event.</li>
<li class="">MuleTrayIcon.cpp was not compiling for <strong>WXMAC_CARBON</strong>. Seems to be fixed, but must be the code now has a lot of ifdefs and must be tested on other platforms.</li>
<li class="">Added two more events: "out of space in temporary partition" and "error upon completion".</li>
<li class="">Fixed a crash in amulegui when adding a new category.</li>
<li class="">Fixed a bug in amulegui, removing a category remotely did not update the category count in amule.conf, so the next time amule was run, the category was there again.</li>
<li class="">Fixed a bug in toolbar skins, the skin file was opened even when the checkbox "Use skins" was not checked.</li>
<li class="">Fixed a crash related to MuleGIFDecoder wx-2.8.0 when downloading the file IPFIlter.dat.</li>
<li class="">Fix for ECSocket.cpp, amulegui was crashing upon entry.</li>
<li class="">Fix for ClientDetailDialog in amulegui. Was showing incorrect IP / Server / Software version information.</li>
<li class="">Switch binding of UPnP libraries to use one digit version names instead of unversioned names.</li>
<li class="">Fix for crash in amuleweb when the image file did not exist.</li>
<li class="">UPnP add/delete port mappings are now done in every device found, instead of only the first one.</li>
<li class="">Creation of --enable-upnp/--disable-upnp configure flag.</li>
<li class="">Update of wxWidgets-2.6.3 deprecated code to version 2.8.2.</li>
<li class="">Fixed IPFilter.dat loading from a zipped file.</li>
<li class="">Added a termination process to wxExecute() calls, so that we no longer leave zombies.</li>
<li class="">CDirIterator now uses wxDir.</li>
<li class="">CheckDirExists() now uses wxDir::Exists().</li>
<li class="">CheckFileExists() now uses wxFile::Exists().</li>
<li class="">GetLastModificationTime() now uses wxFileModificationTime().</li>
<li class="">GetFileSize() now uses wxFile::Length().</li>
<li class="">UTF8_CopyFile() now uses wxCopyFile(). Later reverted for locale fixes.</li>
<li class="">UTF8_RemoveFile() now uses wxRemoveFile(). Later reverted for locale fixes.</li>
<li class="">UTF8_MoveFile() now uses wxRenameFile(). Later reverted for locale fixes.</li>
<li class="">theApp is now a global pointer, so that we can access the global application object from within a core file.</li>
<li class="">Partial fix for the COLORREF compilation problem on Windows.</li>
<li class="">Fix for libpng version detection on acinclude.m4. It was failing for strings like 1.2.15beta5 (e.g., debian 4.0 etch).</li>
<li class="">Fix for theApp variable usage in amulegui. It was not beeing initialized and amulegui was segfaulting.</li>
<li class="">Fixed the forum address in the backtrace print.</li>
<li class="">Applied Bas Zoetekouw's patch for debian bug #350396: "amule depletes entropy pool".</li>
<li class="">Implemented IP2Country using GeoIP.</li>
<li class="">When converting from multibyte to wide characters, ConvAmuleBrokenFileNames now tries UTF-8 first. If this fails, then it tries ISO-8859-1.</li>
<li class="">New directory based skin support, reworked Trevino's patch.</li>
<li class="">Fixed amuleweb crashes due to bug in ECSocket.cpp</li>
<li class="">Code to refresh port mappings in the event of a temporary router failure</li>
<li class="">Code to deal with previously unhandled UPnP events.</li>
<li class="">Fixed remote-gui segfault in UpdateStatsTree()</li>
<li class="">syscall_check is no longer a macro</li>
<li class="">Fixed a serious bug introduced by ENABLE_UPNP Makefile.am switch</li>
<li class="">Fix for libpng version detection on acinclude.m4</li>
<li class="">Fix for server list and node list</li>
<li class="">Made some common dialog modals and giving them a default style</li>
<li class="">Handle different UPnP library versions</li>
<li class="">UPnP for amuleweb.</li>
<li class="">Fix for crash on exit and a little less redundancy.</li>
<li class="">Trying to make listctrls behave on Mac.</li>
<li class="">Fix for CheckFreeDiskSpace(). Was probably returning ok if the directory where the file would be saved did not exist.</li>
<li class="">Fix for overflow in CPartFile::HashSinglePart() as reported by visualage.</li>
<li class="">Fix for overflow in CSharedFilesCtrl::DrawAvailabilityBar() as reported by a3linux, CtrlAltDel and stefanero. Special thanks to a3linux for the backtrace.</li>
<li class="">Improoved the macro CHECK_CRYPTO() in acinclude.m4.</li>
<li class="">Fix for the check of cryptopp library version in configure.in.</li>
<li class="">Rewrote the cryptopp m4 stuff.</li>
<li class="">Fixed some memory leaks related to the use of CTerminationProcess.</li>
<li class="">Fixed the usage of CryptoPP::Base64Encoder when creating the key pair for ClientCreditsList. cryptopp semantics is to give the ownership, so do not create objects like this on the heap.</li>
<li class="">Fix for amuled creating zombies. wxProcess does not work with wxBase.</li>
<li class="">wxProcess now receives OnTerminate() events in amuled.</li>
<li class="">Created a specialized termination process object for amuleweb, so that amule does not kill the web daemon if it has already died. This fixes a segfault upon exit.</li>
<li class="">Changed the amule_build_install.sh script to work with distro tarballs for release.</li>
</ul>
<p>pochu:</p>
<ul>
<li class="">Fix for subdirectory builds.</li>
</ul>
<p>Radek:</p>
<ul>
<li class="">Patch to fix windows compilation.</li>
</ul>
<p>Raziel:</p>
<ul>
<li class="">Adapt Kad code to the standard coding guidelines.</li>
<li class="">Work on EC API</li>
</ul>
<p>spiralvoice:</p>
<ul>
<li class="">Patch to enable MLDonkey os_info support.</li>
</ul>
<p>Skolnick:</p>
<ul>
<li class="">Added the time to the aMule stats in the wxCas window and in the generated image.</li>
<li class="">Added the time to the aMule stats in the cas output and in the generated image</li>
<li class="">Added option to generate image in JPG format (along with PNG)</li>
<li class="">Added new icon for aMule</li>
</ul>
<p>Stu Redman:</p>
<ul>
<li class="">Fix for Transferred / Completed not updated in remote GUI.</li>
<li class="">Fix for PARTSIZE not being 64 bits. Enums are always 32 bits, even if we use a 64 bit constant to initialize it.</li>
<li class="">ratings/comment marks are now shown in the main transfer window of the remote-gui (the little colored !! on the left).</li>
<li class="">comments are now updated when comment packets arrive (not only when the show comment dialog is open).</li>
<li class="">remote names are now updated once on startup. So there is no more 3s lag until the names are shown when the dialog is opened for the first time.</li>
<li class="">ED2K/Kad User/Filecount is now shown in the remote-gui status bar and on the Kad Tab.</li>
<li class="">Fix for crash on receiving zero-sized UDP packet.</li>
<li class="">New BarShader code.</li>
<li class="">Sparse partfiles on Windows.</li>
<li class="">Fix for zlib detection with an optimizing compiler on configure.</li>
<li class="">Made all part-status bars look the same.</li>
<li class="">File names in file detail dialog can be scrolled without messing up the list control</li>
<li class="">Fix for copy constructor</li>
</ul>
<p>Tiziano Müller:</p>
<ul>
<li class="">Fixed compilation when --enable-geoip is used in conjunction with the ld-flag "--as-needed".</li>
</ul>
<p>Trevino:</p>
<ul>
<li class="">Fix for "Both the Unknown client icon and the Unknown status
icon points to the same file" issue.</li>
<li class="">Skin support with relative paths.</li>
</ul>
<p>visualage:</p>
<ul>
<li class="">Fix for aMuleWeb unicode search/download link error.</li>
<li class="">Fix for aMuleWeb segfault when refreshing too frequently.</li>
<li class="">Fix for regular expression in aMuleWeb-PHP/split function.</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Added possibility to give the path for output right with
-p or -o in cas.</li>
<li class="">Changed cas to use getopt_long.</li>
<li class="">Added --config-dir and -c option to cas.</li>
<li class="">Added alias -H --html to cas.</li>
<li class="">Added alias -P --picture to cas.</li>
<li class="">Added --config-dir and -c option to ed2k.</li>
<li class="">Added --config-dir option to amuled.</li>
<li class="">Fixed typos in the man pages.</li>
<li class="">Added manpage for amulegui.</li>
<li class="">Added amulegui desktop icon (with Gerd78).</li>
<li class="">Manpages update.</li>
<li class="">Add debian folder.</li>
<li class="">Correct use of libcrypto &gt;= 5.5 and update of debian-dir.</li>
<li class="">Added Option to use generic ipfilter.dat.</li>
<li class="">Made possible to select which translations get build and installed.</li>
<li class="">Install only manpages in requested Langs.</li>
</ul>
<p>wuischke:</p>
<ul>
<li class="">Add emulecollection support on aMule ED2K Links Handler</li>
<li class="">Fix online signature update rate</li>
<li class="">Fix display of filesize &gt; 4GB in file detail dialog</li>
<li class="">Fix toolbar import/about icon order</li>
<li class="">Add option to load emulecollection in SharedFilesCtrl</li>
<li class="">Add oga and ogv extension for file type search</li>
<li class="">Allow skin/webserver template section via wxchoice + skin enhancement</li>
<li class="">Some error messages rephrased, to improve readability</li>
<li class="">Fix idle mode for UBT</li>
<li class="">Fix Ctrl+a in MuleListCtrl</li>
<li class="">Replace (f)lex by $(LEX) in Makefile.am files</li>
<li class="">Fix libUPnP unloading.</li>
<li class="">Fix building with external CryptoPP</li>
<li class="">Ship skins with tarball</li>
<li class="">Convert skins shipped with aMule to new format</li>
<li class="">Display file size in human readable format in FileDetailDialog</li>
<li class="">Make SVN compile again</li>
<li class="">Some skin code improvements</li>
<li class="">Added upload feedback</li>
<li class="">Added option to enable EC and set pass in amuled</li>
<li class="">bugfix for ec-config option</li>
<li class="">Removed GetLocaleDir()</li>
<li class="">Zipped skin format</li>
<li class="">Fix utf8 problem with file names</li>
<li class="">Fixed toolbar display with skins when blinking on incoming message</li>
<li class="">Fix #1114, missing break statement, thanks to mr_hyde</li>
<li class="">Add option to filter file comments</li>
<li class="">Allow compilation against wxBase</li>
<li class="">Remove Source Dropping</li>
<li class="">Allow usage of local config dir</li>
<li class="">Display log message in bold when using local config dir</li>
<li class="">Extend range for slot allocation, change default value</li>
<li class="">Change Kb to KB</li>
<li class="">Suppress skin directory error</li>
<li class="">Add Upload feedback</li>
<li class="">Fixed GetFeedback</li>
<li class="">Correct some spelling mistakes</li>
<li class="">Always use SecIdent</li>
<li class="">Re-Add option to disable SUI</li>
<li class="">Fix sharing files with extended characters</li>
<li class="">Fix utf8 problem with file names</li>
<li class="">Mark cancelled/removed files grey in search</li>
<li class="">fix search colors implementation</li>
<li class="">Add maintainercleanfiles for make distclean</li>
<li class="">Fix comment icon order and use unitary width for display</li>
<li class="">Fix rating display in SearchListCtrl</li>
<li class="">Fix permission check on Vista</li>
<li class="">Fix compilation with mingw</li>
<li class="">Check for and use SVNDATE in tarballs</li>
<li class="">Move include up to allow compilation on mingw</li>
<li class="">Fix compilation with mingw32</li>
<li class="">Fix compilation on Mac</li>
<li class="">Fix compilation in ClientListCtrl.cpp</li>
<li class="">Fix linking on Windows/mingw32</li>
<li class="">Fix linking of amulegui for Windows</li>
<li class="">Fix problems with collections using CRLF line endings on *nix</li>
<li class="">Fix compilation for gcc 4.3</li>
<li class="">Dirty compilation fix for gcc 4.3</li>
<li class="">Fix compilation on OpenBSD (and probably other Unix)</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Renaming the SearchList typedef to CSearchResultList</li>
<li class="">Splitting CSearchFile out from SearchList.* to SearchFile.*.</li>
<li class="">fix initialization of member variables in CSearchFile when creating on remote gui.</li>
<li class="">Call GetLength safely when sharing files</li>
<li class="">Added support for child results to CSearchListCtrl</li>
<li class="">Major cleanup of CSearchList</li>
<li class="">Add logger target for the thread-scheduler</li>
<li class="">Add smart pointers CScopedPtr and CScopedArray</li>
<li class="">Fix possible crash due to pending events</li>
<li class="">Fix accessing empty list in CMuleListCtrl</li>
<li class="">Add support for displaying large files with CBarShader</li>
<li class="">Improved sanity checking and simplified exception-handling via CScopedPtr and CScopedArray.</li>
<li class="">Major reworking of threads, add a thread scheduler for IO intensive tasks, improve thread-safety for AICH-sync thread</li>
<li class="">Fix FileIO unittests and add test of const CMemFile objects</li>
<li class="">Update AICH from eMule-0.47a Beta1</li>
<li class="">fix positioning of individual frames</li>
<li class="">Improved exception handling</li>
<li class="">Updating the FindMatchingClient function</li>
<li class="">Avoid dangling pointers in case of asserts failing</li>
<li class="">Updating CFormat to properly handle 64b ints on all platforms</li>
<li class="">Fixing CFile::GetAvailable if position is past EOF</li>
<li class="">Fixed possible use of uninitialized variables</li>
<li class="">Adding template function for freeing the contents of a list/map</li>
<li class="">Remove CList</li>
<li class="">Fixing a couple of infinite loops</li>
<li class="">Fixes file completion under amuled</li>
<li class="">Add locking to the ED2KLinks file</li>
<li class="">Removed multiple macros for array size</li>
<li class="">Removed the CMD4Hash from wxString constructor</li>
<li class="">Add swap function to CRangeMap</li>
<li class="">Reworking of the notify-code</li>
<li class="">Optimized and simplified adding of shared files to the listctrl</li>
<li class="">Remove partially copied files when a UTF8_CopyFile fails.</li>
<li class="">Drop the file/directory permission settings, use umask instead.</li>
<li class="">Fixed loading of version information for servers. Previously the information saved in the servers.met file was ignored.</li>
<li class="">Fixed problem with reading ST_AUXPORTSLIST tags for servers, where empty tags would cause the existing server-port to be overwritten, thereby preventing connections to that server.</li>
<li class="">Fixed linking of libmuleappcommon, which would previously include GUI related symbols, thereby breaking amuled in some cases.</li>
<li class="">Added fuzzy sorting method for strings, currently only used for sorting server-version information.</li>
<li class="">Fixed sorting of the "Static" column on the server-list, which didn't conform to 'strict-weak ordering'.</li>
<li class="">Added missing catch-statements in places where subclasses of CSafeDataIO was used, thereby preventing crashes in case of funky files/filesystems, such as network drives only supporting up to 2GB files. (closes bug #878 and #1205).</li>
<li class="">Fixed opening of the Help-page when modifers were applied to F1, which was causing conflict with various system-wide shortcuts (this closes bug #1200).</li>
<li class="">Used -isystem to mark wxWidgets and Crypto++ include files as system-files, thereby reducing the number of warnings generated by these includes.</li>
<li class="">Fixed the shared-files-list ctrl assuming that all items were part-files when creating feedback, which could cause wrongful casts of CKnownFile objects.</li>
<li class="">Changed from using signed longs to store pointers in wxListCtrl, to using wxUIntPtr, which is guranteeded to be able to contain pointers on all platforms.</li>
<li class="">Fixed unicode-chars not being registered by key-events for wxListCtrl (applied to our local copy).</li>
<li class="">Fixed various problems with using arrow-keys and other control-keys on the listsctrls in aMule.</li>
<li class="">Fixed checks for changes in .part files between runs, which previously was entirely broken (checked both wrong timestamps and files).</li>
<li class="">Fixed saving AICH-hashsets to an empty file, where buggy sanity-checks were causing the result to be discarded.</li>
<li class="">Improved the CreateHashFrom* functions, preventing the hashing of empty files, and accessing an empty vector.</li>
<li class="">Added a workaround for a bug in wxNotebook, which would cause the selection returned in page-changed events to sometimes be invalid, thereby causing aMule to crash when attempting to access an non-existing page. This should fix some crashes assosiated with closing search-result tabs.</li>
<li class="">Dropped the internal Crypto++ libraries. Most distros have it these days, and it's just another headache for us to support (and was becomming pretty outdated).</li>
<li class="">Improved checks for NULL points in CClientListCtrl.</li>
<li class="">Fixed some poor english in various logging messages.</li>
<li class="">Improved thread-safety in various classes, in part because wxString isn't threadsafe, and we use that class a lot.</li>
<li class="">Added support for writing 64-bit ints in CTags, which was needed for some server-packets.</li>
<li class="">Improved debugging-information support in CTag.</li>
<li class="">Fixed saving/loading of 64-bit ints for Kademlia, which were sometimes sent as binary blobs. Previously, we would read from the net and save them to 'src_index.dat' just fine, but would fail when it came to reading them from 'src_index.dat', resuling in that file being unreadable.</li>
<li class="">Fixed the corruption of some tags (mostly Kademlia), where the tag-names were wrongly saved as UTF-8, though they should have been saved unchanged. This closes bug #1188.</li>
<li class="">Applied various fixes to better conform to ANSI-C++.</li>
<li class="">Fixed repeating of CPPFLAGS when compiling with GeoIP enabled, which caused problems when -pedantic was used.</li>
<li class="">Fixed a couple of small memory-leaks in UPnP (bug #1230).</li>
<li class="">Added the "printf" attribute to printf-like functions in the webserver code, allowing for compile-time error-checking.</li>
<li class="">Fixed potential crashes that would result from server connection attempts that timed out before the hostname lookup returned.</li>
<li class="">Worked around crash in the taskbar icon, which would trigger if the kicker crashed.</li>
<li class="">Fixed safehash-check for files greater than 4GB.</li>
<li class="">Added support for pretty-printing of classes to CFormat.</li>
<li class="">Added a class for the transparent handling of paths, needed because we want to be able to handle both mangled (saved in the wrong locale) and normal filenames. This should fix problems with accessing files with extended chars in the filename.</li>
<li class="">Added warning in case port could not be bound to the hostname specified in the preferences.</li>
<li class="">Made outbound connections use the hostname specified in the preferences. Is possibly not fully functional.</li>
<li class="">Fixed memory-leak when adding invalid ED2K links.</li>
<li class="">Fixed crash when the hashing-result from a now deleted part-file was returned.</li>
<li class="">Allow the update of the server-list from the remote gui.</li>
<li class="">Optimized file-syncing, by only flushing the file contents, rather than the meta-data (timestamps, etc).</li>
<li class="">Fixed possible redefinition of the VERSION define.</li>
<li class="">Fixed redundancy resulting from the use of two different list of file-extensions, used when determining the filetype.</li>
<li class="">Dropped support for importing configuration files, and the like, from older eDonkey and *Mule clients, as most of these were extremly old.</li>
<li class="">Re-added double-buffering for listsctrls, in a manner that should hopefully avoid the problems seen previously.</li>
<li class="">Fixed missing unicode-convertion on a number of packets when sending to unicode-enabled clients.</li>
<li class="">Fixes passing of the error-code to OnReceiveError in CMuleUDPSocket::OnReceive.</li>
<li class="">Improved handling of invalidated (closed) UDP sockets, caused by the fact that wxWidgets errorously treats empty datagram packets as EOF.</li>
<li class="">Fixed setting priorities for part-files on the remote gui (this resolves bug #1251).</li>
<li class="">Improved debugging information when using CFormat.</li>
<li class="">Rewrote the CTextFile class, improving the reading speed, and adding the functionality for writing files.</li>
<li class="">Improved sanity-checks in the CQueuedData class, thereby preventing the possibility of memory-corruption resulting from mangled packets.</li>
<li class="">Added autoconf check for broken exception-handling.</li>
<li class="">Added subclass of Cfg_Str for loading/saving paths.</li>
<li class="">Added functions for checking permissions of dirs/files, and for retrieving the free space at a given location, to CPath.</li>
<li class="">Increased minimum free size needed before writing ".met" files from around 5KB to 100KB, as ".met" can easily be much larger than 5 KB in size.</li>
<li class="">Improved checks for permissions of directories, and insured that the fallback directories are also checked in the case were the user-specified directories are inaccessible.</li>
<li class="">Changed temp/incomming dir variables to "CPath"s, using the previously added Cfg_Path class.</li>
<li class="">Fixed spurious warnings caused by not checking if certain preference files existed before trying to read them. Also removed an unnessesary warning for when known.met doesn't exist.</li>
<li class="">Added wrapper-class for wxThread, to allow us to safely terminate joinable threads without using Delete, a function that is only intended for use with detached threads.</li>
<li class="">Fixed cancelled downloads being reported as succesful.</li>
<li class="">Fixed warning about dirs without shareable files, in the case where there were sharable files, but they were all duplicates.</li>
<li class="">Added support for saving directories (shared, incoming, etc) as well as the filenames of known files in an locale-independant manner, so that changes in locale does not affect our ability to find previously used files or directories. This will break backwards compatibility when using unicoded directory-names.</li>
<li class="">Fixed the search-string being cleared when starting the first search.</li>
<li class="">When starting a search, the entire search string is selected.</li>
<li class="">Fixed creation of ED2k-links with an AICH-hash, in case the file does not actually have a AICH-hash. Also disabled the option in the shared-files window when the file lacks an AICH hash.</li>
<li class="">Removed workarounds for old (and resolved) wxWidgets bugs.</li>
<li class="">Fixed creation of ED2K links without sources, where an superflous "|/" would be appended to the end of the link.</li>
<li class="">Fixed handling of spaces when creating ED2k links.</li>
<li class="">Fixed swapped notify-functions, which caused deleted client-objects to be left on the upload-queue on the GUI.</li>
<li class="">Improved enabling/disabling of items on the right-click menu on the download queue. Among other things, it is now possible to stop a paused download, without having to restart it first. This closes bug #1078.</li>
<li class="">Fixed the setting of priorities for shared files via the remote GUI. This resolves bug #1267.</li>
<li class="">Fixed clipping issues when columns are resized to very small width, causing the contents of one column to be drawn on top of the next column. This closes bug #1171.</li>
<li class="">Fixed copying of text to the clipboard, which previously used the "primary" clipboard (middle-click) under X11. It now uses the default clipboard, which is what DEs typically use for Ctrl+C/V/X. This resolves bug #1139.</li>
<li class="">Improved the displaying of the connection status, and fixed problems where the status of only one of the active networks would be displayed. This resolves bug #981.</li>
<li class="">Fixed percentage display of available parts in the file-details dialog, where the decimal portion of the value would always be zero. This resolves bug #1060.</li>
<li class="">Improved thread-safety of the AICH-sync thread on amuled, and prevented the possibility of deadlocks in a few cases.</li>
<li class="">Fixed bug where the preferences dialog on the monolithic client would not be updated, if the preferences had been changed via EC after the dialog had been first shown.</li>
<li class="">Added support for protocol-obfuscation configuration via the EC protocol.</li>
<li class="">Fixed problem where obfuscation of out-going connections could be enabled even if obfuscation support was not, leading to clients being wrongly dropped.</li>
<li class="">Fixed check-boxes in the preferences dialog for the various obfuscation options not being updated, when one of the other obfuscation check-boxes were checked/unchecked.</li>
<li class="">Added the ability to update the nodes.dat file, and bootstrap from specific IPs,  when using the remote GUI.</li>
<li class="">Added saving/loading of the previous URLs for the server.met and the nodes.dat files, when using the remote GUI.</li>
<li class="">Allow for the creation of ED2k-links on the remote gui. This resolves bug #893, #567 and #584.</li>
<li class="">Fixed link-creation for kad-only clients.</li>
<li class="">Fixed drawing of the grid for statistics-graphs on wxMAC.</li>
<li class="">Reduced needless offscreen drawing of statistics-graphs.</li>
<li class="">Fixed possibility of misordered points on statistics-graphs.</li>
</ul>
<p>xor:</p>
<ul>
<li class="">Fix for crash on amuled when starting up kademlia.</li>
<li class="">Fix for crash when creating backing bitmaps for graphs.</li>
</ul>
<p>ycjhi:</p>
<ul>
<li class="">fix for OSX aMule-CVS-20071115 fails in loading libixml and libupnp.</li>
<li class="">fix for aMule-CVS-20071115 doesn't update server.met on startup.</li>
</ul>
<p>Special Thanks to:</p>
<ul>
<li class="">GeVauDan and gulp for their incredible 'litoral' webserver skin.</li>
<li class="">FreeToGo for implementing the first version of IP2Country on the forum.</li>
<li class="">Mark James (<a href="http://www.famfamfam.com/" target="_blank" rel="noopener noreferrer" class="">http://www.famfamfam.com</a>) for providing the flags icons and mischamajskij for his unknown icon</li>
<li class="">deloun and mischamajskij for their work on aMule skins and icons for aMule</li>
<li class="">Dimitrios Galanakis for his work on language improvements</li>
<li class="">Bun Bun, for being there to tell me I'm not stupid.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.1.3]]></title>
        <id>https://amule-org.github.io/es/changelog/2.1.3</id>
        <link href="https://amule-org.github.io/es/changelog/2.1.3"/>
        <updated>2006-06-11T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'We missed the 6/6/6 devil release and we're very sad' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'We missed the 6/6/6 devil release and we're very sad' version</em></p>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed windows compilation, that was still broken.</li>
<li class="">Fixed locale bug. See <a href="http://forum.amule.org/thread.php?threadid=10178&amp;sid=" target="_blank" rel="noopener noreferrer" class="">http://forum.amule.org/thread.php?threadid=10178&amp;sid=</a></li>
</ul>
<p>ken:</p>
<ul>
<li class="">Fixed control-clicking (right-clicking) on tabs in notebooks on the Mac.</li>
<li class="">Fixed SmartLowID checks based on a patch/report by eyalzo.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed GonozsTopi's fix for locale bug (double init).</li>
<li class="">Added script to import mldonkey downloads into aMule.</li>
<li class="">Fixed "0000867: French traduction is uncorrect grammatically".</li>
</ul>
<p>rene06:</p>
<ul>
<li class="">Allow amulecmd to execute a global, local or kad search. Then you can get the results, which are shown in a list. From that list you can choose one file to download.</li>
</ul>
<p>Special Thanks to:</p>
<ul>
<li class="">Me, because I'm the only one bothering to compile the changelogs. Go me!</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.1.2]]></title>
        <id>https://amule-org.github.io/es/changelog/2.1.2</id>
        <link href="https://amule-org.github.io/es/changelog/2.1.2"/>
        <updated>2006-03-28T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'We're on fire!' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'We're on fire!' version</em></p>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed some warning messages.</li>
<li class="">Fixed windows compilation.</li>
<li class="">Fixed compilation in release mode.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed initialization of Partfile, Server and Knownfile objects on remote GUI. This fixes a good bunch of bugs, including but not limited to:<!-- -->
<ul>
<li class="">0000741: the total speed possible is incorrect.</li>
<li class="">0000774: Amulegui show comments -&gt;segmentation fault.</li>
<li class="">0000605: Incorrect ICH statistics data</li>
<li class="">0000812: amulegui: wrong ed2k ports in server list</li>
<li class="">0000776: amulegui segfaults</li>
</ul>
</li>
<li class="">Fixed potentionally huge memory leak on EC. This is the main focus of this release, but that didn't stop us from adding more stuff ;)</li>
<li class="">Fixed "0000809: Amulegui: Changing toolbar orientation shows the Import button."</li>
<li class="">Reworked core/GUI comment handling to allow for future display of comments on remote GUI, and meanwhile, added an nice message to notify it's disabled.</li>
<li class="">Fixed "0000738: Set search type to KAD if only KAD is selected as usable networks in settings"</li>
<li class="">Fixed amule.conf not being saves on remote preferences change.</li>
<li class="">Fixed ping time on servers, down to msecs resolution now.</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">Prevent bad_alloc thrown on invalid connection attempts on EC.</li>
<li class="">Adding support for 64-bit filesize to webserver and php</li>
</ul>
<p>lionel77:</p>
<ul>
<li class="">Display "Share Ratio" in shared files list.</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Compilation fix for <code>auto_ptr&lt;&gt;</code> on Mac.</li>
<li class="">Fixed crash on amulegui when exiting.</li>
<li class="">Fix for CheckDirExists() for empty directory string.</li>
<li class="">Slightly more informational error message in amuleweb when the template is not found.</li>
<li class="">Fix for bug in ReadyPath() function.</li>
<li class="">Create a backup of the log file upon init.</li>
<li class="">Added SOCKS4a support.</li>
</ul>
<p>TimDzang:</p>
<ul>
<li class="">Fix for wrong filename string in IPFilter.dat.</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Added check if locale could be set, before adding the language to the options dialog.</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Ensured that partial files left from failed file-completion attempts would be removed.</li>
<li class="">Fixed crash on remote gui when attempting to reload the ipfilters.</li>
<li class="">Fixed sorting of servers by ping-time, such that servers without a known pingtime are sorted last.</li>
<li class="">Added a "Password incorrect" message to the login pages, for when login failed. Also added a warning in case no passwords were set.</li>
<li class="">Ensured that known-file objects are properly initialized on the remote gui. This among other things fixes not all of the items on the sharedfiles list showing a 'has-comment' flag.</li>
<li class="">Compilation fix for GCC 3.2.</li>
<li class="">Fixed CheckDirExists not working for root-paths (on both windows and linux) and not handling all types of path-separators on windows.</li>
<li class="">Fixed security problems with aMuleWeb:<!-- -->
<ul>
<li class="">All images could be accessed, even when not logged in, and this included dynamically generated images, such as progress bars and graphs, resulting in various information leakage.</li>
<li class="">It was possible to craft an URL such that any image on the harddisk would be returned, provided that the full path was known. File types were decided by the filename extension and included 'gif', 'jpg', 'ico', 'png', 'bmp' and 'jpeg'.</li>
<li class="">When logged in, it was possible to craft an URL such that any html or php file on the harddisk would be returned, provided that the full path was known. File types were decided by the filename extension and included 'html' and 'php'.</li>
</ul>
</li>
<li class="">Decreased the minimum value for Max-Connections in the preferences dialog to 5.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">The usual people</li>
<li class="">From Kry: to the one that makes it all worth it.</li>
<li class="">quinox, for helping us find the security hole in aMuleWeb.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.1.1]]></title>
        <id>https://amule-org.github.io/es/changelog/2.1.1</id>
        <link href="https://amule-org.github.io/es/changelog/2.1.1"/>
        <updated>2006-03-18T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'There can be only two! Point one! Point one!' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'There can be only two! Point one! Point one!' version</em></p>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed sources coming from an 'Unknown' origin.</li>
</ul>
<p>ken:</p>
<ul>
<li class="">Fixed Mac aMule showing erroneous version number in Get Info.</li>
<li class="">Disabled the HTTP download progress dialog on Mac (again) because it causes crashes.</li>
<li class="">Suppressed an error dialog on failure to lookup the host's domain name.  Demoted it to just a message in the log.</li>
<li class="">Fixed a bug in ed2kHelperScript.app (the Mac ed2k link handler) which prevented it from working properly if there was a space in the path to the aMule application.  Thanks to Gomaaz for finding this bug.</li>
<li class="">Eliminated false reports of failure to execute the on-completion command.  This happened with amuled and an on-completion command which completes quickly.  Thanks to s0undt3ch for reporting this bug.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed a bug on sending sources where sources won't be send to a client uploading from us if he uses multipacket.</li>
<li class="">Fixes some crashes, on systray dying, tho not all till wx is patched.</li>
<li class="">Fixed some possible problem with userhash generation, that could lead a void userhash.</li>
<li class="">Fixed defs.h include on MuleDebug.h causing compilation problems on some systems (must be first wx include).</li>
<li class="">Fixed search type "Any"</li>
<li class="">Fixed translation of empty strings, which is reserved to gettext and must never be used.</li>
<li class="">Fixed the aMule.app container lacking a Frameworks/ folder and thus making the generate_package script fail.</li>
<li class="">Fixed compilation of wxCas with wxWidgets CVS (2.7.x)</li>
<li class="">Fixed ED2K id wrongly used on kad-only setups.</li>
<li class="">Added the --reset-config flag</li>
<li class="">Fixed Kad's sources/nodes search results, based on a patch by tatikiran and further modified by John (eMule) and me.</li>
<li class="">Removed Razorback 2's stats while it's gone.</li>
<li class="">Disabled vertical toolbar on Windows while wxWidgets doesn't fix it.</li>
<li class="">Fixed aMule failing to find configuration folder and any folder that finishes with a "" on windows. This leaded to shared folders not being shared, too.</li>
<li class="">Fixed drives on windows not being correctly tested.</li>
<li class="">Changed default server.met</li>
</ul>
<p>Radek:</p>
<ul>
<li class="">Fixed amulemd output not being printed immediatly when running in a mingw terminal.</li>
<li class="">Added missing include to GetTickCount.h, which caused the function declaration to be missing in some cases.</li>
</ul>
<p>Raziel:</p>
<ul>
<li class="">Fixed "0000690 bug for browse windows in amulegui"</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Fixed problem with recursivly sharing folders that hadn't been expanded in the tree ctrl.</li>
<li class="">Improved detection of external Crypto++ versions.</li>
<li class="">Fixed somee possibly crashes, caused by failed unicode convertions.</li>
<li class="">Improved error-checking when creating the .aMule data folders.</li>
<li class="">Fixed problem with searching for files of type 'Program', if a search of a different filetype had been done just before.</li>
<li class="">Fixed a problem with shared files, where danling pointers to client objects could be left in some cases.</li>
<li class="">Changed the way MD4 hashes are converted from Base16, in order to improve error-checking. This adds aditional safety to places such as parsing of ED2K links and adding of friends.</li>
<li class="">Fixed bug where clients would be removed from the list of Kademlia clients if the hash, ID or IP changed. This should only happen when the client is deleted.</li>
<li class="">Fixed various problems with logging during startup, including a crash in amuled if an alert was to be displayed.</li>
<li class="">Fixed the HTTPDownload dialog by using events rather than relying on being able to pause the main loop when sending notifications. Also properly aMulified the dialog.</li>
<li class="">Entries for debug-logging are now always saved to the amule.conf file, to allow amuled users to enable these manually. Before, the entries were only written for enabled debuglog-types.</li>
<li class="">Fixed problem in loading of known.met, which would result in duplicate shared files alternating between which file was actually shared. This resulted in statistics for the file being 'lost'.</li>
<li class="">Added locking to the ed2k utility, to prevent races when many links added at once.</li>
<li class="">Changed the way CFile retrieves the file-length, which was causing problems with files shared from a remote drive.</li>
<li class="">Fixed problems with representing 64b values on windows, caused by imcompatible extensions to printf. Thanks to Radek.</li>
<li class="">Improved error messages on startup, when a folder is found to have inadequate permissions.</li>
<li class="">Fixed problems with identifying reconnecting clients, which would cause a number of problems, including exessive bans.</li>
<li class="">Fixing right-clicking (for recursive sharing) only being possible on the directory icon, but not the label.</li>
<li class="">Fixed sorting by client-version on the downloadlistctrl (bug #763).</li>
<li class="">Changed the sort-order of A4AF sources, so that these are always shown last. This fixes bug #761.</li>
<li class="">Fixed assertion in the downloadlistctrl, caused by a bug in wxMemoryDC. This would trigger when a complete file was shown.</li>
<li class="">When a missing shared file is encountered, unshare just that file, instead of rechecking everything, since that would cause noticible lag for people sharing many files.</li>
<li class="">Fixed exec-on-completion being run even if the file failed to perform its completion.</li>
<li class="">Fixed the sanity check for the min/max ext. search parameters, which would cause the min value to be ignored unless a greater value had been set for the max field.</li>
<li class="">Fixed unicode searches, caused by mismatching string conversions.</li>
<li class="">Adding missing exception-handler to the the function searching for shared files. Without this, a failure to retrieve a filesize would result in aMule terminating.</li>
<li class="">Fixed userspecified CPPFLAGS being overwritten by the CXXFLAGS by configure. Thanks to Gerd78.</li>
<li class="">Removed references to amulecmdgui and amulewebgui, which had been left behind from when the utilities were removed.</li>
<li class="">Overrode wxConsoleAppTraits's WaitForChild function for aMuled, allowing wxExecute to be used asyncroniously. This fixes problems with using the exec-on-completion functionality.</li>
<li class="">Improved sanity checks for the TTS implementation.</li>
<li class="">Changed paused state to stopped state in some cases, which had been incorrectly changed to paused by myself.</li>
<li class="">Added Maximize/Minimize buttons to the file details dialog.</li>
<li class="">Fixed dangling pointers left behind, leading to crashes when a server.met file containing dead severs was loaded.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">All the translaters who did such a great and fast job.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.1.0]]></title>
        <id>https://amule-org.github.io/es/changelog/2.1.0</id>
        <link href="https://amule-org.github.io/es/changelog/2.1.0"/>
        <updated>2006-01-01T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'I just teased you with this release till 2006' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'I just teased you with this release till 2006' version</em></p>
<p><em>Note: This version is dedicated to our great tester Citroklar, for reasons he knows.</em></p>
<p>ender:</p>
<ul>
<li class="">Fix adding AICH links with amulecmd.</li>
</ul>
<p>fulgas:</p>
<ul>
<li class="">Added Kad info to amulesig</li>
<li class="">Fix for reading Kad info on the amule-utils: amps,cas,wxCas,xas</li>
</ul>
<p>Gerd78:</p>
<ul>
<li class="">Fix linkage with static wx libraries.</li>
<li class="">Fix aMule.spec files</li>
<li class="">Fix amule.desktop file</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed a small GUI glitch</li>
<li class="">Ported the partfile importer from eMule, it's now capable of importing eDonkey2000 partfiles. MLDonkey partfiles are not yet supported.</li>
<li class="">Hid the "debuglog" entry in webserver, it had the same contents as "log".</li>
<li class="">Moved CTimer class declaration to its own header file.</li>
<li class="">Internal events moved to their own header.</li>
<li class="">Proper termination of working threads in webserver.</li>
<li class="">Moved GetSoftName() to DataToText.cpp.</li>
<li class="">Changed the RGB() function to produce correct rgb values.</li>
<li class="">Added ability to transmit floating point numbers via EC, by transmitting them in their string representation.</li>
<li class="">Using svn revision number as CVSDATE for svn working copies.</li>
<li class="">EC now uses a version ID for detecting binary incompatibilities.</li>
<li class="">New function: CastItoSpeed(), which converts the given integer value (assuming it means bytes/second) into string.</li>
<li class="">Changed 'K' prefix for 'kilo' into 'k'.</li>
<li class="">Brand new statistics tree. Features include:<!-- -->
<ul>
<li class="">internal data is kept up-to-date realtime</li>
<li class="">support for translation over EC</li>
<li class="">selectable maximum of client versions shown</li>
<li class="">remote gui also has the statistics tree</li>
</ul>
</li>
<li class="">Win32 compilation fixes.</li>
<li class="">Manpage file names now can be transformed.</li>
<li class="">Fixed linkage with shared win32 wx libraries (DLLs).</li>
<li class="">Fixed #538: extended info on tabs aren't removed</li>
<li class="">Fixed webserver search result page blank.</li>
<li class="">Strict POSIX compliance in configure script, fix for NetBSD sh.</li>
<li class="">Removed some strings from translation database that never needed translation, such as "|", "(", "." and so on.</li>
<li class="">Fixed #521, #525, #542: amuled didn't handle shutdown command well.</li>
<li class="">Check for libpng existance and usability even if libpng-config doesn't exist.</li>
<li class="">Fixed #545: Can't tell part number in remote gui</li>
<li class="">Disabled 'Preview' menu item in remote gui.</li>
<li class="">Fixed #543: amuleweb does not load the good language</li>
<li class="">More handy (or proper or native or user-friendly or call it whatever you want) default incoming folder for Mac and Win.</li>
<li class="">Implemented #510: Rename downloaded files from amule</li>
<li class="">Made amulecmd able to connect/disconnect kad and/or ed2k.</li>
<li class="">Proper location for config files on Mac and Win.</li>
<li class="">Reworked amulecmd's command interface.</li>
<li class="">Removed #pragma directives from sources.</li>
<li class="">Various fixes to the new build system.</li>
<li class="">New EC socket code.</li>
<li class="">Fixed vertical position of text in shared files list.</li>
<li class="">Added preference option to select web template for auto-started webserver.</li>
</ul>
<p>ken:</p>
<ul>
<li class="">Use the IPFilter when adding and connecting to servers.  Thanks to MrFaber for reporting the bug.</li>
<li class="">Along with GonoszTopi, proper location for config files on the Mac</li>
<li class="">Along with GonoszTopi, better default location of Incoming directory</li>
<li class="">Mac compilation fixes</li>
<li class="">Added more keystrokes (Backspace, Numpad Delete) as synonyms for Cancel in Downloads list</li>
<li class="">Improvements to internal memory management to protect against leaks in the face of exceptions</li>
<li class="">Protect use of mutexes against exceptions</li>
<li class="">Enabled language translation support for the Mac binary</li>
<li class="">Don't show the 'x' close buttons on the search results tabs on the Mac, since they are non-functional and confusing</li>
<li class="">Maintain the functionality of control-clicks (right-clicks) on tabs for search results and categories in the face of wxMac changes</li>
<li class="">Helped avoid endianess problems with Kad</li>
<li class="">Fixed handling of empty seeds files</li>
<li class="">Fixed crashes involving CSharedFileList.  Special thanks to lionel77 for truly heroic debugging efforts.</li>
<li class="">Fixed a crash in amuleweb when the template isn't found</li>
<li class="">Contributed to improvements in the new CTimer class</li>
<li class="">Disabled the tray icon preference settings on the Mac since they're dangerous (can cause crashes)</li>
</ul>
<p>KingFish:</p>
<ul>
<li class="">Fixed systray shared files count.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Initial Kademlia import from eMule.</li>
<li class="">Fixed endianess problems on Kad.</li>
<li class="">Cleaning of the CContact class.</li>
<li class="">Fixes on node lookup and distance calculation. This is colaborative development with John from eMule. (Added to eMule 0.46c)</li>
<li class="">Fixed a crash on Kad search terms on the UDP listener. (Added to eMule 0.46c)</li>
<li class="">Proper catching and more debug on Kad search and Data I/O</li>
<li class="">Proper shutdown of Kad on exit.</li>
<li class="">Kad firewalled sources are now contacted properly.</li>
<li class="">Fixed a crash on search manager, caused by erase invalidating an iterator.</li>
<li class="">Proper arrows for ed2k/kad state, using alpha drawing. This means that the little arrows on world globe on status bar are now separate: the lower one is for ed2k and the higher one for Kad.</li>
<li class="">Fixed another wrong usage of stl classes and some cleaning on clientlist.</li>
<li class="">Added GUI checkbox to show/hide Filter options.</li>
<li class="">Added -D_GLIBCXX_DEBUG to compilation flags.</li>
<li class="">Fixed a crash on kad indexes caused by deleting the key invalidating the iterator.</li>
<li class="">Cleaned the connection state functions out of their container classes to theApp. This fixes possible crashes on uninitialised serveconnect/kad classes.</li>
<li class="">Removed all low-level winsock/linux sockets erferences from code.</li>
<li class="">Moved wxEVT_NOTIFY_EVENT to wxEVT_MULE_NOTIFY_EVENT to avoid conflicting with wxWidgets own definitions.</li>
<li class="">Removed daemon fork on windows to fix compilation.</li>
<li class="">Fixed text-mode apps password ask on windows.</li>
<li class="">Fixed preferences close to do a cancel event.</li>
<li class="">Added EC debug messages on connection failures.</li>
<li class="">Fixed memset usage on abstract types, causing crashes on some configurations.</li>
<li class="">Only use date and not hour from CVSDATE.</li>
<li class="">Fixed MULENOTEBOOK events</li>
<li class="">Fixed connect button behaviour, about 17 times (counted). Last implementation does:<!-- -->
<ul>
<li class="">Connect to enabled networks if aMule is not connected to any.</li>
<li class="">Disconnect if aMule is connected to any network.</li>
</ul>
</li>
<li class="">Fixed aMule remote gui to use event-driven EC.</li>
<li class="">Fixed WOULDBLOCK on EC to retry tranfer.</li>
<li class="">Fixed wxSOCKET_NOERROR not triggering a transfer on EC.</li>
<li class="">Rethrow proper info on invalid Kad tag.</li>
<li class="">Deprecated docs/amule-win32.HOWTO.txt, use wiki instead.</li>
<li class="">Fixed GCC 4.0 compilation:<!-- -->
<ul>
<li class="">~CMD4Hash()</li>
<li class="">~CValueMap()</li>
<li class="">CValueMap</li>
</ul>
</li>
<li class="">Update Kad tab on usercount change.</li>
<li class="">Fixed wxSOCKET_WOULDBLOCK/NOERROR on EC to avoid losing packets.</li>
<li class="">Avoid widnows execution writing ont he registry.</li>
<li class="">Fixed Solaris Sparc compialtion (-lrt compilation flag).</li>
<li class="">Throwing invalid kad type tags for debug measures.</li>
<li class="">Acording to RFC3330, 24.* and 14.* must be parsed as normal ips.</li>
<li class="">Some fixes to the (still partial) skin engine.</li>
<li class="">Allow to expand relative paths on skin engine.</li>
<li class="">Fix for too big tags (larger than packet) detection.</li>
<li class="">Updated POTFILES.in, lots of times.</li>
<li class="">Updated and centralized client emule compatible numbers.</li>
<li class="">Fixed wxWidgets includes based on version.</li>
<li class="">Fixed clicking "No" on shutdown confirmation... doing a shutdown.</li>
<li class="">Adding a link over EC now gets proper feedback on duplicates.</li>
<li class="">Added YASO (Yet Another Shareaza Opcode).</li>
<li class="">Allow binding EC and ed2k/kad sockets to an specific address. Use Address= and ECAddress= on [eMule] section of the amule.conf file.</li>
<li class="">Warn for outdated version on daemon, too.</li>
<li class="">Added Kademlia network to aMule daemon. This required an split of core/GUI of the initial import.</li>
<li class="">Removed a big bunch of duplicated EC calls to connection status.</li>
<li class="">Show Kad status on remote apps.</li>
<li class="">Fixed a possible memleak on CKnownFile creation.</li>
<li class="">Added hashing protection about hashing more than one part at a time.</li>
<li class="">Fixed a memleak on global search packet.</li>
<li class="">Fixed Kad crash based on wrong STL iterator usage.</li>
<li class="">Compilation fixes for SafeFile classes.</li>
<li class="">Chat icon on toolbar now blinks red/blue on new message till we press the button to check the message.</li>
<li class="">Make compressed HTTP files be decompressed transparently after download. Allows for server.met.gz and similar downloads.</li>
<li class="">Fixed the statusbar taking too much space.</li>
<li class="">Default server.met uses gruk.org now, to avoid fake servers.</li>
<li class="">Reverted phoenix false fix for my kad iterator fix and adding my fix which was before his fix. Try to say that drunk.</li>
<li class="">Several cosmetic minor changes to GUI.</li>
<li class="">Fixes on wxHTTP crashes caused by heap creation of sockets class.</li>
<li class="">Moved ECAddr to ExternalConnect section and made GUI for selecting the ip.</li>
<li class="">Fixed korean translation compilation failure.</li>
<li class="">Several 2.4 compilation fixes, which turned out to be not used because we now require wxWidgets 2.6.0 at least.</li>
<li class="">Fix NetBSD compilation (fwprintf not implemented on NetBSD).</li>
<li class="">Fixed some unneeded ansi strings conversion to wide chars.</li>
<li class="">Endian fix on Kad UDP packets being sent... elsewhere.</li>
<li class="">Several fixes on endianess over source exchange and ip filtering.</li>
<li class="">Debug output and crash fix for HTTP streams on download.</li>
<li class="">Fixes on keyword hashing on Kademlia.</li>
<li class="">Fixed Kad tag names using ansi chars instead of unicode names, which will be sent as ansi anyway but CTag creation is based on wxStrings, so using a char* uses the int constructor.</li>
<li class="">Removed the CTagNameString, using wxString everywhere.</li>
<li class="">Fix for GUI systray option being enabled when systray compilation is disabled.</li>
<li class="">Server ed2k link (and any link) must be '/' terminated, fixed on generation.</li>
<li class="">Debug output on EC protocol version mismatch.</li>
<li class="">Changed servers toolbar button to networks. Now this has two tabs, one for ed2k and one for Kad.</li>
<li class="">Created Kad GUI from scratch.</li>
<li class="">OP_REASKCALLBACKUDP implementation for Kad lowid</li>
<li class="">64bits archs fix on webserver image generation.</li>
<li class="">Removed CT_PORT usage on server login - is ignored by eservers now.</li>
<li class="">Removed Kad search list ctrl - it's just debug output user won't need.</li>
<li class="">Removed Kad nodes list ctrl - it's just debug output user won't need.</li>
<li class="">Modification's to lupz's patches on Kademlia sources search.</li>
<li class="">Compilation fixes on ClientList for Kad contacts.</li>
<li class="">Checks for 0-port UDP packets to avoid 100% CPU usage.</li>
<li class="">Lots of Kad cleaning on the imported code, contacts, searches, UDP packets processing and routing bin</li>
<li class="">Removed kademlia/utils/Ping.* - unused on this implementation.</li>
<li class="">Fixed a crash on Kad exit caused by double-removal.</li>
<li class="">Fixed remote GUI compilation with Kad enabled.</li>
<li class="">Changed invalid rating on a file to non-critical (keep source!).</li>
<li class="">CPU fixes on duplicated calls to rating updates.</li>
<li class="">Some fixes to rating icons.</li>
<li class="">Killed muuli's pragmas.</li>
<li class="">Moved search id's setting to search class itself.</li>
<li class="">Fixed searches' timspan on CParfile::Process</li>
<li class="">Reworked src/Makefile.am to handle common files.</li>
<li class="">You can change toolbar to vertical/horizontal on GUI tweaks now.</li>
<li class="">Removed fakecheck (sites down).</li>
<li class="">Fixed a crash on HTTP download dialog caused by wrong usage of delete.</li>
<li class="">Fixed toolbar orientation change not showing proper connection state.</li>
<li class="">Fixing ED2K link handler colliding with status bar.</li>
<li class="">Added 7z to types.</li>
<li class="">Mantain a list of already-known mods to avoid "Compatible client found" messages spamming the console.</li>
<li class="">Revamping of UpDownClient interface. Proper private vars and public accessors, merged the public/private sections, and decoupled credits classes.</li>
<li class="">Fixed possible crashes on dereferencing NULL pointer, specially on EC tag creation on UpDownClients.</li>
<li class="">Separated CClientCredits and CClientCreditsList to diferent files: the later is not needed on remote GUI while the former is.</li>
<li class="">Moved some functions for ID check to theApp, to remove the includes needed on each file, cutting down compilation time.</li>
<li class="">CClientCredits is not more a friend class of CClientCreditsList.</li>
<li class="">Split CClientReqSocket from ListenSocket.*, and renamed to CClienTCPSocket to keep coherence with CClientUDPSocket.</li>
<li class="">Removed event handler local vars on server and client sockets, and moved the classes out of the .h, because those are no needed anywhere else.</li>
<li class="">Removed the possibility of bootstrapping Kad from a host.</li>
<li class="">Fixed the stale unknown clients caused by unanswered kad-buddy requests. The new KADEMLIABUDDYTIMEOUT is 10 minutes. More than enough.</li>
<li class="">Connect/Disconnect button works properly now. Disconnection happens on any network connected, and connection on the selected networks on preferences.</li>
<li class="">Added a Disconnect button for ED2K too.</li>
<li class="">Fixed possible crash on startup.</li>
<li class="">Tray icon is now shown as connected if any network is (ed2k or kad)</li>
<li class="">A lot of class separation and file/class renaming, to prepare the build for...</li>
<li class="">Build system changed:<!-- -->
<ul>
<li class="">Added some intermediate libs to avoid double-compiles: (Binary compatible files only)<!-- -->
<ul>
<li class="">libmuleappcommon.a -&gt; Common to all aMule derived apps</li>
<li class="">libmuleappcore.a -&gt; Common to amuled/amule</li>
<li class="">libmuleappgui.a -&gt; Common to amulegui/amule</li>
</ul>
</li>
<li class="">Also changed some files to increase the amount of binary compatible files. Would be great to increase this number, but sadly theApp. access is not binary compatible (different base classes).</li>
<li class="">Created two amule-independant libs: Those are now on libs/ folder.<!-- -->
<ul>
<li class="">libcommon.a -&gt; Common to all apps</li>
<li class="">libecc.a -&gt; Common to all EC apps</li>
</ul>
</li>
</ul>
</li>
<li class="">More changes to build and libs. libeccommon now includes ECSocket, and CRemoteConnection is used to connect to a remote core.</li>
<li class="">Make libec independant from libmulecommon</li>
<li class="">Call realize to fix toolbar on Mac.</li>
<li class="">Open wiki on F1 for help :)</li>
<li class="">Stats have a 64bits, not 32bits, uptime number.</li>
<li class="">No more EC extra needed for having a remote app, yay. Just link to libec.a and use the CRemoteConnector-&gt;ConenctToCore and stuff. This will be expanded for a proper EC API.</li>
<li class="">Did some EC API examples so someone can expand it.</li>
<li class="">Tooltips, proper names, and layouts for the connection ports.</li>
<li class="">Fixed compilation flags for base-only apps.</li>
<li class="">Lots of GUI visual glitches fixed.</li>
<li class="">Fixed ping times on servers being in ms instead of secs.</li>
<li class="">Now core timer is on a thread, and it behaves much better.</li>
<li class="">Fixed core timer silliness on time count. Much more acurate now.</li>
<li class="">Workarounded the memleak caused by wx &lt; 2.6.2</li>
<li class="">Fixed it.po (twice).</li>
<li class="">Some debug to aid locating rogue clients and know if it's actually us.</li>
<li class="">Save source seeds now saves 10 sources, but only keeps them for a Max of 2 hours.</li>
<li class="">Added search expressions class and parsers.</li>
<li class="">Fixed flex usage when --header-file is not available.</li>
<li class="">Proper POTFILES.in</li>
<li class="">Fixed systray's Connect/Disconenct to include Kad.</li>
<li class="">Fixed a huge bug that was sending TOO MUCH packets (UDP) to servers. This alone is a reason for a release. Fixes the server list flicker, too.</li>
<li class="">Kad status fixed for remote apps, and included "running" status.</li>
<li class="">Kad info is shown on Kad tab on remote GUI.</li>
<li class="">Avoid ping storms by lugdunummaster request, adding a random value to server UDP ping.</li>
<li class="">We should not publish FT_FILEFORMAT at all. Fixed.</li>
<li class="">Publish only file rating if we have any.</li>
<li class="">Update on server flags - added related search and type tag integer.</li>
<li class="">FT_FILETYPE can be an integer for newer servers, added support.</li>
<li class="">As for lug request, newer servers get a integer filetype tag if supported.</li>
<li class="">Enable connect/disconnect Kad from remote gui.</li>
<li class="">Some basic warnings on value changes for preferences. Now, if you request a change on preferences that requires restart, like ports, incoming/temp folders, and others, aMule will warn you on "OK".</li>
<li class="">Don't connect to ed2k on server double click if the network is disabled</li>
<li class="">More warnings: Kad without UDP port, and Kad conenct while disabled on preferences now raise a log warning message.</li>
<li class="">Dynamic set of GUI options to avoid visiting prefs multiple times.</li>
<li class="">Warn if UDP disabled and Kad enabled on preferences.</li>
<li class="">Fixed Scanner.y to allow compilation with old flex versions.</li>
<li class="">Fix installation or webserver's Kad page.</li>
<li class="">Use the generic function instead of X11-specific one for geometry parsing. Fixes compilation on several platforms and removes dependency on X11 headers.</li>
<li class="">Removed duplicated code and cleaned CDirectoryTreeCtrl</li>
<li class="">Fix for continuously trying to solve a DNS server.</li>
<li class="">Fixed some memleak on contact results.</li>
<li class="">Fixed mem corruption, and contact asserts on the new merge code for kad contact trees.</li>
<li class="">Kad notes filtering</li>
<li class="">Fixes crash on startup onMac and Windows caused by an unitialized variable being used at dialog construction. But not on wxGTK. Go figure.</li>
<li class="">Update on wxwin.m4 to wx-cvs of 15/12/2005 and proper base flags usage.</li>
<li class="">Minor amount of libs to link for wx, instead of all libs.</li>
<li class="">Fixed a crash on wxGetTranslation usage on Windows.</li>
<li class="">Fixed an assert on folders tree control on windows.</li>
<li class="">Fixed the initiazlization of status_arrows to proper size (16x16) on Windows.</li>
<li class="">Fixed the status arrows on windows, and fixed wxWidgets bug that caused it.</li>
<li class="">Changed file to output stream on HTTP download.</li>
<li class="">Fixed a endless loop on downloading files &lt; 10 bytes on HTTP.</li>
<li class="">Fixed Kad nodes download by stopping Kad before the file is renamed.</li>
<li class="">Fixed crashes on HTTP download.</li>
<li class="">Added support for proxy usage on HTTP download, via environment variables.</li>
<li class="">Fixed input streams on FileFunction's handling of gziped files.</li>
<li class="">Fixed download of gziped files on windows.</li>
<li class="">Fixed extension Kad search</li>
<li class="">Fixed crash on search</li>
<li class="">Removed the sending of "Any" type to server - is the default.</li>
<li class="">Fix search types and return values on ed2k/kad search.</li>
<li class="">Fixed a wrong Kad packet being created on a race condition caused by the removal of a file from shares that will just get published. To be added on eMule, too.</li>
<li class="">Fixed Open File command on categories.</li>
<li class="">Fixed detail level on EC tags failing silently on lower values.</li>
<li class="">Fixed crash on remote gui if not config folder not existant.</li>
<li class="">Created, fixed, killed the --enable-kad-compile switch to enable non-kad compilations during test phase. Now is always compiled.</li>
<li class="">Removed platform specific getlocalhost usage.</li>
<li class="">Fixed ntohl usage on gap list saving.</li>
<li class="">Removed wrong Merkur (c) from php libs (sorry Merkur, but those are ours <!-- -->:P<!-- -->)</li>
<li class="">Fixed strings on log categories for protocol.</li>
<li class="">Listensocket's fixed for debug on connection accept.</li>
<li class="">Multiple Kad searches are allowed now, with independant tabs.</li>
<li class="">Debug messages regarding late / unwanted kad searches results.</li>
<li class="">Fixed Kad gui search return messages.</li>
<li class="">Safety code on shared files' RotateReferences.</li>
<li class="">Fixed endiannes on CUInt128::setValueBE / CUInt128::toByteArray</li>
<li class="">Fixed ENDIAN_SWAP_<strong>(x) definitions to use the proper wxUINT</strong>_SWAP_ON_BE/ON_LE/ALWAYS macros.</li>
<li class="">Publishing of keywords (shared files) works now on Kad.</li>
<li class="">Implemented Kad GUI.</li>
<li class="">Fixed low speed connection to sources when only connected to kad</li>
<li class="">Fixed Kad callback of lowid sources.</li>
<li class="">Fixed Kad usage when ED2K is disabled.</li>
<li class="">No more auto-reconnect on disconnect (woops).</li>
<li class="">Speed up catch and proper window ID on HTTP download class.</li>
<li class="">Added wxIdleEvent::SetMode(wxIDLE_PROCESS_SPECIFIED) to app startup, cutting CPU usage a lot. Go figure.</li>
<li class="">Changed the socket destruction to socket's Safe_Delete.</li>
<li class="">Fixed a GetUDPPort usage where GetEffectiveUDPPort should be.</li>
<li class="">Added UDP socket warnings on unknown errors.</li>
<li class="">Client UDP socket error handling rewritten.</li>
<li class="">Fixed UDP socket heap vs stack problems.</li>
<li class="">Proper check for libgd (Sorry!).</li>
<li class="">Showing Kad state on conection for fast reference.</li>
<li class="">Added some code to catch unhandled exceptions on kad and report them, so we know what's going on.</li>
<li class="">Fix for crash/assert on wrong permisions on cryptkey.dat.</li>
<li class="">Fixes for daemon compilation on OnRun usage.</li>
<li class="">Fixed a Crash on Kad caused by packet constructor deataching the data, causing a double-delete.</li>
<li class="">Safety code for uncatched exceptions.</li>
<li class="">Some changes to packet processing.</li>
<li class="">Fixed a big mem bug on Kad.</li>
<li class="">Fixed a bug with iterator usage in SearchManager.cpp</li>
<li class="">Fixed a bug on PARTSIZE calculation that could lead to insanely large partsizes.</li>
<li class="">Fixed possible buffer overflow on gap saving</li>
<li class="">Fixed the RSB of this release. you know, one per release. (for those that are new to aMule, RSB = random socket bug)</li>
<li class="">Cleaned, cleaned, cleaned code.</li>
<li class="">Fixed:<!-- -->
<ul>
<li class="">0000492: aMule gui fails to compile when using wxMotif 2.6.1</li>
<li class="">0000514: Not all common file types recognized as Audio</li>
<li class="">0000516: crash after repeated search</li>
<li class="">0000646: right click on transfer files randomly disabled</li>
<li class="">0000659: disconnect button might not disconnect kad and block it's function</li>
<li class="">0000661: windows consistency</li>
<li class="">0000662: amulecmd crashes on invalid pause command</li>
<li class="">0000671: open file on double-click</li>
<li class="">0000691: connect/disconnect button is still broken</li>
<li class="">0000704: servers connection cancel button</li>
<li class="">0000715: prefs -&gt; general -&gt; "downloadlist dblclick to expand" option is broken or something</li>
<li class="">0000716: prefs -&gt; seeds save, wrong text</li>
<li class="">0000718: more systray ignoring kad</li>
<li class="">0000719: searches -&gt; extended -&gt; min size vs max size</li>
<li class="">0000730: statistics connections graph Range requires restart</li>
<li class="">0000729: search query string parser</li>
<li class="">0000732: more brackets related bugs</li>
<li class="">0000733: download button activated when search fails</li>
<li class="">0000734: non-restored icon in Directories -&gt; share</li>
</ul>
</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">PHP engine implementation for amuleweb</li>
<li class="">Porting web templates to PHP script</li>
</ul>
<p>lupz:</p>
<ul>
<li class="">Kad speed improvements.</li>
<li class="">Kad sources search improvements.</li>
<li class="">Fixed manual bootstrapping via the Kad dialog.</li>
<li class="">Properly swap IPs when doing logging in Kad.</li>
<li class="">Avoid trying to close the file multiple times when resuming a part-file that failed to complete.</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Removed wxGTK and wxGTK-devel dependencies from the spec file. They don't work on all distros, even worse, don't always work with Fedora Core.</li>
<li class="">Created a new spec file, compliant with Fedora Core.</li>
<li class="">Fixed a crash when aMule was shut down by amulecmd and an assert happened.</li>
<li class="">Fixed asserts on exit about non-empty lists when aMule was shut down by amulecmd.</li>
<li class="">Small compilation fixes.</li>
<li class="">Fixed deadlock in ClientUDPSocket.cpp.</li>
<li class="">Crash handler improovement, avoid calling functions that may allocate memory.</li>
<li class="">Fixed some compile warnings in WebServer.cpp.</li>
<li class="">Fixed a crash in SharedFilesWnd.cpp due to aMule beeing now multithreaded.</li>
<li class="">Changed wait4 to waitpid in amule.cpp, to improove compatibility with old HP-UX systems.</li>
</ul>
<p>Ramiro:</p>
<ul>
<li class="">Patches to compile on a NSLU2 (ARM).</li>
</ul>
<p>RazZziel:</p>
<ul>
<li class="">Changes on parent ownership on windows. Partially fixes 0000690: List of windows that can be overlapped by main window and leave aMule apparently freezed</li>
</ul>
<p>schtroumpf:</p>
<ul>
<li class="">File rating in search dialog.</li>
<li class="">New file rating icons.</li>
<li class="">Replaced file rating good/bad with a rating average like in emule.</li>
<li class="">Amule submits file rating to the server.</li>
</ul>
<p>Seagull:</p>
<ul>
<li class="">Fixed a small bug on client list view.</li>
</ul>
<p>shakraw:</p>
<ul>
<li class="">Merged with 2.0.3 latest fixes (r4630, r4631, r4633, r4639)</li>
</ul>
<p>stefanero:</p>
<ul>
<li class="">Fixed cas,wxCas and xas infos for Kad when only connected to Kad</li>
<li class="">Imported amps in aMule source</li>
</ul>
<p>thedude0001:</p>
<ul>
<li class="">Added CVS snapshot date to frame title.</li>
<li class="">Fixed #560: "aMuleWebDLG and aMuleCMDDLG do not report version"</li>
</ul>
<p>volpol:</p>
<ul>
<li class="">A4AF transfer speed display fix</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Fixed the possibility of crashing when sending a message to a non- friend client, caused by the fact that the client could be deleted before the user entered the message. Also prevented attempts at sending messages clients that wern't ready.</li>
<li class="">Fixed crash when '--version' was used, caused by an uninitialized pointer. Serveral other uninitialized pointers were also fixed.</li>
<li class="">Fixed assert in the Type-To-Select code which would trigger when items were removed and the old tts index pointed past the last item.</li>
<li class="">Fixed kad-searches with a filetype specified not producing any results, caused by using obsolete type-strings.</li>
<li class="">Added missing calls to va_end at places where va_start is called.</li>
<li class="">Remove unneeded calls to wxMutexGuiEnter/Leave.</li>
<li class="">Fixed the listctrls asserting if one were to click past the end of the last column header.</li>
<li class="">Fixed unhandled-exception handling in unittests, which had been broken when they were made console apps.</li>
<li class="">Fixed sscanf call in PHP lexer, which had switched the source and the format arguments.</li>
<li class="">Performed audit of printf type calls. Serveral bugs caused by using the wrong printf variant were fixed in the webserver. All instances of calls to sprintf variants were changed to snprintf to prevent buffer overruns and calls to printf that passed a dynamic string as the format string were changed to prevent using untrusted format strings. Lastly a few places where widechar and char where mixed were fixed.</li>
<li class="">Avoided checking the same folders multiple times when looking for shared files, by ensuring that duplicate entries (from categories, etc) are ignored.</li>
<li class="">Fixed minor mem-leak in CTimer.</li>
<li class="">Deleting a static server now also removes it from the static list.</li>
<li class="">Fixed disabling of graphs while the prefs-dialog is still open.</li>
<li class="">Fixed logging on UDP-sockets displaying an integer value rather than a dot-IP.</li>
<li class="">Made the ipfilter.dat URL field independant of the auto-update check-box, to allow for easier manual updates.</li>
<li class="">Fixed log-events not being written the logfile on full daemon.</li>
<li class="">Improved displaying of errors when starting the webserver from amuled.</li>
<li class="">Allow resuming of files that error'd out during completetion.</li>
<li class="">When checking if a file is already being downloaded/shared, check if the actual file is still available. This allows redownloading of shared files that have been removed, without having to reload the list of shared files.</li>
<li class="">Added checks to see if the target filesystem is fat32 when completing files, and removing known illegal chars in that case.</li>
<li class="">Important log-lines are now bolded in the log textctrl.</li>
<li class="">Redirect wxWidget log-events to the aMule log. This avoid the popups that wxWidgets would display by default.</li>
<li class="">Made the unittests proper wxConsoleApps.</li>
<li class="">Open the preferences dialog non-modally, so that it doesn't block the main GUI.</li>
<li class="">Switched manual path-joining to using the generic function.</li>
<li class="">Fixed the "pause all" and "cancel all" commands via remote.</li>
<li class="">Fixed bad replies on sharedfiles-list requests when public viewing of the list is disabled.</li>
<li class="">When a message is filtered, always display the "Message filtered ..." log-entry instead of the "New message ..", rather than only displaying the "Message filtered" the first time, and then only the "New Message" the following times.</li>
<li class="">Cleaned up the file-completion thread and fixed the following:<!-- -->
<ul>
<li class="">If creation or starting of the thread failed, the file would silently fail to complete.</li>
<li class="">If the file was renamed, the download queue show the old name.</li>
<li class="">If the file was renamed and didn't have an extension, the "(x)" component would be added to the front of the filename.</li>
<li class="">When checking for unused filenames, if an file with the same name exists, the path would be a changed to the standard incoming folder regardles of the file's category.</li>
<li class="">wxFileExists was used to check for the existance of the files, possibly leading to false negatives with unicoded filenames.</li>
</ul>
</li>
<li class="">Fixed files being added in stopped-mode when the "Add downloads in paused mode" setting was enabled. Since the "Start next ..." works on paused files, this makes more sense.</li>
<li class="">Fixed bug #513. When "Start next ..." and "Same category .." was enabled, we would still select downloads from the wrong category, when there was still paused files in the desired category.</li>
<li class="">Changed the StopPausedFile from actually stopping the file to simply clearing the sources, as this is the intended goal. Stopping the file was wrong, considering that it would leave a window of one hour in which the "Start next paused download" code would be useful.</li>
<li class="">Added generic function for joining two paths.</li>
<li class="">Dont allow renaming of downloads that are being completed.</li>
<li class="">Made the comment-list dialog resizable.</li>
<li class="">Enabled use of tool-tips on all wx-variants.</li>
<li class="">Fixed Kad-Info and ED2K-Info lists not having any scroll-bars.</li>
<li class="">Fixed compressed Kad packets having the wrong procotol set. Thanks to Gnucco for the pointing this out.</li>
<li class="">Only show the root-item circle for incomplete part-files.</li>
<li class="">Prevent the adding of friends without IPs, via the clientlistctrl.</li>
<li class="">Fixed serveral problems caused by the reuse of the preferences dialog window.</li>
<li class="">Improved the popup menu on the downloads listctrl.</li>
<li class="">Fixed starting of next download being called under the wrong conditions when files were deleted via remote.</li>
<li class="">Dropped the HTML version of ed2k-links.</li>
<li class="">Fixed shutdown of the amulegui when the systray is enabled.</li>
<li class="">Fixed bug #359. The preferences dialog is now reused between sessions, so the last used page and the state of the shared-files tree is remembered.</li>
<li class="">Only enable the host-version of ed2k-links when a hostname has been specified (still no perferences widget for this).</li>
<li class="">Fixed bug #700. The partfile conversion window is now raised properly when the button is clicked again (doesn't work with gtk1).</li>
<li class="">Improved logging in CFile in situations where system-calls are used.</li>
<li class="">Improved permissions checks for the .aMule folder. Also added checks for the Temp and Incoming folders.</li>
<li class="">Fixed an unconditional Close call when creating part-files, which happened even if opening the file failed.</li>
<li class="">Fixed the names of friends being cleared on the chat-notebook when the clientobject disconnected.</li>
<li class="">Ensures that both the downloadlistctrl and sharedfileslistctrl are both up to date when a file has been renamed. Also switched to using the same dialog on both listctrls.</li>
<li class="">Check for items being sorted was moved to the CMuleListCtrl class, and to fix flickering on the server-list and and searchresult-lists, which is caused by insertions and deletions, the list is resorted instead, if an item is out of order after an update.</li>
<li class="">Drop the use of jugle.net. It's dead, Jim!</li>
<li class="">Changed the 'Clear' button on the search-page to only clear search-results. The 'Reset' button now takes care of the text-field and any extra parameter-fields. Serveral fixes were made to make sure all fields were properly cleared.</li>
<li class="">Properly set filtering on newly added search-results.</li>
<li class="">Fixed broken sanity check in AddDownload</li>
<li class="">Bug #688. Made the popup menu on the searchlistctrl similar to those on the downloadlistctrl and sharedfileslist.</li>
<li class="">Added serveral missing exception-handlers.</li>
<li class="">Ensured that the internal libs are only built when needed.</li>
<li class="">Fixed ed2k-links causing duplicate entries on the download-queue and made the sanity checks in AddDownload safer.</li>
<li class="">Made the interal CryptoPP files part of the one of the temporary libraries to avoid building it three times (amule, amuled, amulegui).</li>
<li class="">Removed printf-call from signal-handler.</li>
<li class="">Unified download-handling on the search-page and fixed the download button, which was broken by previous commits.</li>
<li class="">Fixed a leak in the UDP sockets which occurs when packets are sent via a dead or closed socket object.</li>
<li class="">GetInstallPrefix is broken on wxWidgets 2.6.2, so only use it when building autopackages (since we can patch the sources).</li>
<li class="">Improved logging in case of clients requesting invalid file-data.</li>
<li class="">Cleaned up autoconfigure files a bit.</li>
<li class="">Added sanity checks to the downloadqueue's AddDownload function to catch this, should the problem appear again.</li>
<li class="">Added checks to avoid loading duplicate partfiles, since downloads are identified by the hash. A warning is now issued when this happens.</li>
<li class="">Add a "Download in category" sub-menu to the right-click menu on searchresult lists and moved download handling to CSearchListCtrl. This fixes bug #673.</li>
<li class="">Specify if debugging was enabled on version strings.</li>
<li class="">Ctrl+a now select all items on listctrls.</li>
<li class="">Make aMule relocatable in regards to locales, and amuleweb relocateable in regards to templates. This is needed to allow usage of autopackage.</li>
<li class="">RotateReferences() now properly handles shifts larger than the number of files present and use std::rotate.</li>
<li class="">Files that are larger than the limit imposed by the ed2k network are now filtered from search-results.</li>
<li class="">Fixed drawing of the first column on the shared-files list, caused by the upgrades to the listctrl code.</li>
<li class="">Made one-shot CTimers interruptable and fixes a memleak in the Start functions caused by not freeing old threads.</li>
<li class="">Upgraded our included listctrl with the bugfixes from v2.6.1 and v2.6.2 of wxWidgets.</li>
<li class="">Fixed a couple of AICH log messages that were mixing unicoded strings and non-unicoded strings.</li>
<li class="">Made middle-clicking on the client-list work in the same way as middleclicking on the downloadqueue, and cleaned up click- handling in general.</li>
<li class="">Fixes the overhead-handling code in CTimer which wouldn't check if overhead was larger than the period, resulting in calls to Sleep with an underflown value. Also fixed events possibly being lost due to overhead.</li>
<li class="">Fixes crashes due to uncaught read-past-EOF exceptions when a cliented requested a block from a file past the end of the actual file-length.</li>
<li class="">If aMuled is run and ECs are enabled and no password is set, dont reset the EC setting, but rather display instructions that specify what to do before terminating.</li>
<li class="">Added warning which will be displayed if aMule is run as root, which is adviced against for obvious reasons.</li>
<li class="">Removed the --disable-systray configure option, since extra libraries are not required now. To disable the systray now, simply use the preferences.</li>
<li class="">Removed support for wxWidgets version older than v2.6.0. Support for wxWidgets 2.4.2 had been broken for a while, without anyone complaining, and the v2.6.x branch has been out for long enough to make usage of the v2.5.x branch nonsensical.</li>
<li class="">Added workarounds for the wxWidgets memleak when using GTK2 on versions of wxWidgets &lt; 2.6.2 to the remaining places where this would occur.</li>
<li class="">Changed failure on file-seeking into a catchable exception, rather than a runtime error.</li>
<li class="">Fixed a crash on shutdown caused by the listensocket now being closed which caused a call to Accept to return NULL.</li>
<li class="">Fixed compilation with GCC-4.1 (snapshot).</li>
<li class="">Syncronized look of client-icons on download-queue and the client-lists (upload, queued, all), so that all display the same information.</li>
<li class="">Display an icon when downloads have comments but no rating, and added the same icons for both to the shared-files list, making it easier to keep track of what files are commented/rated.</li>
<li class="">Fixed all warnings reported by -Wshadow and -Wundef.</li>
<li class="">Added the compiler-flags -Wshadow and -Wundef, and changed configuration such that warnings are enabled for both debug and non-debug builds.</li>
<li class="">Largly reworked the CTimer class:<!-- -->
<ul>
<li class="">Fixed all timers sending events with the same ID.</li>
<li class="">Removed use of static variables which would cause troubles if more than one repeat-timer was used.</li>
<li class="">Ensured that no event would be sent if the timer was stopped while sleeping.</li>
<li class="">Improved thread-safely a lot and made the threads detachable.</li>
<li class="">Added function for terminating all timer-thread on shutdown, so that no timer-threads will be left running.</li>
</ul>
</li>
<li class="">Fixed SSE2 support check in the embedded cryptoPP code, for gcc-4.</li>
<li class="">Fixed a couple of bugs caused by variable-shadowing.</li>
<li class="">Flush log-buffers when waiting for either of the hashing threads to terminate.</li>
<li class="">Removed manipulation of gui-mutex in AICH thread, which are no longer needed due to changes in log-handling.</li>
<li class="">Removed local variable which shadowed a variable when checking if a client was a friend. This caused the friend to link to said client even after the client had been deleted, since the client would not unlink itself from the friend.</li>
<li class="">Only store the descriptions of IP-Ranges for the ipfilter on debug-builds, since this value is not used on non-debug builds and can account for serveral MB of used memory.</li>
<li class="">Fixed new-connections being opened on shutdown and the new clients being created. This should fix the assertion in CClientList.</li>
<li class="">Added a call to wxUpdateUIEvent's SetMode function, to reduce the ammount of unnessesary events being generated.</li>
<li class="">Fixed clearing of background for list-items that do not have a background color set.</li>
<li class="">Resized a couple of buttons that were too small to display their image. This fixes bug #648.</li>
<li class="">Improved double-buffering of listctrls a bit.</li>
<li class="">Fixed auto-sorting checks on the server-list, which were inverted, causing items that were already sorted to be re-position and so forth. This was the source of the large ammount of flicker on the server list.</li>
<li class="">Fixed the "Time Remaining" column on the downloadqueue when no downloads were taking place.</li>
<li class="">Removing unneeded checks for fat32 filesystems.</li>
<li class="">Improved handling of closing of the preferences dialog.</li>
<li class="">Changing kad-nodes label to display "Nodes (0)" by default.</li>
<li class="">Force the UBT to take a increasingly longer nap between loops when it fails to send anything, which ensures that it wont go bananas it is unable to upload at the specified rate. This would happen for instance if the limit is set to a value higher than the physical connection limit. This fixes bug #606.</li>
<li class="">Re-added the node count above the kad-graph, and a few other changes.</li>
<li class="">Removing unused color-setting, which was causing problems with the kad-graph. For this change to take effect, you will have to remove your StatColor* entrires from amule.conf.</li>
<li class="">Fixed bug on the kad-nodes statistics, where entries added while the dialog was not displayed would have the value of zero. This fixed bug #652.</li>
<li class="">Fix for selecting tabs (+ popup menu) via right-clicking on GTK2.</li>
<li class="">Allow previewing of audio-files, fixing bug #654.</li>
<li class="">Reworked the ED2KLink class:<!-- -->
<ul>
<li class="">Simplified parsing a lot.</li>
<li class="">Moved the task of handling sources specified in file-links almost entirely to the download queue.</li>
<li class="">Improved error checking.</li>
<li class="">Implemented handling (not just parsing) of part-hashes and master-hashes specified via file-links.</li>
<li class="">Fixed support for multiple sources in a file link, which fixes bug #506</li>
</ul>
</li>
<li class="">Properly replicate file permissions when copying files via the UTF8_CopyFile function. Also removed an unneeded free/malloc set of calls by allocating on the stack.</li>
<li class="">Added the ability to execute commands when a download has been completed and removed some unimplemented options from the preferences. This fixes bug #152.</li>
<li class="">Update the "clients on queue" count when purging clients. This should resolve bug #478.</li>
<li class="">Properly disable filtering on searches when filtering is supposed to be disabled. This approach does also not remove the existing search-string if filtering is toggled on and off.</li>
<li class="">Fixed the kad-statistics using the colors of the download-statistics rather than its own settings.</li>
<li class="">Implementing kad-node graph. This patch does not add support for the graphs on the webserver.</li>
<li class="">Removing trailing "i"s from time values created by CastSecondsToHM.</li>
<li class="">Reduced log verbosity when deleting downloads.</li>
<li class="">Sync deletion of items on friend, download and server lists via the Delete key. This resolves bug #649.</li>
<li class="">We now completly disallow the sharing of the users home-dir.</li>
<li class="">Changed the check for file-size in the hasher-thread, which was using a too large value, greater than what is actually supported by the ed2k network.</li>
<li class="">Fixed compilation on the x86 version of MacOSX.</li>
<li class="">Added specialization of the CRangeMap class which doesn't contain a user-value per range, dubbed CRangeSet.</li>
<li class="">Added the IP and port of friends to the initial text when opening a chat window. This should more easily allow for adding of clients to the friends list if they message us. This is not a final solution.</li>
<li class="">Added sanity checks to CStatisticsDlg's getColors function.</li>
<li class="">Changed some CList instances to stl containers.</li>
<li class="">Fixed bug in CKnownFile where auto-priorities would be updated before the source had been added to the list.</li>
<li class="">Improved testing of CRangeMap's iterator classes.</li>
<li class="">Final changes to CFile, CMemFile and CFileDataIO:<!-- -->
<ul>
<li class="">Documentation of the classes and functions completed.</li>
<li class="">Completed unittests for CSafeFileIO, CFile, CMemFile.</li>
<li class="">Changed systems calls to explicitly use 64b calls on win32 systems, since win32 uses 32b calls by default.</li>
<li class="">Lots of other small improvements.</li>
</ul>
</li>
<li class="">When sorting search-results by type, sort items with the same type by their extensions.</li>
<li class="">Added the hotkey Ctrl-Q for closing aMule.</li>
<li class="">Dont store the results of unittest that didn't fail when executed, since we ignore successes anyway. This causes a great speedup on some tests, where a large number of checks are made.</li>
<li class="">Set the update frequency for the statistics, fixing bug #637.</li>
<li class="">Strip 's from paths set via amule-config-file, resolving bug #638.</li>
<li class="">Reworked the TTS implementation, so that control-sequences are passed to the widget, improved walking through the list by repeatedly pressing a letter and finally fixed the use of arrow-keys on some locales.</li>
<li class="">Also clear the log-line (lower-left) when the log is reset.</li>
<li class="">Replaces a few "wxASSERT(x); if (!x) return" with wxCHECK(x)s.</li>
<li class="">Force an update when the file has been completed, which allows the DownloadListCtrl to detect that a file has been completed.</li>
<li class="">Optimized the unicode-conversion functions, which were causing unneeded copies to be made.</li>
<li class="">Only enable the clear-completed button and menu-item when there are completed items. This resolves bug #403.</li>
<li class="">Fixes deadlock triggered when a UDP socket tried to recover.</li>
<li class="">Fixed compilation for 64b systems, caused by mismatching parameter types in a pure-virtual function.</li>
<li class="">Improved sanity checking of DNS resolutions in CServerUDPSocket.</li>
<li class="">Fixed a few calls to CFile's Create function, which were using a wrong parameter type for the second argument.</li>
<li class="">Changed MuleUnit to output results as soon as possible.</li>
<li class="">Added generic CMuleUDPSocket class, which unifies common tasks such sending, receiving, error-handling and interfacing with the UploadBandwidthThrottler. I also included a recovery mechanism for when a socket becomes invalid, which fixes bug #489.</li>
<li class="">Fixed crashes when kad is enabled but the ClientUDP-socket is not.</li>
<li class="">Fixes names not being prepended to debug messages.</li>
<li class="">Fixed potential mem-leak on the download-queue.</li>
<li class="">Fixed secondary sort-ordering on the download-queue.</li>
<li class="">Changed source-handling so that we can distinguish between sources returned from the local server and sources returned from global servers.</li>
<li class="">Added debugging messages for when sources are received from an unknown file.</li>
<li class="">Removed remaining fake-check stuff and fixed assert repported by stefanero, caused by a bit of fake-check code left behind.</li>
<li class="">Changed handling of log-entries from worker-threads, so that these are queued rather than sent immediatly. This is needed since adding a pending event requires locking of the gui-mutex, which easily leads to deadlocks.</li>
<li class="">Fixed race-condition in the download-queue, where multiple DNS resolution threads could be created for the same hostname.</li>
<li class="">Fixed an assertion in the kad-dialog caused by an insertion at an invalid index. This only happened for some versions of wxWidgets.</li>
<li class="">Fixed color-updating of items being downloaded from the search-lists.</li>
<li class="">Re-implemented rating icons on search-result lists using the builtin support for icons on wxListCtrls. This saves us from having to manually draw everything and fixes the crash on using TTS.</li>
<li class="">Fixed a bug in the ObservableQueue class, which would cause UDP requests to servers to be done only once, whereafter no further requests would be made. This was the source of the problem with aMule not finding sources for newly added files.</li>
<li class="">Fixed a race-condition in aMule when shutting down while a global search is running. This should resolve bug #563.</li>
<li class="">Reworked the CServerUDPSocket class a bit, most importantly, changed it so that servers being deleted while we are doing a DNS lookup on their hostname cant result in accessing of dangling pointers. This should bug #581.</li>
<li class="">Fixed bug #558. Sources not being sorted when the download-queue was sorted by the "Time Remaining" column.</li>
<li class="">Cleaned up file-ratings and comments handling:<!-- -->
<ul>
<li class="">Dropped the m_hasRating and m_hasBadRating booleans, as these can be infered from the value itself.</li>
<li class="">Dropped the SetHasComment and SetHasRating functions, as this is more safely handled in UpdateFileRatingCommentAvail.</li>
<li class="">Cleaned up the UpdateFileRatingCommentAvail function since it was rather messy.</li>
<li class="">Removed a unnescesarry call to Notify_DownloadCtrlUpdateItem in the function ProcessMuleCommentPacket, since this is already done in the UpdateFileRatingCommentAvail function.</li>
</ul>
</li>
<li class="">Added sanity checks to the code that made use of said file-ratings.</li>
<li class="">Added sanity checks against file-ratings read from other clients, since we later rely on these values to be in a specific range.</li>
<li class="">Fixed some uninitialized variables.</li>
<li class="">Make ascending the default sort-order and fixed loading of the sort-order in the CMuleListCtrl class.</li>
<li class="">Added a missing call to Skip in the TTS event-handler for item selections, so that subclasses will still be notified.</li>
<li class="">Reworked CMuleListCtrl and added support for "Type To Select", or the ability to select items by typing parts of their name. The selection is made against the start of the text-strings and is case-insensitive.</li>
<li class="">Fixed some more warnings.</li>
<li class="">Fixed compilation problems with external CryptoPP sources, caused by a preprocessor define which clashed with a variable name.</li>
<li class="">Changed the length parameters of the read-funtions in the CFileDataIO interface to be unsigned, since signed lengths doesn't make any sense in this regard and makes error-checking harder.</li>
<li class="">Merged checks for the ARM and Sparc architectures.</li>
<li class="">Changed a call to bzero to memset, since win32 doesn't have bzero.</li>
<li class="">Fixed remaning issues with template usage in MuleUnit.</li>
<li class="">Cleaned up error handling in CClientUDPSocket a bit, and added error-checks to CServerUDPSocket. This should allow us to see if the INVSOCK errors are local to CClientUDPSocket or if they happen to all wxDataGramSockets.</li>
<li class="">Added check requiring a valid port to CClientUDPSocket's SendPacket function, since we apprently tried to send to port 0 once in a while.</li>
<li class="">Moved adding of sources read from seeds files out of the exception-handler, to avoid the obscuring of possible bugs elsewhere.</li>
<li class="">Final touches made on the CMemFile class, which includes cleanups, improved error-checking and complete documentation.</li>
<li class="">Added missing destructor to CUInt128, which was causing compilation failure for some GCC-4 users.</li>
<li class="">Fixed an attempt to fprintf a wide-char string.</li>
<li class="">Enabled the use of kad with wxWidget versions 2.5.x.</li>
<li class="">Improved handling of uncaught exceptions in MuleUnit and changed the library from being an actual wx application, since we only need to make use of wxWidgets classes.</li>
<li class="">Expanded the CFormat testcases a bit, to better cover use of illegal values and the checks against those.</li>
<li class="">Improved checking of value convertions in CFormat, now properly detects nagative values converted to signed values and signed to negative, plus some other situations.</li>
<li class="">Fixed format-strings in the statistics-tree that did not specify a type large enough to actually represent the possible values.</li>
<li class="">Disabled certian tool-tips for wxWidgets-2.4.2, since the calls made use of functions that were introduced in wxWidgets-2.6.x.</li>
<li class="">Moved archive-unpacking functions from the HTTP-thread to FileFunctions.*. This allows for compressed files to be read both when the source is the inbuilt HTTP downloader, or if a compressed file (ipfilter.dat or server.met) is explicitly moved to the .aMule folder.</li>
<li class="">Changed C++ style comments in C sources to using C style comments.</li>
<li class="">Added check against trying to write NULL pointers in the CFileDataIO WriteStringCore function.</li>
<li class="">Added some initial tests for the string reading and writing functions to the CFileDataIO unittests.</li>
<li class="">Removed the RepeatLastAction stuff from CClientReqSocket.</li>
<li class="">Fixed the check for BOM-header failing on strings that were 3 bytes long (an empty string).</li>
<li class="">Fixed empty UTF8 strings with BOM headers not having the header written, even though we had already written a length which included the header.</li>
<li class="">Changed CSafeFileIO's ReadUInt128 to return an instance, which simplified usage and matches the other Read-functions.</li>
<li class="">Added missing exception-handler to CIndexed in case of invalid tags.</li>
<li class="">Marked the log-event triggered when an IP was filtered as non-crticial, since this event isn't critical and can be very common depending on the ipfilters used.</li>
<li class="">Changed unittests for CFormat when empty strings were specified for a field of type '%s', since some implementations of printf produced different results than others, making it impossible to check against those.</li>
<li class="">Fixed unittests for reading of UInt128 values which didn't consider endianess.</li>
<li class="">Changed the use of Cmp to either '==' or '!=' to improve readability, and simplified the sorting of the server-list when sorting by name to only use the displayed name, since the special cases that were being considered led to unpredictable results.</li>
<li class="">Fixed non-wxbase apps not terminating properly.</li>
<li class="">Fixed adding of comments to shared files.</li>
<li class="">Properly implemented a couple of functions for the remote version of the DownloadQueue, which did not match the signatures of the normal class.</li>
<li class="">Changed CMuleListCtrl's SetSortFunc to public, so that subclassing isn't required in order to sort a list.</li>
<li class="">Dropped the "otherfunctions" namespace, since we ignored it almost everywhere anyway, via the "using" keyword.</li>
<li class="">Updated CFileDataIO unit-tests.</li>
<li class="">Fixed UpdateState getting called on clients after they had been deleted (in some cases) and moved the call to the CUpDownClient destructor.</li>
<li class="">Made CTag and CPacket unassignable.</li>
<li class="">Renamed ReadHash16 and WriteHash16 functions of CFileDataIO, and changed them to return instances and take const references of CMD4Hashes, rather deal with char*. A few other places were similary changed.</li>
<li class="">Dropped the static Exists function from CFile, as it is simpler to just call wxFileExists directly.</li>
<li class="">Removed the ability to attach/deattach file-destriptors to a CFile.</li>
<li class="">Merged handling of seeking in the CSafeFileIO interface.</li>
<li class="">Some more changes to CMemFile:<!-- -->
<ul>
<li class="">Making seek const and dropped resizing of the buffer if it seek'd past the end.</li>
<li class="">Made the class uncopyable and unassignable.</li>
<li class="">Changed the constructor that takes an external buffer to take a char* rather than a const char*, since the class allow for modifications of attached buffers.</li>
<li class="">Removed the growth-rate from the attached-buffer constuctor, as we dont make use of it and should avoid it in any case.</li>
<li class="">Added sanity check for the length passed to the SetLength function, to avoid accepting negative values.</li>
<li class="">Other misc changes.</li>
</ul>
</li>
<li class="">Removed the ability to detach a buffer from a CMemFile and the accessor function that returned the current buffer. Instead, we now simply use the Read function, which is equivalent of what we did before in any case, but safer.</li>
<li class="">Unified the logging of packets received from other clients, so that the type of packet received is always logged, as is the cause in case of an error.</li>
<li class="">Fixed a couple of assertions which had the checks inverted.</li>
<li class="">Merged CFile and CSafeFile. Checks on reads and writes are now performed in the CFileDataIO base class. The CFileIO class used in kad was updated to handle this, though it currently only understands EOF exceptions. This completes the majority of the changes resolving around the usage of exceptions.</li>
<li class="">Fix compilation error that would only trigger on some versions of GCC, even though the code appears to be illegal.</li>
<li class="">Disabled pragmas when building unittests.</li>
<li class="">More fixes in MuleUnit for templates.</li>
<li class="">Disabled logging when running unittests.</li>
<li class="">Changed CFileDataIO to use the new IO exception types, which allows for better error handling (i.e. EOF exceptions, IO read/write failures) and prepared for making use of the IO failure exceptions.</li>
<li class="">Reorganized, and removed some includes.</li>
<li class="">Fixed a couple of places that threw exceptions by pointer.</li>
<li class="">Moved exception handling from CServer to CServerList when loading servers, which better allows for handling of invalid servers.</li>
<li class="">Fixed some debug-strings which were wrongly marked for translation.</li>
<li class="">Added IO-exception types, which will be used by CFileDataIO.</li>
<li class="">Moved exception handling from CFriend to CFriendList when loading the list of friends, so we can stop trying to read a bad list.</li>
<li class="">Added missing include to MemFile.cpp</li>
<li class="">Changed some runtime-error checks from throwing the CInvalidPacket class to instead using the MULE_VALIDATE_* checks.</li>
<li class="">Simplified the usage of CTags by changing the getter functions to throw an exception if the function didn't match the type of the tag. This allowed for the elimination of explicit checks in most places where CTags are used.</li>
<li class="">Initialized an uninitialized variable in CContact.</li>
<li class="">Fixed stack-trace parsing for files with '+' in the name.</li>
<li class="">Improved exception handling in the CTag constructor would could leak if the tag had a string name and reading the body raised an exception, or if the tag was a blob and reading the body failed.</li>
<li class="">Added checks for code that uses the CTag class, since just assuming that a tag with a specific id is of a specific type is unsafe. Also changed the getter functions to return a default value should they be called on a tag of the wrong type to avoid crashes in that case. Finally, we no longer just ignore unknown tag-types, instead we throw an exception. This is needed because we cannot determine the length of the unknown tag, and thus can't skip it, making further reads from the input file suspect.</li>
<li class="">Largely reworked the use of exceptions. Catch(...) is out, only to be used when memory-leaks are to be avoided. This insures that unexpected exceptions can be detected.</li>
<li class="">Removed an exception handler that didn't have anything to catch.</li>
<li class="">Changed CreateHashFromInput to use the CSafeFileIO interface and to safely handle exceptions without leaking. Also removed some definitions of MFC debug-macros and replaced them with wx macros.</li>
<li class="">Fixed the largefile-checks under windows.</li>
<li class="">Changed CMemFile and CFile to implemenations of the CSafeFileIO interface. CSafeFile was moved to CFile.* to avoid circular dependancies.</li>
<li class="">Dropped the CSafeMemFile which didn't provide any extra functionality and instead made CMemFile derive from CSafeFile.</li>
<li class="">Simplified CFile a bit, in preparation for larger changes:<!-- -->
<ul>
<li class="">Removed the Length() function, since there is also GetLength().</li>
<li class="">Removed duplicate definition of seek enums.</li>
</ul>
</li>
<li class="">Changed the checks for large-file support so that users wouldn't have to export the LD_LIBRARY_PATH variable or similar when running configure.</li>
<li class="">Updated CIPFilter documentation.</li>
<li class="">Changed the ipfilter class from just asserting on invalid ranges to not actually inserting them, since that would cause undefined behavior.</li>
<li class="">Compilation-fix for Mandrake Linux.</li>
<li class="">Added checks against largefile support to configure.</li>
<li class="">Added helper-function that returns the length of a file, without having to open it first.</li>
<li class="">Moved the loading of the ipfilter-files so that they are loaded before the server.met file is loaded. This ensures that the servers are filtered when start aMule.</li>
<li class="">Fixed some problems in MuleUnit when used with templates.</li>
<li class="">Fixed the CheckNewVersion function, which would crash on failure.</li>
<li class="">Dropped extra verbosity from CFormat's assertions, since they now produce backtraces anyway.</li>
<li class="">Moved backtrace functions to the MuleDebug.* files and added backtraces to uncaught exceptions.</li>
<li class="">Improved assertion-handling on shutdown and other situations.</li>
<li class="">Increased the verbosity of assertions in CFormat.</li>
<li class="">Fixed the "Is Textfile?" check which didn't handle whitespace.</li>
<li class="">Added support for gzipped ipfilter.dat files and added checks that should ensure that we only try to parse text-files.</li>
<li class="">Added function for converting long-longs to strings in MuleUnit.</li>
<li class="">Moved some functions not part of the CFile class from the CFile.* files to FileFunctions.*.</li>
<li class="">Fixed a bug where shared files could be added to the shared-files ctrl multiple times.</li>
<li class="">Fixed the hasher-thread, where the wxMutexGuiLeave function was called twice and improved error-checking on thread-creation. Lastly moved static variables from the header, since they need not be specified there.</li>
<li class="">Removed non-functional hack from CClientUDPSocket, which would cause an infinate loop when triggered.</li>
<li class="">Improved handling of assertions that occur during startup.</li>
<li class="">When adding sources, add the source to the appropriate file first, before trying to update comments and ratings availability.</li>
<li class="">Removed a couple of checks against 'this' being NULL.</li>
<li class="">Changed the handling of UDP requests for sources, so that the locally connected server would be entirely skipped, instead of the packets just being discarded.</li>
<li class="">Fixed a number of places where attempts were made to catch by pointer, even though the exception was thrown by value.</li>
<li class="">Removed various unused variables.</li>
<li class="">Fixed a bug in the download queue which would result in duplicate entries on the queue for local source-requests. At the moment this did not result in any problems since all entries were removed from the queue once sources had been requested for the file.</li>
<li class="">Removed the 'h' modifier from a number of format-strings where the field type is 's', since that modifier does not apply to that type.</li>
<li class="">Simplified mule-exceptions and added more information to the unhandled-exception handler.</li>
<li class="">Added unittests for CSimpleParser.</li>
<li class="">Removed the need for exception-handling in CSafeFileIO's ReadOnlyString function, by allocating the buffer on the stack.</li>
<li class="">Fixed potential deadlock in CClientUDPSocket that could trigger when an error occured during receiving.</li>
<li class="">Removed a number of overloaded functions from the CSafeMemFile, since neither of those added any functionality. Also fixed a bug in the checks against reads past the end, that checked against the buffer-size rather than the (possibly smaller) file-length.</li>
<li class="">Marked CFile's GetLength() function as virtual.</li>
<li class="">Removed the unused class CSafeBufferedFile, which didn't implement buffered file-IO anyway.</li>
<li class="">Added the ability to filter search-results. The filter select which entries are displayed and supports regular-expressions. See <a href="http://www.wxwidgets.org/manuals/2.6.2/wx_wxresyn.html" target="_blank" rel="noopener noreferrer" class="">www.wxwidgets.org/manuals/2.6.2/wx_wxresyn.html</a> for an overview of the syntax. Also added the ability to filter known files from the results.</li>
<li class="">Added sanity checks on values read when loading settings for lists.</li>
<li class="">The middle mouse button now opens the details-dialog for sources and files when clicking on the download-queue.</li>
<li class="">Fixed sort-arrows on listsctrls not being displayed after startup.</li>
<li class="">Set the background color of the chat textctrls to white, in order to ensure that the text stays readable regardles of the theme used.</li>
<li class="">Largly changed the way ipfilter.dat files are handled by the ipfilter class:<!-- -->
<ul>
<li class="">When updating the list of ip-ranges, either via the reload button or the update-from-url functionality, the existing ranges are dropped to allow for dropping of ranges no longer to be filtered.</li>
<li class="">In order to allow for ip-ranges specified by the user, a second file has been added (ipfilter_static.dat), which is always loaded after the normal ipfilter.dat file, so that it takes precedense.</li>
<li class="">When either of the two ipfilter files don't exist, a template file is created which contains a description of the use that that file.</li>
<li class="">When loading zipped ipfilter files, the files are unpacked in place. Doing so largely elimates the overhead compared to loading normal files.</li>
<li class="">Moved loading of the ipfilter.dat files, so that it done after the GUI has been loaded.</li>
</ul>
</li>
<li class="">Removed the unused ExternalConnClientThread class.</li>
<li class="">Merged two copies of the validateURI function in StringFunctions.* and fixed a mem-leak.</li>
<li class="">Simplified the Update() function in the ipfilter-class, removing the use of special cases when calling it.</li>
<li class="">Moved custom tokenizing code from the ipfilter-class to a seperate class and dropped a couple of custom functions that didn't provide enough of a performance boost to warrent the extra code.</li>
<li class="">Added unittests for the StringIPtoUint32 function, updated the documentation for the function and fixed the bugs that appeared:<!-- -->
<ul>
<li class="">The last field was not restricted to the range 0..255.</li>
<li class="">Fields containing huge values could overflow to negative values and would not be caught by the sanity checks.</li>
</ul>
</li>
<li class="">Changed ASSERT_EQUALS so that descriptions only gets created in case of a failed comparison, since this would otherwise result in the attempted deference of end iterators and the like.</li>
<li class="">Moved the RLE classes to a seperate set of source files.</li>
<li class="">Removed probematic <code>operator&lt;()</code> template function from WebServer.*, and replaced it with a specialized struct. This was required since the &lt; operator would be instantiated for incorrect data-types.</li>
<li class="">Updated documentation for the CFormat class.</li>
<li class="">Dropped support for long doubles in CFormat and merged handling of the other floating-point types.</li>
<li class="">Improved CFormat unittest, which was cluttered by serveral variables with too similar names.</li>
<li class="">Fixed the ASSERT_EQUALS macro in MuleUnit, which would previously evaluate parameters multiple times.</li>
<li class="">Removed the unused NeedUTF8String() function.</li>
<li class="">Fixed master-hash parsing for ed2klinks, which would always fail due to a couple of assertions that had been badly translated into exception.</li>
<li class="">Changed the way clients are deleted on shutdown, to help detect the presence of dangling pointers caused by incorrect removals.</li>
<li class="">Fixed bug #494. Clients with score zero not being considered as candidates for uploading.</li>
<li class="">Fixed a few warnings.</li>
<li class="">Improved handling of uncaught exceptions in the MuleUnit framework.</li>
<li class="">Added unittests for the CFormat class and fixed discovered errors:<!-- -->
<ul>
<li class="">Improved handling of string format fields.</li>
<li class="">Fixed a &lt; comparison of 0 against a wxString which caused segfaults.</li>
<li class="">Fixed the range checking code which would fail in some cases.</li>
<li class="">Fixed escaped percentage signs.</li>
<li class="">Added the missing implementation of IsReady().</li>
<li class="">Improved adherence to printf as specific in 'man 3 printf'.</li>
</ul>
</li>
<li class="">Added unittests for the CRangeMap class and fixed the errors that cropped up while writing said tests:<!-- -->
<ul>
<li class="">The assignment operator didn't return *this.</li>
<li class="">The equality operator was broken.</li>
<li class="">The erase function was broken.</li>
<li class="">Also changes ASSERTS to MULE_VALIDATE_PARAMS to enable testing and ensure that the controlflow stays the same for debug and non-debug builds.</li>
</ul>
</li>
<li class="">Added a minimalistic unittesting framework called MuleUnit, which is based on the EasyUnit framework (<a href="http://easyunit.sourceforge.net/" target="_blank" rel="noopener noreferrer" class="">http://easyunit.sourceforge.net/</a>). The build target 'check' compiles and runs all existing unittests.</li>
<li class="">Fixed crash in CClientUDPSocket caused by two threads trying to send and receive at the same time.</li>
<li class="">Removed unused Pause() function from UBT.</li>
<li class="">Fixed inf. loop in CClientUDPSocket, caused by poor error-handling.</li>
<li class="">Rewrote some poorly phrased messages.</li>
<li class="">Fixed uploaded data not being recorded in statistics.</li>
<li class="">Compilation fixes for wxGTK-2.4.2.</li>
<li class="">Removed the unused 'MakefileWin32' file.</li>
<li class="">Fixed crash in sockets that were destroyed after the UBT thread.</li>
<li class="">Improved source handling for known-files:<!-- -->
<ul>
<li class="">Fixed the possibility of source-counts getting out of sync.</li>
<li class="">Optimized source-removal slightly.</li>
<li class="">Added extra debugging checks to spot potential problems.</li>
</ul>
</li>
<li class="">Changed access to vector of source statuses from using the [] operator to using the at function, to see if out-of-bounds access was causing a specific crash.</li>
<li class="">Imported the UploadBandwidthThrottler from eMule, which should help ensure that upload-limits are more closely followed.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">All the translaters who did such a great and fast job.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.3]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.3</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.3"/>
        <updated>2005-06-15T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[ken:]]></summary>
        <content type="html"><![CDATA[<p>ken:</p>
<ul>
<li class="">Enabled amuleweb to work from within the Mac application bundle</li>
<li class="">Fixed Online Signature not actually being enabled when user sets the preference</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed #471 "compile error". Should compile on GCC4 again.</li>
<li class="">Fixed Solaris compilation error on XParseGeometry.</li>
<li class="">Fixed wrong MD5 hash calculation on 64 bits arch. This fixes storing the wrong EC/webserver password on config file.</li>
<li class="">Fixed unneeded GTK libs usage on aMule remote GUI.</li>
<li class="">Added a warning on gd-lib not found (progressbar not shown on amuleweb).</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">New daemon socket code, event based. Improved reliability and speed problems fixed.</li>
</ul>
<p>volpol:</p>
<ul>
<li class="">Fixed #417 "Upload priority is changed for completed files."</li>
<li class="">Added new display filter "Active"</li>
<li class="">Display of QR and aMule OS info in "Clients Details" dialog</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Fixed warning on EC disabled for aMule daemon.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">All the usual people. You don't know who they are? Just check previous changelogs (just not the previous one, ok?) <!-- -->:P</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.2]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.2</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.2"/>
        <updated>2005-06-04T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[boutros:]]></summary>
        <content type="html"><![CDATA[<p>boutros:</p>
<ul>
<li class="">Ported the eMule Chicane web template to aMule.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Fixed #421: 'In Windows XP it lets to choose Konqueror, Galeon and other Unix based browsers.'</li>
<li class="">Fixed #406 and #380: 'some clients get an unexpected very high priority'</li>
</ul>
<p>ken:</p>
<ul>
<li class="">Fixed a hang-using-100%-cpu-on-exit bug</li>
<li class="">Fixed a crash when enabling UDP after startup</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Added Version Check (you can disable it on preferences).</li>
<li class="">Added "source comes from" (on the "Time remaining" column)</li>
<li class="">Now you can compile aMule without gettext, using --disable-nls Additionally, aMule no longer stops configure if there is no gettext installed.</li>
<li class="">Fixed aMule shutting down if a source seeds file is 0-size.</li>
<li class="">Fixed HTTP download code not returning proper error code (causing crashes).</li>
<li class="">Fixed OS_Info packet only being sent to downlaoding clients.</li>
<li class="">Fixed Solaris mount info file name.</li>
<li class="">Fixed includes on daemon for Solaris.</li>
<li class="">Fixed mldonkey detection. Did anyone notice mldonkey bans aMule?</li>
<li class="">Fixed SetAllTimeTransfered parameter size (thanks eylzo)</li>
<li class="">Fixed #430: "Sources order by priority/status"</li>
<li class="">Fixed #442: "Sort by 'Time Remaining' puts files which are not transferring first"</li>
<li class="">Fixed #453: "Add option to export links with AICH hashes"</li>
<li class="">Fixed #458: "Wrong gauge size on shared files control "</li>
</ul>
<p>volpol:</p>
<ul>
<li class="">Ports display fix.</li>
<li class="">A4AF swap to this fix.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Bug reporters: Ateo, BeFalou, MrFaber, xushi</li>
<li class="">All the usual people. You don't know who they are? Just check previous changelogs <!-- -->:P</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.1]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.1</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.1"/>
        <updated>2005-05-18T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[ken:]]></summary>
        <content type="html"><![CDATA[<p>ken:</p>
<ul>
<li class="">Fixed Tray Icon compilation on Mac.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">HOTFIX: Fixed 100% CPU usage because of network errors on some servers.</li>
<li class="">Fixed crash after removing a server.</li>
<li class="">Fixed sorting on the UploadList by Transferred (thanks eylzo).</li>
<li class="">Users/Files on server no longer show as negative if server sends wrong values.</li>
<li class="">Check for autopoint on configure to warn for gettext not installed.</li>
</ul>
<p>niet:</p>
<ul>
<li class="">Updated xal.pl (some fixes).</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Added DNS resolving functionality to amulecmd's connect command. This is usefull for dynamic IP servers. Now you can use the server's name instead of the server's IP address.</li>
<li class="">Fixed a bug in http proxy authentication code.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Contributors: eylzo</li>
<li class="">Bug and feature reporters: albatros_la, Lucky_JL, Mr Faber</li>
<li class="">All the usual people (translators, debugers, people at #amule, etc) C'mon, this is a hotfix release, I can't add everyone again.</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.0]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.0</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.0"/>
        <updated>2005-05-01T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'Let's dedicate this to Tiku' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'Let's dedicate this to Tiku' version</em></p>
<p>BigBob:</p>
<ul>
<li class="">Compilation fix for WebServer.cpp and BaseClient.cpp with wx-2.4.2.</li>
<li class="">Compilation fix for OtherFunctions.cpp with Slackware 9.1.0</li>
</ul>
<p>CosmicDJ:</p>
<ul>
<li class="">NetBSD compilation fixes.</li>
</ul>
<p>deltaHF:</p>
<ul>
<li class="">Preferences for auto-sort download queue.</li>
<li class="">TCP and UDP port start now at 0 (remember - running amule as root is insecure!!)</li>
<li class="">Added aMule version info into "About" popup.</li>
<li class="">Show current DL speed from a client you are uploading to in "Remote Status" column instead of in the "Speed" column.</li>
</ul>
<p>geeko:</p>
<ul>
<li class="">Patch to complete html functionality of cas.</li>
<li class="">Fixed seg fault in cvs due to wrong type check.</li>
</ul>
<p>gnucco:</p>
<ul>
<li class="">Improved the sources column and sorting in search window. Now can toggle total sources/completed ascending/descending.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Unicode fixes:<!-- -->
<ul>
<li class="">UTF-8 conversion (reported by littletux)</li>
<li class="">webserver search results (reported by poulpe)</li>
<li class="">aMule version on webserver's Statistics page</li>
</ul>
</li>
<li class="">Endianness fixes in EC.</li>
<li class="">Fixed appearing strange characters at the end of webserver's log and debug log pages.</li>
<li class="">Fixed logo.jpg being not installed.</li>
<li class="">Webserver graphs are now resizable and rescalable.</li>
<li class="">Removed some unneeded code/data from daemon.</li>
<li class="">Added gcc #pragmas to reduce executable size.</li>
<li class="">Several improvements on EC network code:<!-- -->
<ul>
<li class="">EC now uses buffered I/O, so most EC transmissions will only require one socket operation.</li>
<li class="">Added the ability to compress large packets with zlib, thus reducing network load.</li>
<li class="">Some (not-so-CPU-consuming) compression is applied to small packets, too.</li>
</ul>
</li>
<li class="">A number of i18n fixes, mostly changing debug messages to be untranslated.</li>
<li class="">Removed ECv1 compatibility mode. Now all EC communications are using the new v2 protocol.</li>
<li class="">Remote applications do not log to core's log anymore.</li>
<li class="">Fixed the GetLog() function to be compatible with wxWidgets-2.5.4</li>
<li class="">Reworked template finding - after installation, no more copying of webserver files are needed.</li>
<li class="">Added new command 'reloadshared' to amulecmd, to force reloading of shared files list.</li>
<li class="">Fixed configure script to use the right arguments with gdlib-config.</li>
<li class="">Fixed configure script to check for gd in the right order.</li>
<li class="">Fixed preferences being not saved when set from web interface.</li>
<li class="">Fix for setting download priorities via web interface.</li>
<li class="">Added configuration file for remote apps.</li>
<li class="">Reworked command-line parameters, also added a lot new ones (for remote apps).</li>
<li class="">Fixed *.desktop files to be really UTF-8.</li>
<li class="">Fixed Makefiles to be able to compile alcc without alc.</li>
<li class="">Added man pages - English only, for this time. Great thanks to Vollstrecker for his initial work on the man pages!</li>
<li class="">Fixed pressing the 'Clear Completed' button causes a logout on the web interface.</li>
<li class="">Added CVSDATE checks to EC, to make sure that core and remote apps are from the CVS tarball (for CVS users).</li>
<li class="">Improved filename cleanup.</li>
<li class="">Fixed setting priorities via web interface on both downloads and shared files.</li>
<li class="">Enabled translations on amuleweb and amulecmd.</li>
<li class="">Fixed the language selector on Preferences to show the languages that we really have.</li>
<li class="">Language list is now always sorted alphabetically, but 'System default' is always the first item in the list.</li>
<li class="">Changed locale saving method, so it won't have to be reset to 'System default' on each version change.</li>
<li class="">Added Hungarian man pages.</li>
<li class="">Fixed sorting in web interface.</li>
<li class="">Compilation fix for gcc-3.2.2 and 3.2.3.</li>
<li class="">Win32 (wxMSW) compilation fixes.</li>
<li class="">Enabling configure way of aMule compilation under MinGW/MSYS.</li>
<li class="">Several improvements of the win32 version of aMule and utilities.</li>
<li class="">Totally disabled the ability to connect to aMule with an empty password.</li>
<li class="">Enabling translations on remote GUI, too.</li>
<li class="">Configure will now list (almost) all libraries it will/wants to use for build.</li>
<li class="">Hungarian translation update.</li>
<li class="">Remote GUI compilation and link fixes for optimized builds.</li>
</ul>
<p>--- For users, who already got used to amulecmd's or amuleweb's command-line parameters: PLEASE READ DOCUMENTATION CAREFULLY!</p>
<p>Hetfield:</p>
<ul>
<li class="">New popup menu and events management for new wx SysTray</li>
<li class="">Speed Bar color (on the new wxTray) is setted in the statistics color selection (as old GTK tray!)</li>
<li class="">Some configure checks and cleanup</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">
<p>Global</p>
<ul>
<li class="">We're now fully compatible with the ed2k Unicode implementation, allowing Unicode searches, comments, usernames, file names, ... This works both for unicode-aware servers and clients.</li>
<li class="">New SysTray code using wxWidgets' wxTaskBarIcon with several hacks for making it properly transparent while keeping the nice download speed bar. Multiplatform, also. Activated by default on &gt; wx2.5.3</li>
<li class="">Corrected a nice mistake where wxSOCKET_LOST was identified as error.</li>
<li class="">Fixed clasic systray code to support unicode names properly.</li>
<li class="">Removed/Cleaned/etc header includes.</li>
<li class="">Fixed unicode bug on wxOpen preventing to share some files.</li>
<li class="">Fixed the SERVER_IDENT packet processing.</li>
<li class="">Auto-sort code for list controls. Disabled by default, too much flickering on mac and gtk2.</li>
<li class="">Fixed eMule+ version popping up on eMule stats.</li>
<li class="">Debug log lines now go to console on daemon</li>
<li class="">Moved hello packet sending to after client successful connection.</li>
<li class="">Added the RepeatLastAction function that turned up to be... well, funky.</li>
<li class="">Fixed debug of disconnected clients.</li>
<li class="">Fixed duplicated mod string on clients.</li>
<li class="">Fixed unhandled exception from server TCP socket.</li>
<li class="">Fixed lowid clients callback.</li>
<li class="">Fixed duplicated floating point functions being called every second (CPU improvement).</li>
<li class="">New file is added: tree.hh, credits to Kasper Peeters, <a href="mailto:K.Peeters@damtp.cam.ac.uk" target="_blank" rel="noopener noreferrer" class="">K.Peeters@damtp.cam.ac.uk</a>. It's a stl-like tree and I really enjoyed coding with it. More info on <a href="http://www.damtp.cam.ac.uk/user/kp229/tree/" target="_blank" rel="noopener noreferrer" class="">http://www.damtp.cam.ac.uk/user/kp229/tree/</a></li>
<li class="">Fixed a crash on Proxy code created by bad string initialization causing mem corruption.</li>
<li class="">Added wxProxyData::Empty() to properly clean aMule proxy data when needed.</li>
<li class="">Fixed unitialized variables on MemFile.cpp and SafeFile.cpp that made valgrind scream in pain.</li>
<li class="">Fixed the CUpDownClient::SendFileRequest crash you were all screaming about on rc8 <!-- -->:P</li>
<li class="">Fixed SUI failures with kernels &gt;= 2.6.10. This failures and asserts were created by the locking of /dev/urandom that was introduced on 2.6.10, and that made CryptoPP fail on creating a random pool for the SUI identification. This is more a workaround actually than a fix, but will work perfectly.</li>
<li class="">Completed files now go to shared as the should.</li>
<li class="">Fixed search on localised languages.</li>
<li class="">UDP disable is working properly now.</li>
<li class="">Close the UDP socket if we're not listening anymore.</li>
<li class="">Permisions for shared files are no more. They make no sense, network-wise.</li>
<li class="">Fixed comment updates being... fuzzy.</li>
<li class="">Fixes to timeout handling of sources to avoid timing out a source that was never processed.</li>
<li class="">Fixed a memleak on log code.</li>
<li class="">Proper handling of Thread reating/Running errors.</li>
<li class="">Fixes for wrong string creation on several places over the code.</li>
<li class="">Fixed log reset asserts and made it work properly (at last!)</li>
<li class="">Auto-run webserver on startup functional</li>
<li class="">Fixed a wild assertion if a empty line gets to ED2KLink file</li>
<li class="">Merged Gonosztopi's work on EC for the stats tree with performance and safety fixes.</li>
<li class="">Merged Gonosztopi's work on a patch from Mayfoev to use aux server ports, with some cleaning.</li>
<li class="">Fixed the crash on non-std locales because of date/time functions.</li>
<li class="">Get rid of more ugly unicode2char stuff by making the logfile a wxFFileOutputStream.</li>
<li class="">General speedup of log file.</li>
<li class="">Proper order of files on Makefile.am, much better to know compilation progress by first letter.</li>
<li class="">Moved at last all stats to where they belong: the new files Statistics.cpp and Statistics.h.</li>
<li class="">Fixed assert on client list view caused by unknown client state.</li>
<li class="">Hopefully avoid the never-deleted sockets (passive sources)</li>
<li class="">Fix for the case that someone dares having 65536 active connections</li>
<li class="">Made the sources connection spread evenly among part files.</li>
<li class="">Fixed server-list packet from server not being handled properly.</li>
<li class="">Fixed crahes on re-sort of download queue.</li>
<li class="">Fix for server connection packet not using unicode username.</li>
<li class="">Search results on unicode are displayed properly now.</li>
<li class="">Files on download queue with unicode names are displayed properly now.</li>
<li class="">Unicoded filename is saved correctly on .met file, and loaded according to it.</li>
<li class="">Files with utf8 chars can be completed now ;)</li>
<li class="">Shared files with uciode names do show correctly now.</li>
<li class="">Modification time for files is fixed to keep coherence (GetLastModificationTime usage).</li>
<li class="">Filenames on known files list (known.met) are saved in utf8 too now, so correctly loaded and compared lately.</li>
<li class="">Fixed unicode identification to clients and server.</li>
<li class="">Use BOM header on the known.met, part.met and emfriends.met for unicode tags. Sad, but there's no other way to keep compatibility with eMule files.</li>
<li class="">Fixed memleak on ExternalConn.cpp.</li>
<li class="">Fixed the "Invalid UTF8 string passed to pango_layout_set_text()" messages on GTK2 builds.</li>
<li class="">Fixed (again) the Shareazza identification. They have used 3 compat. client numbers already, will they take one once and for all?</li>
<li class="">Fixed memleak on log reset.</li>
<li class="">Fixed memleaks on closing while global search.</li>
<li class="">Fixed serious memleak on tag code for packets. And I mean serious.</li>
<li class="">Removed the unused UTF82char function.</li>
<li class="">Fixed queue limits on upload queue (off-by-one bug).</li>
<li class="">Fixed hash for files with size (n*PARTSIZE).</li>
<li class="">Fixed compilation for systems where zlib is not linked by default.</li>
<li class="">Fixed OP_SENDINGPART to actually be a edonkey protocol and not emule protocol packet.</li>
<li class="">Fixed memleak on AICH thread.</li>
<li class="">Fixed several memleaks on ed2k links handling.</li>
<li class="">Fixed threads not being closed properly, specially the global search one.</li>
<li class="">Fixed serious memleak on client UDP reask</li>
<li class="">Don't remove the server because of failedcount if it's static.</li>
<li class="">When the user tries to remove a static server, we prompt for confirmation.</li>
<li class="">Files on non-ansi named folders are no longer rehashed on every restart.</li>
<li class="">Don't discard UDP packets on wxSOCKET_WOULDBLOCK. This improves UDP socket reliability a lot. Remove the packet from queue if sent, keep it if it's not sent because of wouldblock, and drop it on any other error.</li>
<li class="">Send previously queued UDP packets before we send a new UDP packet.</li>
<li class="">Fixed aMule crashing on second global search under certain circunstances.</li>
<li class="">Fixed the hanging on connecting to server.</li>
<li class="">Fixed dynip servers to connect properly (happy portuguese users!).</li>
<li class="">Moved:<!-- -->
<ul>
<li class="">CMemFile.h -&gt; MemFile.h</li>
<li class="">filemem.cpp -&gt; MemFile.cpp</li>
<li class="">packets.cpp -&gt; Packet.cpp</li>
<li class="">packets.h -&gt; Packet.h</li>
<li class="">sockets.cpp -&gt; ServerConnect.cpp</li>
<li class="">sockets.h -&gt; ServerConnect.h</li>
<li class="">UDPSocket.cpp -&gt; ServerUDPSocket.cpp</li>
<li class="">UDPSocket.h -&gt; ServerUDPSocket.h</li>
<li class="">types.h -&gt; Types.h</li>
<li class="">server.cpp -&gt; Server.cpp</li>
<li class="">server.h -&gt; Server.h</li>
<li class="">timer.cpp -&gt; Timer.cpp</li>
<li class="">otherstructs.h -&gt; OtherStructs.h</li>
<li class="">otherfunctions.h -&gt; OtherFunctions.h</li>
<li class="">otherfunctions.cpp -&gt; OtherFunctions.cpp</li>
<li class="">opcodes.h -&gt; OPCodes.h</li>
<li class="">color.h -&gt; Color.h</li>
<li class="">endianfix.h -&gt; EndianFix.h</li>
</ul>
</li>
<li class="">Changed OP_GLOBFOUNDSORUCES  -&gt; OP_GLOBFOUNDSOURCES</li>
<li class="">Unicode fixes for "Gtk-CRITICAL **" errors on shell.</li>
<li class="">Unicode fixes preventing compilation for Packet sources.</li>
<li class="">Unicode fixes for StrToULong usage over atoi.</li>
<li class="">Fixed eMule+ version string.</li>
<li class="">Implemented lugdunums new extension of GETSOURCES, includes SIZE (uint32) to avoid problems created by anti-p2p companies</li>
<li class="">Removed MetaTags extraction code, we're not going to use it anyway.</li>
<li class="">Fixing some crashes on wrong string handling.</li>
<li class="">Support for unicoded comments for files.</li>
<li class="">Moved Online Signature (aMule and eMule) to wxTextFile for proper handling.</li>
<li class="">Fixes a serious issue on UDP packets (and contributed to eMule).</li>
<li class="">Debug output of server sources added.</li>
<li class="">Fix for garbage saving on file copy.</li>
<li class="">Fixed the server disconnection due to bad handling of TCP packets.</li>
<li class="">Added a fallback for wrong TCP packets handling to avoid server disconnect.</li>
<li class="">Proper memory overruns checks on SafeFiles.</li>
<li class="">Fixed the partfiles being the only thing shared under certain circunstances.</li>
<li class="">Fixed bug #193: False display with empty share list</li>
<li class="">Fixed bug #258: "Max port-value allowed is too high due to secondary port"</li>
<li class="">Fixed bug #276: aMule crached when tried to start. (It says "crached on the original report)</li>
<li class="">Fixed bug #299: "Assertion when clicking in DQ/Last Reception column"</li>
<li class="">Fixed bug #303: "Too many files republished by your client software. Please upgrade it." Proper handling of incremental file publishing avoids server bans ;)</li>
<li class="">Fixed bug #317: Added GUI and functionality for 'Start next file on same category'.</li>
<li class="">Fixed bug #319: When sort is changed, make sure the item focused is again focused.</li>
<li class="">Fixed bug #321: Razoback2 stats page for shared files.</li>
<li class="">Fixed bug #331: 'ED2k link bar gone after 2x click on search button' making it a feature instead of a bug. Now you can toogle the ed2k link handler clicking on search toolbar button.</li>
<li class="">Fixed bug #334: Main category type not stored on crash.</li>
<li class="">Fixed bug #345: [Mac] popup windows open on other monitor.</li>
<li class="">Fixed bug #348: "Right-click on friend in friends list does not select it"</li>
<li class="">Fixed bug #362: "receive file list fails for non-ascii chars"</li>
<li class="">Fixed bug #349: "sorting of sources in 'Downloads' window"</li>
<li class="">Fixed bug #375: "Misc GUI bugs in Statistics window"</li>
<li class="">Fixed bug #374: "misc. problems with friends"</li>
<li class="">Fixed bug #405: "Downloaded files have wrong priority"</li>
<li class="">Fixed serious bug with 0-sized files.</li>
<li class="">Fixing serveral threading issues and possible crashes/missbehaviours on search.</li>
<li class="">Searchs now start inmediately and also finish sooner.</li>
<li class="">Added a warning if no video player is set on preferences and tried to preview.</li>
<li class="">Decoupled NetworkFunctions and StringFunctions headers.</li>
<li class="">Added QueueDebugLogLine for... uh... queueing debug lines.</li>
<li class="">Encapsulating network stuff at NetworkFunctions.</li>
<li class="">Removed all network platform specific code from the main code, and leave it to NetworkFunctions (and gsocket). And I removed the htons and htonl everywhere.</li>
<li class="">Fix for egcs compiler crashing on aMule compilation.</li>
<li class="">Changed the CTags structure to a safer and nicer version, compatible with eMule's.</li>
<li class="">Added support for a lot more ed2k Tags.</li>
<li class="">Support for download stats per client.</li>
<li class="">Added the hability to rename a file using F2</li>
<li class="">Fixed crash on sorting an old tab.</li>
<li class="">Improved socket debug, and moved the backtracing function to OtherFunctions.</li>
<li class="">Fixes dynip servers not being detected by server UDP socket.</li>
<li class="">Fixed a lot, lot of input data lost on EMSocket, causing much better transfers.</li>
<li class="">Fixed corrupted parts info store/retrieve on partfiles with eMule compatibility.</li>
<li class="">Fixed ed2k protocol file type publishing.</li>
<li class="">Fixed a lot of network performance issues and lost packets all over the TCP/UDP code.</li>
<li class="">Fixed download bar on tray icon (Icon file has now red background to create a mask from it).</li>
<li class="">Fixed crashes on Logger class derived from bad unicode2char usage.</li>
<li class="">Added "Prefix where amule will be installed" to configure output.</li>
<li class="">FileDetailDialog is now resizable, and file names list ctrl resizes vertically and horizontally with it.</li>
<li class="">No horizontal scrollbar on log, let lines wrap to avoid auto-scrool on long lines.</li>
<li class="">Gnucco's alternate sorting of search list ctrl See <a href="http://forum.amule.org/thread.php?threadid=5344&amp;sid=" target="_blank" rel="noopener noreferrer" class="">http://forum.amule.org/thread.php?threadid=5344&amp;sid=</a> for details.</li>
<li class="">Big rework of the Friends class, list, and everything.</li>
<li class="">Cached the Operating System info and added to --version flag.</li>
<li class="">Added Online Signature update time functionality and widget disabling on OS disable.</li>
<li class="">Slightly bigger list for the preferences items to fit them all</li>
<li class="">Added a static text for recursive sharing via right-click to avoid questions.</li>
<li class="">Systray can now be enabled/disabled on preferences, dynamically, and is applied as soon as the checkbox is checked. Default is DISABLED. Also, the minimize to tray checkbox is disabled when systray is not enabled, and when using the new systray code (the wx tray), we don't have the Window Manager dialog anymore.</li>
<li class="">Check for Online Signature folder existance when enabled.</li>
<li class="">Fixed a lot of unicode bugs on file handling by adding fallbacks to proper encoding.</li>
<li class="">Set minimize to tray to false if no tray enabled.</li>
<li class="">Fixed a crash... on... assert... hum... that one was actually funny.</li>
<li class="">We should not start next file on cancelling a download. Now we do not ;)</li>
<li class="">Stopping a global search works properly now, the thread for global search is deleted on stop.</li>
<li class="">Zero the Online Signature on exit.</li>
<li class="">Fixed a crash on exit while stillstarting up.</li>
<li class="">Fixed aMule nto starting anymore if skin file name is void and skins are enabled.</li>
<li class="">Proper use of wxWidgets functions for ISO date formatting.</li>
<li class="">Never show the download list filter on search category selector.</li>
<li class="">Lots of fixes for wx2.6.0 compilation, wxSizer, and other changes.</li>
<li class="">Fixed the download limits not being applied correctly. this should amke MUCH BETTER download speed for people with download limits set.</li>
<li class="">Fixed sockets not being closed on daemon.</li>
<li class="">Fixed chmod message on Incoming/temp folder on smbfs.</li>
<li class="">More info on the init. text and on backtraces (Operative Sytem, kernel version, etc).</li>
<li class="">Fixed crash caused by random value returned on DeletePage().</li>
<li class="">Fixed Reload Shared Files not re-reading sharedfiles.dat</li>
<li class="">Fixes the hangups on exit, specially on Mac.</li>
<li class="">Fixed the AUTHORS file.</li>
<li class="">Fixed UDP socket bug on size of OP_REASKFILEPING message.</li>
<li class="">Abort loading of shared files if we are shutting down.</li>
<li class="">Fixed crash caused by socket die on ConnectionEstablished function.</li>
<li class="">Added contact info to documentation and about button.</li>
<li class="">Fixed (again) mplayer usage as video previewer.</li>
<li class="">Fixed a network bug on SetStartNextFileSame not being set.</li>
<li class="">Proper usage of wxProcess::Exists( for webserver running on start check.</li>
<li class="">Cleaned configure/Makefile from a lot of bad usage of flags and libs. This makes for a smaller executable now also.</li>
<li class="">Merged Martimac's fix for FreeBSD 5.4-PRERELEASE</li>
<li class="">Fixed friendslot assignation, about 12 times.</li>
<li class="">Fixed logging of not-yet-sent messages by adding it to queue and send on connect.</li>
<li class="">Fixed message sending to unknown clients.</li>
<li class="">Avoid the posibility of a Too Many Connections blocking a chat.</li>
<li class="">Fixed buttons/textentry not enabled on new chat tab.</li>
<li class="">Fixed tabs' 'X' not working properly when there are too many and don't fit on screen. Use new wx code instead of Madcat's code on wx2.5.4 and above, for the 'X' closing.</li>
<li class="">Multiple selecting ed2k links and clicking on copy ed2k works now for search items.</li>
<li class="">Fixes the multiple removal of friends</li>
<li class="">Fixed multiple message send to friends.</li>
<li class="">Fixed multiple filelist requests</li>
<li class="">Fixed multiple friend details dialog show.</li>
<li class="">Adds a warning for trying to set multiple friendslot.</li>
<li class="">Fixed Incoming folder content not being sent on shared files request.</li>
<li class="">Fixed completing of file setting transfered instead of completed to file size.</li>
<li class="">Fixed --with-crypto-prefix flag not pointing to actual crypto folder.</li>
<li class="">Added memleak check on exit using wxWidgets native fucntions, enable via wx qa lib.</li>
<li class="">Rewrote wxSizer handling on Stats page and making more space available.</li>
<li class="">There is no curl anymore needed/used on aMule. Coded my own handling using wxHTTP.</li>
<li class="">Added partial/total bytes to the http download dialog.</li>
<li class="">Fixed sizers usage on Client Details, fixes overlapping labels and such stuff.</li>
<li class="">Fixed client stats not updating on clientnumber going down to zero.</li>
<li class="">Fixed "total transfered datal isn't saved on crash/kill" bug.</li>
<li class="">Fixed flushing of files on copy with read-only flag set.</li>
<li class="">Added "total downloaded"/"total upload"/"total requests"/ "total accepts" to partfile saving.</li>
<li class="">Fixed rehashing of unicoded file names on aMule restart.</li>
<li class="">Fixed aLinkCreator compilation for wx2.6.0</li>
<li class="">Fixed upload speed not being reset when all clients lost and keeping old value.</li>
<li class="">Fixed port output on console showing negative numbers.</li>
<li class="">Lot of Kad porting (NOT functional yet).</li>
<li class="">Fixed (c) strings all over the code with proper year specifications.</li>
<li class="">Fixed unicode2char usage to a bare minimum.</li>
<li class="">Moving from libc usage to wxWidgets multiplatform implementations.</li>
<li class="">Killed c_str() usage from aMule, except on very specific ways and only for speed reasons.</li>
<li class="">General cleanups and speedups here and there.</li>
</ul>
</li>
<li class="">
<p>CPU arch Specific</p>
<ul>
<li class="">64 bits archs fix for AICH thread.</li>
<li class="">Some amd64 compilation warning removal.</li>
<li class="">Fixed endianess bug on PeekUInt16</li>
<li class="">Fixed client IP endianess on big endian archs.</li>
<li class="">Getting ENDIAN_SWAP_* to a bare minimum (just interface)</li>
<li class="">Fixes endianess of local_ip, which is anyway almost all times 0.</li>
</ul>
</li>
<li class="">
<p>Core/GUI Specific</p>
<ul>
<li class="">Fixed daemon unhability to handle sources properly. Daemon now takes, handles, and processes sources in a proper way (making it at last a real competitor for monolithic).</li>
<li class="">Don't show geometry option for daemon, makes no sense.</li>
<li class="">Properly display "aMule Daemon" instead of "aMule" on daemon.</li>
<li class="">Fixed statistics tree interdependence with GUI, splitting it to core/gui way. In short, we have statistics tree on webserver, amulecmd and remote GUI :)</li>
<li class="">Graphic statistics are now decoupled from GUI. We have statistics graphics on webserver remote GUI.</li>
<li class="">Decoupled Friend list from GUI.</li>
<li class="">Fixed a bug on set comment on a file on ECv2.</li>
<li class="">Fix for log on unicoded webserver.</li>
<li class="">Fix for global daemon thread not closed on exit.</li>
<li class="">Splitting of core/gui on SearchDlg.</li>
<li class="">Fixed a crash on websocket thread creation.</li>
<li class="">Reactivating Chat windows on remote GUI.</li>
<li class="">Proper fix for the segfault on exit caused by EC.</li>
<li class="">Removal of CryptoPP usage on amulegui.</li>
<li class="">Fixed a possible crash on daemon startup.</li>
</ul>
</li>
<li class="">
<p>BSD Specific</p>
<ul>
<li class="">Fixed BSD compilation for <code>&lt;sys/types.h&gt;</code> inclusion.</li>
<li class="">Fixed FreeBSD 4 prerelease (DragonFly) compilation on gtkplugxembed.c</li>
</ul>
</li>
<li class="">
<p>Solaris Specific</p>
<ul>
<li class="">Fixed Solaris compilation and linking.</li>
<li class="">Fixed need for inet_addr on webserver on Solaris.</li>
</ul>
</li>
<li class="">
<p>Mac Specific</p>
<ul>
<li class="">Fixed Mac friends handling.</li>
<li class="">Proper importing of files for Mac.</li>
<li class="">Proper reading for amuleweb config on Mac.</li>
<li class="">Made default Incoming folder for Mac to "~/Documents/aMule Downloads"</li>
</ul>
</li>
<li class="">
<p>Windows Specific</p>
<ul>
<li class="">Fixed a lot of compilation problems.</li>
<li class="">Use proper wxLog class to avoid popups on Windows.</li>
<li class="">Remove the usage of chmod on Windows.</li>
<li class="">Fixed the systray background on Windows.</li>
<li class="">Fixed systray menu on Windows for proper layout.</li>
<li class="">Fixed DirectoryTreeCtrl on Windows to show all disk drives and folders.</li>
</ul>
</li>
</ul>
<p>Ken:</p>
<ul>
<li class="">Fixed Mac bug: window was a little larger each restart</li>
<li class="">Fixed aMule.tmpl so Safari can work with amuleweb</li>
<li class="">On Mac, enabled Command-clicking in lists to toggle selection</li>
<li class="">Solved the DECLARE_ABSTRACT_CLASS() mystery on wx-2.4.2. Now we can have UDP socks5 with wx-2.4.2.</li>
<li class="">Included CVSDATE with version in amulesig.dat</li>
<li class="">Fixed an endianness bug with webserver</li>
<li class="">Fixed last (I hope!) endianness bug with IPFilter</li>
<li class="">Fixed a major endianness bug with widespread effects.  On Mac, servers don't fail continuously until eventually removed from the list; server pings work.  Global search seems to work better. DNS lookup of servers and ED2K link sources should now work.</li>
<li class="">Enabled support for ed2k links in web browsers for Mac (although idiosyncracies of common browsers prevent it from being as transparent as one would like).</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">aMule remote gui implementation</li>
<li class="">Support for categories in webserver</li>
<li class="">EC additions</li>
<li class="">RLE encoder for shared files</li>
</ul>
<p>martymac:</p>
<ul>
<li class="">Fix for FreeBSD 5.4-PRERELEASE</li>
</ul>
<p>ObsessionAl:</p>
<ul>
<li class="">Patch to include CVS date in about box.</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Fixed crash in CClientReqSocket::ProcessExtPacket()
processing of OP_COMPRESSEDPART.</li>
<li class="">More UNICODE fixes.</li>
<li class="">Fixed WX_SYSTRAY compilation on wx-2.4.2.</li>
<li class="">More proxy updates, we are getting there.</li>
<li class="">Small UI bug: double click on a server did not change the
"Connect" button to "Cancel".</li>
<li class="">Changed some deprecated IsKindOf(CLASSINFO()) to
wxDynamicCast().</li>
<li class="">Fixed crash in CUpDownClient::SendFileRequest(), short
circuit evaluation was reversed.</li>
<li class="">Created Proxy dialog on preferences.</li>
<li class="">Updated muuli.wdr for wxDesigner version 2.11 -- no more
manual patching for wxFIXED_MINSIZE required.</li>
<li class="">Fix for rommel's report of IP filter problem.</li>
<li class="">No more IsKindOf(), all replaced by <code>dynamic_cast&lt;&gt;()</code>.</li>
<li class="">No more wxDynamicCast(), all replaced by <code>dynamic_cast&lt;&gt;()</code>.</li>
<li class="">Fixed multiple instances of event handlers in
CClientReqSocketHandler and CServerSocketHandler.</li>
<li class="">In StateMachine.cpp, m_state is now private and state machine
code is now thread safe.</li>
<li class="">Added base64 encoding/decoding support to aMule.</li>
<li class="">SOCKS5 and SOCKS4 proxy support is working now.</li>
<li class="">HTTP proxy support is working now.</li>
<li class="">Changed the output of the "Oops" to give better instructions
to the user.</li>
<li class="">Fixed a bug in proxy code that was making gui too slow. Code
was performing unnecessary DNS.</li>
<li class="">Applied patch from volpol to fix use of deprecated functions
in wxGTK-2.5.3.</li>
<li class="">Applied patch from geeko to complete html functionality of
cas.</li>
<li class="">Fixed a big bug in proxy code. Sockets were not continuing
conversation after connecting to sources.</li>
<li class="">Fixed a crash due to an unicode issue while logging.</li>
<li class="">Show some activity upon destruction of the DownloadQueue.</li>
<li class="">Preparing the field to bind to a fixed interface.</li>
<li class="">Sanity checks on socket creation.</li>
<li class="">Fixed the backtrace message.</li>
<li class="">Added a static text to Preferences-&gt;Connection-&gt;Client TCP
port to show the value of the client UDP port.</li>
<li class="">Fixed a crash on webserver, all return values of
SendRecvMsg_v2 must be checked for NULL return value.</li>
<li class="">Fixed an uncountable number of potential segfaults on
amuleweb because almost no return value of GetTagByIndex and
GetTagByName were beeing checked for NULL.</li>
<li class="">Fixed the following bug in the search dialog window: if you
typed a letter by mistake or if you use the down arrow from 1
to 0, both actions on a wxSpinCtrl, aMule would crash.</li>
<li class="">Fixed the GetTagByIndex and GetTagByName segfaults in
amulecmd.</li>
<li class="">Fixed a problem with saving the preferences, that in some
situations would not be saved.</li>
<li class="">Fixed an assert when loading skins, the count number was one
unit too high.</li>
<li class="">Fixed amuleweb template processing, Clear Completed button
on transfer link was not showing.</li>
<li class="">Fixed amuleweb template processing, Reload List button was
not beeing translated.</li>
<li class="">Small adjusts to ObsessionAl patch to include CVS date in
about box.</li>
<li class="">Fixed a bug in UTF82unicode(), reported by Mr Faber.</li>
<li class="">Got rid of sscanf in NetworkFunctions.h. This has caused a
crash once, reported by Mr Faber.</li>
<li class="">Fixed a lock with high CPU usage when crashing in amuled,
because wxExecute() could be called from the FatalErrorHandler()
not from the main thread, which is currently prohibited in
wxWidgets.</li>
<li class="">Fixed preview with mplayer or any other app that needs
stdout/stderr.</li>
<li class="">Fixed lots of segfaults in amuleweb, thanks to alandar and
Mr Faber.</li>
<li class="">Updated proxy debug code to use new logger.</li>
<li class="">Fixed a subtle bug in UINICODE builds. Now UTF-8 enabled
UNICODE builds can read extended ANSI file names. In
particular, UTF-8 UNICODE aMule build was not remembering
an extended ANSI directory name for a shared directory.</li>
<li class="">Added a spec file to the CVS tarball. Now users can do
rpmbuild -ta aMule-CVS-20050309.tar.bz2 and generate rpms for
the tarball of the same day.</li>
<li class="">Fixed a bug in the spec file. The testing was beeing done
with files from amule-dev-cvs, but CVS snapshots tarballs are
done in amule-cvs directory.</li>
<li class="">Implemented changes suggested by bootstrap in aMule-CVS.spec,
merged all the packages in a single rpm, changed the packager
to "The aMule Team" and updated %BuildPreReq.</li>
<li class="">Fixed a crash in ListenSocket.cpp when a client could
disconnect suddenly.</li>
<li class="">Spec file does not need autogen.sh, as noticed by
GonoszTopi.</li>
<li class="">Removed krb5-libs require and krb5-devel buildprereq.
curl-lib and curl-devel is enough.</li>
<li class="">Fixed an assertion in CFile.cpp, when browsing broken
symbolic links. Now aMule is aware of them.</li>
<li class="">Added a test to the spec file to discover UTF-8 enbled LANG,
so that we build the rpm with --enable-utf8-systray.</li>
<li class="">Removed curl dependencies from spec file, aMule now uses
wxHTTP.</li>
</ul>
<p>Stefanero:</p>
<ul>
<li class="">Work on the Man-Pages</li>
<li class="">Minor compile fixes</li>
<li class="">Lots of support and testing</li>
</ul>
<p>stsp:</p>
<ul>
<li class="">Compilation fix for STL enabled wxWidgets.</li>
</ul>
<p>volpol:</p>
<ul>
<li class="">Patch to fix use of deprecated functions in wxGTK-2.5.3.</li>
</ul>
<p>Vollstrecker:</p>
<ul>
<li class="">Initial and further work on aMule and utils' man pages.</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Improved logging for CFile, getting rid of the annoying pop-up windows which were previously displayed.</li>
<li class="">Workaround for fonts getting changed on the log-view when the clear-button was pressed (wxMac specific).</li>
<li class="">Work on getting aMule ready for win32, including fixing the custom-drawing for listctrls.</li>
<li class="">Fixed threading issues with the UDP-sockets in daemon- mode, which were the cause of a number of crashes.</li>
<li class="">Made the preferences dialog modal to fix problems where it would be displayed at bad locations.</li>
<li class="">Ensured that the Banned-Count would be initialized to zero rather than display a random value until it gets properly set (not yet implemented).</li>
<li class="">Improved the "aMule has crashed" message, adding some more information and fixed the backtrace to skip unneeded frames properly.</li>
<li class="">Fixed some static text-ctrls not properly expanding, so that some text would be cut off the end.</li>
<li class="">Fixed some position bugs in the progress-bar drawing and addeed a black border. A4AF sources now displays that text instead of an empty area.</li>
<li class="">Moved the placement of the "Initializing aMule" message on startup so that --version will only result in the version information and ensured that amule wont start in case an invalid commands was given, instead printing the help info.</li>
<li class="">Fixed problems with selection on the clients-list.</li>
<li class="">Improved usage of compressed packets. Now only files that are not in the list of known archive-formats are compressed, rather than just Zip, Rar and Ace.</li>
<li class="">Improved error-handling when opening ports. If either the EC or Server-UDP ports conflict with the other ports, then a random safe value is selected in the range 1025 ... 2^16-1.</li>
<li class="">Fixed shared files being located twice during startup, which also resulted in the AICH thread being run twice.</li>
<li class="">Fixed logging to stdout containing extra newlines.</li>
<li class="">Cleaned up and merged a number of split translated strings, which should make it easier for translaters to work.</li>
<li class="">Fixed some status changes not resulting in removal from or addition to filtered download categories.</li>
<li class="">Improved handling of multi-line log events on the main dialog.</li>
<li class="">Reduced the ammount of output to the console, changing printfs to either normal or debug log events.</li>
<li class="">Escape-codes in ED2k links are now properly unescaped.</li>
<li class="">Cleaned up and improved the readability of the clients-details dialog.</li>
<li class="">Updated the modified listctrl widget used by aMule, so that wxWidgets 2.4.x and 2.5.x will use a modified version from that branch rather than a more generic hacked version. For one thing, the headers are now drawn using the current GTK theme.</li>
<li class="">Properly handle rehashing of empty part-files.</li>
<li class="">Changed the "Filter Bad IPs" option to "Filter LAN IPs". Invalid IPs will always be filtered, but LAN IPs will now only be filtered if the option is enabled.</li>
<li class="">Added back-traces to asserts, in order to help debugging efforts.</li>
<li class="">Made usage of wxASSERT thread-safe.</li>
<li class="">Attempted to fix some longstanding problems with the notebooks.</li>
<li class="">Removed unused files: Preview.h and Preview.cpp</li>
<li class="">Updated, cleaned and unified license-headers for all aMule related source files.</li>
<li class="">Improved the error-message displayed when a server couldn't be added, so that it is clear as to why it couldn't be added.</li>
<li class="">Avoid flooding the console when searching for filetypes, mismatches are now logged as debugloglines instead.</li>
<li class="">The "Clear" button on the search page now also clears the search text.</li>
<li class="">Better handling of multi-line chat messages: The complete message will be split by linebreaks and each line timestamped.</li>
<li class="">Fixed entries for connected servers in server-list not being completly reverted to normal after disconnection.</li>
<li class="">Added handling of SIGINT and SIGTERM for gracefull shutdowns.</li>
<li class="">Renamed the config file from ~/.eMule to ~/.aMule/amule.conf. The old file will not be removed, in order to allow backwards compatibility.</li>
<li class="">aMule now automatically removes unavailable files from the list of shared files.</li>
<li class="">Fixed right-clicking not selecting the tab being clicked on.</li>
<li class="">Fixed casts to pointers of higher alignment where it could cause allignment crashes on SPARC, created general function for doing this safely both SPARC and non-SPARC machinces.</li>
<li class="">Added a typesafe replacement for printf, designed with inspiration from the format class in the boost library.</li>
<li class="">Improved logging capabilities. It is now possible to enable/ disable debugging output by category. All existing debug calls where changed to support this. This can be controlled in the preference dialog.</li>
<li class="">Fixed some problems with the connect dialog for remote gui.</li>
<li class="">Some pass-by-value fixes.</li>
<li class="">Moving de-initialization code from the CamuleApp destructor to OnExit. This insures that the app-object would be valid while the shutdown is in progress.</li>
<li class="">Moved deinialization code from OnRun in amuled to OnExit in order to ensure that it was also run on premature exits.</li>
<li class="">Made safe connection-rate calculations the default behavior, which should help avoid too fast connections.</li>
<li class="">Add class for keeping track of unusable sources, based on the same class in eMule. This should reduce the ammounts of connections made since bad sources are not re-asked too often.</li>
<li class="">Fixed servers with IP 0.0.0.0 being added to serverlist.</li>
<li class="">Fix to IP-range parser in CIPFilter. Incorrect range in the form "a.b.c.d-e.f.g." would not be caught.</li>
<li class="">Misc cleanups in CServerList.</li>
<li class="">Fixed creation of online-sig files.</li>
<li class="">Made DownloadQueue and ServerList observables.</li>
<li class="">Added a Observer/Observable implementation. This was needed to implement a queue that would be kept in sync with another queue thus allowing thread-safe delayed iteration over a list.</li>
<li class="">Fixed crash in search-list, where the search-packet would be deleted twice.</li>
<li class="">Removed the usage of "ED2KServers" file, as the download-queue now takes care of handling all types of ed2k-links.</li>
<li class="">Rewrote 'ed2k' utility in c++ and fixed support for extra information appended to ed2k links.</li>
<li class="">Merged IP-check functions and moved it to NetworkFunctions.*.</li>
<li class="">Fixed usage of uninitialized variables in CPartFile constructor.</li>
<li class="">Removing unsused functions from CServerList.</li>
<li class="">Removed unused CArray.h file.</li>
<li class="">Fixed pontial wrong tag-count in server.met writing, which would result in a corrupt file.</li>
<li class="">Disabled connection-try code, due to inherent problems with it.</li>
<li class="">Reworked the CDownloadQueue class.</li>
<li class="">Fixed creation of ED2K links for servers.</li>
<li class="">Removed the need for seperate AICH hashings of completing files. Instead both AICH hashsets and MD4 hashes are created during completion, and the AICH is simply discarded if corruptions are found. This however is rare, and thus doing both at the same time results in less time spent hashing.</li>
<li class="">Improved upon the "requested file not found" log-message, which would happen when a client requested the hashset for an unknown file.</li>
<li class="">Reworked the checks for free disk-space, should behave much more consistantly now.</li>
<li class="">Fixed files being hashed twice, once when completed and again after aMule had been restarted.</li>
<li class="">Make use of native GTK2 popup menu for text-ctrls when possible.</li>
<li class="">Disabled aMule on systems where wxGTK is older than version 2.5.1 and is compiled against GTK2. The big honking warning in the log proved to be useless, but this should work ...</li>
<li class="">Added helper-function to of.h for removing values from a stl-list.</li>
<li class="">Fixed usage of windows font-type "Arial" in statistics-dialog.</li>
<li class="">Fixed logging of filtered IPs. Only 2 of four cases were logged.</li>
<li class="">Disallow External Connections if no valid password has been set.</li>
<li class="">Fixed both sources and files getting shown for the file-count in the transfer dialog.</li>
<li class="">Added date to version-information for CVS snapshots.</li>
<li class="">Reworked CBarShader, making it use the CRangeMap class and getting rid of needless floating-point math. This fixes some problems where large chunks would be drawn as complete, even though only a small part of the file was complete.</li>
<li class="">Fixed downloads being assigned to the default category despite the extended options being disabled in search dialog.</li>
<li class="">Moved overhead calculations to the CStatistics class.</li>
<li class="">Removed enabling/disabling of the clear-downloads buttons. The checks touched far too much code without adding much.</li>
<li class="">Moved StripInvalidFilenameChars from CamuleApp to StringFunctions and renamed it to CleanupFilename.</li>
<li class="">Fixed pending file-blocks not being properly removed when client-objects were destroyed, resulting in parts of files that could not be downloaded until aMule had been restarted.</li>
<li class="">Fixed re-filtering of sources when IP-filter level had been changed in the preferences.</li>
<li class="">Reworked CIPFilter class:<!-- -->
<ul>
<li class="">Huge improvements in loading-speeds (~6x).</li>
<li class="">Added support for loading zipped files.</li>
<li class="">Switched to using the CRangeMap class.</li>
</ul>
</li>
<li class="">Added CRangeMap class, which is a map with two keys, an start and an end key, with a single value attached. This was previously duplicated serveral places.</li>
<li class="">Fixed problems with deleting multiple items on serverlist.</li>
<li class="">Misc code-cleanups.</li>
<li class="">Added the ability to delete servers using the delete-key.</li>
<li class="">Fixed sorting by the "Transfered down" field on client-list.</li>
<li class="">Added ruby-script for detecting common issues.</li>
<li class="">More work on properly marking getter function const.</li>
<li class="">Reworked the CDownloadListCtrl class.</li>
<li class="">Added overloaded versions of CmpAny functions for strings.</li>
<li class="">Reduced memory usage of IP-ranges in CIPfiler by removing redundant information.</li>
<li class="">Fixed extremly non-optimal function in CDownloadQueue which was used many places. Could locate item in vector through counting of iterator increments.</li>
<li class="">Fixed pre-shutdown message to something more closely reflecting the actual events taking place.</li>
<li class="">Collected common "Data To Human-Readable" functions in file-set.</li>
<li class="">Reworked the ED2K-link classes.</li>
<li class="">Reworked handling of ED2K links, making behavior consistant everywhere and fixing support for |serverlist| URLs.</li>
<li class="">Changed time-span of overhead calculations from 5s to 15s.</li>
<li class="">Removed redundant message displayed when files were added to a a non-connected mule.</li>
<li class="">Added missing Add-Overhead calls for various packets.</li>
<li class="">Fixed a mem-leak in CFileDataIO::WriteString.</li>
<li class="">Fixed compilation of Proxy with wxGTK-2.4.2.</li>
<li class="">Changed default configure options. Now only 'amule' and 'ed2k' are compiled by default, since other apps require extra dependancies.</li>
</ul>
<p>xmb:</p>
<ul>
<li class="">id2ip awk script (with Jacobo221)</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Translators: Very, very special thanks to all of them, since they translated the whole app in just <em>one</em> week!<!-- -->
<ul>
<li class="">Ateo: (US english / en_US)</li>
<li class="">Ateo: (Spanish / es_ES)</li>
<li class="">gaspojo: (Portuguese / pt_PT)</li>
<li class="">guest: (German / de_DE)</li>
<li class="">GhePeU: (Italian / it_IT)</li>
<li class="">Gusar: (Slovenian / sl_SL)</li>
<li class="">ilbuio: (Italian / it_IT)</li>
<li class="">KamiKazeNH: (Brazilian / pt_BR)</li>
<li class="">nbfnw: (Chinese / zh_CN)</li>
<li class="">Ogon: (Polish / po_PO)</li>
<li class="">piarres: (Basque / es_EU)</li>
<li class="">shafff: (Russian / ru_RU)</li>
<li class="">supersnail (Dutch / nl_NL)</li>
<li class="">thedude0001: (German / de_DE)</li>
<li class="">toshi: (Russian / ru_RU)</li>
</ul>
</li>
<li class="">Contributors: hanzo, markb, Mayfoev, monkeyboy, ObsessionAl, rommel, S0undt3ch, stsp, Vollstrecker, volpop</li>
<li class="">Bug and feature reporters: alandar, Angel, BigBob, feralertx, Frankk, Mr Faber, OldFrog, RedDwarf, skolnick, thedude0001, Valery</li>
<li class="">eMule developers for their support, friendship, and collaboration.</li>
<li class="">MindForge &amp; Freenode irc admins</li>
<li class="">People at #wxwidgets on freenode.</li>
<li class="">Everyone at:<!-- -->
<ul>
<li class="">#amule irc.freenode.net</li>
<li class="">wiki <a href="http://wiki.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://wiki.amule.org</a></li>
<li class="">forums <a href="http://forum.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://forum.amule.org</a></li>
<li class="">bugtracker <a href="http://bugs.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://bugs.amule.org</a></li>
</ul>
</li>
<li class="">All aMule users!!!</li>
</ul>
<p>Welcome our new aMule team members: blerfont, m2kio, skolnick, thedude0001 &amp; thorero</p>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.0-rc8]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.0-rc8</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.0-rc8"/>
        <updated>2004-12-21T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The 'last rc' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The 'last rc' version</em></p>
<p>Baz:</p>
<ul>
<li class="">Fix for server stats for users/files not being updated correctly.</li>
<li class="">Fix for ERROR and WARNING server messages not being shown.</li>
<li class="">Fixed server / transfers window splitters not being loaded/saved correctly.</li>
<li class="">Fixed categories on search dialog not being refreshed on category name change.</li>
</ul>
<p>deltaHF:</p>
<ul>
<li class="">Show comments for shared files</li>
</ul>
<p>Hetfield:</p>
<ul>
<li class="">Some fix in new Tray system and desktopMode bypass</li>
</ul>
<p>Jacobo221:</p>
<ul>
<li class="">Added option to select the max and min size-type in advanced searches.</li>
<li class="">When "Extended Parameters" in Search tab is not selected, defaults are used.</li>
<li class="">Now "Auto-update serverlist at startup" checks if there's a serverlist to avoid annoying messages at startup.</li>
<li class="">"Clear completed downloads" is now disabled while no completed downloads are listed.</li>
<li class="">Context menu for download items only enables relevant information now.</li>
<li class="">Context menu little optimization (removed an unuseful loop) and Open File fix.</li>
<li class="">Added bitmap button wich pops-up the last status log line (useful when it doesn't fit the window).</li>
<li class="">Merged Preview and Open File and enabled Open File.</li>
<li class="">New Port column in Servers tab (splitting IP column).</li>
<li class="">Moved "Always filter bad IPs" from Server to Security in Preferences.</li>
<li class="">Changed "Preference" in servers tab as suggested by Sir and "IP" to "Address" since that's more accurate (could be DNS).</li>
<li class="">Optimizations in the RLE code.</li>
<li class="">Based on kry's patch, also darken paused files' progress bar.</li>
<li class="">Translations updates.</li>
<li class="">Fixed: Servers priority now working. (reported by Sir)</li>
<li class="">Fixed: Now all unset Server Priorities are set to normal. (reported by plaenky)</li>
<li class="">Fixed: Sorting Servers by priority works now.</li>
<li class="">Fixed: Setting "A4AF to others" works now.</li>
<li class="">Fixed: Server names sorting now differences between names and IPs.</li>
<li class="">Fixed: Last byte is now drawn in bar progress.</li>
<li class="">Fixed: Stop button now working after second global search and another hidden bug in global searches' progress bar. (reported by ecforum)</li>
</ul>
<p>ken_aMule:</p>
<ul>
<li class="">Fixed ipfilter on big endian archs.</li>
<li class="">Fixed wxWidget's bugs that were creating serious memleaks on Mac</li>
</ul>
<p>Kry:</p>
<p>===============::MULTIPLATFORM::===============</p>
<ul>
<li class="">When a socket connection error like WOULD_BLOCK happens, aMule retries the connection to avoid just-once errors</li>
<li class="">Stopped files are now darker than non-sources ones.</li>
<li class="">AICH e-links working now, with masterhash and with hashset</li>
<li class="">Proper handling of removing -fomit-frame-pointer flag that worls on all platforms.</li>
<li class="">Initial support for wx-compliant systray. Will be ready for 2.0.0 final release.</li>
<li class="">aMule no longer crashes on opening a non-existing folder. CDirIterator is safe now.</li>
<li class="">Fixed crash on app close - never call a pure virtual function from a destructor.</li>
<li class="">Moved the init/close code of aMule to where they belong: destructor/constructor.</li>
<li class="">Much more debug info available to debug packets (packet dump and others)</li>
<li class="">Major network improvements:<!-- -->
<ul>
<li class="">Improved the socket processing on CPU usage and performance.</li>
<li class="">Coded the functions handling the network string/bytes conversion of ips and hostnames and the generic hostname solving thread, non dependant from host's socket implementation. Less CPU and more reliable on both cases.</li>
</ul>
</li>
<li class="">Crash fixed on wrong arguments for wxString::Format</li>
<li class="">New option on right click on downloading or search files for showing eserver's stats for that filehash. Needs browser correctly configured on preferences.</li>
<li class="">Implemented messages filtering, from know clients/bogus clients/by words.</li>
<li class="">Fixed hashing files changing display status.</li>
<li class="">Fixed crash where transferwnd and clientlistctrl could be accessed before created.</li>
<li class="">Listen socket on accepting connection no longer uses a blocking socket (CPU improvement).</li>
<li class="">Not linking anymore to gtk libs if not needed.</li>
<li class="">"GTK: Not Detected" is now either "Not Detected" or "Not Used" to avoid confusion.</li>
<li class="">Fix for crashing on 'OK' button on preferences.</li>
<li class="">Fix for preferences window being unreachable if aMule is minimized while showing it.</li>
<li class="">Fix for crash on HTTP dialog if StopAnimation() was not called on destructor.</li>
<li class="">Fixed crash when shutdown and preferences window open.</li>
<li class="">Implemented OS_Info tag. Broke it 400 times, and fixed it 401 times, so working.</li>
<li class="">Implemented statistics tree for OS_Info tag.</li>
<li class="">Fixed several memory corruption issued caused by icons with wrong size.</li>
<li class="">Fixed several memory corruption bugs on amule init/close.</li>
<li class="">When aMule crashes, it not longer fails saving:<!-- -->
<ul>
<li class="">Preferences (Saved on 'OK')</li>
<li class="">Categories (Saved on changes)</li>
<li class="">Total upload / download bytes (saved while running).</li>
</ul>
</li>
<li class="">Fixed crash on OP_MULTIPACKETANSWER</li>
<li class="">Sent wxInt and wxUInt classes usage down the drain for the standard int / uint</li>
<li class="">Implemented "Share hidden files" checkbox.</li>
<li class="">Immplemented the CT_EMULECOMPAT_OPTIONS new tag. Right now only OS info support capabilities.</li>
<li class="">Implemented new short tags style for server and client interchange of info. Fixes not being able to browse eMule &gt;=0.42x shared files.</li>
<li class="">Fixed aMule daemon compilation to use wxBase headers and libraries. This fixes amuled not compiling on wxBase only-boxes, thus making it kinnda pointless.</li>
<li class="">Fixed AMD64 and GCC4.0 compilation/run, closes debian bug #285110</li>
<li class="">Fixed some performance issues on Log text controls.</li>
<li class="">Fixed long browsers requests on WebSocket. Buffer is now enlarged accordingly.</li>
<li class="">Fixed timeout on webserver socket being... 10 minutes!!!</li>
<li class="">Fixed several 100% cpu errors on WebSocket.</li>
<li class="">Fixed our source exchange implementation that was... uh... wrong.</li>
<li class="">Fixed stats tree on webserver.</li>
<li class="">Misc. work on ECv2 implementation of messages.</li>
<li class="">aMule can send now RGB encoded images via ECv2</li>
<li class="">Webserber can read ECv2 Image tags via the new CDynPngImage class.</li>
<li class="">eMule+ is now recognised under compatible client tag 0x05</li>
<li class="">Unicode fixes on webserver.</li>
<li class="">Got rid of almost all wxString::GetData()</li>
<li class="">Major CPU improvements on WebServer.cpp</li>
<li class="">otherfunctions.* is now clean from aMule specific stuff. Can be used anywhere.</li>
<li class="">otherfunctions now have a namespace (surprinsigly named 'otherfunctions')</li>
<li class="">Changed wxFileStreamInput -&gt; wxFile (less class overhead).</li>
<li class="">Several speed fixes on Stats code.</li>
<li class="">Fixed possible crash on search thread creation + verbose on error.</li>
<li class="">Fixed aMule crashing when local search is not returning and we click stop or start another search.</li>
<li class="">Fixed severeral endianess bugs.</li>
<li class="">General rewrite of UDP Socket<!-- -->
<ul>
<li class="">Received packets when app is not ready are now discarded.</li>
<li class="">Small fix preventing memleaks and some strange asserts</li>
<li class="">Fixed a severe memleak if 2 UDP packets are send at the same time, before the first one finishes.</li>
<li class="">Fixed the host solving fail not cleaning the data (another severe memleak)</li>
<li class="">Fixed sending wrong data to wrong servers and thus not being replied.</li>
<li class="">Fixed some server udp packets never reaching destination.</li>
</ul>
</li>
<li class="">Unicode fixes (char*/wxString issues)</li>
<li class="">General cleaning, bugfixing and documenting.</li>
<li class="">Added files:<!-- -->
<ul>
<li class="">StringFunctions.(h/cpp)</li>
<li class="">NetworkFunctions.(h/cpp)</li>
</ul>
</li>
</ul>
<p>==================::MAC::===================</p>
<ul>
<li class="">Fixed server connection crashes related to accepting a connection from a being destroyed socket. Probably fixes also some random BSD/Linux crashes on conection.</li>
<li class="">Got rid of all <code>&lt;wx/wx.h&gt;</code> includes, improved compilation speed greatly.</li>
<li class="">Fixed stats color boxes</li>
<li class="">Fixed servers saving, not anymore stored wrong internaly.</li>
<li class="">Coded Mac packager script for releases with included libcurl and wxWidgets.</li>
<li class="">Included Mac aMule.app bundle on sources.</li>
<li class="">Fixed sharing /Volumes and other special folders.</li>
<li class="">Fixed crash on server.met download</li>
</ul>
<p>permats:</p>
<ul>
<li class="">FIXED: Preferences -&gt; Security -&gt; Permissions wasn't being correctly saved for directories.</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Lots of unicode fixes.</li>
<li class="">Added readline and history support to amuleweb/amulecmd text clients.</li>
<li class="">Added template loading capability to amuleweb with the new command line parameter -t.</li>
<li class="">Changed m4/readline.m4 so that readline libs are only used when needed, i.e., no longer append readline libs to LIBS, use READLINE_LIBS instead.</li>
<li class="">Fixed crash in aMule when amuleweb tried to get transfers tab and aMule had never connected to a server before.</li>
<li class="">New backtrace output with demangled function names, file names and line numbers, when possible.</li>
<li class="">Initial (not functional yet) SOCKS5 proxy support.</li>
<li class="">Initial (not functional yet) SOCKS4 proxy support.</li>
<li class="">Initial (not functional yet) HTTP proxy support.</li>
<li class="">Updated some tests in configure.in.</li>
<li class="">Fixed a problem with _() usage. Static string initialization must be done with wxTRANSLATE, and wxGetTranslation() must be explicitly called in code instead of _().</li>
<li class="">Fixed a bug in WebServer.cpp:CWebServer::GetStatusBox(): return value was missing end tags.</li>
<li class="">Changed back to macro the inline function version of unicode2char() when using UNICODE. Unfortunately, when the fucntion returns, the string object gets out of scope, so we stick to the macro version for now.</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">Moving amuleweb to EC version 2.0</li>
<li class="">Fixes on amuleweb socket code</li>
<li class="">Added generated png images to amuleweb</li>
<li class="">Added RLE encoder for gap and parts status to EC</li>
<li class="">Fixes in amule daemon</li>
</ul>
<p>Madcat:</p>
<ul>
<li class="">Added support for detecting HydraNode clients.</li>
</ul>
<p>GonoszTopi:</p>
<ul>
<li class="">Initial work on EC protocol version 2.0.</li>
<li class="">Fixed a crash on broken language files (.po)</li>
<li class="">Some GUI cosmetics.</li>
<li class="">Lots of i18n fixes.</li>
<li class="">As a side effect, fixed the "Any" search in webserver.</li>
<li class="">Fixed webserver connection with empty passwords. :)</li>
<li class="">Fixed webserver connection with guest account.</li>
<li class="">Added "add &lt;ed2k link&gt;" command to amulecmd.</li>
<li class="">Tracked down and killed a number of hidden bugs.</li>
<li class="">Added commands to change/monitor bandwidth settings to amulecmd.</li>
<li class="">Made wxTRANSLATE actually work.</li>
<li class="">Fixed graphs in webserver. Also added the missing back.gif file.</li>
<li class="">Fixed buffer overflow problem in ed2k link handler.</li>
<li class="">Stats bug fixed.</li>
</ul>
<p>wizeman:</p>
<ul>
<li class="">Helped finding the code snippet where WebSocket was failing on request.</li>
<li class="">Fixed 'Safe Max connections' code. It's safer to use it now, and it works.</li>
<li class="">Fixed bug where amule would start consuming 100% cpu when it received a corrupted EC packet.</li>
<li class="">Fixed webserver, it wouldn't close connection when it received a POST request.</li>
<li class="">Fixed webserver crash: added mutex to make variable wcThreads thread-safe.</li>
<li class="">Fixed webserver &lt;-&gt; amule communication corruption when the webserver received simultaneous requests. The problem was that all webserver threads were using the same socket for sending/receiving EC packets to/from amule without synchronization.</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Added the new casting macros to otherfunctions.</li>
<li class="">Added a helper-function to CMuleListCtrl for use in the Sorter functions.</li>
<li class="">Fixed the priority-column on Server List.</li>
<li class="">Added the handling of friends to ECv2 implementation.</li>
<li class="">Merged CUploadListCtrl and CQueueListCtrl on CClientListCtrl.</li>
<li class="">Added the posibility to see a list of all existing clients.</li>
<li class="">Fixed aMule dialog not always being unfrozen upon restoring it from tray.</li>
<li class="">Some changes to the overhead calculation functions.</li>
<li class="">Slight improvement of the GetScore function CPU usage.</li>
<li class="">Replaced "theApp.glob_prefs-&gt;" with the new usage "thePrefs::"</li>
<li class="">Fixed the MyTimer class behind GetTickCount returning random values on close.</li>
<li class="">Fixed two crashes on ClientList.</li>
<li class="">Fixed compilation for solaris on several places.</li>
<li class="">Make sure that clients cant just crash us by sending a aich-request for an invalid hash.</li>
<li class="">Fixed a couple of sub-menues.</li>
<li class="">Removed the leech-mod checks, they were getted outdated anyway</li>
<li class="">Fixed open sockets count.</li>
<li class="">Avoid re-layouting the entire dlg when updating some labels.</li>
<li class="">Small fix to CMuleNoteBook.</li>
<li class="">Adding a missing event-handler en shared files tab.</li>
<li class="">Changed the primary hashing thread to do both MD4 and AICH hashing for non-part files. This cut down hashing of ~2.8gb of data from ~12:40 minutes to ~7 minutes on tests.</li>
<li class="">Adding checks against the user sharing the following dirs: Home-dir, .aMule, Temp-dir. Sharing home is allowed but results in a warning.</li>
<li class="">Fixed the Upload-parts drawing.</li>
<li class="">Fixed sorting by filename on the Uploading list.</li>
<li class="">Fixed crash on server list auto-update. Removes the possibility of overrunning a array.</li>
<li class="">Optimization of UpdatePartsInfo, which now no longer needs to traverse the parts-info arrays of each source for that file.</li>
<li class="">Fixed the redraw problems where some things wouldn't be erased on list controls.</li>
<li class="">Code cleaning, documenting and rewrite.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Translators:<!-- -->
<ul>
<li class="">Ateo: (US english / en_US)</li>
<li class="">biger [HUN]: (Hungarian / hu_HU)</li>
<li class="">experience.chris: (German / de_DE)</li>
<li class="">GhePeU: (Italian / it_IT)</li>
<li class="">Gusar: (Slovenian  / sl_SL)</li>
<li class="">ilbuio: (Italian / it_IT)</li>
<li class="">KamiKazeNH: (Brazilian  / pt_BR)</li>
<li class="">mad_soft: (Spanish / es_ES)</li>
<li class="">nbfnw: (Chinese / zh_CH)</li>
<li class="">Ogon: (Polish / pl_PL)</li>
<li class="">piarres: (Basque / es_EU)</li>
<li class="">pukyxd: (Catalan / es_CA)</li>
<li class="">Supersnail (Dutch / nl_NL)</li>
<li class="">Typhon: (Slovenian  / sl_SL)</li>
</ul>
</li>
<li class="">Contributors: alehack, alus, boutros, fossybaer, Frankk, han, junaru, sebaX, skolnick, sLiCeR, Vollstrecker, volpop, xmb</li>
<li class="">Bug and feature reporters: Banerjee, chisky2003, Danny, ecforum, fctk, Gnucco, hades, jaguarwan, jolupa, juanii, kdka, kno, m2kio, MichaelLong, Pableron, pi-c, plaenky, realcruncher, Sir, Sniffer, sosonok, |Syrius|, xplode_me</li>
<li class="">Everyone at:<!-- -->
<ul>
<li class="">#amule irc.freenode.net</li>
<li class="">wiki <a href="http://wiki.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://wiki.amule.org</a></li>
<li class="">forums <a href="http://forum.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://forum.amule.org</a></li>
<li class="">bugtracker <a href="http://bugs.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://bugs.amule.org</a></li>
</ul>
</li>
<li class="">All aMule users!!!</li>
</ul>
<p>Welcome our new aMule team members: lionel77, ken_aMule, nachbarnebenan &amp; one2one</p>]]></content>
        <category label="release" term="release"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[aMule 2.0.0-rc7]]></title>
        <id>https://amule-org.github.io/es/changelog/2.0.0-rc7</id>
        <link href="https://amule-org.github.io/es/changelog/2.0.0-rc7"/>
        <updated>2004-10-19T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release name: The '99,6% Final' version]]></summary>
        <content type="html"><![CDATA[<p><em>Release name: The '99,6% Final' version</em></p>
<p>bisley:</p>
<ul>
<li class="">Added session ratio and total ratio to XAS</li>
</ul>
<p>deltaHF:</p>
<ul>
<li class="">Got back from hell and changed one icon on the GUI ;)</li>
</ul>
<p>Jacobo221:</p>
<ul>
<li class="">aMule GUI:<!-- -->
<ul>
<li class="">Fixed two almost-the-same bugs when clicked download button and no items where selected (as reported by powtrix/willy, thanks).</li>
</ul>
</li>
<li class="">aMuleWeb:<!-- -->
<ul>
<li class="">Fixed a bug where up/down limits woudln't be displayed correctly if their string length were different.</li>
</ul>
</li>
<li class="">aMuleCMD:<!-- -->
<ul>
<li class="">Added 'list' (or 'find') command to search for a file in the downloads queue by name or by number (or just show all).</li>
<li class="">Added the ability to resume/pause all downloads at the same time through amulecmd (very handy when all downloads have been paused due to lack of space).</li>
<li class="">Fixed two bugs on amulecmd by which using 'pause' or 'resume' without arguments would pause/resume the oldest download.</li>
<li class="">Fixed a bug so that help command no longer is send to core.</li>
<li class="">Fixed other commands sending blank data to core.</li>
<li class="">Cleaned unneeded output log messages + added sent command messages to log (for easier security monitoring).</li>
<li class="">Several command simplifications on amulecmd to make it easier to use (while maintaining backwards compatibility).</li>
<li class="">Lots of translations lacks</li>
</ul>
</li>
</ul>
<p>KingFish:</p>
<ul>
<li class="">Fixed broken compilation in SysTray.cpp with gcc 3.3.4.</li>
</ul>
<p>Kry:</p>
<ul>
<li class="">Fixed: Crashes related to animation deletion on http download dialog</li>
<li class="">Fixed: 0-size server.met file crashing aMule on startup and on download.</li>
<li class="">Fixed: GUI blocking on server connection.</li>
<li class="">Fixed: The last (hopefully) "fixed minsize" bug. FileDetail dialog was growing :)</li>
<li class="">Misc code cleaning.</li>
<li class="">Mac:<!-- -->
<ul>
<li class="">Enabling wxCocoa compilation</li>
<li class="">Fixed: Secure Ident was not working on big endian archs.</li>
<li class="">Fixed: ClientID endianess issues leading to faking low/high id</li>
<li class="">Fixed: Several fields were not having correct size on preferences.</li>
<li class="">Fixed: Curl preform_multi was crashing the http download dialog on Mac. This means server.met update and ipfilter update was crashing. Currently the fix disables 'Cancel' button on that dialog, while we wait for curl lib to fix this issue.</li>
</ul>
</li>
</ul>
<p>lfroen:</p>
<ul>
<li class="">Removed debug printf's in timer.cpp.</li>
<li class="">Fix for deadlock on connection timeout in ServerSocket.cpp.</li>
<li class="">Fixed assert when build with wx-cvs.</li>
<li class="">Added option for disabling SIGSEG handling: useful for debuging in amuled.cpp.</li>
<li class="">EMSocket.h cleanup.</li>
<li class="">Fixed unclosed sockets (CLOSE_WAIT) and few stability problems.</li>
<li class="">Make CEMSocket::OnReceive thread safe. MAX_SIZE reduced, cause even theoretically tcp can buffer up to 64K.</li>
<li class="">amuled fixes.</li>
</ul>
<p>mfs:</p>
<ul>
<li class="">Fixed crashes on friendlist when keeping keys pressed</li>
<li class="">Fixed one server not being removed when several servers selected</li>
<li class="">Fixed access problems on deleting the ipfilter while accessing it</li>
</ul>
<p>Phoenix:</p>
<ul>
<li class="">Fixed '&amp;' char next to Preferences in amuleweb web page, as reported by DreamWalker.</li>
<li class="">ExternalConn: protected GETCATTITLE command from buffer overflow.</li>
<li class="">Start removing unused code from ExternalConn.cpp.</li>
<li class="">Fixed high CPU usage problem in amuleweb, thanks to jaguarwan for the report. Daemonizing amuleweb should be done using the -q switch.</li>
</ul>
<p>ThePolish:</p>
<ul>
<li class="">Implemented new hits system in wxCas to display and save download rate records.</li>
<li class="">Changed wxCas layout to try to avoid display bug with wx-cvs</li>
<li class="">Added translations update (Thanks to all translators)</li>
<li class="">Removed wxCas documentation to slim source tree (now downloadable from berlios)</li>
</ul>
<p>Seagull:</p>
<ul>
<li class="">Patch adding "Directory" column to the shared-files dialog.</li>
<li class="">Patch to add "Swap to this file" option for sources marked as "Asked For Another File" on download queue.</li>
</ul>
<p>Unleashed:</p>
<ul>
<li class="">Better fix for amuleweb's high CPU usage problem. Now main thread only gets woken up when absolutely needed.</li>
</ul>
<p>Xaignar:</p>
<ul>
<li class="">Reinsured that the preferences will be saved upon clicking "Ok".</li>
<li class="">Removed SSE2 specific optimizations from the embedded Crypto++ sources, they would break very easily and crash aMule.</li>
<li class="">Fixed a bug where we would sometimes attempt to remove a client from the wrong file, resulting in dangling pointers and crashes.</li>
<li class="">Ensured that the statistics-dialog would be updated when preferences relating to it where changed.</li>
<li class="">Added sanity checks to category-loading, to avoid adding categories without incomming dir or name.</li>
<li class="">Initial fix for crashes if aMule tried to share an inaccessible folder.</li>
<li class="">The redraw problems on restoring from minimized state should be fixed.</li>
<li class="">Fixed the shared-files list, which would draw columns regardless of whenever or not they were hidden.</li>
<li class="">Fixed the progress-bars in the shared-files dialog. It should now work properly for both part and completed files.</li>
<li class="">Fixed a bug in the ipfilter, where non-numeric chars on lines would cause wrong ranges of IPs to be filtered.</li>
<li class="">Re-added the priority menu for servers, which had gone missing due to a mistake.</li>
<li class="">Stopped the client-credits class from attempting to load older versions of the lists, which again would lead to mem-corruption.</li>
<li class="">Fixed hidden columns on download queue, which would still be drawn.</li>
<li class="">Added sanity checks to loading of clients.met file, since corrupted files would lead to potentially huge ammounts of mem-corruption.</li>
<li class="">Added "Completed Sources" column to the shared-files dialog.</li>
<li class="">Fixed a bug in sockets where disconnected sockets wouldn't be removed immediatly, but left to timeout instead.</li>
<li class="">Fixed an end-less loop on the AICH thread if a file on the queue was removed from the list of shared files.</li>
<li class="">Fixed an end-less loop when changing file-status by category.</li>
<li class="">Fixed the auto-priority menu-item on the download list when multiple items where selected. It would un-set auto-priotity instead.</li>
<li class="">A bit of optimization in CPartFile. More work will follow later.</li>
<li class="">Properly initialized a number of variables.</li>
<li class="">Fixed the column-width saving/loading which I managed to break shortly before rc6 was release. Whoops. <!-- -->:p</li>
<li class="">Ampersands will no longer be doubled when lines are added to the log-view.</li>
</ul>
<p>Special Thanks To:</p>
<ul>
<li class="">Translators in this release:<!-- -->
<ul>
<li class="">biger [HUN]: (Hungarian / hu_HU)</li>
<li class="">GhePeU: (Italian / it_IT)</li>
<li class="">mad_soft: (Spanish / es_ES)</li>
<li class="">Ogon: (Polish / pl_PL)</li>
<li class="">piarres: (Basque / es_EU)</li>
<li class="">powtrix/willy: (Brazilian / pt_BR)</li>
<li class="">punkyxd: (Catalan / es_CA)</li>
<li class="">stefanero: (German / de_DE)</li>
<li class="">Supersnail: (Dutch / nl_NL)</li>
</ul>
</li>
<li class="">Testers and bug reporters: angel, BiByFoK, bill_bool, boutros, elui, Gaenya, jolupa, ken_aMule, mad_soft, Mig21, one2one, powtrix, RedDwarf, skolnick, wi777</li>
<li class="">Everyone at:<!-- -->
<ul>
<li class="">#amule irc.freenode.net</li>
<li class="">wiki <a href="http://wiki.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://wiki.amule.org</a></li>
<li class="">forums <a href="http://forum.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://forum.amule.org</a></li>
<li class="">bugtracker <a href="http://abugs.amule.org/" target="_blank" rel="noopener noreferrer" class="">http://abugs.amule.org</a></li>
</ul>
</li>
<li class="">All aMule users!!!</li>
</ul>]]></content>
        <category label="release" term="release"/>
    </entry>
</feed>