mac os x
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1580
Transmission 0.81
Transmission is a BitTorrent client which aims to be as efficient as possible. more>>
Transmission is a free BitTorrent client written from scratch in C. Transmission is still in early development stage.
Transmission aims to be as efficient as possible. Transmission runs on Mac OS X, BeOS, Linux and NetBSD (and probably on other UNIX-like systems too). Only the Mac OS X version has a graphical interface yet.
Transmission is released under the MIT license.
Enhancements:
- Fix 0.80 assertion crashes
- Fix a bug that miscounted how many peers Transmission wants connected
- Correct incorrect error messages
- Memory leaks fixed
<<lessTransmission aims to be as efficient as possible. Transmission runs on Mac OS X, BeOS, Linux and NetBSD (and probably on other UNIX-like systems too). Only the Mac OS X version has a graphical interface yet.
Transmission is released under the MIT license.
Enhancements:
- Fix 0.80 assertion crashes
- Fix a bug that miscounted how many peers Transmission wants connected
- Correct incorrect error messages
- Memory leaks fixed
Download (4.2MB)
Added: 2007-08-24 License: MIT/X Consortium License Price:
805 downloads
Wings 3D 0.98.36
Wings 3D is a subdivision modeler inspired by Nendo and Mirai from Izware. more>>
Wings 3D is a subdivision modeler inspired by Nendo and Mirai from Izware.
Wings 3D is possible to assign materials, vertex color, UV coordinates and textures, but there will be improvements in those features before Wings goes 1.0.
There is no support in Wings for doing animations.
Export Formats
- Nendo (NDO)
- 3D Studio (3DS)
- Wavefront (OBJ)
- VRML (WRL)
- Renderware (RWX)
- FBX (on Windows and Mac OS X)
- Yafray
- Toxic
Import Formats
- Nendo (NDO)
- 3D Studio (3DS)
- Wavefront (OBJ)
- FBX (on Windows and Mac OS X)
- Adobe Illustrator 8 (AI)
<<lessWings 3D is possible to assign materials, vertex color, UV coordinates and textures, but there will be improvements in those features before Wings goes 1.0.
There is no support in Wings for doing animations.
Export Formats
- Nendo (NDO)
- 3D Studio (3DS)
- Wavefront (OBJ)
- VRML (WRL)
- Renderware (RWX)
- FBX (on Windows and Mac OS X)
- Yafray
- Toxic
Import Formats
- Nendo (NDO)
- 3D Studio (3DS)
- Wavefront (OBJ)
- FBX (on Windows and Mac OS X)
- Adobe Illustrator 8 (AI)
Download (2.4MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1454 downloads
Beos
Beos provides a beautiful set of icons. more>>
Beos provides a beautiful set of icons.
Matthew McClintock created a beautiful set of icons for Mac OS X, that I converted to create this icon theme about one the best desktop OS I know.
For the moment, the theme is not fully complete: some of the mime icons are defined. I will finalize it later.
<<lessMatthew McClintock created a beautiful set of icons for Mac OS X, that I converted to create this icon theme about one the best desktop OS I know.
For the moment, the theme is not fully complete: some of the mime icons are defined. I will finalize it later.
Download (0.23MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
12601 downloads
Ophcrack 2.4.1
Ophcrack is a Windows password cracker based on rainbow tables. more>>
Ophcrack is a Windows password cracker based on rainbow tables. It is a very efficient implementation of rainbow tables done by the inventors of the method.
This projetc comes with a GTK+ Graphical User Interface and runs on ,Linux Mac OS X (Intel CPU) as well as on Windows.
<<lessThis projetc comes with a GTK+ Graphical User Interface and runs on ,Linux Mac OS X (Intel CPU) as well as on Windows.
Download (0.17MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
3939 downloads
ActivePerl 5.8.8.819
ActivePerl is the complete, quality-assured and ready-to-install Perl distribution for AIX, HP-UX, Linux, Mac OS X, Solaris. more>>
ActivePerl project is the complete, quality-assured and ready-to-install Perl distribution for AIX, HP-UX, Linux, Mac OS X, Solaris, and Windows.
Whats included:
- Perl core
- Perl Package Manager
- Installers
- Complete online documentation
Enhancements:
- Release version of 64-bit ActivePerl for Linux, Solaris and Windows.
- Rewritten PPM client. The command line shell has been replaced by a graphical user interface.
- Bundles the Tcl and Tkx modules, plus a significant subset of the latest Tcl/Tk widgets.
<<lessWhats included:
- Perl core
- Perl Package Manager
- Installers
- Complete online documentation
Enhancements:
- Release version of 64-bit ActivePerl for Linux, Solaris and Windows.
- Rewritten PPM client. The command line shell has been replaced by a graphical user interface.
- Bundles the Tcl and Tkx modules, plus a significant subset of the latest Tcl/Tk widgets.
Download (MB)
Added: 2007-01-12 License: Free To Use But Restricted Price:
1021 downloads
Other version of ActivePerl
Price: $0.00
License:Freeware
License:Freeware

Saurus CMS Free for Linux / Mac OS X 4.5.1
Saurus CMS Free - content management system combining usability with technology more>> <<less
Download (10.59MB)
Added: 2009-04-01 License: Freeware Price: Free
209 downloads
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
1005 downloads
Mac::PropertyList 1.29
Mac::PropertyList is a Perl module to work with Mac plists at a low level. more>>
Mac::PropertyList is a Perl module to work with Mac plists at a low level.
SYNOPSIS
use Mac::PropertyList;
my $data = parse_plist( $text );
# == OR ==
my $data = parse_plist_file( $filename );
# == OR ==
open my( $fh ), $filename or die "...";
my $data = parse_plist_fh( $fh );
my $text = plist_as_string( $data );
my $plist = create_from_hash( %hash );
my $plist = create_from_array( @array );
my $plist = Mac::PropertyList::dict->new( %hash );
This module is a low-level interface to the Mac OS X Property List (plist) format. You probably shouldnt use this in applications---build interfaces on top of this so you dont have to put all the heinous multi-level object stuff where people have to look at it.
You can parse a plist file and get back a data structure. You can take that data structure and get back the plist as XML. If you want to change the structure inbetween thats your business.
You dont need to be on Mac OS X to use this. It simply parses and manipulates a text format that Mac OS X uses.
Enhancements:
- Perl
<<lessSYNOPSIS
use Mac::PropertyList;
my $data = parse_plist( $text );
# == OR ==
my $data = parse_plist_file( $filename );
# == OR ==
open my( $fh ), $filename or die "...";
my $data = parse_plist_fh( $fh );
my $text = plist_as_string( $data );
my $plist = create_from_hash( %hash );
my $plist = create_from_array( @array );
my $plist = Mac::PropertyList::dict->new( %hash );
This module is a low-level interface to the Mac OS X Property List (plist) format. You probably shouldnt use this in applications---build interfaces on top of this so you dont have to put all the heinous multi-level object stuff where people have to look at it.
You can parse a plist file and get back a data structure. You can take that data structure and get back the plist as XML. If you want to change the structure inbetween thats your business.
You dont need to be on Mac OS X to use this. It simply parses and manipulates a text format that Mac OS X uses.
Enhancements:
- Perl
Download (0.017MB)
Added: 2006-09-18 License: Perl Artistic License Price:
1133 downloads
Gabber 1.9.4
Gabber is an Jabber Instant Messaging client. more>>
Gabber 2 is the next generation of Gabber: The Gnome Jabber Client. Gabber 2 is a Jabber client written in C++ using Gtkmm2 which is currently available for Linux and Mac OS X (under X11).
<<less Download (0.58MB)
Added: 2005-07-26 License: GPL (GNU General Public License) Price:
1551 downloads
Murrina-Brown 0.1
Murrina-Brown 0.1 is yet another great addition for Gnome users. It is actually a port of Mac OS X theme, Muku v1.2. The dock on the bottom is avant-window-navigator more>>
Murrina-Brown 0.1 is yet another great addition for Gnome users. It is actually a port of Mac OS X theme, Muku v1.2. The dock on the bottom is avant-window-navigator. Emerald theme is included.
<<less Added: 2008-10-23 License: GPL Price: FREE
14 downloads
Not another MAC theme 0.1
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. more>>
Not another MAC theme 0.1 provides you with a nice theme for GNOME users. It is actually a mix of all the MAC OS X GTK themes.
GNOME is an international effort to build a complete desktop environment the graphical user interface which sits on top of a computer operating system entirely from free software. This goal covers creating software development frameworks, selecting application software for the desktop, and working on the programs which manage application launching, file handling, and window and task management.
Requirements:
- GNOME
Added: 2008-11-17 License: GPL Price: FREE
1 downloads
Jin 2.14.1
Jin is a Java client for various chess servers. more>>
Jin is an open source, cross platform, graphical client (interface) for the Internet Chess Club and the Free Internet Chess Server.
Enhancements:
- This release focuses mainly on Mac OS X related fixes, but also adds beautiful new piece sets.
<<lessEnhancements:
- This release focuses mainly on Mac OS X related fixes, but also adds beautiful new piece sets.
Download (10MB)
Added: 2007-03-05 License: GPL (GNU General Public License) Price:
964 downloads
.icns A.00.02
.icns allows you to use Mac OS X .icns icon files as easily as PNG pictures in GTK+ applications (custom icons, etc.) more>>
.icns allows you to use Mac OS X .icns icon files as easily as PNG pictures in GTK+ applications (custom icons, etc.)
Enhancements:
- This version adds support for 48x48, 32x32, and 16x16 icons, and for legacy icons (B&W, 16, and 256 colors).
- A command line tool that displays detailed information about icons contained in a .icns file has been added.
<<lessEnhancements:
- This version adds support for 48x48, 32x32, and 16x16 icons, and for legacy icons (B&W, 16, and 256 colors).
- A command line tool that displays detailed information about icons contained in a .icns file has been added.
Download (0.049MB)
Added: 2007-03-05 License: LGPL (GNU Lesser General Public License) Price:
968 downloads
dbKalendar 0.9.1
dbKalendar is a calendar theme for SuperKaramba that tries to mimic the Dashboard calendar widget introduced in Mac OS X 1.04. more>>
dbKalendar is a calendar theme for SuperKaramba that tries to mimic the Dashboard calendar widget introduced in Mac OS X 1.04 (Tiger).
It will probably never be as slick as the original, but Im trying to get it as close as possible. Goal is to have at least the same functions in dbKalender as there are in Dasboards calendar. After that has happened, perhaps integration with KOrganizer is possible.
<<lessIt will probably never be as slick as the original, but Im trying to get it as close as possible. Goal is to have at least the same functions in dbKalender as there are in Dasboards calendar. After that has happened, perhaps integration with KOrganizer is possible.
Download (0.17MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1207 downloads
Pyzam 0.12
Pyzam project is a fullscreen archived comic book reader for CBZ and CBR files. more>>
Pyzam project is a fullscreen archived comic book reader for CBZ and CBR files.
The original intent was to create a comic book reader for Mac OS X that did fullscreen and supported cbz and cbr files.
It supports two-page view and directories of images. It also works on systems other than Mac OS X, but only supports cbz files.
Enhancements:
- Added png support.
<<lessThe original intent was to create a comic book reader for Mac OS X that did fullscreen and supported cbz and cbr files.
It supports two-page view and directories of images. It also works on systems other than Mac OS X, but only supports cbz files.
Enhancements:
- Added png support.
Download (MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1065 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above mac os x search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed