Bumping versions to 2.3-SNAPSHOT.

This commit is contained in:
Harald Kuhr 2009-10-31 19:10:27 +01:00
parent 68b30413ba
commit 4674b9e344
9 changed files with 57 additions and 25 deletions

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>twelvemonkeys-core</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys Core</name>
<description>
The TwelveMonkeys Core library. Contains common utility classes.

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-batik</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO Batik Plugin</name>
<description>
<![CDATA[
@ -17,7 +17,7 @@
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -5,12 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-core</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO Core</name>
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
</project>

View File

@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-ico</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO ICO plugin</name>
<description>ImageIO plugin for Windows Icon (ICO) and Cursor (CUR) format.</description>
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-iff</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO IFF plugin</name>
<description>
ImageIO plugin for Amiga/Electronic Arts Interchange Filed Format (IFF)
@ -15,7 +15,7 @@
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -5,14 +5,14 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-pict</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO PICT plugin</name>
<description>ImageIO plugin for Apple Mac Paint Picture (PICT) format.</description>
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -14,7 +14,7 @@
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>
@ -28,4 +28,29 @@
<classifier>tests</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- TODO: Make default -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<archive>
<manifest>
<!--<mainClass>com.mycompany.app.App</mainClass>-->
<packageName>com.twelvemonkeys.imageio.plugins.psd</packageName>
</manifest>
<manifestEntries>
<Implementation-Title>${project.name}</Implementation-Title>
<Implementation-Vendor>TwelveMonkeys</Implementation-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-URL>https://twelvemonkeys-imageio.dev.java.net/</Implementation-URL>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.twelvemonkeys.imageio</groupId>
<artifactId>twelvemonkeys-imageio-thumbsdb</artifactId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
<name>TwelveMonkeys ImageIO Thumbs.db plugin</name>
<description>
ImageIO plugin for Windows Thumbs DB (Thumbs.db) format.
@ -14,7 +14,7 @@
<parent>
<artifactId>twelvemonkeys-imageio</artifactId>
<groupId>com.twelvemonkeys</groupId>
<version>2.2</version>
<version>2.3-SNAPSHOT</version>
</parent>
<dependencies>

View File

@ -1,11 +1,18 @@
Consider creating a raw ImageReader (or util class?) that can read raw bitmaps:
- Interleaved (A)RGB (as in BMP, PICT, IFF PBM etc) -> A1R1G1B1, A2R2G2B2, ..., AnRnGnNn
- Channeled (A)RGB (as in Photoshop) -> A1A2...An, R1R2...Rn, G1G2...Gn, B1B2...Bn
- Planar RGB (as in IFF ILBM) -> ....
Formats that internally have these structures could delegate to an instance of this class.
Could also be interesting to allow for raw reading using a RawImageReader.
- Would need to specify width, height
- Pixel layout
- Channel order
- Compression? RLE/PackBits/LZW/ZIP?
- IndexColorModel?
- Get vendor name/version for SPIs from manifest.
Package pkg = getClass().getPackage();
version = pkg.getImplementationVersion();
vendor = pkg.getImplementationVendor();
specTitle = pkg.getSpecificationTitle();
- Consider creating a raw ImageReader (or util class?) that can read raw bitmaps:
o Interleaved (A)RGB (as in BMP, PICT, IFF PBM etc) -> A1R1G1B1, A2R2G2B2, ..., AnRnGnNn
o Channeled (A)RGB (as in Photoshop) -> A1A2...An, R1R2...Rn, G1G2...Gn, B1B2...Bn
o Planar RGB (as in IFF ILBM) -> ....
Formats that internally have these structures could delegate to an instance of this class.
Could also be interesting to allow for raw reading using a RawImageReader.
o Would need to specify width, height
o bit depth
o Pixel layout (planar, channeled, interleaved)
o Channel order
o Compression? RLE/PackBits/LZW/ZIP?
o IndexColorModel?