smile full edition 3.1.8
Smile regular edition 3.1.8
Smile is an integrated working and production environment for all users of numerical data more>>
Main features:
- an AppleScript editor with many scripting helpers, and unique AppleScript Terminal windows,
- an editor of scripted interfaces,
- a text editor for ASCII and Unicode, with a search-and-replace tool supporting Regular Expressions,
- a XML editor,
- a Regular Expression engine,
- a XML and p-list engine,
- a 2D graphic engine, where you program vectorial PDF graphics by script,
- commands for driving industrial interfaces: RS232 serial communication, digital I/O, LED display.
Smile ships with an impressive set of additional tools of various kinds, for instance a backup utility. Smile is totally scriptable, attachable (each object can own a script), and tailored (with scripts you can customize the interface to any extent.)
Enhancements:
- SmileLab now ships as universal binary, in other words it runs natively on PPC as well as on Intel machines.
- You can now make HTML interfaces. Users view the interface either in their favorite browser, or in Smile, in a specific (and scriptable) kind of window.
- The regular expressions commands that work on Unicode text now support several expressions syntaxes.
- XML engine enhancements: new XML commands, better handling of pools of documents, new plist commands.
- You can now automate PDF document printing.
- the release notes list more than 50 new features, minor enhancements or bug fixes.

Mini vMac Full Edition 1.0
Mini vMac Full Edition comes as the popular classic emulator for Mac (Universal) which includes System 1.1 with Finder 1.1 to System 7.0.1 with Finder 7.0. more>> Mini vMac Full Edition 1.0 comes as the popular classic emulator for Mac (Universal) which includes System 1.1 with Finder 1.1 to System 7.0.1 with Finder 7.0.
Requirements:
- MC OS X 10.3.9 or later.
Qt/Mac GPL/QPL edition 3.3.5
Qt/Mac GPL/QPL edition is a product featuringa multiplatform C++ application development framework more>>
Qt/Mac GPL/QPL edition 3.3.5 is a product featuringa multiplatform C++ application development framework. It has become the emerging standard development environment for IT professionals who want to: Write (and maintain) a single source-tree. Port it to multiple platforms with a simple recompile. Run applications with native Look&Feel at native speed.
MPP Free Edition 1.2.113
MPP Free Edition - Virus/spam tools for email servers more>>
Think of the MPP Free Edition as an ultra-fast alternative to open source tools such as MailScanner or AmavisD, with great GUI management, user-friendly installation for most Linux distributions, Mac OS X and FreeBSD, complete documentation and management. MPP requires no compiling or Perl expertise.
SQLVue Starter Edition 1.0.2
SQLVue Starter Edition is an interactive SQL editor that makes it easy to view and develop REALbasic databases more>> SQLVue Starter Edition is an interactive SQL editor that makes it easy to view and develop REALbasic databases.
Mac OS 8.0 or later.
PhoneValet Home Edition 1.1.4
PhoneValet Home Edition is regarded as an advanced program which satisfies you with all the features a busy family could want to organize their calls. more>>
PhoneValet Home Edition 1.1.4 is regarded as an advanced program which satisfies you with all the features a busy family could want to organize their calls.
Family Voicemail... No Monthly Fees!
Amazingly easy to install and use, it helps the right person answer first, takes junk calls, plays ring tones, dials and gives everyone their own mailbox!
It's easy to trust the makers of multi-award-winning PhoneValet Message Center, the premier telephone system for small business and home offices with its multi-line automated attendant, call recording capabilities and more. Home Edition inherits the stability and careful design that comes from Parliant's years of experience. With an emphasis on ease of installation and solid dependable performance, busy families trust PhoneValet to make life simpler.
Enhancements:
- Supports for operation on Mac OS X 10.6 "Snow Leopard" and continues to include the volume workaround from version 1.1.3
Oracle Berkeley DB Java Edition 3.3.82
High performance transactional storage engine. more>> High performance transactional storage engine.
Oracle Berkeley DB Java Edition is a high performance, transactional storage engine written entirely in Java. Like the highly successful Berkeley DB product, Berkeley DB Java Edition executes in the address space of the application, without the overhead of client/server communication.
It stores data in the applications native format, so no runtime data translation is required. Berkeley DB Java Edition supports full ACID transactions and recovery. It provides an easy-to-use, programmatic interface, allowing developers to store and retrieve information quickly, simply and reliably.
Main features:
- Local, in-process data storage.
- Schema-neutral, application native data storage.
- Keyed and sequential data retrieval.
- Easy-to-use Java Collections API.
- Persistence API for accessing Java objects.
- Single process, multi-threading model.
- Record level locking for high concurrency.
- Support for secondary indexes.
- In-memory, on disk or both.
- Configurable background cleaner threads re-organize data and optimize disk use.
- Full ACID compliance.
- Selectable isolation levels and durability guarantees, configurable on a per-transaction basis.
- Managed transactions using the Java Transaction API (JTA).
- J2EE application server integration using J2EE Connector Architecture(JCA).
- Provides support for monitoring, auditing and administration using the Java Management Extensions (JMX).
- Catastrophic and routine failure recovery modes.
- Timeout based deadlock detection.
- Hot and cold backups, log file compaction, and full database dumps.
- 100% pure Java for portability and ease of development.
- Single JAR file - easy to install, runs in the same JVM as the application.
- Java 1.4.2 or later Standard Edition JVM required.
- Programmatic administration and management-zero human administration.
- API for routine administrative functions.
- Small footprint 772KB.
- Scalable to terabytes of data, millions of records.
- Source code, test suite included.
System requirements:
-
Enhancements
- Fix a bug that somtimes causes two log cleaner threads (when multiple threads are configured or multiple app threads call Environment.cleanLog) to select the same file to clean. This can result in two attempts to delete the log file after cleaning. The second attempt causes an exception to be traced repeatedly, but no other side effect. The problem is transient and goes away if the Environment is closed and re-opened. An example of the exception is below. The symptom is that this exception occurs repeatedly, and the file is not present.
- Fix a bug that could cause a LogFileNotFoundException when using an XAEnvironment, if a prepared transaction is not ended prior to a crash and then the prepared transaction is aborted after recovering from a crash. [#17022] (3.3.79)
- Fix a bug that prevented deferred-write record deletions from being made durable by Database.sync, if a crash occurs after Database.sync but prior to the next checkpoint. Under rare circumstances this could also result in a LogFileNotFoundException later when accessing the deleted entry. [#16864] (3.3.78)
- Fix a bug that prevents log cleaning from functioning properly when a temporary DB (DatabaseConfig.setTemporary) is large enough to overflow the JE cache. Also fix a bug that could in rare cirumstances cause an endless loop while performing log cleaning. [#16928] (3.3.78)
- Fix a bug that caused an infinite loop under certain timing dependent circumstances when using EnvironmentConfig.setSharedCache(true). This bug was reported in two different forum posts. Thanks to Kevin Jackson and Vyacheslav Lukianov for reporting it! [#16882] (3.3.78)
- Improve output of partial information in DatabaseEntry.toString. Thanks to archie172 for reporting this on OTN. [#16929] (3.3.78)
- Fix a bug in SecondaryCursor.dup that required the cursor to be initialized. This method, like Cursor.dup, may now be called whether the cursor is initialized or not. Thanks to archie172 for reporting this on OTN. [#16930] (3.3.78)
- Fix a bug that caused NullPointerException when opening an XAEnvironment under certain circumstances, when prepared but uncommitted transactions are present in the JE log and must be replayed during recovery. This bug was reported on the OTN forum by Matthieu Bentot -- thank you Matthieu! An example of the stack trace is below.
- Fix a bug that caused LogFileNotFoundException in rare circumstances for an Environment having one or more Databases configured for duplicates (or one or more SecondaryIndexes with MANY_TO_XXX relationships). The bug only occurs when a single secondary/duplicate key value is associated with a large number of records/entities; specifically, the sub-Btree for a single duplicate key value must have at least 3 levels. [#16712] (3.3.76)
- Fix a bug that caused BufferOverflowException while writing transactional records. This could occur if multiple threads were writing to an environment while using the same Transaction. [#17204]
- Direct Persistence Layer (DPL), Collections and Bind packages - Fix a bug that causes the EvolveStats returned by EntityStore.evolve to contain zeros, even when entities are evolved and written, when no EvolveListener is configured. Thanks to jhalex on OTN for reporting this. [#17024] (3.3.78)
RoboBabies - Family Edition 1.0
RoboBabies - Family Edition - Funny robot icons more>>
All icons are aquafied and look best in 128x128 at 32bit mode.
Virex X (.Mac edition) 7.5.1
Virex 7, for Mac OS X ,is the latest version of this robust antivirus solution from Network Associates more>>
Virex X (.Mac edition) 7.5.1 is an effective and strong antivirus program designed for Mac OS X by Network Associates. Virex 7 provides full protection (via GUI and command-line) for users of Apple's new operating system.
iYML - Widget Edition 2.0
iYML - Widget Edition - Access the radio show Your Mac Life! more>>
iYML - Widget Edition is a small tool that gives you direct access to the live video and audio streams as well as the archive stream.
WeatherPop Free Edition 2.0.1
WeatherPop Free Edition is a program tp show weather conditions for US cities in the menu bar more>>
WeatherPop Free Edition 2.0.1 is a program tp show weather conditions for US cities in the menu bar.Are you bleary eyed from staring into bright white phosphor all day? Download WeatherPop Advance for Mac OS X only and you can be in touch with what it's like outside right now. Let the current conditions and temperature in your menu bar serve as a gentle reminder to get outside, go for a walk, and stop working so hard. WeatherPop Free Edition is a menu bar application that displays current temperature and weather conditions in a beautifully unobtrusive manner.
The freeware version of WeatherPop only supports cities in the United States, covered by the National Weather Service. Also supports up to 3 favorite cities!
litelabel - Pressit Edition 2.4.2
litelabel - Pressit Edition - Design and Print labels for your discs using Pressit high quality labels more>>
liteLabel 2.4.2 allows you to import your own images, import tune titles and print those designs with the utmost of ease.

RPG Widget Edition 1.1
RPG Widget Edition is a program dealing with the demand for random passwords (and other random character strings) of specific lengths and constitutions. more>>
Enhancements:
- Mac OS X 10.5 (Leopard) compatibility
Requirements:
- Mac OS X 10.4 or later.
Smile 3.4.2
Smile provides the easiest way to produce faster and better with a set of production technologies and a natural fashion of having them work together, you automate frequent tasks and you control complex operations. more>> <<less
Smile offers you a useful programming and working environment that allows you to ... Smile 3.4.2
Satimage - Fully scriptable free AppleScript based working environment to develop graphicsSunFlower (Public Edition) 0.5
SunFlower (Public Edition) provides you a chance to monitors web pages for changes effectively through saving a snapshot of the page and then comparing that snapshot to snapshots in the future. more>>
SunFlower (Public Edition) 0.5 provides you a chance to monitors web pages for changes effectively through saving a snapshot of the page and then comparing that snapshot to snapshots in the future. You are notified when snapshots are different and can quickly examine the changes.