2009-02-16

TortoiseSVN 1.5.8

TortoiseSVN 1.5.8TortoiseSVN is an easy to use SCM / source control software for Microsoft Windows and maybe the best standalone Subversion client there is. It is implemented as a Windows shell extension, which makes it integrate seamlessly into the Windows explorer. Since it's not an integration for a specific IDE you can use it with whatever development tools you like.

Another advantage of this shell integration is that not only web or software developers can use it but all the people who don't have the development tools installed, for example translators, doc writers etc.

Title: TortoiseSVN 1.5.8
Filename: TortoiseSVN-1.5.8.15348-win32-svn-1.5.5.msi
File size: 17.86MB (18,722,816 bytes)
Requirements: Windows 2000/XP/2003/Vista
License: Open Source
Date added: February 14, 2009
Author: TortoiseSVN
www.tortoisesvn.net

Download Now


Change Log

- BUG: TortoiseMerge could loose line endings when saving edits. (Stefan)

Python 3.0.1

Python 3.0.1Python is a dynamic object-oriented programming language that can be used for many kinds of software development. It offers strong support for integration with other languages and tools, comes with extensive standard libraries, and can be learned in a few days. Many Python programmers report substantial productivity gains and feel the language encourages the development of higher quality, more maintainable code.

Python runs on Windows, Linux/Unix, Mac OS X, OS/2, Amiga, Palm Handhelds, and Nokia mobile phones. Python has also been ported to the Java and .NET virtual machines.

Python is distributed under an OSI-approved open source license that makes it free to use, even for commercial products.

Title: Python 3.0.1
Filename: python-3.0.1.msi
File size: 12.81MB (13,434,880 bytes)
Requirements: Windows (All Versions)
License: Open Source
Date added: February 14, 2009
Author: Python
www.python.org

Download Now


Change Log

Core and Builtins
-----------------

- Issue #5137: Make len() correctly raise a TypeError when a __len__ method
returns a non-number type.

- Issue #5182: Removed memoryview.__str__.

- Issue #1717: Removed builtin cmp() function, dropped tp_compare
slot, the C API functions PyObject_Compare and PyUnicode_Compare and
the type definition cmpfunc. The tp_compare slot has been renamed
to tp_reserved, and is reserved for future usage.

- Issue 1242657: the __len__() and __length_hint__() calls in several tools
were suppressing all exceptions. These include list() and bytearray().

- Issue #4707: round(x, n) now returns an integer if x is an integer.
Previously it returned a float.

- Issue #4874: Most builtin decoders now reject unicode input.

- Issue #4842: Don't allow trailing 'L' when constructing an integer
from a string.

- Issue #4991: os.fdopen now raises an OSError for invalid file descriptors.

- Issue #4838: When a module is deallocated, free the memory backing the
optional module state data.

- Issue #4910: Rename nb_long slot to nb_reserved, and change its
type to (void *).

- Issue #4935: The overflow checking code in the expandtabs() method common
to str, bytes and bytearray could be optimized away by the compiler, letting
the interpreter segfault instead of raising an error.

- Issue #4910: Builtin int() function and PyNumber_Long/PyNumber_Int API
function no longer attempt to call the __long__ slot to convert an object
to an integer. Only the __int__ and __trunc__ slots are examined.

- Issue #4604: Some objects of the I/O library could still be used after
having been closed (for instance, a read() call could return some
previously buffered data). Patch by Dmitry Vasiliev.

- Issue #4705: Fix the -u ("unbuffered binary stdout and stderr") command-line
flag to work properly. Furthermore, when specifying -u, the text stdout
and stderr streams have line-by-line buffering enabled (the default being
to buffer arbitrary chunks of data).

- Issue #1180193: When importing a module from a .pyc (or .pyo) file with
an existing .py counterpart, override the co_filename attributes of all
code objects if the original filename is obsolete (which can happen if the
file has been renamed, moved, or if it is accessed through different paths).
Patch by Ziga Seilnacht and Jean-Paul Calderone.

- Issue #4580: Fix slicing of memoryviews when the item size is greater than
one byte. Also fixes the meaning of len() so that it returns the number of
items, rather than the size in bytes.

- Issue #2467: gc.DEBUG_STATS reported invalid elapsed times. Also, always
print elapsed times, not only when some objects are uncollectable /
unreachable. Original patch by Neil Schemenauer.

- Issue #4075: Use OutputDebugStringW in Py_FatalError.

- Issue #4747: When the terminal does not use utf-8, executing a script with
non-ascii characters in its name could fail with a "SyntaxError: None" error.

- Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
file with `bytes' filename on Windows.

- Issue #3680: Reference cycles created through a dict, set or deque iterator
did not get collected.

- Issue #4701: PyObject_Hash now implicitly calls PyType_Ready on types
where the tp_hash and tp_dict slots are both NULL.

- Issue #4759: fix a segfault for bytearray.translate(x, None).

- Added test case to ensure attempts to read from a file opened for writing
fail.

- Issue #3106: Speedup some comparisons (str/str and int/int).

- Issue #2173: When getting device encoding, check that return value of
nl_langinfo is not the empty string. This was causing silent build
failures on OS X.

- Issue #4597: Fixed several opcodes that weren't always propagating
exceptions.

- Issue #4589: Fixed exception handling when the __exit__ function of a
context manager returns a value that cannot be converted to a bool.

- Issue #4533: File read operation was dreadfully slow due to a slowly
growing read buffer. Fixed by using the same growth rate algorithm as
Python 2.x.

- Issue #4509: Various issues surrounding resize of bytearray objects to
which there are buffer exports (e.g. memoryview instances).

- Issue #4569: Interpreter crash when mutating a memoryview with an item size
larger than 1.

Library
-------

- Issue #4998: The memory saving effect of __slots__ had been lost on Fractions
which inherited from numbers.py which did not have __slots__ defined. The
numbers hierarchy now has its own __slots__ declarations.

- Issue #4631: Fix urlopen() result when an HTTP response uses chunked
encoding.

- Issue #5203: Fixed ctypes segfaults when passing a unicode string to a
function without argtypes (only occurs if HAVE_USABLE_WCHAR_T is false).

- Issue #3386: distutils.sysconfig.get_python_lib prefix argument was ignored
under NT and OS2. Patch by Philip Jenvey.

- Issue #3321: _multiprocessing.Connection() doesn't check handle; added checks
for *nix machines for negative handles and large int handles. Without this check
it is possible to segfault the interpreter.

- Issue #4449: AssertionError in mp_benchmarks.py, caused by an underlying issue
in sharedctypes.py.

- Issue #4890: Handle empty text search pattern in Tkinter.Text.search.

- Partial fix to issue #1731706: memory leak in Tkapp_Call when calling
from a thread different than the one that created the Tcl interpreter.
Patch by Robert Hancock.

- Issue #5132: Fixed trouble building extensions under Solaris with
--enabled-shared activated. Initial patch by Dave Peterson.

- Issue #1581476: Always use the Tcl global namespace when calling into Tcl.

- The shelve module now defaults to pickle protocol 3.

- Issue #2047: shutil.move() could believe that its destination path was
inside its source path if it began with the same letters (e.g. "src" vs.
"src.new").

- Removed isSequenceType(), isMappingType, and isNumberType() from the
operator module; use the abstract base classes instead. Also removed
the repeat() function; use mul() instead.

- Issue 5021: doctest.testfile() did not create __name__ and
collections.namedtuple() relied on __name__ being defined.

- Issue #1885: distutils. When running sdist with --formats=tar,gztar
the tar file was overriden by the gztar one.

- Issue #1672332: fix unpickling of subnormal floats, which was
producing a ValueError on some platforms.

- Issue #3881: Help Tcl to load even when started through the
unreadable local symlink to "Program Files" on Vista.

- Issue #4710: Extract directories properly in the zipfile module;
allow adding directories to a zipfile.

- Issue #5008: When a file is opened in append mode with the new IO library,
do an explicit seek to the end of file (so that e.g. tell() returns the
file size rather than 0). This is consistent with the behaviour of the
traditional 2.x file object.

- Issue #5013: Fixed a bug in FileHandler which occurred when the delay
parameter was set.

- Issue #4842: Always append a trailing 'L' when pickling longs using
pickle protocol 0. When reading, the 'L' is optional.

- Issue #3826 and #4791: The socket module now closes the underlying socket
appropriately when it is being used via socket.makefile() objects
rather than delaying the close by waiting for garbage collection to do it.

- Issue #4998: Decimal no longer subclasses from or is registered to
numbers.Real. Instead, it is registered to numbers.Number so that
isinstance(d, Number) will work.

- Issue #4867: Fixed a crash in ctypes when passing a string to a
function without defining argtypes.

- Restore Python 2.3 compatibility for decimal.py.

- Issue #3638: Remove functions from _tkinter module level that depend on
TkappObject to work with multiple threads.

- Issue #4718: Adapt the wsgiref package so that it actually works with
Python 3.x, in accordance with the `official amendments of the spec
`_.

- Fractions.from_float() no longer loses precision for integers too big to
cast as floats.

- Issue #4812: add missing underscore prefix to some internal-use-only
constants in the decimal module. (Dec_0 becomes _Dec_0, etc.)

- Issue 4790: The nsmallest() and nlargest() functions in the heapq module
did unnecessary work in the common case where no key function was specified.

- Issue #4795: inspect.isgeneratorfunction() returns False instead of None when
the function is not a generator.

- Issue #4702: Throwing a DistutilsPlatformError instead of IOError in case
no MSVC compiler is found under Windows. Original patch by Philip Jenvey.

- Issue #4646: distutils was choking on empty options arg in the setup
function. Original patch by Thomas Heller.

- Issue #3767: Convert Tk object to string in tkColorChooser.

- Issue #3248: Allow placing ScrolledText in a PanedWindow.

- Issue #4739: Add pydoc help topics for symbols, so that e.g. help('@')
works as expected in the interactive environment.

- Issue #4574: reading an UTF16-encoded text file crashes if \r on 64-char
boundary.

- Issue #4223: inspect.getsource() will now correctly display source code
for packages loaded via zipimport (or any other conformant PEP 302
loader). Original patch by Alexander Belopolsky.

- Issue #4201: pdb can now access and display source code loaded via
zipimport (or any other conformant PEP 302 loader). Original patch by
Alexander Belopolsky.

- Issue #4197: doctests in modules loaded via zipimport (or any other PEP
302 conformant loader) will now work correctly in most cases (they
are still subject to the constraints that exist for all code running
from inside a module loaded via a PEP 302 loader and attempting to
perform IO operations based on __file__). Original patch by
Alexander Belopolsky.

- Issues #4082 and #4512: Add runpy support to zipimport in a manner that
allows backporting to maintenance branches. Original patch by
Alexander Belopolsky.

- Issue #4616: TarFile.utime(): Restore directory times on Windows.

- Issue #4021: tokenize.detect_encoding() now raises a SyntaxError when the
codec cannot be found. This is for compatibility with the builtin behavior.

- Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
give correct results in the case where one argument is a quiet NaN
and the other is a finite number that requires rounding.

- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
libs.

- Issue #4529: fix the parser module's validation of try-except-finally
statements.

- Issue #4458: getopt.gnu_getopt() now recognizes a single "-" as an argument,
not a malformed option.

- Added the subprocess.check_output() convenience function to get output
from a subprocess on success or raise an exception on error.

- Issue #4542: On Windows, binascii.crc32 still accepted str as binary input;
the corresponding tests now pass.

- Issue #4537: webbrowser.UnixBrowser would fail to open the browser because
it was calling the wrong open() function.

- Issue #1055234: cgi.parse_header(): Fixed parsing of header parameters to
support unusual filenames (such as those containing semi-colons) in
Content-Disposition headers.

- Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on
biarch systems. Try to rely on ldconfig only, without using objdump and gcc.

- Issue #5104: The socket module now raises OverflowError when 16-bit port and
protocol numbers are supplied outside the allowed 0-65536 range on bind()
and getservbyport().

Tools/Demos
-----------

- Issue #4704: remove use of cmp() in pybench, bump its version number to 2.1,
and make it 2.6-compatible.

- Issue #4677: add two list comprehension tests to pybench.


Build
-----

- Issue #5134: Silence compiler warnings when compiling sqlite with VC++.

- Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows.

- Issue #4472: "configure --enable-shared" now works on OSX

- Issues #4728 and #4060: WORDS_BIGEDIAN is now correct in Universal builds.

- Issue #4389: Add icon to the uninstall entry in "add-and-remove-programs".

- Issue #4289: Remove Cancel button from AdvancedDlg.

- Issue #1656675: Register a drop handler for .py* files on Windows.

- Issue #4120: Exclude manifest from extension modules in VS2008.

- Issue #4091: Install pythonxy.dll in system32 again.

- Issue #4018: Disable "for me" installations on Vista.

- Issue #3758: Add ``patchcheck`` build target to .PHONY.

- Issue #4204: Fixed module build errors on FreeBSD 4.


C-API
-----

- Issue #4720: The format for PyArg_ParseTupleAndKeywords can begin with '|'.

- Issue #3632: from the gdb debugger, the 'pyo' macro can now be called when
the GIL is released, or owned by another thread.

- Issue #4122: On Windows, fix a compilation error when using the
Py_UNICODE_ISSPACE macro in an extension module.


Extension Modules
-----------------

- Issue #3745: Fix hashlib to always reject unicode and non buffer-api
supporting objects as input no matter how it was compiled (built in
implementations or external openssl library).

- Issue #4397: Fix occasional test_socket failure on OS X.

- Issue #4279: Fix build of parsermodule under Cygwin.

- Issue #4228: Pack negative values the same way as 2.4 in struct's L format.

- Issue #1040026: Fix os.times result on systems where HZ is incorrect.

- Issues #3167, #3682: Fix test_math failures for log, log10 on Solaris,
OpenBSD.

- Issue #4583: array.array would not always prohibit resizing when a buffer
has been exported, resulting in an interpreter crash when accessing the
buffer.

CPU-Z 1.50

CPU-Z 1.50CPU-Z is a freeware utility that gathers information on some of the main devices of your system. CPU-Z does not need to be installed, just unzip the files in a directory and run the .exe. In order to remove the program, just delete the files and that's it. The program does not copy any file in any Windows directory, nor write in the registry.

CPU

* Name and number.
* Core stepping and process.
* Package.
* Core voltage.
* Internal and external clocks, clock multiplier.
* Supported instructions sets.
* All cache levels (location, size, speed, technology).

Mainboard

* Vendor, model and revision.
* BIOS model and date.
* Chipset (northbridge and southbridge) and sensor.
* Graphic interface.

Memory

* Frequency and timings.
* Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.

System

* Windows and DirectX version.

Title: CPU-Z 1.50
Filename: cpuz_150.zip
File size: 595KB (609,459 bytes)
Requirements: Windows (All Versions)
License: Freeware
Date added: February 14, 2009
Author: CPUID
www.cpuid.com
Homepage: www.cpuid.com/cpuz.php

Download Now


Change Log

* Improved support for AMD Phenom II processor.
* New Intel Core i7 models.
* Support for NVIDIA 740i chipset.
* Several bug fixes.

RealPlayer 11.0.0.559

RealPlayer 11.0.0.559RealPlayer (renamed from RealOne) allows your system to play Real Media files (.ra .ram). This new version also allows you to buy and download music that plays on more than 100 portable devices, including the iPod.

RealPlayer is a digital-media player for finding and downloading new music, playing and managing audio and video clips, and taking your digital entertainment with you. RealPlayer offers a streamlined interface that allows you to keep your media library close at hand. Keep all your digital-media clips organized in one place; save CD tracks with one click; pause and rewind live streams; transfer music to CDs and portable devices; and enjoy clear, smooth video playback and multichannel, surround-sound support.

Title: RealPlayer 11.0.0.559
Filename: RealPlayer11GOLD.exe
File size: 12.72MB (13,334,000 bytes)
Requirements: Windows XP/2003/Vista/XP64/Vista64
License: Freeware
Date added: February 14, 2009
Author: RealNetworks Inc
www.real.com

Download Now

Windows Live Messenger 2009 (14.0.8064)

Windows Live Messenger 2009 (14.0.8064)With MSN Messenger you can chat online instantly in real time with friends, family and colleagues. It's faster than e-mail, more discreet than a phone call. Chat using a webcam, send text messages to mobile phones, and express yourself instantly online in real time with new, cool emoticons.

MSN Messenger looks like you! Sign in with your own picture, create your own emoticons, and represent yourself with new, cool backgrounds!

Title: Windows Live Messenger 2009 (14.0.8064)
Filename: wlsetup-custom.exe
File size: 1.09MB (1,144,168 bytes)
Requirements: Windows XP/Vista/Vista64
License: Freeware
Date added: February 14, 2009
Author: Microsoft Corporation
www.microsoft.com
Homepage: messenger.msn.com

Download Now

2009-02-14

LeechGet 2009 Version 2.1

LeechGet 2009 Version 2.1LeechGet is a download manager that uses a very nice, modern, Microsoft Outlook-like user interface and seamlessly integrates into Internet Explorer, allowing you to easily start and manage your downloads.

In addition, LeechGet provides many features, such a automatic downloading, resume of broken downloads, a download timer, automatic hang-up and shutdown and more. A built-in web parser lets you download complete website with all images and scripts in no time. LeechGet also provides a history of your downloaded files, sorted by day, week and month. Additional features include a file drop icon, a speed monitor and much more.

Title: LeechGet 2009 Version 2.1
Filename: LeechGet_1800.exe
File size: 2.91MB (3,054,220 bytes)
Requirements: Windows (All Versions)
License: Non-Commercial Freeware
Date added: February 12, 2009
Author: LeechGet.net
www.leechget.net

Download Now


Change Log

After a long time, a new LeechGet version is final and released. LeechGet 2009 Version 2.1 provides a lot more features, a sophisticated Download Engine and the possibility to control Bandwidth usage through "Download Profiles".

Password Safe 3.16

Password Safe 3.16Password Safe is an Open Source (free) tool that allows you to have a different password for all the different programs and websites that you deal with, without actually having to remember all those usernames and passwords.

Password Safe runs on PCs under Windows (95/98/NT/2000/XP). An older (but fully functional) version is available for PocketPC. Linux/Unix clones that use the same database format have also been written.

Title: Password Safe 3.16
Filename: pwsafe-3.16.exe
File size: 2.26MB (2,369,403 bytes)
Requirements: Windows 9x/2000/XP/2003/XP64
License: Open Source
Date added: February 12, 2009
Author: Rony Shapiro
passwordsafe.sourceforge.net

Download Now


Change Log

File Release Notes and Changelog

Release Name: 3.16

Notes:
Bugs fixed in 3.16
==================
[2529736] Validate now corrects all Password History errors
[2509817] Control characters no longer sent via Autotype.
[2481370] Can now create shortcut by right-mouse down dragging.
[] Can now process filters (within the database or imported) based on
'username' field ("user" in the XML file).
[2423397] Sorting direction database preference was not being saved in
the database. See "Changes to Existing Features" below.

Changes to Existing Features in 3.16
=======================================
[Open Discussion] Ctrl+F no longer toggles the Find Toolbar but shows
it if not currently visible.
[2423397] Changes to preferences stored in the database are no longer
silently saved in the database (including any changes to any entries).
A new flag is shown in the Status Bar to indicate the preferences have
been changed and the user can decide to save these, or not, when closing
the database, directly or when ending the application.
[] Support interoperability with tools that access edit control text
by setting PWS_PW_MODE environment variable to "NORMAL".

New Features for 3.16
========================
[2509821] Support Group (\g), Title (\i) and Notes (\o, \onnn) fields
via Autotype.
[] Installation program now offers German as well as English
installation instructions, as well as installing German language
support. The framework is easily extended to other languages. Thanks
to Karlo Van der Gucht for his work on this.
[2450841] The user can use the DragBar to drag and drop the group name
when a group is selected. Pressing the Ctrl key while dragging the group,
when a group or entry is selected, will only copy the immediate parent group.
Standard behaviour is to copy all groups up to the root of the database with
dots between successive group names.
[2450827] Add a new menu item (on Edit Menu or right-click context
menu) to go to the corresponding base entry of an Alias or Shortcut. As
part of this change, only relevant items are shown on the Edit menu depending
on the current selected item (group or normal, shortcut base, alias base,
alias or shortcut entry).
[2425045] During Edit, if the entry has been changed and the user presses
the Cancel button, they are asked to confirm losing their changes.
[2415952] The currrent display status of the Find Toolbar is remembered at
application close and, if visible, it is will be shown the next time the
application is started.

K-Lite Codec Pack 4.62 (Full)

K-Lite Codec Pack 4.62 (Full)K-Lite Codec Pack is a collection of codecs, DirectShow filters and tools. Codecs and DirectShow filters are needed for encoding and decoding (playing) audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even some rare formats.

This download is for the Full package and contains all the codecs a normal user would ever need.

The K-Lite Codec Pack has a couple of major advantages compared to other codec packs:

* It it always very up-to-date with the newest (and/or best) versions of the components.
* It is very user-friendly.
* The installation is fully customizable, meaning that you are able install exactly those components that you really want.
* Uninstallation removes all files and registry entries created by the pack.
* It is extremely easy to make a fully customized unattended installation.
* It has been very well tested, so that the package doesn't contain any conflicting or buggy codecs.
* It tries to avoid potential problems with existing codecs and even fixes some problems. The pack is able to detect broken codecs and filters on your system, and remove them for you.
* It is a very complete package, containing everything you need to play your movies.
* There are different packages. From small to extra-large.
* Suitable for both novice and expert users.

Title: K-Lite Codec Pack 4.62 (Full)
Filename: klcodec462f.exe
File size: 13.91MB (14,587,982 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Freeware
Date added: February 13, 2009

Download Now


Change Log

* Updated Media Player Classic Homecinema to version 1.2.991.0
* The internal DXVA decoders of MPC-HC are now enabled by default on Windows Vista/Seven
* The internal subtitle renderer of MPC-HC is now enabled by default on Windows Vista/Seven
* Updated ffdshow to revision 2676
* Removed option for using an experimental MT version of ffdshow. Only regular version is now included.
* Updated Cyberlink MPEG-2 decoder to version 8.2.0.1211
* Removed On2 VP6 decoding filter. It could in rare occasions cause some compatibility isues. ffdshow is used instead for decoding VP6 video. That was already the default setting in previous version of the pack.
* Removed MainConcept MPEG-1 decoder
* Updated MusePack splitter/decoder
* Updated Monkey's Audio decoder
* Changed default AC3 decoder from AC3Filter to ffdshow
* Updated Gabest MPEG splitter to version 1.2.988.0
* Updated x264VFW to revision 1093
* Removed some legacy VFW codecs: Indeo4, Indeo5, and I.263
* Removed some legacy ACM codecs: Fraunhofer MP3, Vorbis, and DivX ;) audio
* Updated MediaInfo Lite to version 0.7.10
* Fixed problem where the DC-Bass Source filter could break playback of .mod video files that are created by certain digital video cameras. This only happened when the option for Tracker audio was enabled. Tracker audio files with extension .mod are now no longer supported.
* Minor changes

K-Lite Mega Codec Pack 4.62

K-Lite Mega Codec Pack 4.62K-Lite Codec Pack is a collection of codecs, DirectShow filters and tools. Codecs and DirectShow filters are needed for encoding and decoding (playing) audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even some rare formats.

This download is for the Mega package and is aimed at pro video users.

The K-Lite Codec Pack has a couple of major advantages compared to other codec packs:

* It it always very up-to-date with the newest (and/or best) versions of the components.
* It is very user-friendly.
* The installation is fully customizable, meaning that you are able install exactly those components that you really want.
* Uninstallation removes all files and registry entries created by the pack.
* It is extremely easy to make a fully customized unattended installation.
* It has been very well tested, so that the package doesn't contain any conflicting or buggy codecs.
* It tries to avoid potential problems with existing codecs and even fixes some problems. The pack is able to detect broken codecs and filters on your system, and remove them for you.
* It is a very complete package, containing everything you need to play your movies.
* There are different packages. From small to extra-large.
* Suitable for both novice and expert users.

Title: K-Lite Mega Codec Pack 4.62
Filename: klmcodec462.exe
File size: 19.55MB (20,504,294 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Freeware
Date added: February 13, 2009

Download Now


Change Log

* Updated Media Player Classic Homecinema to version 1.2.991.0
* The internal DXVA decoders of MPC-HC are now enabled by default on Windows Vista/Seven
* The internal subtitle renderer of MPC-HC is now enabled by default on Windows Vista/Seven
* Updated ffdshow to revision 2676
* Removed option for using an experimental MT version of ffdshow. Only regular version is now included.
* Updated Cyberlink MPEG-2 decoder to version 8.2.0.1211
* Removed On2 VP6 decoding filter. It could in rare occasions cause some compatibility isues. ffdshow is used instead for decoding VP6 video. That was already the default setting in previous version of the pack.
* Removed MainConcept MPEG-1 decoder
* Updated MusePack splitter/decoder
* Updated Monkey's Audio decoder
* Changed default AC3 decoder from AC3Filter to ffdshow
* Updated Gabest MPEG splitter to version 1.2.988.0
* Updated x264VFW to revision 1093
* Removed some legacy VFW codecs: Indeo4, Indeo5, and I.263
* Removed some legacy ACM codecs: Fraunhofer MP3, Vorbis, and DivX ;) audio
* Updated MediaInfo Lite to version 0.7.10
* Fixed problem where the DC-Bass Source filter could break playback of .mod video files that are created by certain digital video cameras. This only happened when the option for Tracker audio was enabled. Tracker audio files with extension .mod are now no longer supported.
* Minor changes

Malwarebytes Anti-Malware 1.34

Malwarebytes Anti-Malware 1.34Malwarebytes Anti-Malware is an easy-to-use, simple, and effective anti-malware application. Whether you know it or not your computer is always at risk of becoming infected with viruses, worms, trojans, rootkits, dialers, spyware, and malware that are constantly evolving and becoming harder to detect and remove. Only the most sophisticated anti-malware techniques can detect and remove these malicious programs from your computer.

Malwarebytes' Anti-Malware is considered to be the next step in the detection and removal of malware. There are a number of new technologies that are designed to quickly detect, destroy, and prevent malware. Malwarebytes' Anti-Malware can detect and remove malware that even the most well known anti-virus and anti-malware applications fail to detect. Malwarebytes' Anti-Malware monitors every process and stops malicious processes before they even start.

The Realtime Protection Module uses advanced heuristic scanning technology which monitors your system to keep it safe and secure. In addition, a threats center is implemented - which will allow you to keep up to date with the latest malware threats.

Title: Malwarebytes Anti-Malware 1.34
Filename: mbam-setup.exe
File size: 2.74MB (2,876,720 bytes)
Requirements: Windows 2000/XP/Vista
License: Non-Commercial Freeware
Date added: February 13, 2009
Author: Malwarebytes
www.malwarebytes.org
Homepage: www.malwarebytes.org/mbam.php

Download Now


Change Log

* (FIXED) Removing registry keys with corrupt permissions.
* (FIXED) Removal of drivers now improved.
* (FIXED) Improved memory usage (more to come!)
* (FIXED) Certain types of freezing during full scan.
* (FIXED) Improved full scan times significantly.
* (ADDED) Better detection techniques for the real-time protection module.
* (ADDED) Directories now counted as items scanned.
* (ADDED) Disinfection for certain USB spread infections (Conficker).
* (ADDED) New command line parameter: /schedule (see help file).

2009-02-12

AVG Free Edition 8.0.234

AVG Free Edition 8.0.234AVG Free Edition is the well-known anti-virus protection tool. AVG Free is available free-of-charge to home users for the life of the product! Rapid virus database updates are available for the lifetime of the product, thereby providing the high-level of detection capability that millions of users around the world trust to protect their computers. AVG Free is easy-to-use and will not slow your system down (low system resource requirements).

Highlights include:

* Automatic update functionality
* The AVG Resident Shield, which provides real-time protection as files are opened and programs are run
* The AVG E-mail Scanner, which protects your e-mail
* The AVG On-Demand Scanner, which allows the user to perform scheduled and manual tests
* Free Virus Database Updates for the lifetime of the product
* AVG Virus Vault for safe handling of infected files

Title: AVG Free Edition 8.0.234
Filename: avg_free_stf_en_8_234a1426.exe
File size: 57.94MB (60,757,176 bytes)
Requirements: Windows 2000/XP/Vista/XP64/Vista64
License: Freeware
Date added: February 12, 2009
Author: Grisoft Inc
www.grisoft.com
Homepage: free.grisoft.com/doc/avg-anti-virus-free/

Download Now


Change Log

Improvements
Core: New version of polymorphic virus Win32/Virut is now detected.

GOM Player 2.1.15.4610

GOM Player 2.1.15.4610GOM is a FREE media player with popular audio & video codecs built-in. No need to install codecs separately! Try one of your broken AVI files or one of the files that is being downloaded with GOM.

GOM Player supports most popular codecs (AVI, DAT, MPEG, DivX plus many more) with its own embedded codec system that you won't have to look for appropriate codecs everytime you can't play a certain video format. For those codecs that require a license that cannot be distributed, GOM will automatically lead you to an open-source codec web-site.

Watch video files while you are downloading them! GOM has a registered patent for playing broken AVI files and files that are still being downloaded. So try one of your broken AVI files or one that you are downloading right now. You'll find it amazing!

GOM supports a lot of advanced features for advanced users. You can customize the player by creating your own skin, setting toggle keys, VMR modes, detailed resolution among others. It also provides features such as an overlay mixer, real-time index rebuilding for AVI files, unicode support, key frame based RW/FF and many more!

Title: GOM Player 2.1.15.4610
Filename: GOMPLAYERENSETUP.EXE
File size: 4.66MB (4,885,800 bytes)
Requirements: Windows (All Versions)
License: Freeware
Date added: February 12, 2009
Author: Gretech
www.gomplayer.com

Download Now


Change Log

- Supporting AVC Video codec on FLV Local file / Network File.
- Supporting AAC Audio codec on FLV Network File.
- Putting the skin image file in order.

PowerDVD 8.0.2217aD

PowerDVD 8.0.2217aDPowerDVD allows you to playback DVDs on your computer. CyberLink's second-generation dynamic video technology (CLEV-2) delivers DVD movies with greater luminance and more natural colors. Intelligent frame-by-frame analysis produces ultra-smooth DVD playback by eliminating ghosting, feathering, and other elements.

* Experience the best in video and audio entertainment
* Feel the vibes with true home theater DTS and Dolby audio
* Maximize your Notebook's on-the-road performance
* Get the smartest movie playback features available
* Connect to your UPnP Network and playback media files

Title: PowerDVD 8.0.2217aD
Filename: CyberLink.2217aD_TaRe38_DVD081201-04.exe
File size: 118.57MB (124,324,720 bytes)
Requirements: Windows (All Versions)
License: Commercial Demo
Date added: February 12, 2009
Author: CyberLink
www.cyberlink.com
www.cyberlink.com/multi/products/main_1.html

Download Now

WindowBlinds 6.4

WindowBlinds 6.4WindowBlinds is a program that enables users to safely add thousands of new visual styles to Windows to change the look and feel of your computer.

With skins, WindowBlinds can change the look of:

* Title bars
* Borders
* The Start bar
* Progress animations
* Explorer Views
* and virtually every other part of Windows!

Title: WindowBlinds 6.4
Filename: WindowBlinds640_public.exe
File size: 20.97MB (21,989,024 bytes)
Requirements: Windows XP/2003/Vista/XP64/Vista64
License: Shareware
Date added: February 12, 2009
Author: Stardock
www.stardock.com
Homepage: www.stardock.com/products/windowblinds

Download Now


Change Log.

-Support for glass menu bars on Windows Vista
-Support for a different mouseover image on the right hand side of the Start Menu
-Control over the background color of the Start Menu "Programs" list
-Double clicking the top left of a per pixel window will now close it on Windows Vista
-Control over the search box text colour & font
-Better control over the Start Menu fonts & colors
-New section to allow a custom mouseover image used on the "Programs" link on Vista versus the legacy solid color
-Start button overlay now supports animation
-About SkinStudio link removed from SkinStudio system menu (because the link was getting in the way)
-Resolved issue in SkinStudio where the NWA encoding and certain hue combinations caused conflicts
-Resolved issue in SkinStudio where editing the system fonts in skins which do not have any defined

Miro 2.0.1

Miro 2.0.1Miro (formerly known as Democracy Player) is the free and open source internet TV platform.

Play All Your Videos
Play virtually any video-- Quicktime, WMV, MPEG, AVI, XVID, and more. Browse your collection, make playlists, stay organized.

Get Internet TV Shows
Subscribe to any video RSS feed, podcast, or video blog. Explore hundreds of free channels with the built-in Channel Guide.

Search YouTube
Download and save videos from YouTube, Google Video, Yahoo Video, and other sites.

High Definition and Fullscreen
Your computer screen is a high-def display. Watch free HD videos in gorgeous fullscreen.

Torrent Power
Easily download any BitTorrent file. Fast. Then watch it in the same app. Simple.

Title: Miro 2.0.1
Filename: Miro_Installer.exe
File size: 24.37MB (25,550,194 bytes)
Requirements: Windows (All Versions)
License: Open Source
Date added: February 12, 2009
Author: Participatory Culture Foundation
www.participatoryculture.org
Homepage: www.getmiro.com

Download Now

Any Video Converter 2.71

Any Video Converter 2.71Any Video Converter is an All-in-One video converting tool with easy-to-use graphical interface, fast converting speed and excellent video quality. It allows you to effortlessly convert video files between every format!

It can convert almost all video formats including DivX, XviD, MOV, rm, rmvb, MPEG, VOB, DVD, WMV, AVI to MPEG-4 movie format for iPod/PSP or other portable video device, MP4 player or smart phone. It also supports any user defined video file formats as the output. Any Video Converter makes it easy for anyone to enjoy the any format video with your iPod, PSP, mobile phone or MP4 player.

Any Video Converter features include:

* User-friendly interface that is easy to use.
* Converts all video formats to Apple iPod Video, Sony PSP and more
* Batch convert any video formats including avi, wmv, asf, mpg, mp4, etc.
* Support DivX and Xvid avi format as importing and exporting video
* Support default video/audio settings or user customized parameters for video and audio.
* Has the option to preview the video in real-time before conversion .
* World's fastest video conversion speed with stunning video and audio quality.
* Supports adjust many video/audio options for MP4 files. For example, video/audio sample rate, bit rate, video size...

Title: Any Video Converter 2.71
Filename: any-video-converter-free.exe
File size: 14.57MB (15,274,301 bytes)
Requirements: Windows (All Versions)
License: Freeware
Date added: February 9, 2009
Author: AVC
www.any-video-converter.com

Download Now


2009-02-10

ACDSee 11.0.108

ACDSee 11.0.108ACDSee - the most powerful photo manager around is now even faster. Way faster. No other photo software saves you so much time. Enjoy the freedom to find, organize and edit your photos faster, easier and with better results than ever before. Instantly share your pictures online or on your cell phone. Create quality prints or Flash and PDF slideshows.

It's hard to believe that managing digital images can be so quick and easy, but with ACDSee, it is. As a media browser for your Windows® folder system, ACDSee's superfast navigation pane lets you browse and view your picture collections right away. Compare multiple images side-by-side. Save time and select photo files by criteria. Or see all your images at once. ACDSee digital photo software supports over 50 popular photo and multimedia formats.

This download is for a 30 day trial.

Title: ACDSee 11.0.108
Filename: acdsee2009-11-0-108-en.exe
File size: 39.22MB (41,122,888 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Commercial Demo
Date added: February 9, 2009
Author: ACD Systems
www.acdsee.com

Download Now

Notepad++ 5.2

Notepad++ 5.2Notepad++ is a free source code editor (and Notepad replacement), which supports several programming languages, running under the MS Windows environment.

This project, based on the Scintilla edit component (a very powerful editor component), written in C++ with pure win32 api and STL (that ensures the higher execution speed and smaller size of the program), is under the GPL Licence.

* Syntax Highlighting and Syntax Folding
* WYSIWYG
* User Defined Syntax Highlighting
* Auto-completion
* Multi-Document
* Multi-View
* Regular Expression Search/Replace supported
* Full Drag 'N' Drop supported
* Dynamic position of Views
* File Status Auto-detection
* Zoom in and zoom out
* Multi-Language environment supported
* Bookmark
* Brace and Indent guideline Highlighting
* Macro recording and playback

Title: Notepad++ 5.2
Filename: npp.5.2.Installer.exe
File size: 2.68MB (2,814,289 bytes)
Requirements: Windows (All Versions)
License: Open Source
Date added: February 9, 2009
Author: Notepad++
notepad-plus.sourceforge.net

Download Now


Change Log

Notepad++ v5.2 new feature and fixed bugs (from v5.1.4) :

1. Fix Function Tip crash issue.
2. Fix the find in files crash bug while cloned views are side by side and focus is on main view.
3. Fix a crash bug after searching/replacing in files returned with no results.
4. Enhance "Find in all opened files" and "Find in files" features.
5. Add Replace in files feature.
6. Fix command line parsing to accept unquoted files as single argument.
7. Refine "open ANSI files as UTF8 w/o BOM" feature.
8. Add minidump feature in the case of crash for debug use.
9. Adjust PostIt/FullScreen behaviour to mix well together.
10. The file filters and the directory are set while find/replace/findInFiles dialog is launched.
11. Adding find in files filters supports user defined language.
12. Fix the bug that texts in combo box of Find dialog are restored not in order on the launch time.
13. Add NPPM_DOOPEN plugin message.

CPU-Z 1.49.2 Beta

CPU-Z 1.49.2 BetaCPU-Z is a freeware utility that gathers information on some of the main devices of your system. CPU-Z does not need to be installed, just unzip the files in a directory and run the .exe. In order to remove the program, just delete the files and that's it. The program does not copy any file in any Windows directory, nor write in the registry.

CPU

* Name and number.
* Core stepping and process.
* Package.
* Core voltage.
* Internal and external clocks, clock multiplier.
* Supported instructions sets.
* All cache levels (location, size, speed, technology).

Mainboard

* Vendor, model and revision.
* BIOS model and date.
* Chipset (northbridge and southbridge) and sensor.
* Graphic interface.

Memory

* Frequency and timings.
* Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table.

System

* Windows and DirectX version.

Title: CPU-Z 1.49.2 Beta
Filename: cpuz_149_2.zip
File size: 580KB (593,899 bytes)
Requirements: Windows (All Versions)
License: Freeware
Date added: February 8, 2009
Author: CPUID
www.cpuid.com
Homepage: www.cpuid.com/cpuz.php

Download Now

Wireshark 1.0.6

Wireshark 1.0.6Wireshark's powerful features make it the tool of choice for network troubleshooting, protocol development, and education worldwide.

Wireshark was written by networking experts around the world, and is an example of the power of open source. It runs on Windows, Linux, UNIX, and other platforms. This download is for Windows only.

Wireshark can read live data from Ethernet, Token-Ring, FDDI, serial (PPP and SLIP) (if the OS on which it's running allows Wireshark to do so), 802.11 wireless LAN (if the OS on which it's running allows Wireshark to do so) and ATM connections (if the OS on which it's running allows Wireshark to do so).

Wireshark was previously known as Ethereal.

Title: Wireshark 1.0.6
Filename: wireshark-setup-1.0.6.exe
File size: 21.17MB (22,198,014 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Open Source
Date added: February 7, 2009
Author: Wireshark.org
www.wireshark.org

Download Now

Change Log

Bug Fixes

The following vulnerabilities have been fixed. See the security advisory for details and a workaround.

*On non-Windows systems, Wireshark could crash if the HOME environment variable contained sprintf-style string formatting characters. Discovered by babi. (Bug 3150)

Versions affected: 0.99.8 to 1.0.5

*Wireshark could crash while reading a malformed NetScreen snoop file. Discovered by babi. (Bug 3151)

Versions affected: 0.99.7 to 1.0.5

*Wireshark could crash while reading a Tektronix K12 text capture file. (Bug 1937)

Versions affected: 0.99.6 to 1.0.5

The following bugs have been fixed:

*Crash when loading capture file and Preferences: NO Info column (Bug 2902)
*Some Lua scripts may lead to corruption via out of bounds stack (Bug 3062)
*Build with GLib 1.2 fails with error: 'G_MININT32' undeclared (Bug 3109)
*Wrong decoding IMSI with GSM MAP protocol (Bug 3116)
*Segmentation fault for "Follow TCP stream" (Bug 3119)
*SMPP optional parameter 'network_error_code' incorrectly decoded (Bug 3128)
*DHCPv6 dissector doesn't handle malformed FQDN (Bug 3134)
*WCCP overrides CFLOW as decoded protocol (Bug 3175)
*Improper decoding of MPLS echo reply IPv4 Interface and Label Stack Object (Bug 3179)
*ANSI MAP fix for TRN digits/SMS and OTA subdissection (Bug 3214)
*The 1.0 branch can now be built with Visual Studio 2008.

New and Updated Features

*The version of GNUTLS included with the Windows packages has been updated from 2.3.8 to 2.6.3.

New Protocol Support

There are no new protocols in this release.
Updated Protocol Support

AFS, ATM, DHCPv6, DIS, E.212, RTP, UDP, USB, WCCP, WPS
New and Updated Capture File Support

NetScreen snoop

FileZilla 3.2.1

FileZilla 3.2.1FileZilla is a powerful FTP-client for Windows NT4, 2000 and XP. It has been designed for ease of use and with support for as many features as possible, while still being fast and reliable.

The program offers support for firewalls and proxy connections as well as SSL and Kerberos GSS security.

Features:
* Easy to use
* Multilingual (English, German, French, Japanese, just to name a few)
* Strong encryption support using SFTP over SSH and FTP over SSL/TLS
* Supports transfer resuming and files larger than 4 GiB
* Site Manager
* Queue support
* Proxy support
* Speed limits
* MODE Z transfer compressing

Title: FileZilla 3.2.1
Filename: FileZilla_3.2.1_win32-setup.exe
File size: 3.68MB (3,862,469 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Open Source
Date added: February 7, 2009
Author: FileZilla
filezilla.sourceforge.net

Download Now


Change Log

New features:

* New iconset: Minimal

Bugfixes and minor changes:

* Fix filter edit dialog sizing issue
* MSW: Fix icon transparency in status bar and use better disabled icons in toolbars

eMule 0.49c Beta 1

eMule 0.49c Beta 1eMule is a filesharing client which is based on the eDonkey2000 network but offers more features than the standard client.

* Clients use several networks to create one reliable network. (ED2K, Source Exchange, Kad)
* Kad is now in an open testphase, eMule v0.42 can be enabled to use Kad
* eMule's Queue and Credit system helps to ensure that everyone will get the file he wants by promoting those that upload back to the network.
* eMule is completely free. eMule is also completely free of any Adware, Spyware, and ect. We do this for fun and knowledge, not for money.
* Each file checked for corruptions while downloading to ensure an error free file.
* The eMules Intelligent Corruption Control helps to speed up the correction of corrupted parts.
* Auto priorities and Source management allows you to start many downloads without having to monitor them.
* The Preview function allows you to look at your Videos and Archives before they are completed. For video previewing, we recommend the Video Lan Client.
* The eMule features webservices and a webserver that allows you to have quick access to and from the internet.
* You can create categories for your download to organize them.
* To find the file you want, eMule offers a wide range of search possibilities which include: Servers (Local, and Global), web based (Jigle, and Filedonkey), and Kad (Still in Alpha).
* eMule also allows you to use very complex Boolean searches that make the searches much more flexible.
* With the messaging and friend system, you can send messages to other Clients and add them as friends. In your friend list, you can always see if a friend is online.
* With the build in IRC client, you can chat with other downloaders and chatters around the globe.

Title: eMule 0.49c Beta 1
Filename: eMule0.49c_BETA1-Installer.exe
File size: 3.17MB (3,328,255 bytes)
Requirements: Windows 2000/XP/2003/Vista/XP64/Vista64
License: Open Source
Date added: February 6, 2009
Author: eMule Project
www.emule-project.net

Download Now


Change Log

* Ability to share and unshare single files instead of directories only and also support of Drag&Drop to do so easily
* Support of new security features on Windows Vista (and partially also XP) to further harden eMule against any possible exploits
* Automatic recovery of corrupt part.met files by using the backupfiles
* Kad improvements like automatic search-keyword rearranging (allowing searches like 'an eMule' and also helping to reduce load on busy nodes), avoiding fragmented UDP packets (making it more compatible to zealous firewalls) and other changes
* Improving UPnP by refreshing the mappings as well as adding Webinterface support
* And as always fixing bugs and adding other small changes