mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Update CHANGES for 3.4.1; misc plugin updates
This commit is contained in:
parent
6fe3a775a0
commit
3d8068009f
9
CHANGES
9
CHANGES
|
@ -303,7 +303,7 @@
|
||||||
- Many small updates to the Android app, Barcode Scanner, including rare bug fixes and translation updates.
|
- Many small updates to the Android app, Barcode Scanner, including rare bug fixes and translation updates.
|
||||||
The 2.1 release corresponds substantially to v4.3.1.
|
The 2.1 release corresponds substantially to v4.3.1.
|
||||||
- Many ports of Java updates to C++ port
|
- Many ports of Java updates to C++ port
|
||||||
|
|
||||||
2.2 (14 May 2013)
|
2.2 (14 May 2013)
|
||||||
|
|
||||||
- Retire Symbian port
|
- Retire Symbian port
|
||||||
|
@ -392,3 +392,10 @@
|
||||||
- No more releases of the Barcode Scanner app
|
- No more releases of the Barcode Scanner app
|
||||||
- Minor bug fixes to Code93Writer
|
- Minor bug fixes to Code93Writer
|
||||||
- Minor improvements to QR code detection
|
- Minor improvements to QR code detection
|
||||||
|
|
||||||
|
3.4.1 (30 Sep 2020)
|
||||||
|
|
||||||
|
- Wifi QR codes now recognize PH2:, not H:, for phase 2 method
|
||||||
|
- Minor bug fixes and improvements
|
||||||
|
|
||||||
|
Note that further release notes will be published at https://github.com/zxing/zxing/releases
|
||||||
|
|
8
pom.xml
8
pom.xml
|
@ -67,7 +67,7 @@
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<android.home>${env.ANDROID_HOME}</android.home>
|
<android.home>${env.ANDROID_HOME}</android.home>
|
||||||
<proguard.version>7.0.0</proguard.version>
|
<proguard.version>7.0.0</proguard.version>
|
||||||
<proguard.plugin.version>2.3.0</proguard.plugin.version>
|
<proguard.plugin.version>2.3.1</proguard.plugin.version>
|
||||||
<!-- This can't reference project.version as some subprojects version differently -->
|
<!-- This can't reference project.version as some subprojects version differently -->
|
||||||
<zxing.version>3.4.1-SNAPSHOT</zxing.version>
|
<zxing.version>3.4.1-SNAPSHOT</zxing.version>
|
||||||
<android.platform>22</android.platform>
|
<android.platform>22</android.platform>
|
||||||
|
@ -287,7 +287,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-project-info-reports-plugin</artifactId>
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.1.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
@ -453,7 +453,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
<artifactId>checkstyle</artifactId>
|
<artifactId>checkstyle</artifactId>
|
||||||
<version>8.35</version>
|
<version>8.36.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -519,7 +519,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jacoco</groupId>
|
<groupId>org.jacoco</groupId>
|
||||||
<artifactId>jacoco-maven-plugin</artifactId>
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
<version>0.8.5</version>
|
<version>0.8.6</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework</groupId>
|
<groupId>org.springframework</groupId>
|
||||||
<artifactId>spring-test</artifactId>
|
<artifactId>spring-test</artifactId>
|
||||||
<version>5.2.8.RELEASE</version>
|
<version>5.2.9.RELEASE</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
Loading…
Reference in a new issue