Skip to content

Commit 73876e0

Browse files
author
Matthäus Mayer
authored
Merge pull request #24 from levigo/release/prepare-2.0
Release/prepare 2.0
2 parents 29f7f7c + df1b3ae commit 73876e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+16
-180
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To use the plugin within a Maven POM-based project, simply include a dependency
4949
<dependency>
5050
<groupId>com.levigo.jbig2</groupId>
5151
<artifactId>levigo-jbig2-imageio</artifactId>
52-
<version>1.6.5</version>
52+
<version>2.0</version>
5353
</dependency>
5454

5555
### How to deal with embedded JBIG2 data

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.levigo.jbig2</groupId>
55
<artifactId>levigo-jbig2-imageio</artifactId>
66
<name>jbig2-imageio</name>
7-
<version>1.6.6-SNAPSHOT</version>
7+
<version>2.0-SNAPSHOT</version>
88

99
<description>Java Image I/O plugin for reading JBIG2-compressed image data</description>
1010
<url>https://github.com/levigo/jbig2-imageio</url>

release-notes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Release notes
22

33
## Version 2.0.0 (2017-06-02)
4-
- [Issue #21](https://github.com/levigo/jbig2-imageio/issues/21): Move repetition of previous code length into correct scope. See ([Merge request #22](https://github.com/levigo/jbig2-imageio/pull/22)).
4+
- Java 9 support.
5+
- [Issue #10](https://github.com/levigo/jbig2-imageio/issues/10): Use general service loading instead of Image I/O specific. See [merge request #18](https://github.com/levigo/jbig2-imageio/pull/18).
6+
- [Issue #11](https://github.com/levigo/jbig2-imageio/issues/11): Remove @author info from javadocs.
7+
- [Issue #16](https://github.com/levigo/jbig2-imageio/issues/16): Replace deprecated ```STANDARD_INPUT_TYPE``` constant with self-created array.
8+
- [Issue #21](https://github.com/levigo/jbig2-imageio/issues/21): Move repetition of previous code length into correct scope. See [merge request #22](https://github.com/levigo/jbig2-imageio/pull/22).
59

610
## Version 1.6.5 (2015-12-29)
711
- Issue #5: Deployment to maven central

src/main/java/com/levigo/jbig2/Bitmap.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121

2222
/**
2323
* This class represents a bi-level image that is organized like a bitmap.
24-
*
25-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
2624
*/
2725
public class Bitmap {
2826

src/main/java/com/levigo/jbig2/Dictionary.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
/**
2727
* Interface for all JBIG2 dictionaries segments.
28-
*
29-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
30-
*
3128
*/
3229
public interface Dictionary extends SegmentData {
3330

src/main/java/com/levigo/jbig2/JBIG2Document.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232

3333
/**
3434
* This class represents the document structure with its pages and global segments.
35-
*
36-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
3735
*/
3836
class JBIG2Document {
3937
private static final Logger log = LoggerFactory.getLogger(JBIG2Document.class);

src/main/java/com/levigo/jbig2/JBIG2Globals.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
*
3333
* This segments will be decoded on demand and all results are stored in the document object and can
3434
* be retrieved from there.
35-
*
36-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
37-
*
3835
*/
3936
public class JBIG2Globals {
4037
private static final Logger log = LoggerFactory.getLogger(JBIG2Globals.class);

src/main/java/com/levigo/jbig2/JBIG2ImageMetadata.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525

2626
/**
2727
* @see IIOMetadata
28-
*
29-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
30-
*
3128
*/
3229
public class JBIG2ImageMetadata extends IIOMetadata {
3330

src/main/java/com/levigo/jbig2/JBIG2ImageMetadataFormat.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
/**
2525
* @see IIOMetadataFormat
2626
* @see IIOMetadataFormatImpl
27-
*
28-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
29-
*
3027
*/
3128
public class JBIG2ImageMetadataFormat extends IIOMetadataFormatImpl {
3229

src/main/java/com/levigo/jbig2/JBIG2ImageReader.java

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
/**
22
* Copyright (C) 1995-2015 levigo holding gmbh.
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* This program is free software: you can redistribute it and/or modify it under the terms of the
5+
* GNU General Public License as published by the Free Software Foundation, either version 3 of the
6+
* License, or (at your option) any later version.
87
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
8+
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
9+
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10+
* General Public License for more details.
1311
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
12+
* You should have received a copy of the GNU General Public License along with this program. If
13+
* not, see <http://www.gnu.org/licenses/>.
1614
*/
1715

1816
package com.levigo.jbig2;
@@ -42,8 +40,6 @@
4240

4341
/**
4442
* @see ImageReader
45-
*
46-
* @author <a href="mailto:m.krzikalla@levigo.de">Matthäus Krzikalla</a>
4743
*/
4844
public class JBIG2ImageReader extends ImageReader {
4945
private static final Logger log = LoggerFactory.getLogger(JBIG2ImageReader.class);

0 commit comments

Comments
 (0)