Help MacUpdate by , and win an iPod!
|
DESCRIPTION

Mac P2P With Style

Acqlite is Gnutella file sharing client written in Cocoa. It is based on LimeWire, Acquisition and Cabos. It is free software, no spyware, no adware.

GUI Features

  • Simple sidebar interface
  • 27 languages support
  • iTunes iPod iPhone integration
  • Metadata browser for music files
  • Spam filtering
  • CORE Features

  • Mojito DHT integration
  • Universal Plug and Play
  • Firewall to firewall transfers
  • Proxy transfers
  • IP2Country for locale detection
  • "What's New?" searches
  • WHAT'S NEW
    Version 0.3.3:
    • Updated core to LimeWire 4.18.8.
    • Fixed CPU priority (renice to low level).
    • Fixed memory leaks.
    • Fixed converting ID3 tags.
    • Fixed some minor bugs.
    • No longer core creates invisible shared folder.
    Version 0.3.2:
    • Fixed horrible memory leaks.
    • Fixed shutdown process (thx! > diamondsw).
    Version 0.3.1:
    • Updated French localization
    • Upgraded LimeWire core to version 4.18.6
      • Supported Mojito-DHT!
      • Supported 2GB+ large file!
      • Improved search results.
      • Improved downloads.
      • The core requires Java 1.5 or later.
      • Improved stability.
    • Fixed memory leaks.
    • Fixed Connect menu action.
    • Fixed to show bandwidth usage in Dock icon.
    • Fixed some missing localizations.
    REQUIREMENTS
    Mac OS X 10.4.11 or later with Java 1.5 or later.


    SCREENSHOT

    Developer:heavy_baby
    Downloads:136,114
      - Version d/l:1,541
    Internet:Internet Utilities
    License:Free
    Date:26 Sep 2008
    Platform:PPC/Intel
    OTHER PEOPLE SUGGEST
    Suggest something else:
    Acqlite User Reviews (130 posts)Write A Review
    sort: smiles | time
    Oct 1 2008

    ALJUK  As per usual, there's always some dickhead out to spoil the party. There are fake (generated) files on here, the same as Limewire. Any file with a size of 5,745,425, for instance, is fake, and probably malware for any windoze users...  
    (Version 0.3.3)

    praisebury
    0
    [ 4 Replies - Reply ]
    Replies:
    Oct 1 2008

    ALJUK  Add to that:

    any .mov size: 12,101,663  
    (Version 0.3.3)

    praisebury
    0
    Oct 1 2008

    ALJUK  Add to that any .wma size: 3,515,161  
    (Version 0.3.3)

    praisebury
    0
    Oct 9 2008

    HEAVY_BABY  Thanks for your information.

    Following spam file will be filtered in the next release.

    5,745,425

    12,101,663

    3,515,161  
    (Version 0.3.3)

    praisebury
    0
    Oct 9 2008

    ALJUK  Thanks. I'll post any others I come across.  
    (Version 0.3.3)

    praisebury
    0

    Oct 1 2008
    *****

    ALJUK  Stunning! Very slick, wide bandwidth, very fast. Makes Limewire seem positively prehistoric. I am very impressed indeed.  
    (Version 0.3.3)

    praisebury
    +2
    [ Reply ]
    Sep 21 2008

    DOUGSTER  Had I been asked a year or so ago what I thought of this product,my comments would not have been favourable. However,this all-new version is very,very good. I am impressed!  
    (Version 0.3.2)

    praisebury
    +2
    [ Reply ]
    Sep 16 2008

    BOSKABOUTER  I'm having a problem with the latest version of Acqlite and I hope that someone can help.

    I have been using version 0.2.9 and, although with crashes, i have been able to download most of the things i needed, but, with version 0.3.1 I can't.

    The problem is as follows: 0.3.1 connects to 4 peers in the network (5 in the older 0.2.9 version) I do a search, I get search results, doubleclick a file, it starts downloading and at some point i notice that the downloadspeed starts dropping and suddenly my network connection icon in Acqlite shows grey, no peer connections anymore and it just idles then, doing nothing anymore.......... :( My internetconnection just works, it's just Acqlite then.

    I'm on adsl connection.

    Version 0.9.2 works, although it crashes very often, does anyone know what my problem is or what i can do to solve this?

    TIA

    Paul  
    (Version 0.3.1)

    praisebury
    0
    [ 1 Reply - Reply ]
    Replies:
    Sep 21 2008

    HEAVY_BABY  Could you show the console log?  
    (Version 0.3.2)

    praisebury
    +1

    Aug 29 2008

    E_COMMERCE  Acqlite 0.3 still prevents shutdown and restarts from occurring properly if it's running at the time. I made the following changes to the 0.29 code that resolved it:

    AqApp(Dialogs).m

    // me: Added replyToApplicationShouldTerminate, removed startShutdown (no longer needed here)

    - (void) sheetDidDismiss: (NSWindow*)sheet returnCode: (int)returnCode contextInfo: (void*)contextInfo;

    {

    if (returnCode == NSAlertDefaultReturn)

    {

    [NSApp replyToApplicationShouldTerminate: YES];

    }

    else

    {

    [NSApp replyToApplicationShouldTerminate: NO];

    }

    }

    AqApplicationController.m

    // me: Moved startShutdown to applicationWillTerminate, improved NSApplicationTerminateReply usage

    - (NSApplicationTerminateReply) applicationShouldTerminate: (id) sender;

    {

    if ([[AqCoreController instance] coreWasTerminated]) return NSTerminateNow;

    if (![[AqCoreController instance] coreWasLaunched]) return NSTerminateCancel;

    /* warn quitting */

    if ([[AqDownloadsController instance] active] && [defaults boolForKey: @"kAqWarnQuit"])

    {

    [self warnQuit: nil modalDelegate: self];

    return NSTerminateLater;

    }

    return NSTerminateNow;

    }

    - (void) applicationWillTerminate: (id) notification;

    {

    [self startShutdown];

    [self updateDockIcon: NO];

    if ([AqSidebarController instance])

    [[AqSidebarController instance]->window saveFrameUsingName: @"kAqMainWindow"];

    [[AqQueryController instance] applicationWillTerminate];

    [[AqSidebarController instance] applicationWillTerminate];

    [[AqFilterController instance] applicationWillTerminate];

    [[AqContentViewController instance] applicationWillTerminate];

    }

    - (void) startShutdown;

    {

    /* show shutdown panel */

    if ([self isOS103OrHigher])

    {

    [[AqSidebarController instance]->window makeKeyAndOrderFront: self];

    [shutdownProgress setUsesThreadedAnimation: YES];

    [shutdownProgress startAnimation: nil];

    [NSApp beginSheet: shutdownPanel

    modalForWindow: [AqSidebarController instance]->window

    modalDelegate: self

    didEndSelector: nil

    contextInfo: nil];

    }

    else

    {

    [shutdownProgress setUsesThreadedAnimation: YES];

    [shutdownProgress startAnimation: nil];

    [shutdownPanel setTitle: @""];

    [shutdownPanel center];

    [shutdownPanel makeKeyAndOrderFront: self];

    }

    // me: How can we wait for this to finish before quitting?

    [AqCoreController writeString: @"shutdown\n"];

    }  
    (Version 0.3)

    praisebury
    -1
    [ 2 Replies - Reply ]
    Replies:
    Aug 31 2008

    AKROBAT  Any chance of telling us how to implement it... I'm not experienced with the Terminal (I figure that's what you need to use) but I can follow instructions.   
    (Version 0.3)

    praisebury
    0
    Sep 9 2008

    E_COMMERCE  No, this requires code changes (that were horribly mangled by my post) and recompiling the program. And there are dependencies. I may post a modified binary, but first I'll have to get my setup up-to-date again.  
    (Version 0.3)

    praisebury
    -1

    Aug 29 2008
    *****

    2SHAE  This is like 10X better than Limewire/Frostwire or anything else.

    It seems like it filters out the fakes much better and the interface is really nice.

    And best of all...it's Free!

    Acqlite is one of my favorite apps now.  
    (Version 0.3)

    praisebury
    +4
    [ Reply ]
    Aug 14 2008

    MR.LON  Thank god it's back again. The bst P2P for the mac!

    GREAT!  
    (Version 0.3)

    praisebury
    +2
    [ Reply ]
    Aug 13 2008

    E_COMMERCE  Yes!! I've been using a version that I hacked enough to get compiling and running on Leopard, but it was always buggy as hell.

    Thank you for picking this up! Now anyone want to take on mlMac? :)  
    (Version 0.3)

    praisebury
    0
    [ Reply ]
    Aug 13 2008

    NONEOFYOURBIZ  Finally!

    Thank God this application is back! Where have you guys been??  
    (Version 0.3)

    praisebury
    0
    [ Reply ]
    Aug 13 2008

    EUSKIR  Good news to see this application alive and kicking!  
    (Version 0.3)

    praisebury
    0
    [ Reply ]
    View all 130 posts >>