summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-07-09Initial import of afpfs-ng, version 0.4.1 into the Packages Collection.agc12-0/+191
afpfs-ng is an Apple Filing Protocol client that will allow a Linux system to see files exported from a Mac OS system with AFP over TCP. With thanks to Jared for the nudge.
2007-07-09Fix PLIST [hi xtraeme!]. Bump revision.cube2-4/+3
2007-07-09remove stale dependency on popt,drochner2-5/+3
perhaps pointed out by Kamel Derouiche on tech-pkg, bump PKGREVISION
2007-07-09remove stale dependency on popt,drochner4-6/+8
perhaps pointed out by Kamel Derouiche on tech-pkg, bump PKGREVISIONs
2007-07-09remove stale dependency on popt,drochner2-4/+3
perhaps pointed out by Kamel Derouiche on tech-pkg, bump PKGREVISION
2007-07-09add "test" targetdrochner1-1/+4
2007-07-09Update patchsum.joerg1-2/+2
2007-07-09Follow update of digest Makefile, bits is no longer.joerg1-17/+7
2007-07-09sync with base pkg,drochner2-7/+6
this also fixes a build problem on Python<2.3, so remove the PYTHON_VERSIONS_ACCEPTED line
2007-07-09+plone-2.5.3, zope-2.9.8, zope-2.10.4taca1-3/+4
2007-07-09note recent updatesdrochner1-1/+19
2007-07-09Fix configure options when the librack option is given.minskim1-2/+1
This fixes the second problem in PR 36617.
2007-07-09Make this build with db4. This fixes the first problem in PR 36617.minskim5-90/+183
2007-07-08Use sysctl() when sysctlbyname() is unavailable. Patch from OpenBSD ports.minskim5-18/+30
This fixes PR 36346.
2007-07-08Updated mail/mailgraph to 1.13xtraeme1-1/+2
2007-07-08Update to 1.13.xtraeme2-10/+9
1.13 (2007-03-28) ----------------- * New mailgraph homepage URL: http://mailgraph.schweikert.ch * XHTML 1.0 strict output (Yllar Pajus) * add releative jump points (Hugo van der Kooij) * add commented-out code for clamassassin (Adrian von Bidder) * add support for Amavisd-new >= 2.4 (Christoph Kessinger) * add support for Borderware Mxtreme (Postfix variant, Johan Nilsson) * add support for the ClamAV SpamAssassin plugin (Thomas Brown) * add support for MxTreme mail gateway (Guido) * update support for Kaspersky AntiVirus (Igor Moskovko) * update support for AntiVir (Wolfram Schlich) * update support for drweb (Lev) * update support for MailScanner (Simon Hartl, Pierre-Yves Bonnetain) * update support for AntiVir (Frank Urban) * fix DST-switch timewarp in autumn (Parse::Syslog 1.09) * fix hidden rejected line behind are items (Axel Beckert) * fix virbl DNS name (Eddy Beliveau)
2007-07-08Make this package build on platforms that don't define MNT_UNION.minskim2-5/+7
2007-07-08Fix patch file changessmb11-174/+29
2007-07-08Updated gtkpod to 0.99.8smb5-20/+28
Translations: Swedish, Hebrew, Italian New type-ahead search Handles compilations decently New window for track detail edits Add thumbnail images for new/updated tracks Basic video support Basic podcast support Sync addressbooks in ldif, kNotes, Palm Uses libgpod Stabe sort of track view Miscelleneous bug fixes and improvements (Note: patch supplied by Sergey Svishchev)
2007-07-08Fixed update message properly this time...smb1-2/+2
2007-07-08Fixed update message for libetpansmb1-2/+2
2007-07-08Updated libetpan to 0.49.smb4-10/+9
From its Changes file: * release 0.49 - Drive feature enhancements: stream cancellation better handling of ssl error improved imap cache fixes: various bugfixes
2007-07-08Note bzr and scmgit updates.wiz2-4/+4
2007-07-08Update to 1.5.2.3. Various changes.wiz7-67/+70
2007-07-08Update to 0.17:wiz4-21/+116
bzr 0.17 2007-06-18 BUGFIXES bzr 0.17rc1 2007-06-12 NOTES WHEN UPGRADING: * The kind() and is_executable() APIs on the WorkingTree interface no longer implicitly (read) locks and unlocks the tree. This *might* impact some plug-ins and tools using this part of the API. If you find an issue that may be caused by this change, please let us know, particularly the plug-in/tool maintainer. If encountered, the API fix is to surround kind() and is_executable() calls with lock_read() and unlock() like so:: work_tree.lock_read() try: kind = work_tree.kind(...) finally: work_tree.unlock() IMPROVEMENTS: * There are two new help topics, working-trees and repositories that attempt to explain these concepts. (James Westby, John Arbash Meinel, Aaron Bentley) * Added ``bzr log --limit`` to report a limited number of revisions. (Kent Gibson, #3659) * Revert does not try to preserve file contents that were originally produced by reverting to a historical revision. (Aaron Bentley) * ``bzr log --short`` now includes ``[merge]`` for revisions which have more than one parent. This is a small improvement to help understanding what changes have occurred (John Arbash Meinel, #83887) * TreeTransform avoids many renames when contructing large trees, improving speed. 3.25x speedups have been observed for construction of kernel-sized-trees, and checkouts are 1.28x faster. (Aaron Bentley) * Commit on large trees is now faster. In my environment, a commit of a small change to the Mozilla tree (55k files) has dropped from 66 seconds to 32 seconds. For a small tree of 600 files, commit of a small change is 33% faster. (Ian Clatworthy) * New --create-prefix option to bzr init, like for push. (Daniel Watkins, #56322) BUGFIXES bzr 0.16 2007-05-07 BUGFIXES IMPROVEMENTS: * Move developer documentation to doc/developers/. This reduces clutter in the root of the source tree and allows HACKING to be split into multiple files. (Robert Collins, Alexander Belchenko) * Clean up the ``WorkingTree4._iter_changes()`` internal loops as well as ``DirState.update_entry()``. This optimizes the core logic for ``bzr diff`` and ``bzr status`` significantly improving the speed of both. (John Arbash Meinel) bzr 0.16rc2 2007-04-30 BUGFIXES bzr 0.16rc1 2007-04-26 NOTES WHEN UPGRADING: * ``bzr remove`` and ``bzr rm`` will now remove the working file, if it could be recovered again. This has been done for consistency with svn and the unix rm command. The old ``remove`` behaviour has been retained in the new option ``bzr remove --keep``, which will just stop versioning the file, but not delete it. ``bzr remove --force`` have been added which will always delete the files. ``bzr remove`` is also more verbose. (Marius Kruger, #82602) IMPROVEMENTS: * Merge directives can now be supplied as input to `merge` and `pull`, like bundles can. (Aaron Bentley) * Sending the SIGQUIT signal to bzr, which can be done on Unix by pressing Control-Backslash, drops bzr into a debugger. Type ``'c'`` to continue. This can be disabled by setting the environment variable ``BZR_SIGQUIT_PDB=0``. (Martin Pool) * selftest now supports --list-only to list tests instead of running them. (Ian Clatworthy) * selftest now supports --exclude PATTERN (or -x PATTERN) to exclude tests with names that match that regular expression. (Ian Clatworthy, #102679) * selftest now supports --randomize SEED to run tests in a random order. SEED is typically the value 'now' meaning 'use the current time'. (Ian Clatworthy, #102686) * New option ``--fixes`` to commit, which stores bug fixing annotations as revision properties. Built-in support for Launchpad, Debian, Trac and Bugzilla bug trackers. (Jonathan Lange, James Henstridge, Robert Collins) * New API, ``bzrlib.bugtracker.tracker_registry``, for adding support for other bug trackers to ``fixes``. (Jonathan Lange, James Henstridge, Robert Collins) * ``selftest`` has new short options ``-f`` and ``-1``. (Martin Pool) * ``bzrlib.tsort.MergeSorter`` optimizations. Change the inner loop into using local variables instead of going through ``self._var``. Improves the time to ``merge_sort`` a 10k revision graph by approximately 40% (~700->400ms). (John Arbash Meinel) * ``make docs`` now creates a man page at ``man1/bzr.1`` fixing bug 107388. (Robert Collins) * ``bzr help`` now provides cross references to other help topics using the _see_also facility on command classes. Likewise the bzr_man documentation, and the bzr.1 man page also include this information. (Robert Collins) * Tags are now included in logs, that use the long log formatter. (Erik Bågfors, Alexander Belchenko) * ``bzr help`` provides a clearer message when a help topic cannot be found. (Robert Collins, #107656) * ``bzr help`` now accepts optional prefixes for command help. The help for all commands can now be found at ``bzr help commands/COMMANDNAME`` as well as ``bzr help COMMANDNAME`` (which only works for commands where the name is not the same as a more general help topic). (Robert Collins) * ``bzr help PLUGINNAME`` will now return the module docstring from the plugin PLUGINNAME. (Robert Collins, #50408) * New help topic ``urlspec`` which lists the availables transports. (Goffredo Baroncelli) * doc/server.txt updated to document the default bzr:// port and also update the blurb about the hpss' current status. (Robert Collins, #107125). * ``bzr serve`` now listens on interface 0.0.0.0 by default, making it serve out to the local LAN (and anyone in the world that can reach the machine running ``bzr serve``. (Robert Collins, #98918) * A new smart server protocol version has been added. It prefixes requests and responses with an explicit version identifier so that future protocol revisions can be dealt with gracefully. (Andrew Bennetts, Robert Collins) * The bzr protocol version 2 indicates success or failure in every response without depending on particular commands encoding that consistently, allowing future client refactorings to be much more robust about error handling. (Robert Collins, Martin Pool, Andrew Bennetts) * The smart protocol over HTTP client has been changed to always post to the same ``.bzr/smart`` URL under the original location when it can. This allows HTTP servers to only have to pass URLs ending in .bzr/smart to the smart server handler, and not arbitrary ``.bzr/*/smart`` URLs. (Andrew Bennetts) * digest authentication is now supported for proxies and HTTP by the urllib based http implementation. Tested against Apache 2.0.55 and Squid 2.6.5. Basic and digest authentication are handled coherently for HTTP and proxy: if the user is provided in the url (bzr command line for HTTP, proxy environment variables for proxies), the password is prompted for (only once). If the password is provided, it is taken into account. Once the first authentication is successful, all further authentication roundtrips are avoided by preventively setting the right authentication header(s). (Vincent Ladeuil). BUGFIXES
2007-07-08Add urlgfe.minskim2-2/+4
2007-07-08Import urlgfe from pkgsrc-wip. Packaged by Cesar Catrian and updated byminskim4-0/+47
othyro. UrlGfe is a download manager that uses gtk2+ and libcurl. Features: 1. It allows you classify URLs before downloading them. 2. Every category has an independent configuration that can be inherited by each download in that category. 3. Multiple categories can download at one time. 4. Batch mode can generate URLs. 5. Import URLs from .html files. (UTF-8 Encoding only) 6. Export URLs (for wget -i)
2007-07-08Make flite work on OpenBSD. Patch from OpenBSD ports. Suggested byminskim3-3/+28
Alexander Nasonov in PR 36557. Bump PKGREVISION.
2007-07-08gnucash-current updated to 2.1.5.wiz2-3/+3
2007-07-08Update to 2.1.5:wiz3-11/+11
2.1.5 - 02 July 2007 o Welcome to GnuCash 2.1.5 aka "Release Candidate 2", the fifth of several unstable 2.1.x releases of the GnuCash Open Source Accounting Software which will eventually lead to the stable version 2.2.0. With this new release series, GnuCash is available on Microsoft Windows for the first time, and it also runs on GNU/Linux, *BSD, Solaris and Mac OSX. This release is intended for developers and testers who want to help tracking down bugs. o WARNING: Make sure you make backups of any files used in testing versions of GnuCash in the 2.1.x series. Although the developers go to great lengths to ensure that no data will be lost we cannot guarantee that your data will not be affected if for some reason GnuCash crashes in testing these releases. o Please test any and all features important to you. Then post any bugs you find to bugzilla http://bugzilla.gnome.org/enter_bug.cgi?product=GnuCash o Bugfixes and improvements since the last version 2.1.4 include: o Updated translations. o German translation of Online Banking wizard is activated on Windows. o Improvements to Windows packaging. o When adding custom reports to the menu, appropriate user feedback will be given. o Automatic saving of the data file was added. 2.1.4 - 16 June 2007 o Welcome to GnuCash 2.1.4 aka "Release Candidate 1", the fourth of several unstable 2.1.x releases of the GnuCash Open Source Accounting Software which will eventually lead to the stable version 2.2.0. o Bugfixes and improvements since the last version 2.1.3 include: o Bugfixes with the graphical reports o Fixing the Online Banking wizard o Updated translations o Improvements to Windows packaging
2007-07-08Simplify, no functional change.uebayasi1-56/+52
2007-07-08Reset maintainer, rpaulo resigned.wiz11-22/+22
2007-07-08Note asteriskmjl1-1/+2
2007-07-08Updated asterisk to 1.2.20mjl2-6/+6
This release is a regular maintenance release. It has been made just a couple of weeks after the previous set of releases because the development team has been working especially hard on fixing bugs lately. There has been a large volume of issues fixed in just two weeks.
2007-07-08yasm updated to 0.6.1.wiz2-3/+3
2007-07-08Update to 0.6.1:wiz2-6/+6
This release adds SSE4.1 and SSE4.2 instruction support, a .set directive in the GAS parser, and allowing Mach-O custom sections. Bugfixes include fixes to AMD Pacifica (SVM) instructions, absolute section handling, RIP-relative cross-section references in bin output, and many others.
2007-07-08xv updated to use latest jumbo patchset.wiz2-3/+3
2007-07-08Update to xv-3.10a-jumbo-patches-20070520.wiz11-227/+128
Merge patch-ad and patch-ah. Use SUBST framework. Add some tools (per pkglint). Bump PKGREVISION.
2007-07-08Drop dcraw dependency, libkdcraw takes care of that.wiz1-3/+1
Ride update from a few minutes ago.
2007-07-08kipi-plugins updated to 0.1.4.wiz2-3/+3
2007-07-08Update to 0.1.4:wiz6-520/+212
v 0.1.4 ---------------------------------------------------------------------------- Note on release: Due to missing files on svn, docbook "pt" and "da" have been removed form this final release, apologize for that. v 0.1.4 beta2 ---------------------------------------------------------------------------- Kipi-plugins NEW FEATURES HTMLExport : Option to specify whether the original images should be included HTMLExport : Support for theme variants HTMLExport : New theme: "frames", by Rüdiger Bente HTMLExport : New theme: "cleanframes", by Beth and Robert Marmorstein HTMLExport : New theme: "classic", simulating the output of the old HTML Gallery plugin SlideShow : Skip to next or previous image by a right or left click SlideShow : Skip to next or previous image by mouse wheel scrolling SlideShow : Images can be sorted/added/removed manually. SlideShow : Progress indicator printing doesn't depend on file name printing anymore. Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org): 001 ==> 140477 : SendImages : Ability to rename images being sent via email. 002 ==> 143450 : SlideShow : Skip to next or previous image by a right or left click 003 ==> 138880 : TimeAdjust : digiKam 0.9rc2 - 0.9.1rc1 setting file date to exif doesn't work. 004 ==> 140890 : TimeAdjust : The preview does not display date and time properly for Japanese locale. 005 ==> 144185 : TimeAdjust : Adjust date-time tool should remember previous fixed date. 006 ==> 146799 : SlideShow : digikam 0.9.2 crashes when exiting - slideshow error v 0.1.4 beta1 ---------------------------------------------------------------------------- Kipi-plugins NEW FEATURES General : Moved Exiv2Iface class to a new shared library named libkexiv2 used by kipi-plugins and digiKam. ImageViewer : initial import of new OpenGL based image viewer. RAWConverter : Port plugin to libkdcraw shared library. Printwizard : Printwizard can print 8 photos per page (A4) MPEGEncoder : Avoid to pass img2mpg script unmanaged file path. GPSSync : New plugin to export GPS locations from pictures to Google Maps / Google Earth. Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org): 001 ==> 139264 : General : Prefer Exif DateTimeOriginal for image date/time (DateTimeDigitized and DateTime only used as fallback) 002 ==> 139074 : SendImages : Format missmatch at sendimages.cpp ('int' vs. 'size_t'). 003 ==> 140132 : MetadataEdit : Comments should sync to IPTC Caption First. 006 ==> 138241 : SendImages : A patch that adds support for the Claws Mail MUA. 007 ==> 140865 : RAWConverter : Plugin does not work (image can not be converted). 008 ==> 141528 : JPEGLossLess : Remove confirmation dialog for image rotate. 009 ==> 141530 : JPEGLossLess : Use Rotate left/right instead of degrees. 010 ==> 142848 : GPSSync : Timezone needs to go to GMT +13. 011 ==> 140297 : GPSSync : GPS kipi plugin truncates input coordinates, introducing inacuracy. 012 ==> 143594 : GPSSync : Bad Interpolation in correlate gpssync. 014 ==> 139793 : GPSSync : KML google export import. 015 ==> 142259 : GalleruExport: Export to Gallery 2.2-RC-1 fails. 016 ==> 135945 : FLickrExport : Tags with spaces are exported as multible tags. 017 ==> 146084 : SlideShow : Slide show interface suggestions. 018 ==> 145771 : MPEGEncoder : Gnome Desktop crashes and restarts when select Cancel option for Mpeg Slideshow plugin
2007-07-08Drop maintainership.wiz12-24/+24
2007-07-08libkexiv2 updated to 0.1.5, added libkdcraw, updated digikam to 0.9.2wiz2-3/+6
and removed digikamimageplugins.
2007-07-08Remove digikamimageplugins, it's included in digikam now.wiz5-1577/+1
2007-07-08Update to 0.9.2, take maintainership:wiz9-159/+359
digiKam 0.9.2-final - Release date: 2007-06-13 NEW FEATURES: digiKam BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org): 062 ==> 144590 : English labels need cleanup in digiKam. 063 ==> 146436 : digiKam try to include Exiv2 library headers. 064 ==> 146464 : Light Table does not deal with colour management. 065 ==> 142133 : typo English documentation docbook. ********************************************************************************************** digiKam 0.9.2-beta3 - Release date: 2007-06-03 NEW FEATURES: General : Light Table and Preview Mode can work with full image size instead a reduced one. ---------------------------------------------------------------------------- digiKam BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org): 059 ==> 145198 : Light-table should also work with the full image. 060 ==> 146072 : Slideshow shows black screen. 061 ==> 146184 : Showfoto no filename specified . ********************************************************************************************** digiKam 0.9.2-beta2 - Release date: 2007-05-28 NEW FEATURES: General : digiKam has a new powerful tool to compare similar images side by side: the Light Table. Demo and screenshots: http://www.digikam.org/?q=node/221 http://www.digikam.org/?q=node/222 ---------------------------------------------------------------------------- digiKam BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org): 040 ==> 135048 : Easily compare similar images using a light-table. 041 ==> 145159 : Improvements to the light-table. 042 ==> 145204 : Small issues with the light-table. 043 ==> 145227 : Change ratings via short-cuts in the light-table. 044 ==> 145236 : Small wishes for the light-table. 045 ==> 145237 : Small wishes for the light-table (2). 046 ==> 145170 : Always allow zooming in/out in imageeditor. 047 ==> 145078 : Ctrl-Y untied from Redo. 048 ==> 145083 : Space and Shift-Space isn't used for navigation between images. 049 ==> 145077 : Ctrl-W and Ctrl-Q shortcuts not tied to proper actions:fixed 050 ==> 145558 : In menu view: window size/original size: ctrl-shift-z obsolete? 051 ==> 144640 : CTRL-P does nothing in Album GUI: fixed to print action 052 ==> 144643 : Ctrl-Shift-A does not deselect in Album GUI: fixed 053 ==> 144644 : Ctrl-0 does not set zoom to 100% in Preview mode: Alt+Ctrl+0 054 ==> 144650 : Shift-Space doesn't work as PageUp. 055 ==> 145079 : Ctrl-A, Ctrl-Shift-A don't peform proper selection actions. 056 ==> 145627 : Showfoto /path/to/directory doesn't work, while the "open dir" feature exists. 057 ==> 146012 : Dragging an image over a tag in "tag filters" panel crashes digiKam. 058 ==> 146032 : Panning doesn't work in Light Table. ********************************************************************************************** digiKam 0.9.2-beta1 - Release date: 2007-05-04 NEW FEATURES: General : DigikamImagePlugins have been merged into digiKam. It more simple to release on package for all. Image plugins translations are hosted to digikam.po file instead a .po file for each tool. All tools still available like plugins at the same place than image plugin core. General : New depency to libkdcraw shared library used to decode RAW file. This library is shared between digiKam and kipi-plugins. The internal dcraw version used is 8.60. digiKam support now all recent digital camera RAW files released at PMA 2007. General : Make size of icons used in sidebars configurable in order to allow more entries to be presented. General : Make size of icons used in album icon view more configurable using a slider in status bar. General : Removing direct Exiv2 library depency. libkexiv2 interface is used everywhere instead. Album GUI : Add Zoom/Scrooling functions with preview mode. Image Editor : Usability improvement : a new pan tool is available on the right bottom corner of canvas to naviguate over large pictures. Image Editor : Usability issue : Blowup and Resize tools have been merged. Image Editor : Usability issue : Unsharp Mask, Refocus, and Sharpen tools have been merged to a new Sharpness Editor. Image Editor : Usability issue : Reorganize menu structure Image Editor : Usability issue : persistant selection in all zoom mode. Image Editor : Add new option to fit on current selection. Image Plugins : Red Eyes Correction tool have been completly re-writen. There is a preview of effect and the capability to taint the eye pupil with a customized color. The new eye pupil can be blured to smooth the result. Image Plugins : Solarize plugin is now a "Color Effects" pack including Solarize, Velvia (new plugin), Neon, and Edge effects. Image Plugins : Black & White converter now support a lots of B&W analog camera film types (Agfa, Ilford, Kodak). A new 'strength' setting can simulate the amount of Lens filters effect. Image Plugins : Update internal CImg library to 1.1.9. The Greycstoration algorithm used by Restoration, Inpainting and Blowup plugins is faster and optimized. Showfoto : The thumbbar is now resizable. The thumbnails contents can be redimensionned in live. Showfoto : The thumbbar items can show a full configurable tool tip like digiKam album icon items tool tip. ---------------------------------------------------------------------------- digiKam BUGFIX FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org): 001 ==> 142443 : Red eye correction should change eye colour to an alternate colour. 002 ==> 138744 : Dcraw 8.45 supports Pentax K10D. 003 ==> 142427 : Rotate image tool too complicated. 004 ==> 141439 : A velvia similar plugin. AKA vivid saturation. 005 ==> 127583 : keywords, copyright, photographer info not saved to IPTC tags. 006 ==> 142571 : Auto-exposure result is different from the preview. 007 ==> 127377 : Restoration filter (CIMG) does not function properly. 008 ==> 131446 : Using inpainting plugin crashes digiKam. 009 ==> 103244 : Usability: Merge multiple similar menus into one. 010 ==> 139790 : Image Editor: the center of the photo is moving when zooming in or out. 011 ==> 106508 : Please change scaling behavior. 012 ==> 137236 : Disable autozoom when picture fits in window. 013 ==> 103645 : Zoom in with rectangle tool selection. 014 ==> 126127 : Enlarge small images when autozoom is activated. 015 ==> 104439 : Use left mouse button to scroll image. 016 ==> 137391 : Picture navigation in image editor using the mouse. 017 ==> 102029 : Configurable size of icons in sidebars. 018 ==> 102029 : No/small icons in album tree. 019 ==> 131155 : Smooth increasing/decreasing size of thumbnails like in iPhoto. 020 ==> 89365 : Reorganize menu structure in Image Editor. 021 ==> 134037 : Respect current sort order when passing list to KIPI plugin. 022 ==> 139466 : Remove configuration of digikam image plugins. 023 ==> 119418 : "set as album thumbnail" should work for different albums too. 024 ==> 125916 : Problem with opening 16bit TIFF. 025 ==> 143578 : New Pan Tool crash. 026 ==> 118539 : Lossless image-editor for JPEGs. 027 ==> 133913 : sRGB profile white point may be incorrect. 028 ==> 116148 : Auto-scrolling when selecting large area. 029 ==> 134498 : Date stamp display option for photos in full-screen mode. 030 ==> 130525 : Saving large (>5M) jpg's result in corrupt file. 031 ==> 132047 : Faster display of images and/or prefetch wished for. 032 ==> 140131 : No zoom in image preview. 033 ==> 89365 : More standard menu structure. 034 ==> 144214 : The plural form of "child" is "children", not "childs". 035 ==> 124487 : No way to pause a slide show. 036 ==> 128975 : "Correct Exif Orientation Tag" does not change the mtime of the image file. 037 ==> 139814 : The window of digiKam exceed the screen if the resolution is 800x600. 038 ==> 144481 : Vertical window size cannot be reduced to VGA resolution. 039 ==> 136254 : Editing tags does not change IPTC-keywords.
2007-07-08Some cleanup.wiz4-74/+5
2007-07-08+ kipi-plugins-0.1.4, raine-0.50.5.wiz1-2/+3
2007-07-08Add buildlink3 file.wiz1-0/+22
2007-07-08+ libkdcraw.wiz1-1/+2
2007-07-08Initial import of libkdcraw-0.1.1:wiz5-0/+129
Libkdcraw is a C++ interface around the dcraw program used to decode RAW picture files. The library documentation is available in header files. This library is used by kipi-plugins, digiKam, and other kipi host programs.