Skip to content

Commit

Permalink
Bunped version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aferrero2707 committed May 25, 2015
1 parent f309b8c commit e73bf99
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
=========================================
Version 0.1.1

- Added file name widget to RAW loader dialog. This allows
to edit multiple RAW files simultaneously in the same image.

- Added digital watermarking tool based on G'MIC "watermark_fourier" filter.

- Modified Hue/saturation and brightess/contrast tools to work correctly also in Lab colorspace.
- Fixed computation of saturation adjustment. Now the saturation slider produces exactly the same
output as the equivalent tool in GIMP (except that computations are in 32-bits floating point
precision and are applied non-destructively). Internally, the hue/saturation tool now works
in the HSL colorspace like GIMP (instead of the HSV colorspace used before).

- Moved "RAW developer" tool into "Load" tab and removed "raw" tab.
- Moved "Color profle conversion" tool into "Color" tab and removed "conv" tab.

- Quality of Jpeg output set to "100".

=========================================
Version 0.1.0

Expand Down
3 changes: 1 addition & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
0.1.0

0.1.1
13 changes: 13 additions & 0 deletions tools/bump_version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#! /bin/bash

version="$1"

echo "$version" > VERSION

cp CHANGELOG /tmp/__CHANGELOG__

echo "=========================================" > CHANGELOG
echo "Version $version" >> CHANGELOG
echo "" >> CHANGELOG
cat /tmp/__CHANGELOG__ >> CHANGELOG
rm /tmp/__CHANGELOG__

0 comments on commit e73bf99

Please sign in to comment.