Commit graph

7248 commits

Author SHA1 Message Date
wiz
285b7dd776 Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
obache
b228a4ff5a Update GraphicsMagick to 1.3.
1.3 (November 9, 2008)
======================

Security fixes:

  * AVI reader: Re-worked to be more robust against crash or DOS.

  * AVS reader: Re-worked to be more robust against crash or DOS.

  * DCM reader: Re-worked to be more robust against crash or DOS.

  * EPT reader: Re-worked to be more robust against crash or DOS.

  * FITS reader: Re-worked to be more robust against crash or DOS.

  * MTV reader: Re-worked to be more robust against crash or DOS.

  * PALM reader: Re-worked to be more robust against crash or DOS.

  * RLA reader: Re-worked to be more robust against crash or DOS.

  * TGA reader: Re-worked to be more robust against crash or DOS.

  * Avoid possible crash in GetImageCharacteristics() when substituting
    text in comment read from file.

  * Cineon reader: Fixed crash with broken file from Sami Liedes.

  * Palm reader: Fixed crash with broken files from Sami Liedes.

  * PICT reader: Fixed crash with broken files from Sami Liedes.

  * DPX reader: Validate file data better to avoid improper operation with
    intentionally (or accidentally) defective files.

  * XCF reader: Fixed crash with broken files from Sami Liedes.

Bug fixes:

  * Libbz2 is now detected for MinGW.

  * Install documentation under /usr/local/share/doc/GraphicsMagick by
    default, according to GNU conventions.

  * In PerlMagick, Dissolve composition was not working right.

  * FITS: Ensure that written format conforms to specification.

  * TIFF:

    - Don't accidentially convert CMYK images to RGB.

    - Eliminated a memory leak in the codec support detection code.

  * JPEG: Removed over-write of image->client_data.

  * PDF: Try to properly deal with reading rotated PDFs.

  * PNG: Fixed crash when writing PNG images with transparency and either
    optimize is requested, or the image is colormapped.

  * Configure: Fixed the --enable-magick-compat configure option, which
    had stopped working.

  * Configure: Fixed --without-magick-plus-plus so that it works again.  This
    stopped working in the 1.2 release cycle.

  * Configure: Fixed MagickLibVersion text string generation so that it
    is now correct when a component of the release number exceeds '9'.
    Now components can safely count up to '99' before there is a problem.

Performance Improvements:

  * OpenMP (parallel processing) improvements for these functions:

    - Affine transform (-affine -transform)
    - Average images (-average)
    - Add noise (+noise)
    - Black threshold (-black-threshold)
    - Blur (-blur)
    - Border (-border)
    - Channel import, export, and depth-setting (-channel, -depth)
    - Clip path
    - Coalesce (-coalesce)
    - Colorize (-colorize)
    - Colorspace transformation (-colorspace)
    - Compare images ('compare' command)
    - Composition ('composite' command)
    - Convolution (-convolve, -edge, -emboss, -gaussian, -sharpen)
    - Contrast adjust (-contrast)
    - Crop (-crop)
    - CycleColormap (-cycle)
    - Depth setting (-depth, -operator depth)
    - Despeckle (-despeckle)
    - Enhance (-enhance)
    - Equalize (-equalize)
    - Flatten (-flatten)
    - Flip (-flip)
    - Flop (-flop)
    - Frame (-frame)
    - Gamma adjust (-gamma, -operator gamma)
    - Gradient
    - Implode (-implode)
    - Levels adjust image (-level)
    - Local adaptive threshold (-lat)
    - Median filter (-median)
    - Minify image (-minify)
    - Modulate image (-modulate)
    - Morph image (-morph)
    - Mosiac (-mosaic)
    - Motion blur (-motion-blur)
    - Negate image (-negate)
    - Noise filter (-noise)
    - Normalize image (-normalize)
    - Oil Paint (-paint)
    - Opaque (-opaque)
    - Ordered dither (-ordered-dither)
    - Operators (-operator)
    - Profile adjust (ICC) (-profile)
    - Random threshold (-random-threshold)
    - Resize image (-resize)
    - Raise image (-raise)
    - Roll image (-roll)
    - Rotate image (-rotate)
    - Shade image (-shade)
    - Shear image (-shear)
    - Shave (-shave)
    - Solarize image (-solarize)
    - Spread image (-spread)
    - Statistics computation (identify -verbose)
    - Swirl (-swirl)
    - Threshold channel (-threshold, -operator threshold)
    - Threshold image (-threshold)
    - Transparent (-transparent)
    - Trim image (-trim)
    - UnsharpMaskImage (-unsharp)
    - Wave (-wave)
    - White threshold (-white-threshold)

  * Improved coder management performance.

  * XCF (GIMP) reader is much faster.

New Features:

  * Use MAGICK_CODER_STABILITY environment variable to enable a subset
    of the coders based on their stability classification.

  * Use MAGICK_IO_FSYNC environment variable to cause written file to
    be synchronized to disk to avoid possible data loss on power fail.

  * Added 'compare' command to statistically or visually compare two
    image files.

  * Added new channel operators (-operator):

    - Assign
    - Gamma
    - Depth
    - Negate
    - Noise-Gaussian
    - Noise-Impulse
    - Noise-Laplacian
    - Noise-Multiplicative
    - Noise-Poisson
    - Noise-Uniform
    - Threshold
    - ThresholdBlack
    - ThresholdWhite

  * New composition operators (-compose):

    - CopyBlack
    - CopyCyan
    - CopyMagenta
    - CopyYellow
    - Divide

  * Added -motion-blur to motion blur the image.

  * Mogrify and convert now support -black-threshold and -white-threshold.

  * MAT: Now supports reading compressed files.

  * FITS: Now supports 8, 16, 32 bit integer, float, and double images
    and writes correct FITS format.

  * DCRAW: Coder proxy module allows reading digital camera files as if
    they were natively supported.

  * New C API functions:

    - AddNoiseImageChannel(), add noise to an image channel.
    - BlurImageChannel(), blur an image channel.
    - GaussianBlurImageChannel(), gaussian blur an image channel.
    - ImportImageChannelsMasked(), import selected image channels.
    - SharpenImageChannel(), sharpen an image channel.
    - UnsharpMaskImageChannel(), unsharpmask an image channel.
    - New cache view interfaces to correct shortcommings of original
      ones.  New interfaces are AcquireCacheViewPixels(),
      AcquireOneCacheViewPixel(), AcquireCacheViewIndexes(),
      GetCacheViewPixels(), SetCacheViewPixels(), and
      SyncCacheViewPixels(). The deprecated functions are
      AcquireCacheView(), GetCacheView(), SetCacheView(), and
      SyncCacheView().
    - GetCacheViewRegion() reports region bounded by a cache view.
    - GetCacheViewArea() reports area bounded by a cache view.
    - ExportViewPixelArea() exports a cache view as formatted pixels.
    - ImportViewPixelArea imports formatted pixels into a cache view.

  * Removed C API functions:

    - ReadStream()
    - WriteStream()

  * Magick++ C++ API improvements

    - Color class no longer considers transparent black to be an invalid
      color.
    - New Image methods addNoiseChannel(), blurChannel(),
      gaussianBlurChannel(), motionBlur(), randomThresholdChannel(),
      randomThresholdChannel(), sharpenChannel(), unsharpmaskChannel().

Feature improvements:

  * -ordered-dither and -random-threshold may now be used to individually
    dither any named channel.
  * Mogrify and convert now support -minify to halve the image size.
  * Mogrify and convert now support -magnify to double the image size.
2008-11-10 11:24:27 +00:00
wiz
952d6726e7 Update to 0.9.5beta1 to fix build with latest libkdcraw package.
digiKam 0.9.5-beta1 - Release date: 2008-11-05

NEW FEATURES:

General        : libkdcraw dependency updated to 0.1.5

Image Editor   : All image plugin tool settings provide default buttons to reset values.
Image Editor   : New Raw import tool to handle Raw pictures with customized decoding settings.
Image Editor   : All image plugin dialogs are removed. All tools are embedded in editor window.

BUGFIXES FROM KDE BUGZILLA (alias B.K.O | http://bugs.kde.org):

001 ==> 166867 : Digikam crashes when starting.
002 ==> 167026 : Crash on startup Directory ImageSubIfd0 not valid.
003 ==> 146870 : Don't reduce size of image when rotating.
004 ==> 167528 : Remove hotlinking URL from tips.
005 ==> 167343 : Albums view corrupted and unusable.
006 ==> 146033 : When switching with Page* image jumps.
007 ==> 127242 : Flashing 'histogram calculation in progress' is a bit annoying.
008 ==> 150457 : More RAW controls in color management pop-up please.
009 ==> 155074 : Edit Image should allow chance to adjust RAW conversion parameters.
010 ==> 155076 : RAW Conversion UI Needs to be more generic.
011 ==> 142975 : Better support for RAW photo handling.
012 ==> 147136 : When selecting pictures from folder showfoto got closed.
013 ==> 168780 : Loose the raw import.
014 ==> 160564 : No refresh of the number of pictures assigned to a tag after removing the tag from some pictures.
015 ==> 158144 : Showfoto crashes in settings window.
016 ==> 162845 : 'Ctrl+F6' Conflict with KDE global shortcut.
017 ==> 159523 : Digikam crashes while downloading images from Olympus MJU 810/Stylus 810 camera no xD card.
018 ==> 161369 : Quick filter indicator lamp is not working properly in recursive image folder view mode.
019 ==> 147314 : Renaming like crazy with F2 slows down my system.
020 ==> 164622 : Crash using timeline when switching from month to week to month view.
021 ==> 141951 : Blank empty context right-click menus.
022 ==> 116886 : Proposal for adding a new destripe/denoise technique.
023 ==> 163602 : Race condition during image download from Camera/ USB device: image corruption and/or loss.
024 ==> 165857 : Unreliable import when photo root is on network share.
025 ==> 147435 : Resize slider in sharpness dialog doesn't work correct.
026 ==> 168844 : Make the selection rectangle draggable over the image (not only resizable).
027 ==> 147151 : Compile error: multiple definition of `jpeg_suppress_tables'.
028 ==> 170758 : High load when tagging
029 ==> 168003 : Drag&dropping a photo to a folder in Dolphin begins copying the whole system:/media.
030 ==> 142457 : Temp files not cleaned up after crashes.

0.9.4:

NEW FEATURES (since 0.9.3):

General : external libsqlite3 depency removed. sqlite3 source code is now included in digiKam core. Note than for packaging, an external libsqlite3 dependency can be used instead internal version (see B.K.O #160966).
General : Updated internal CImg library to last stable 1.2.9 (released at 2008/06/26).
General : English words review in whole GUI by Oliver Dörr.
General : New search text filter for all metadata sidebar tabs.
General : New dialog to list all RAW camera supported. A search camera model tool is available to easily find a camera from list.
General : Creation of tags simplified everywhere. Multiple tags hierarchy can be created at the same time. Tags creation dialog re-designed.
General : Color theme scheme are pervasively applied in graphical interfaces, giving digiKam a real pro-look when dark schemes are selected.
General : Color theme scheme can be changed from either Editor or LightTable.
General : Add capability to display items count in all Album, Date, Tags, and Tags Filter folder views. The number of items contained in virtual or physical albums can be displayed next to its name. If a tree branch is collapsed, parent views sum-up the number of items from all undisplayed children views. Items count is performed in background by digiKam KIO-Slaves. A new option from Setup/Album dialog page can toggle on/off this feature.

ImageEditor : Raw files can be decoded in 16 bits color depth without to use Color Management. An auto-gamma and auto-white balance is processed using the same method than dcraw with 8 bits color depth RAW image decoding. This usefull to to have a speed-up RAW workflow with suitable images.
ImageEditor : New "save as" image file dialog with photo thumbnail / information.

Showfoto : Added support of color theme schemes.
Showfoto : Added 2 options to setup images ordering with "File/Open Folder" action.
Showfoto : New open image file dialog with photo thumbnail / information.

AlbumGUI : Add a new tool to perform Date search around whole albums collection: Time-Line. Timeline is a new left sidebar tab. It's a great tool complementary to the calendar. Try it out!
AlbumGUI : In Calendar View, selecting Year album shows all images of the full year.
AlbumGUI : New status-bar indicator to report album icon view filtering status.
AlbumGUI : Auto-completion in all search text filter.

BUG FIXES:

001 ==> 146393 : No gamma adjustment when opening RAW file.
002 ==> 158377 : digiKam duplicates downloaded images while overwriting existing ones.
003 ==> 151122 : Opening Albums Has Become Very Slow.
004 ==> 145252 : Umask settings used for album directory, not for image files.
005 ==> 144253 : Failed to update old Database to new Database format.
006 ==> 159467 : Misleading error message with path change in digikamrc file.
007 ==> 157237 : Connect the data when using the left tabs.
008 ==> 157309 : digiKam mouse scroll direction on lighttable.
009 ==> 158398 : Olympus raw images shown with wrong orientation.
010 ==> 152257 : Crash on saving images after editing.
011 ==> 153730 : Too many file format options when saving raw image from editor in digiKam.
012 ==> 151157 : Right and left keys goes to first picture and last picture without shortcuts.
013 ==> 151451 : Application crashed using edit.
014 ==> 139657 : Blueish tint in low saturation images converted to CMYK.
015 ==> 147600 : Showfoto Open folder - files shown in reverse order.
016 ==> 149851 : Showfoto asks if you want to save changes when deleting photo, if changes have been made.
017 ==> 138378 : Showfoto opens file browser window to last the folder used upon startup.
018 ==> 148964 : images are blur only inside showFoto.
019 ==> 146938 : Themes Don't Apply To All Panels.
020 ==> 135378 : Single-click on picture open it in editor.
021 ==> 142469 : Splash screen to be the very first thing.
022 ==> 147619 : Crash when viewing video.
023 ==> 136583 : Album icon does not show preview-image after selecting given image as preview.
024 ==> 129357 : Thumbnails not rotated for (D200)-NEF.
025 ==> 132047 : Faster display of images and/or prefetch wished for.
026 ==> 150259 : media-gfx/digikam-0.9.2 error/typo in showfoto.desktop.
027 ==> 150674 : Turn of live update of preview when moving points in curves dialog or in histogram.
028 ==> 141703 : Show file creation date in tooltip.
029 ==> 128377 : Adjust levels: histograms don't match, bad "auto level" function.
030 ==> 141755 : Sidebar: Hide unused tabs, Add tooltips.
031 ==> 146068 : Mixer does not work for green and blue selected as main channel and monochrome mode.
032 ==> 135931 : Reorganize Batch Processing tools from 'Image' and 'Tools' menus.
033 ==> 159664 : Background color of live/quick filter not updated on folder/date change.
034 ==> 096388 : Show number of images in the album.
035 ==> 155271 : Configure suggests wrong parameter for libjasper.
036 ==> 155105 : Broken png image present in albums folder causes digiKam to crash when starting.
037 ==> 146760 : Providing a Timeline-View for quickly narrowing down the date of photos.
038 ==> 146635 : Ratio crop doesn't remember orientation.
039 ==> 144337 : There should be no "empty folders".
040 ==> 128293 : Aspect ratio crop does not respect aspect ratio.
041 ==> 157149 : digiKam crash at startup.
042 ==> 141037 : Search using Tag Name does not work.
043 ==> 158174 : Precise aspect ratio crop feature.
044 ==> 142055 : Which whitebalance is used.
045 ==> 158558 : Delete Function in Tag Filters panel needs to make sure that the tag is unselected when the tag is deleted.
046 ==> 120309 : Change screen backgroundcolor of image tools.
047 ==> 153775 : Download from camera: Renaming because of already existing file does not work.
048 ==> 154346 : Can't rename in digiKam.
049 ==> 154625 : Image-files are not renamed before they are saved to disk.
050 ==> 154746 : Album selection window's size is wrong.
051 ==> 159806 : Cannot display Nikon d3 raw files.
052 ==> 148935 : digiKam hot pixel plugin can not read canon RAW files.
053 ==> 158776 : Confirm tag delete if tag assigned to photos.
054 ==> 148520 : Change of rating causes high CPU load.
055 ==> 140227 : Remove or modify D&D tags menu from icon view area.
056 ==> 154421 : Live search doesn't search filenames.
057 ==> 118209 : digiKam hotplug script kde user detection problem.
058 ==> 138766 : JPEG Rotations: Give a warning when doing Lossy rotations (and offer to do lossless when applicable).
059 ==> 156007 : Canon Raw+Jpg Locks up download image window during thumbnail retrieval.
060 ==> 114465 : Simpler entry of tags.
061 ==> 159236 : Corrupted file when downloading from CF card via digiKam.
062 ==> 121309 : Camera list sorted by brand.
063 ==> 137836 : Usability: Configure camera gui add and auto-detect camera.
064 ==> 160323 : Changing the album name from sth to #sth and then to zsth causes the album to be deleted along with the files.
065 ==> 145083 : Space and Shift-Space isn't used for navigation between images.
066 ==> 158696 : digiKam image viewer crashes when "Save As" is clicked.
067 ==> 156564 : Light table crashes when choosing channel.
068 ==> 147466 : digiKam crashes on termination if an audio file played.
069 ==> 146973 : Crashes when clicking on preview image.
070 ==> 148976 : digiKam Deleted 2.3 g of Pictures.
071 ==> 145252 : Umask settings used for album directory, not for image files.
072 ==> 125775 : digiKam way to save and delete "Searches".
073 ==> 150908 : Canon g3 not recognized works version 0.9.1.
074 ==> 152092 : Showfoto crashes ( signal 11 ) on exit.
075 ==> 160840 : Wrong filtering on Album-Subtree-View.
076 ==> 160846 : Blurred preview of pics.
077 ==> 157314 : Zoom-slider has no steps.
078 ==> 161047 : Shift and wheel mouse doesn't work.
079 ==> 161087 : Conflicting directions of mouse scroll when zooming.
080 ==> 161084 : Not properly updates status bar info.
081 ==> 162132 : Crash while saving tiff (possibly caused by present alpha channel).
082 ==> 155046 : light-table usability, possible improvements.
083 ==> 161085 : Zoom steps in image editor.
084 ==> 162247 : The photos thumbnails list would be better if in the end of an album/date/tag start the next.
085 ==> 160523 : Crash when saving picture as new name after resizing.
086 ==> 162428 : debug info needed ?
087 ==> 147597 : Typos in the digiKam KDE3 PO file.
088 ==> 162496 : When Digikam saves file as JPEG - JPG options are not always presented.
089 ==> 160740 : Handbook says that libgphoto2 is required but does not say whether it should be compiled with exif support.
090 ==> 148400 : Problem loading 16bit Grayscale TIFF image.
091 ==> 160925 : digiKam crash, I don't know why, but I have the bugreport.
092 ==> 162691 : 0.9.4 beta5 compile error imagehistogram.cpp.
093 ==> 160966 : Some searches don't work properly with the new sqlite3-3.5.8.
094 ==> 162245 : Assigned tag list not updated correctly when "show assigned tags" filter is active.
095 ==> 158866 : Advanced Search on Tags a mess.
096 ==> 162814 : digiKam crashes when using light table (page down).
097 ==> 163151 : Red eye correction doesn't work fine.
098 ==> 163227 : Searching for tag names in simple and advanced search doesn't work.
099 ==> 163474 : Config UI using external media.
100 ==> 156420 : Canon EOS 400D, no thumbnails displayed then digikam segfaults.
101 ==> 163118 : digikam-0.9.4_beta5 compilation hangs with gcc 4.3.
102 ==> 164301 : Filter Albums sub-tree names too, when using quickfilter on icon view.
103 ==> 164482 : Place filename of image in klipper/paste buffer from thumbnail right mouse button context menu.
104 ==> 164536 : Add adjust mid range color levels.
105 ==> 164615 : Image detail info about geometry (X-pixel / Y-pixel) missed.
106 ==> 149654 : Fullscreen icon changes image's zoom to 100% (should fit to screen).
107 ==> 162688 : Digikam RC5, can't see scroll bar sliders in dark theme.
108 ==> 161212 : Switch to full screen resets X11.
109 ==> 164432 : Compilation fails with gcc 3.
110 ==> 164392 : Can't compile digikam with missing libkdcraw.
111 ==> 160617 : Same image gets opened to both sides of view when draggin image to right side.
112 ==> 165823 : Digikam crashes if last picture is removed from lighttable.
113 ==> 165921 : Translation bug: Missing german translation.
114 ==> 130906 : Allow user to click text of tags to tag an image (not checkbox only).
115 ==> 126871 : Click on parent folder in tree should generate a reaction.
116 ==> 162812 : Sharpen slider enhancement refresh previews continuously.
117 ==> 166274 : Rename files on download from camera.
118 ==> 166472 : Thumbnail bar gone in image editor when switching back from fullscreen.
119 ==> 166540 : Showfoto always prints filename.
2008-11-10 09:26:52 +00:00
taca
ee43593a4d make MAKE_JOBS_SAFE to NO. 2008-11-10 05:06:45 +00:00
obache
d21efea158 Need buildlink GL and GLU headers. 2008-11-08 01:10:12 +00:00
sborrill
b59903640e Update to 0.1.16. Changes unknown as not listed in CHANGES file. 2008-11-07 20:11:30 +00:00
wiz
c80a0e6133 Update to 2.10.10:
version 2.10.10
---------------

	New features and user visible changes:

	* Added ability to hide video and audio files, using the gconf key
	  /apps/gthumb/browser/show_only_images.

	Bugs fixed:

	* #552453: gthumb 2.10.9 contains COPYING for GPL v3
	* #546383: gthumb 2.10.9 fails to link Patch by Götz Waschk.
	* Do not exclude xcf images from the file list.

	New or updated application translations:

	* Romanian (Mihai Varzaru)
	* Thai (Manatsawin Hanmongkolchai)
	* Turkish (M. Emin Akşehirli)
2008-11-07 08:52:05 +00:00
gdt
fb7c523879 Update to 7.51. Minor changes omitted; see "Changes".
Oct. 27, 2008 - Version 7.51 (production release)

  - API Changes:
      - Added ExtractEmbedded option
  - Added support for XMP PRISM 2.0 schema tags
  - Added -X option to output extracted information in XML format
  - API Changes:
      - Fixed CanWrite() to be consistent with documentation
  - Added support for new XMP IPTC Extension 1.0 tags (rev 2)
  - Added new Composite LensID tag and changed a number of LensType values in
    an attempt to disambiguate Canon, Pentax, Minolta and Sony 3rd party lenses
  - API Changes:
      - Added ListSep option
  - API Changes:
      - Added ability to pass options to SetNewValuesFromFile
  - WARNING: Older ExifTool versions will not properly rewrite DNG 1.2 images
    which contain multiple color profiles
  - Added DNGVersion check to avoid future problems with major DNG revisions
  - Added support for new DNG version 1.2.0.0 tags
  - Decode Nikon Capture NX 2 NikonICCProfile information (thanks Jens Duttke)
2008-11-06 11:28:09 +00:00
wiz
7a06fb9108 Update to 0.1.6:
v 0.1.6
---------------------------------------------------------------------------

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 162687 : FlickrExport       : Make Flickr Export screen non-modal.
002 ==> 162683 : FlickrExport       : Export to picassaweb doesn't works.
003 ==> 164152 : FlickrExport       : Geotagging when exporting to Flickr.
004 ==> 166712 : PrintWizard        : Choosing the part which is cut off for printing only works for the first photo.
005 ==> 162994 : PicasaWebExport    : Picasa album list does not contain "not listed" albums, contains only "public" albums.
006 ==> 150912 : PicasaWebExport    : Uploader does not upload.
007 ==> 164908 : PicasaWebExport    : Private albums are not listed (and then not usable).
008 ==> 150979 : PicasaWebExport    : Picasa Export-Plugins does not work.

v 0.1.6 - beta1
---------------------------------------------------------------------------

Kipi-plugins NEW FEATURES:

FlickrExport   : dialog layout re-written to be more suitable.
FlickrExport   : list of item to upload is now display in dialog.
FlickrExport   : Support RAW files format to upload as JPEG preview.
PicasaWebExport: Support RAW files format to upload as JPEG preview.

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 149890 : TimeAdjust         : Adjust date and time from Exif does not work.
002 ==> 154273 : RAWConverter       : Quality setting for jpegs saved by raw converter is insanely high.
003 ==> 157190 : GPSSync            : Misleading description for geotagging images.
004 ==> 154289 : FlickrExport       : Cannot upload RAW images.
005 ==> 153758 : FlickrExport       : FlickrUploader fails to upload photos whose caption contains
                                      accented characters or a trailing space.
006 ==> 128211 : FlickrExport       : "Ok" Button in "Add Photos" shouldn't fire upload directly.
007 ==> 159081 : FlickrExport       : Upload to Flickr not working.
008 ==> 162096 : FlickrExport       : When selecting all photos reverses the order.
009 ==> 158483 : PicasaWebExport    : Plugin cause Digikam crash.
010 ==> 160453 : PicasaWebExport    : Crashes when exporting to Picasaweb.
011 ==> 155270 : FlickrExport       : Tags with non-Latin characters dropped during image export.
012 ==> 153207 : FlickrExport       : Without using application tags: Flickr still reads embedded metadata into tags.
013 ==> 153206 : FlickrExport       : Provide option to remove spaces in tags during export.
014 ==> 145149 : FlickrExport       : Flickr uploading from DigiKam does not cache auth data.

v 0.1.5
---------------------------------------------------------------------------

Kipi-plugins NEW FEATURES:

SimpleViewerExport : plugin is now compatible with SimpleViewer version 1.8.x.
SimpleViewerExport : plugin now support RAW files format.

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 155231 : GPSSync            : Timezones are assumed to be only in hourly increments/decrements of GMT.
002 ==> 154849 : GPSSync            : Updates first find only, does not match other than GMT camera time.
003 ==> 144070 : GPSSync            : Typing coordinates doesn't update the map.
004 ==> 152526 : GPSSync            : Remember last display options like zoom and map/sattelite/hybrid view.
005 ==> 158176 : SlideShow          : Linking errors in slideshow plugin (missing -lXrandr).
006 ==> 150393 : SimpleViewerExport : XML file is corrupted if exif comment contains a "<".
007 ==> 134774 : SimpleViewerExport : Exported simpleviewer gallery fails to load images due to wrong xml file name.

v 0.1.5 - RC2
---------------------------------------------------------------------------

Kipi-plugins NEW FEATURES:

PrintWizard    : caption can contain more exif info

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 151578 : BatchProcess : Popup window says "Cannot run properly 'convert' program
                                from 'ImageMagick' package" but it seems fine. (really fixed)
002 ==> 155084 : PrintWizard  : Printing comments and EXIF tags.
003 ==> 155371 : GPSSync      : Add search feature to the embedded GPS Sync Google Maps based editor.
004 ==> 102021 : SlideShow    : Pan and Zoom on Slideshow viewing (not a transition) a la iPhoto

v 0.1.5 - RC1
---------------------------------------------------------------------------

Kipi-plugins NEW FEATURES:

General        : Added the availability to disable plugins we don't want to build.
               : This feature is very useful for source based distros (Matej Laitl)
PrintWizard    : Added raw file management, now raw files can be printed.
SlideShow      : Solved minor issue in filename printing (2D slideshow).
SlideShow      : New caching mechanism
SlideShow      : Added Ken Burns effect
Calendar       : Fixed recurring events not showing (only first date was showed)
                 Setting special events only once (before printing), instead of
                 one for every page

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 149666 : General      : iPod Export kipi plugin cannot be disabled at compile
                                time when libgpod is present on system.
002 ==> 151604 : PrintWizard  : Print Wizard does not recognize raw images.
003 ==> 102021 : SlideShow    : Pan and Zoom on Slideshow viewing (not a transition)
                                a la iPhoto.
004 ==> 151578 : BatchProcess : Popup window says "Cannot run properly 'convert' program
                                from 'ImageMagick' package" but it seems fine.
005 ==> 152210 : BatchProcess : Metadata lost when converting from png to jpeg (IPTC
                                thumbnail too big).
006 ==> 152215 : GPSSync      : GPS correlator starts too many kio_thumbnail processes.
007 ==> 149491 : GPSSync      : GPS correlator GPSSYNC do_not admit GMT+5h30 (India).
008 ==> 150114 : GPSSync      : Max time gap is limited to 999 or 2000 seconds.
009 ==> 154244 : ImageViewer  : SHIFT triggers help dialog.

v 0.1.5 - Beta1
----------------------------------------------------------------------------

Kipi-plugins NEW FEATURES:

General        : Added configure options to allow disabling plugins (--disable-XXXX)
                 provided by Matej Laitl (bug #149666)

PrintWizard    : Wizard GUI review
                 Added exif management.
                 Prints exif date-time info.
                 Font, color and size of captions.
                 Added an option to to print without margins (full-bleed).
                 Added 10x13.33cm into a4 (provided by Joerg Kuehne)
                 Added full size A4 printing (one photo per A4 page)
                 Added A6 size to get the old configuration for 10x15cm page
                 Changed page size to real 10x15cm instead of A6 (need to set up right page size on kprinter)
                 Added a new page size 13x18cm (need to set up right page size on kprinter)
                 Each photo can be printed more than once
PicasaWebExport: New plugin to export pictures to Picasa web service (by Vardhman Jain).
SlideShow      : Dropped imlib2 dependency

Kipi-plugins BUG FIXING from B.K.O (http://bugs.kde.org):

001 ==> 133193 : PrintWizard  : Data on the photo.
002 ==> 111454 : PrintWizard  : Print photo's date into one corner like print assistant.
003 ==> 146457 : PrintWizard  : Rotation is not done correctly Exif.
004 ==> 138838 : NewPlugin    : Digikam Picasaweb export plugin.
005 ==> 103152 : PrintWizard  : Improvement suggestions for printing wizard.
006 ==> 117085 : PrintWizard  : Have pictures fit a whole, single sheet.
007 ==> 100471 : PrintWizard  : Can't print the same image more than once on the same page.
008 ==> 148621 : JPEGLossLess : Image rotation not working properly.
009 ==> 144388 : JPEGLOssLess : Cache is not updated after rotating pictures.
010 ==> 144604 : JPEGLossLess : Rotation causes Exif data corruption.
011 ==> 150063 : JPEGLossLess : Rotating JPEG produces error and truncates original file.
2008-11-05 19:21:45 +00:00
wiz
25655cd1b2 Update to 0.1.6:
0.1.6
------------------------------------------------------------------------
Updated LibRaw to 0.6.1.
Ported to LibRaw 0.6.0 Api. Removed dcraw.c and DcrawBinary class.
New cameras: Canon 50D, Sony A900, Nikon D90 & P6000, Panasonic LX3 FZ28.


0.1.5
------------------------------------------------------------------------
- API changed: Add white point settings support (dcraw -S option)
               Add new method to set/check brigness settings aviability
               Raw decoding settings widget re-designed to group each
               options by features using tabs.
               Add support dcraw options -m -A -P -p -o.
               Add new signal emited when something is changed in settings.
               Add new integer and double slider widgets with
               default values and reset buttons.
               Add new combo box widget with a default item and reset button.
               Add new method to extract whole embedded JPEG image data as a
               byte array.

- Updated dcraw to 8.87
  New camera : Kodak C603, Nikon D700, Canon EOS 1000D,
  Canon PowerShot SD300, and Olympus E-520.
  Removed useless code from ppg_interpolate().
- Updated dcraw to 8.86
  New camera : Sony A300.
  Fixed camera WB on the A200.
  Set model-specific saturation levels in adobe_coeff().
  No new options introduced.
- Updated dcraw to 8.85
  New camera : Olympus E-420.
  No new options introduced.
- Updated dcraw to 8.84
  New cameras: Canon EOS 450D, Nikon D60, and Fuji S100FS.
  Copied new matrices from Adobe DNG Converter 4.4.
  sRAW support in 1.393 broke Fuji DNG files, now fixed.
  No new options introduced.

0.1.4
------------------------------------------------------------------------
- updated dcraw to 8.83
  new cameras: Apple QuickTake 200, Fuji IS-1, Sony DSLR-A350, Pentax K20D,
               Nokia N95, Canon PowerShots A460, Canon PowerShots A530,
	       Canon PowerShots A650.
  no new options introduced.
- updated dcraw to 8.82
  new cameras: Sony DSLR-A200, Sony DSLR-A700, Sony XCD-SX910CR, STV680 VGA
  no new options introduced.

Bugs fixed from B.K.O (http://bugs.kde.org):
001 ==> 142055 : Which whitebalance is used.
2008-11-05 16:43:30 +00:00
markd
2e01591771 Add qimageblitz 2008-11-04 10:09:22 +00:00
markd
bfaede0c1c Import qimageblitz 0.0.4
Interm graphical effect and filter library for KDE4.0
2008-11-04 10:07:38 +00:00
bjs
f1c1ee0d8d PKGREVISION++ for sysutils/pciutils 2008-11-03 22:05:50 +00:00
obache
1d08806591 Update RMagick to 2.7.1.
RMagick 2.7.1
    o Fix bug #22471, Magick::fonts can abend on 64-bit systems (bug report and
      patch by James Le Cuirot)
    o ImageList.new accepts a block which is passed on to Image::read when
      reading the input  images. The block is executed in the context of an
      Image::Info object.
    o Add support for the "user" image property.
    o Define the Magick::FatalImageMagickError exception class, raised if
      ImageMagick raises a fatal (unrecoverable) exception.
    o Added feature #22618, Image#total_ink_density (request by F. Behrens)
2008-11-02 01:28:50 +00:00
wiz
27a6f00e35 Update to 1.2.33 release (from rc2), no changes. 2008-11-01 14:34:08 +00:00
gdt
0d5748b6b6 Fix COMMENT, DESCR. 2008-11-01 13:40:34 +00:00
tron
1525850513 Re-add "include/cairo/cairo-quartz-image.h" to package list under Mac OS X.
Bump package revision.
2008-10-31 09:46:32 +00:00
wiz
4358c8cac0 Replace patch-ab with a post-extract rule. No change to the binary package,
just one file less in pkgsrc ;)
2008-10-30 22:12:59 +00:00
wiz
e3ad79e4d7 Update to 1.8.2:
Release 1.8.2 (2008-10-29 Carl Worth <cworth@cworth.org>)
=========================================================
The cairo community is pleased to announce the 1.8.2 release of the
cairo graphics library. This is the first update to cairo's stable 1.8
series and contains a large number of bug fixes. It is being released
just over one month since cairo 1.8.0.

This release consists primarily of bug fixes, but there is one notable
new feature, (the ability to build cairo without an external font
backend), and there are a few optimizations as well. See below for
details on these changes and the most important bug fixes.

While many people have contributed to this release, Chris Wilson
deserves particular mention. He has contributed well over twice as
many changes to cairo since 1.8.0 than everyone else combined. We
greatly appreciate the tremendous efforts of Chris and all cairo
contributors.

We recommend everyone upgrade to cairo 1.8.2 and hope that everyone
will have lots of fun with cairo!

-Carl

New feature
-----------
It is now possible to build cairo without any font backend, (such as
freetype, win32 or quartz). This is most useful when the application
provides custom font rendering through the user-font API. But in the
case where no external font backend is available, and no user-font is
provided, cairo will render with a failsafe font, (a stroked font
covering visible ASCII character). (Behdad Esfahbod)

Optimizations
-------------
Dramatically speed up compilation with dolt (removes much of the
libtool overhead) (Behdad Esfahbod with thanks to Josh Triplett).

Several minor optimizations to tessellator (special-cased comparisons,
faster insert for skiplist, etc.) (Chris Wilson).

Optimize away fractional translation component when doing
EXTEND_NEAREST filtering, (for better performance).

General bug fixes
-----------------
Allow cloning sub-regions of similar surfaces to fix this bug
(Chris Wilson):

	Crafted gif file will crash firefox
	[XError: 'BadAlloc (insufficient resources for operation)']
	https://bugzilla.mozilla.org/show_bug.cgi?id=424333

Fix some matrix confusion to fix this regression (Chris Wilson):

	Translucent star exports in a wrong way to PDF
	https://bugs.launchpad.net/inkscape/+bug/234546

Fix some long-standing bugs with respect to properly computing the
extents of transformed, filtered surfaces (Owen Taylor, Carl Worth,
and Chris Wilson):

	Bad clipping with EXTEND_NONE
	http://bugs.freedesktop.org/show_bug.cgi?id=15349

	Improve filtering handling in cairo-pattern.c
	http://bugs.freedesktop.org/show_bug.cgi?id=15367

	Many thanks to Chris Wilson for digging out and cleaning up
	these fixes.

Fix compilation on Solaris 10 (Chris Wilson):

	Cairo requires -DREENTRANT (along with	-D_POSIX_THREAD_SEMANTICS)
	to compile on Solaris 10 with pthreads
	https://bugs.freedesktop.org/show_bug.cgi?id=18010

Fix very old bug causing dashes to be rendered at the wrong length in
fallback images (Adrian Johnson)

	Dashed strokes too long in fallback images
	https://bugs.freedesktop.org/show_bug.cgi?id=9189

Fix broken dashing when a dashed path starts outside the clip region
(Chris Wilson).

Avoid range overflow when computing large patterns (Benjamin Otte and
Chris Wilson).

Avoid crashing due to an invalid font with an incorrect entry in its
CMAP table (Adrian Johnson).

Fix bugs in computing maximum size of text requests that can be sent
with the Render extension, (avoiding potential crashes when rendering
large amounts of text) (Behdad Esfahbod and Chris Wilson).

Fix rendering of operators unbounded by the mask (Chris Wilson).

Fix compilation on systems without compiler support for a native
64-bit type (Chris Wilson).

Fix several cases of missing error-status propagation. (Chris Wilson,
doing the work he seems to never tire of).

Fix several locking issues found with the lockdep valgrind skin (Chris
Wilson).

Backend-specific bug fixes
--------------------------
xlib: Avoid crash due to attempting XRender calls on pixmaps with
formats not supported by the Render extension (Chris Wilson):

	XRender crashes due to NULL pointer from Cairo on SGI O2
	https://bugs.freedesktop.org/show_bug.cgi?id=1173

xlib: Add support for XImages with depth of 4, 20, 24, or 28 bits
(Chris Wilson):

	cairo doesn't support 24 bits per pixel mode on X11
	https://bugs.freedesktop.org/show_bug.cgi?id=9102

xlib: Avoid mistakenly considering two surfaces as similar just
because their depths match (while their Render formats do not) (Karl
Tomlinson).

ps: Fix slight mis-scaling of bitmapped fonts (Adrian Johnson)

svg: Correctly emit comp-op for paint, mask, and show_glyphs
operations (Emmanuel Pacaud).

svg: Use finer-grained fallbacks for SVG 1.2 (as PS and PDF backends
have been doing since 1.6.0) (Chris Wilson).
2008-10-30 21:44:54 +00:00
tron
c8c4823740 Update "imlib" package to version 1.4.2. Changes since version 1.4.0:
- Various bugfixes and security updates

This update addresses SA32354.
2008-10-30 11:26:25 +00:00
bjs
570f86683e Refactor declaration of PATCHFILES/PATCH_SITES again, allowing
the X server to define its own.  PATCHFILES for modular-xorg-server
are now located in ${MASTER_SITE_LOCAL:=xorg-server-patchfiles/}.
2008-10-29 22:20:28 +00:00
bjs
e9b6d32e0f Assign PATCHFILES and PATCH_SITES with += so that we don't stomp on these
definitions in x11/modular-xorg-server/Makefile.
2008-10-29 00:51:56 +00:00
wiz
d31244d7e9 Update to 1.2.33rc02, fixing a security problem.
version 1.2.33beta01 [October 6, 2008]
  Revised makefile.darwin to fix shared library numbering.
  Change png_set_gray_1_2_4_to_8() to png_set_expand_gray_1_2_4_to_8()
    in example.c (debian bug report)

version 1.2.33rc01 [October 15, 2008]
  No changes.

version 1.2.33rc02 [October 23, 2008]
  Changed remaining "key" to "png_ptr->chunkdata" in png_handle_tEXt()
    to avoid memory leak after memory failure while reading tEXt chunk.`
2008-10-28 19:09:29 +00:00
obache
efd4c6c7c5 Update ruby-gnome2 to 0.18.1.
== Ruby-GNOME2 0.18.1: 2008-10-23

This release is bug fix release of 0.18.0.

=== Changes

Ruby/GTK2:
  * fix a bug that init function is deleted. [Kouhei Sutou]
2008-10-28 13:43:57 +00:00
adam
6e64547656 Changes 6.4.5.0:
* Bug fixes and improvements.
2008-10-28 10:42:02 +00:00
bjs
97e1fd19e4 Add the following patch from upstream as a new distribution
patch and bump MesaLib's PKGREVISION.  While here, make a few
small changes to appease pkglint.

commit 2b8d8989fb6f9c36baf166fc715182a1407ebadb
Author: Ian Romanick <ian.d.romanick@intel.com>
Date:   Sun Sep 28 20:31:46 2008 -0700

    Use 3Dnow! x86-64 routines only on processors that support 3Dnow!
    Added an x86-64 CPUID function and use it to detect 3Dnow!
    [...]
    This fixes long standing bug #8724.
2008-10-26 21:03:40 +00:00
adam
ded3573f8c Changes 1.6.10:
* Add sTER chunk support.

Changes 1.6.9:
* Updated cexcept.h to version 2.0.1
* Add missing curly brackets.

Changes 1.6.8:
* Fixed bug with handling of -z and -zi options.
2008-10-26 09:19:16 +00:00
wiz
47e6500491 Update to 2.24.1. Add XMP support using exempi.
Version 2.24.1
--------------

 * Improvements to the JPEG metadata reader (Felix Riemann)
 * Fix progress reporting when images only need copying during "Save As" (Felix Riemann)
 * Fix some critical warnings (Claudio Saavedra, Vincent Untz)
 * Do not open some images at 98% or 99% (Felix Riemann)
 * Install metadata related headers properly (Pierre-Luc Beaudoin)
 * Avoid possible markup "injection attack" (Martin Olsson)
 * Docs improvements.

Bug fixes:

  #530447, Eye of GNOME opens images resized at 98% or 99% zoom (Felix Riemann)
  #555940, eog is vulnerable to pango injection attack :-) (Martin Olsson)
  #555942, Not all public EXIF API headers are installed (Pierre-Luc Beaudoin)

New and updated translations:

- Alexander Shopov [bg]
- Adrian Guniš [cs]
- Pierros Papadeas [el]
- Takeshi AIHANA [ja]
- Changwoo Ryu [ko]
- Jovan Naumovski [mk]
- Wouter Bolsterlee [nl]
- Vladimir Melo [pt_BR]
- Laurent Dhima [sq]
- Daniel Nylander [sv]

New and updated manual translations:

- Osama K, OsamaKhalid [ar]
- Mario Blättermann [de]
- Sira Nokyoongtong, Theppitak Karoonboonyanan [th]
2008-10-25 00:23:03 +00:00
obache
9963456626 Update Rabbit to 0.5.8.
== Changes 0.5.8 from 0.5.7: 2008-10-18

  * Improvements
    * supported Clutter
      * supported page transition
      * supported new comment view that flow comments on a slide.
    * supported IRC backend
      * RabbIRC (akira yamada)
  * Theme
    * added shadow to quote marks
    * try to use Hiragino font if available
    * add a new theme
      * newline-in-slides: supports '\n' newline notation
  * Bug fixes
    * fixed too much grabbed problem on magnifier mode
    * reworked Tofu backend
    * fixed a problem that was reported on Asakusa.rb
2008-10-23 12:23:34 +00:00
tonnerre
8397885a25 Update JHead to version 2.84 in order to fix CVE-2008-4575 (buffer overflow).
Changes since old version 2.4:

 - Fix -da option.
 - Removed some debug printf which were accidentally left in.
 - Avoid duplicating exif header on some commands.
 - Fix up return codes.
 - Preserve file permissions and time when files are modified.
 - Read ISO euqivalnt and white balance from canon makernote.
 - Added -rt (replace thumbnail) feature, and rotate the thumbnail also
   when using the -autorot feature.
 - Added -rgt (regenerate thumbnail) feature.
 - Added -orp and -orl options.
 - Fix typecast issue run itno with GCC 4.
 - Fix shutter speed display in '-c' mode for very long shutter speeds.
 - Fix some nitpicks from Debian folks.
 - Fix a bug in autorot when rotating filenames with spaces in them.
 - Improved handling of corrupt exif linkages in exif header.
 - Added -a (rename associated files) options.
 - Remove maximum jpeg sections limit.
 - Added -ds option.
 - On clearing rotation, clear the image and the optinoal thumbnail rotation
   tags (some viewers use the wrong tag).
 - Add -mkexif option to make a new exif header.
 - Added IPTC handling.
 - Added -q option.
 - Fix handling of corrupted GPS directory.
 - Extract focus distance from canon makernote.
 - Extract subject range (pentax and fuji cameras).
 - Fix it so it no longer deletex XMP sections.
 - Improve IPTC handling a little.
 - Change how date is encoded with -mkexif section to make it more compatible.
 - Make jhead aware of XMP data and not delete it.
 - Decode more exif tags for '-v' mode.
 - Fix a bunch of potential string overflows.
 - Fix bug where IPTC sction was not deleted by -purejpg.
 - Fix GPS altitude decode bug.
2008-10-22 21:58:30 +00:00
obache
bdbef3d062 Update ruby-gnome2 to 0.18.0.
== Ruby-GNOME2 0.18.0: 2008-09-30

This release fixes some memory leak bugs and has new
experimental packages.

=== Changes

Ruby/GLib:
  * mkmf-gnome2.rb: add check_cairo. [Kouhei Sutou]
  * fixed memory leaks. [Kouhei Sutou]
    * [#2110165] Gdk::Pixbuf memory leak
  * install glib-enum-types.h. [Andy Spencer]
    * [#2106938] Install glib-enum-types.h

Ruby/GTK2:
  * add GTK+ 2.12 related bindings. [Guillaume Cottenceau]
  * fixed initialize order. [Kouhei Sutou]
    * [#2113491] Incorrect initialize order (compiling with mingw)

Ruby/GooCanvas [NEW][EXPERIMENTAL]:
  * added. [Kouhei Sutou]

Ruby/Pango:
  * fixed memory leaks. [Kouhei Sutou]

Ruby/GtkSourceView2 [NEW][EXPERIMENTAL]:
  * add. [yselkowitz]
2008-10-22 10:42:02 +00:00
obache
15e01176f7 Add goocanvas. 2008-10-22 10:29:45 +00:00
obache
e5a2e36ff0 Import goocanvas-0.12 as graphics/goocanvas.
GooCanvas is similar in many ways to GnomeCanvas and FooCanvas.
But it uses cairo for rendering, has an optional model/view split,
and uses interfaces for items & models (so you can easily turn any
application object into a canvas item or model).
2008-10-22 10:27:17 +00:00
bjs
6d84f393e9 Don't force using libm functions on Linux; most of the developers
use Linux, and they'd know better than I what's apporpriate.
2008-10-21 06:46:46 +00:00
bjs
9fc300342d Sync MesaLib with upstream mesa_7_0_branch. While here, patch
the r300 dri driver so that the __driConfigOptions symbol is visible.
This is necessary for xdriinfo and driconf to work.  Bump MesaLib's
PKGREVISION.
2008-10-21 06:25:26 +00:00
he
b021813da0 Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-19 19:17:40 +00:00
obache
3756725be3 Update rcairo to 1.8.0.
Release 1.8.0 (2008-09-26) Kouhei Sutou <kou@cozmixng.org>)
===========================================================

Features
--------
  * Support cairo 1.8.0.
  * Resupport cairo 1.2.x. (reported by Yusuke ENDOH)
2008-10-19 13:42:29 +00:00
tron
4d5bc729bb Set API depends here as well. This fixes the build on system with a
builtin "pixman" older than 0.12.0 (e.g. NetBSD-current or Mac OS X).
2008-10-17 13:00:44 +00:00
drochner
5f7a930515 needs gtk2>=2.24, pointed out by wiz 2008-10-17 11:26:19 +00:00
tron
f8d6236967 Remove "include/cairo/cairo-quartz-image.h" which now longer exists
(even under Mac OS X).
2008-10-17 11:21:03 +00:00
adam
7f9237dc45 Fix building with gtk-2.14.x 2008-10-16 22:12:04 +00:00
wiz
b48faee940 Update to 2.24.0 (part of gnome-2.24):
2008-09-23  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.24.0 for release

2008-09-09  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.92 for release

2008-09-08 Andreas Nilsson <andreas@imendio.com>

	* {16x16,22x22,24x24,32x32,scalable}/apps/preferences-desktop-accessibility:
	Changed the metaphor of the accessibility icon as requested by the a11y team.

2008-08-29  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.91 for release

2008-08-18  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.90 for release

2008-08-14  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* scalable/places/Makefile.am: Fixed typo that broke the
	build: user-bookmark should be user-bookmarks.

2008-08-13  Andreas Nilsson  <andreas@imendio.com>

	* {16x16,22x22,24x24,32x32,scalable}/places/user-bookmarks.png:
	added user-bookmarks icon based on bookmark-new

2008-07-21  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.3 for release

2008-06-17  Lapo Calamandrei  <calamandrei@gmail.com>

	* {32x32,48x48}/actions/zoom* : little refresh for a more consistent look.

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-settings-default-applications.png:
	Remove this icon which is no longer needed

	Fixes #538474

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Fix the help text for icon-mapping to say auto instead of $mapenable

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.2 for release

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* */apps/Makefile.am:
	* */apps/boot.*:
	Remove this from 16x16 and 22x22 as well

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* */actions/Makefile.am:
	* */apps/Makefile.am:
	* */actions/system-shutdown.*:
	* */apps/gnome-shutdown.*:
	Move the apps/gnome-shutdown icon to actions/system-shutdown

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* 24x24/apps/Makefile.am:
	* 48x48/apps/Makefile.am:
	* */apps/administration.png:
	* */apps/advanced-directory.png:
	* */apps/apacheconf.png:
	* */apps/boot.png:
	* */apps/character-picker.png:
	* */apps/config-*.png:
	* */apps/disks.png:
	* */apps/evolution-*.png:
	* */apps/gdm.png:
	* */apps/gnome-amusements.png:
	* */apps/gnome-audio.png:
	* */apps/gnome-cpu.png:
	* */apps/gnome-desktop-config.png:
	* */apps/gnome-favorites.png:
	* */apps/gnome-finance.png:
	* */apps/gnome-mini-commander.png:
	* */apps/gnome-networktool.png:
	* */apps/gnome-status.png:
	* */apps/hwbrowser.png:
	* */apps/network-config.png:
	* */apps/ooo_*.png:
	* */apps/postscript-viewer.*:
	* */apps/serviceconf.png:
	* */apps/shares.png:
	Remove some more deprecated icons

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* Makefile.am:
	Remove the intltool scripts bits, as new intltool uses installed copies

	* configure.in:
	Up the intltool requirement to 0.40.0
	Update the devel version check and add an --enable-icon-mapping
	argument to configure for forcing the use of symlinks for packagers

2008-06-15  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up version to 2.23.1 for release

2008-06-15  Lapo Calamandrei  <calamandrei@gmail.com>

	* {16x16,22x22,24x24}/actions/zoom* : redone in svg.
	* 8x8/emblems/emblem-default* : made more consistent with the rest.

2008-06-14  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Up the icon-naming-utils requirement to 0.8.7 (#523707)
	Remove 48x48/emblems/Makefile from AC_OUTPUT

	Fixes #523707

2008-06-14  Rodney Dawes  <dobey.pwns@gmail.com>

	* 48x48/animations/Makefile.am:
	Use ln -sf for installing the symlink for gnome-searchtool animation

	Fixes #538295

2008-06-12  Andreas Nilsson  <andreas@andreasn.se>

	* {16x16,22x22,24x24,32x32,scalable}/mimetypes/x-office-presentation.*:
	new icon by Lapo Calamandrei and Hylke Bons

2008-06-12  Rodney Dawes  <dobey.pwns@gmail.com>

	* 48x48/Makefile.am:
	* 48x48/emblems/:
	Remove the rest of the old emblems for now
	We can add some back as tags under Categories when we determine what
	a good default set of tags would be

2008-06-12  Jakub Steiner <jimmac@ximian.com>

	* call-start, call-stop: action icons by Lapo Calamandrei.

2008-06-12  Rodney Dawes  <dobey.pwns@gmail.com>

	* 24x24/apps/Makefile.am:
	* 24x24/apps/display-capplet.png:
	Remove this as control-center ships its own

	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-amusements.png:
	* 48x48/apps/gnome-audio.png:
	* 48x48/apps/gnome-desktop-config.png:
	* 48x48/apps/gnome-pdf.png:
	* 48x48/apps/gnome-server-config.png:
	* 48x48/apps/gnome-system-config.png:
	* 48x48/apps/hint.png:
	* 48x48/apps/im.png:
	* 48x48/apps/launcher-program.png:
	* 48x48/apps/postscript-viewer.png:
	Remove more deprecated icons

	* 48x48/emblems/Makefile.am:
	* 48x48/emblems/emblem-OK.*:
	* 48x48/emblems/emblem-camera.*:
	* 48x48/emblems/emblem-distinguished.*:
	* 48x48/emblems/emblem-draft.*:
	* 48x48/emblems/emblem-handshake.*:
	* 48x48/emblems/emblem-note.*:
	* 48x48/emblems/emblem-people.*:
	* 48x48/emblems/emblem-pictures.*:
	* 48x48/emblems/emblem-presentation.*:
	* 48x48/emblems/emblem-sound.*:
	* 48x48/emblems/emblem-trash.*:
	Remove some otherwise useless emblems

	* 48x48/emblems/Makefile.am:
	* 48x48/emblems/emblem-desktop.*:
	* scalable/emblems/Makefile.am:
	* scalable/emblems/emblem-desktop.*:
	Replaced the old emblem-desktop with a new style version

2008-06-09  Rodney Dawes  <dobey.pwns@gmail.com>

	* 32x32/apps/Makefile.am:
	* 32x32/apps/gnome-settings-ui-behavior.*:
	* scalable/apps/Makefile.am:
	* scalable/apps/gnome-settings-ui-behavior.svg:
	Remove this icon as it is no longer needed

	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-settings-accessibility-keyboard.png:
	Remove this icon as it is no longer used (in gnome-control-center)

2008-06-09  Rodney Dawes  <dobey.pwns@gmail.com>

	* 48x48/animations/Makefile.am:
	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-searchtool-animation.png:
	* 48x48/apps/gnome-searchtool-animation-rest.png:
	Replace the gnome-searchtool animation with symlinks to process-*

2008-06-09  Rodney Dawes  <dobey.pwns@gmail.com>

	* 24x24/apps/Makefile.am:
	* 24x24/apps/gnome-eyes.png:
	Remove another deprecated icon

2008-06-08  Rodney Dawes  <dobey.pwns@gmail.com>

	* 16x16/apps/Makefile.am:
	* 16x16/apps/gnome-settings-ui-behavior.*:
	* 22x22/apps/Makefile.am:
	* 22x22/apps/gnome-settings-ui-behavior.*:
	* 24x24/apps/Makefile.am:
	* 24x24/apps/gnome-settings-sound.png:
	* 24x24/apps/gnome-settings-ui-behavior.png:
	* 24x24/apps/stock-ticker.png:
	* 48x48/apps/Makefile.am:
	* 48x48/apps/eyes.png:
	* 48x48/apps/gnome-settings-sound.png:
	* 48x48/apps/stock-ticker.png:
	Remove some more deprected icons

2008-06-08  Rodney Dawes  <dobey.pwns@gmail.com>

	* 24x24/apps/Makefile.am:
	* 24x24/apps/gnome-unknown.png:
	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-unknown.png:
	Remove gnome-unknown icon as image-missing can be used instead

2008-05-07  Michael Monreal <mmonreal@svn.gnome.org>

	* 22x22/status/media-playlist-shuffle.*:
	* 24x24/status/media-playlist-shuffle.png: correct placement.

	Fixes bug #527010

2008-05-07  Lapo Calamandrei <calamandrei@gmail.com>

	* Renamed system-software-installer to system-software-install as for
	  latest naming specs additions.
	* 24x24/categories/preferences-desktop-peripherals.png: correct the
	  size. Fixes bug #531366

2008-05-05  Jakub Steiner <jimmac@ximian.com>

	* 24x24/apps/system-software-installer.png: prevent upscaling
	  a wrong size. Fixes bug #110367

2008-04-19  Rodney Dawes  <dobey.pwns@gmail.com>

	* 48x48/apps/Makefile.am:
	* 48x48/apps/gnome-grecord.*:
	Remove the old gnome-grecord icon

	Fixes #526933

2008-04-19  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in:
	Don't hardcode the path to true as /bin/true

	Fixes #525988

2008-04-12  Rodney Dawes  <dobey.pwns@gmail.com>

	* */stock/io/Makefile.am:
	* */stock/io/stock_bluetooth.*:
	Remove stock_bluetooth

2008-03-30  Rodney Dawes  <dobey.pwns@gmail.com>

	* configure.in: Up version to 2.23.0 for development series
	Add check to determine whether we are building a stable or dev build
	Disable the use and requirement of icon-naming-utils for dev builds
2008-10-16 22:01:31 +00:00
adam
27c5242c1d Added graphics/gegl version 0.0.20 2008-10-16 22:00:07 +00:00
adam
72c1af7173 GEGL (Generic Graphics Library) is a graph based image processing
framework.

GEGL provides infrastructure to do demand based cached non destructive
image editing on larger than RAM buffers. Through babl it provides
support for a wide range of color models and pixel storage formats for
input and output.
2008-10-16 21:53:57 +00:00
drochner
a0cf2f4bb7 update to 2.24.0
This switches to the gnome-2.24 release branch.
2008-10-16 18:14:13 +00:00
drochner
a5b7ba3661 drop "gail" dependency, bump PKGREVISION 2008-10-16 17:49:18 +00:00
drochner
ca60450cf9 update to 2.24.0
This switches to the gnome-2.24 release branch.
2008-10-16 17:42:52 +00:00
drochner
ad3e6b1811 update to 2.22.3
changes:
-build fixes
-rendering improvements
-bugfixes
2008-10-16 13:55:53 +00:00
drochner
e23f517170 add two patches from wiz: fix build with "ssp", "make test" fix 2008-10-16 12:22:10 +00:00
drochner
a640febe7b update to 1.8.0
from the announcement:
The dominant theme of this release is improvements to cairo's ability
to handle text. The highlights include a new "user fonts" feature as
well as a new cairo_show_text_glyphs API which allows glyphs to be
embedded in PDF output along with their original text, (for searching,
selection, and copy-and-paste). Another major feature is a revamp of
cairo's build system making it much easier to build cairo on various
platforms.
2008-10-16 10:55:08 +00:00