bazaar magazine
MAKE Magazine Widget 1.0
MAKE Magazine Widget - Get the best of MAKE Magazine as a widget on your desktop more>>
And now get the best of MAKE as widget on your desktop! We also show you how we made ours so you can make your own!
Bazaar 1.16 RC1 / 1.15.1
Free and open source application that adapts to the workflows you want to use Bazaar is a distributed version control system available under the GPL that reduces barriers to participation in your more>> Free and open source application that adapts to the workflows you want to use
Bazaar is a distributed version control system available under the GPL that reduces barriers to participation in your project.
Bazaar is designed to support Mac OS, GNU/Linux, UNIX, Windows. In summary, Bazaar gives you fast, distributed revision control that "Just Works", supporting renames of directories and files smoothly.
Bazaar is designed to maximise the level of community participation in your project.
Bazaar branches can be published on any web server, and uploaded over sftp, ftp, or rsync. If you want the fastest possible network performance, there is a smart server.
Bazaar supports flexible work models: centralized like cvs or svn, commit offline, enforced code review when desired, and automatic regression testing.
Decentralized revision control systems give people the ability to collaborate more efficiently over the internet using the bazaar development model and have many other advantages.
When you use Bazaar, you can commit to your own local branches of your favourite free software projects without needing special permission.
Main features:
Good performance:
- Bazaar status in a tree of 5,000 files takes just 0.5 seconds, so almost every open source project can get the advanced features of Bazaar without slowing down its developers. Bazaar is robust in the face of radical tree restructuring, saving you time when it comes to merging from your community.
Safe with your data:
- There have not been any data loss bugs in a Bazaar release in the past two years. Bazaar has a huge test suite that ensures that new file formats can be tested automatically. The development process follows best practice with code review of all core and community code landings.
Friendly:
- Bazaar "Just Works" (which is why the Ubuntu team chose it for their project). Bazaar has a natural feel, you can publish your code on any web server or use a custom server for performance. Bazaar has perfect support for renaming files AND directories, which means you can unleash your community and merge efficiently even from contributors who are radically restructuring the tree.
Free:
- Bazaar is available under the GPL v2 or later.
Easy to integrate:
- Bazaar is designed as a Python API with a plugin system, so it is easy to embed in your tools and projects and easy to extend or integrate with existing infrastructure. Whether you are managing your development, or keeping track of configuration files, or building a new content management system, Bazaar is a great choice if you like to work in Python.
System requirements:
-
Enhancements
Compatibility Breaks:
- Display prompt on stderr (instead of stdout) when querying users so that the output of commands can be safely redirected. (Vincent Ladeuil, #376582)
New Features:
- A new repository format 2a has been added. This is a beta release of the the brisbane-core (aka group-compress) project. This format now suitable for wider testing by advanced users willing to deal with some bugs. We would appreciate test reports, either positive or negative. Format 2a is substantially smaller and faster for many operations on many trees. This format or an updated version will become the default in bzr 2.0.
- This is a rich-root format, so this repository format can be used with bzr-svn. Bazaar branches in previous non-rich-root formats can be converted (including by merge, push and pull) to format 2a, but not vice versa. We recommend upgrading previous development formats to 2a.
- Upgrading to this format can take considerable time because it expands and more concisely repacks the full history.
- If you use stacked branches, you must upgrade the stacked branches before the stacked-on branches. (See )
- --development7-rich-root is a new dev format, similar to --dev6 but using a Revision serializer using bencode rather than XML. (Jelmer Vernooij, John Arbash Meinel)
- mail_client=claws now supports --body (and message body hooks). Also uses configured from address. (Barry Warsaw)
Improvements:
- --development6-rich-root can now stack. (Modulo some smart-server bugs with stacking and non default formats.) (John Arbash Meinel, #373455)
- --development6-rich-root delays generating a delta index for the first object inserted into a group. This has a beneficial impact on bzr commit since each committed texts goes to its own group. For committing a 90MB file, it drops peak memory by about 200MB, and speeds up commit from 7s => 4s. (John Arbash Meinel)
- Numerous operations are now faster for huge projects, i.e. those with a large number of files and/or a large number of revisions, particularly when the latest development format is used. These operations (and improvements on OpenOffice.org) include: branch in a shared repository (2X faster), branch --no-tree (100X faster), diff (2X faster), tags (70X faster) (Ian Clatworthy)
- Pyrex version of bencode support. This provides optimized support for both encoding and decoding, and is now found at bzrlib.bencode. bzrlib.utils.bencode is now deprecated. (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)
Bug Fixes:
- Bazaar can now pass attachment files to the mutt email client. (Edwin Grubbs, #384158)
- Better message in bzr add output suggesting using bzr ignored to see which files can also be added. (Jason Spashett, #76616)
- bzr pull -r 123 from a stacked branch on a smart server no longer fails. Also, the Branch.revision_history() API now works in the same situation. (Andrew Bennetts, #380314)
- bzr serve on Windows no longer displays a traceback simply because a TCP client disconnected. (Andrew Bennetts)
- Clarify the rules for locking and fallback repositories. Fix bugs in how RemoteRepository was handling fallbacks along with the _real_repository. (Andrew Bennetts, John Arbash Meinel, #375496)
- Fix a small bug with fetching revisions w/ ghosts into a new stacked branch. Not often triggered, because it required ghosts to be part of the fetched revisions, not in the stacked-on ancestry. (John Arbash Meinel)
- Fix status and commit to work with content filtered trees, addressing numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)
- Fix problem of "directory not empty" when contending for a lock over sftp. (Martin Pool, #340352)
- Fix rule handling so that eol is optional, not mandatory. (Ian Clatworthy, #379370)
- Pushing a new stacked branch to a 1.15 smart server was broken due to a bug in the BzrDirFormat.initialize_ex smart verb. This is fixed in 1.16, but required changes to the network protocol, so the BzrDirFormat.initialize_ex verb has been removed and replaced with a corrected BzrDirFormat.initialize_ex_1.16 verb. 1.15 clients will still work with a 1.16 server as they will fallback to slower (and bug-free) methods. (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)
- Reconcile can now deal with text revisions that originated in revisions that are ghosts. (Jelmer Vernooij, #336749)
- Support cloning of branches with ghosts in the left hand side history. (Jelmer Vernooij, #248540)
- The bzr diff now catches OSError from osutils.rmtree and logs a helpful message to the trace file, unless the temp directory really was removed (which would be very strange). Since the diff operation has succeeded from the users perspective, no output is written to stderr or stdout. (Maritza Mendez, #363837)
- Translate errors received from a smart server in response to a BzrDirFormat.initialize or BzrDirFormat.initialize_ex request. This was causing tracebacks even for mundane errors like PermissionDenied. (Andrew Bennetts, #381329)
Documentation:
- Added directory structure and started translation of docs in Russian. (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev, Volodymyr Kotulskyi)
API Changes:
- Added osutils.parent_directories(). (Ian Clatworthy)
- bzrlib.progress.ProgressBar, ChildProgress, DotsProgressBar, TTYProgressBar and child_progress are now deprecated; use ui_factory.nested_progress_bar instead. (Martin Pool)
- graph.StackedParentsProvider is now a public API, replacing graph._StackedParentsProvider. The api is now considered stable and ready for external users. (Gary van der Merwe)
- bzrlib.user_encoding is deprecated in favor of get_user_encoding. (Alexander Belchenko)
- TreeTransformBase no longer assumes that limbo is provided via disk. DiskTreeTransform now provides disk functionality. (Aaron Bentley)
Internals:
- Remove weave.py script for accessing internals of old weave-format repositories. (Martin Pool)
Testing:
- The number of cores is now correctly detected on OSX. (John Szakmeister)
- The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)
- The number of cores is also detected on FreeBSD. (Matthew Fuller)
License:GPL
The L Magazine Widget 1.0
The L Magazine Widget - The L Magazine pick of the day widget more>>
Let it guide you to the ultimate movie, rock show, reading, play, gallery opening or place to take your visiting mother-in-law.
License:Freeware
Paparazzi Widget 1.0
Paparazzi Widget - Want to know the latest celebrity news? more>>
For updates simply click on refresh.
You can also search People magazine online for news on your favorite stars, simply type in their name and hit return.
Mac password manager 2.02
1Passwd for Mac is the top-rated Password Manager and Web Form Filler that completely automates password entering and form filling. 1passwd was named PC Magazine Editors Choice, and CNET Download.coms Software of the Year more>>
Mac password manager - 1Passwd for Mac is the top-rated Password Manager and Web Form Filler that completely automates password entering and form filling.
1Passwd for Mac:
Manage hundreds of passwords with one master key.
Integrated with Safari, OmniWeb, DEVONagent, Firefox, Camino, and Flock.
Integrated with Safari, OmniWeb, DEVONagent, Firefox, Camino, and Flock.
Take your passwords with you on your Palm / Treo.
Take your passwords with you on your Palm / Treo.
Automatic form filler outclasses the other AutoFill products.
Automatic form filler outclasses the other AutoFill products.
Define multiple identities to be used by the form filler.
Define multiple identities to be used by the form filler.
Stop keyloggers from recording your passwords and credit cards.
Stop keyloggers from recording your passwords and credit cards.
Prevent phishing criminals from stealing your information.
Prevent phishing criminals from stealing your information.
Intelligent settings make you secure by default.
Intelligent settings make you secure by default.
.Mac integration allows passwords to be synced across machines.
.Mac integration allows passwords to be synced across machines.
OS X Keychain integration provides maximum security.
OS X Keychain integration provides maximum security.
Easily import from Safari, Firefox, Web Confidential, and RoboForm.
Easily import from Safari, Firefox, Web Confidential, and RoboForm.
Generate and enter strong passwords with a single click.
Generate and enter strong passwords with a single click.
1Passwd, Roboform, Password management, Password Manager,password manager software,network password manager,password managers,password manager download,random password generator,password security software,protect passwords,autocomplete passwords,forgotten passwords,password security,password storage,password keeper software,password keepers,password store,password organizer,ie password,automatic form filler, internet fraud,identity theft,forgot password
Enhancements:
Version 2.02
System Requirements:IE,FireFox,Opera<<less
BW Headlines 1.2
BW Headlines - The most trusted name in business journalism is now available as a headline feed on your Tiger desktop! more>> BW Headlines - The most trusted name in business journalism is now available as a headline feed on your Tiger desktop!
Every business day BusinessWeek Online features breaking news, smart analysis, special reports, commentary, investing insights from Standard & Poors, and much more.
Configure your BusinessWeek Desktop Headlines widget to display new headlines from any of our RSS feeds: Top News, Technology, Investing, SmallBiz, B-Schools, Careers, BusinessWeek magazine, Most Popular Stories, and more. Youll also get the latest from all of our blogs and podcasts, and you can even build your own feed.
Any new RSS feeds we introduce will automatically become available for display in your widget.
You can search the BusinessWeek site right from within the widget interface.
And you can preview podcasts and subscribe to them with iTunes from the widget.
Enhancements
- Now you can build your own custom feed based on topics or companies youre interested in!
- Improved display of feeds containing HTML.
- Several minor improvements have also been made.
System requirements:
- iTunes 4.9 or later for podcast subscription support.

High Horse Digital Magazine for OS X 1
High Horse Digital Magazine for OS X uses rich media to deploy a virtual magazine desktop download that contains alternative news articles, cutting edge music, video, animation and Special FX more>>
High Horse Digital Magazine for OS X 1 functions as a program applying a rich media to deploy a virtual magazine desktop download having alternative news articles, cutting edge music, video, animation and Special FX. It is a freeware. No installation is needed. To uninstall, please delete the file.
Bazaar VCS 1.8 RC1 / 1.7.1
Free and open source application that adapts to the workflows you want to use more>> <<less
MacShogi 0.2.32
MacShogi is a Shogi database program for Mac OS X more>>
All Shogi rules are implemented and fully tested, illegal moves are not possible.
Main features:
- Enter new games and save them in the psn format
- Enter comments
- Enter and replay variations
- Load libraries and replay games
- Sort the games of a library in any order (sentes or gotes name, grades, event, results and dates)
- Choose an even game or a handicap game (from sente to eight piece)
- Create diagrams, you only need to copy and paste them in your magazine, book or article
- Play over internet or a local area network
- The diagrams feature provides several formats :
- text only pieces and board for sending emails
- tendo shogi font only, almost the same as in Tony Hoskings great books
- using both tendo font and text, this one is useful to make the number of pieces correctly printed. This is a good format for your book, magazine or article.
Enhancements:
- You can use the links in the Moves tab to select the variation you want to study or improve. A help : "apple key + right arrow" selects the first variation of the next move if a variation is available.
- No limit on the depth of the variations, except your own imagination !
- Minor bug fix in the shogi ban user interface when the user enters an illegal move with the mouse. Thanks to Oskar Gordon for showing me this bug :-)
Avosmac2ISO 0.1
Avosmac2ISO is a tool to drag and drop a folder on Avosmc2ISO more>>
Avosmac2ISO 0.1 is a tool to drag and drop a folder on Avosmc2ISO. It can create an universal disk image.
Bibliographer (OS X) 1.1.2
Bibliographer (OS X)is launched with the ability to generate bibliographies in MLA format, supporting Book, Encyclopedia, URL, Magazine, Interview, TV/Radio, Speech, and Video entries. more>> <<less
MacBase News Getter X 1.0
Grabs the latest news about MacBase magazine more>> Grabs the latest news about MacBase magazine.
Mac OS X 10.1 or later.

Barcode Blitz 2.0
Barcode Blitz is a software to create codes for book and magazine covers, package design, layout and DTP. more>> <<less

The Harvard Crimson Newsreader 1.0
The Harvard Crimson Newsreader is a really superior and tractable Dashboard widget news reader for the Harvard Crimson, the nations oldest continuously published daily college newspaper. more>> The Harvard Crimson Newsreader 1.0 is a really superior and tractable Dashboard widget news reader for the Harvard Crimson, the nations oldest continuously published daily college newspaper.
The widget displays headlines and summaries from all five of the Crimsons sections: News, Opinion, Sports, Magazine, and Arts. The search function is disabled after flipping, but reactivates when relaunched.
Robo-form for Macs -1Passwd 6.9.86
1Passwd for Mac is the top-rated Password Manager and Web Form Filler that completely automates password entering and form filling. 1passwd was named PC Magazine Editors Choice, and CNET Download.coms Software of the Year more>>
Robo-form for Macs -1Passwd - 1Passwd for Mac is the top-rated Password Manager and Web Form Filler that completely automates password entering and form filling.
1Passwd for Mac:
Manage hundreds of passwords with one master key.
Integrated with Safari, OmniWeb, DEVONagent, Firefox, Camino, and Flock.
Integrated with Safari, OmniWeb, DEVONagent, Firefox, Camino, and Flock.
Take your passwords with you on your Palm / Treo.
Take your passwords with you on your Palm / Treo.
Automatic form filler outclasses the other AutoFill products.
Automatic form filler outclasses the other AutoFill products.
Define multiple identities to be used by the form filler.
Define multiple identities to be used by the form filler.
Stop keyloggers from recording your passwords and credit cards.
Stop keyloggers from recording your passwords and credit cards.
Prevent phishing criminals from stealing your information.
Prevent phishing criminals from stealing your information.
Intelligent settings make you secure by default.
Intelligent settings make you secure by default.
.Mac integration allows passwords to be synced across machines.
.Mac integration allows passwords to be synced across machines.
OS X Keychain integration provides maximum security.
OS X Keychain integration provides maximum security.
Easily import from Safari, Firefox, Web Confidential, and RoboForm.
Easily import from Safari, Firefox, Web Confidential, and RoboForm.
Generate and enter strong passwords with a single click.
Generate and enter strong passwords with a single click.
1Passwd, Roboform, Password management, Password Manager,password manager software,network password manager,password managers,password manager download,random password generator,password security software,protect passwords,autocomplete passwords,forgotten passwords,password security,password storage,password keeper software,password keepers,password store,password organizer,ie password,automatic form filler, internet fraud,identity theft,forgot password
Enhancements:
Version 6.9.86
System Requirements:IE,FireFox,Opera<<less