Skip to content

Commit

Permalink
started 2.1.7-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Mar 29, 2024
1 parent 988a80f commit 500bd11
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 28 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
## Changelog

- 2.1.7 (SNAPSHOT)
- updated embedded JDK to 22+37

- 2.1.6 (01-nov-2023)
- updated embedded JDK to 21.0.1+12

Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- 2.1.7 (SNAPSHOT)
- updated embedded JDK to 22+37

- 2.1.6 (01-nov-2023)
- updated embedded JDK to 21.0.1+12

Expand Down
20 changes: 10 additions & 10 deletions japagoge-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>japagoge-pom</artifactId>
<version>2.1.6</version>
<version>2.1.7-SNAPSHOT</version>
</parent>

<artifactId>japagoge-app</artifactId>
Expand All @@ -21,13 +21,13 @@
<properties>
<embedded.jdk.provider>BELLSOFT</embedded.jdk.provider>
<embedded.jdk.type>jdk</embedded.jdk.type>
<embedded.jdk.version>21.0.1+12</embedded.jdk.version>
<embedded.jdk.version>22+37</embedded.jdk.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>9</java.version>
<app.name>${project.build.finalName}</app.name>
<executable.jar>false</executable.jar>
<jna.version>5.13.0</jna.version>
<jna.version>5.14.0</jna.version>
<maven.compiler.source>9</maven.compiler.source>
<maven.compiler.target>9</maven.compiler.target>
</properties>
Expand Down Expand Up @@ -69,7 +69,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
<executions>
<execution>
<id>make-sh</id>
Expand Down Expand Up @@ -115,7 +115,7 @@
<plugin>
<groupId>de.perdian.maven.plugins</groupId>
<artifactId>macosappbundler-maven-plugin</artifactId>
<version>1.19.0</version>
<version>1.20.1</version>
<configuration>
<plist>
<CFBundleIconFile>appico.icns</CFBundleIconFile>
Expand Down Expand Up @@ -327,7 +327,7 @@
<plugin>
<groupId>com.akathist.maven.plugins.launch4j</groupId>
<artifactId>launch4j-maven-plugin</artifactId>
<version>2.4.1</version>
<version>2.5.0</version>
<configuration>
<downloadUrl>https://bell-sw.com/pages/downloads/#/java-11-lts</downloadUrl>
<classPath>
Expand All @@ -341,11 +341,11 @@
</singleInstance>
<headerType>gui</headerType>
<versionInfo>
<fileVersion>2.1.6.0</fileVersion>
<fileVersion>2.1.7.0</fileVersion>
<txtFileVersion>${project.version}</txtFileVersion>
<fileDescription>Screen capturing in APNG and GIF</fileDescription>
<copyright>2021-2023 Igor Maznitsa</copyright>
<productVersion>2.1.6.0</productVersion>
<copyright>2021-2024 Igor Maznitsa</copyright>
<productVersion>2.1.7.0</productVersion>
<txtProductVersion>${project.version}</txtProductVersion>
<productName>${project.name}</productName>
<companyName>igormaznitsa.com</companyName>
Expand Down Expand Up @@ -702,7 +702,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.0</version>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
@SuppressWarnings("unused")
public class JapagogeFrame extends JFrame {

private static final String VERSION = "v 2.1.6";
private static final String VERSION = "v 2.1.7";

private static final Logger LOGGER = Logger.getLogger("JapagogeFrame");
private static final Color COLOR_SELECT_POSITION = Color.GREEN;
Expand Down
31 changes: 20 additions & 11 deletions japagoge-win-launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<parent>
<groupId>com.igormaznitsa</groupId>
<artifactId>japagoge-pom</artifactId>
<version>2.1.6</version>
<version>2.1.7-SNAPSHOT</version>
</parent>

<artifactId>japagoge-win-launcher</artifactId>
<packaging>mvn-golang</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mvn.golang.go.version>1.21.3</mvn.golang.go.version>
<mvn.golang.go.version>1.22.1</mvn.golang.go.version>
<mvn.golang.wrapper.version>2.3.10</mvn.golang.wrapper.version>
<maven.test.skip>true</maven.test.skip>
<target.name>japagoge</target.name>
Expand Down Expand Up @@ -47,28 +47,37 @@
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>mvn-golang-wrapper</artifactId>
<version>${mvn.golang.wrapper.version}</version>
<extensions>true</extensions>
<configuration>
<strip>true</strip>
<env>
<GO111MODULE>auto</GO111MODULE>
</env>
</configuration>
<executions>
<execution>
<id>default-get</id>
<id>install-goversion-package</id>
<phase>initialize</phase>
<goals>
<goal>install</goal>
</goals>
<configuration>
<buildFlags>
<flag>-u</flag>
</buildFlags>
<packages>
<package>github.com/josephspurrier/goversioninfo/cmd/goversioninfo/...</package>
<package>github.com/josephspurrier/goversioninfo/cmd/goversioninfo@latest</package>
</packages>
</configuration>
</execution>
<execution>
<id>default-build</id>
<phase>none</phase>
</execution>
<execution>
<id>default-get</id>
<phase>none</phase>
</execution>
<execution>
<id>build-for-amd64</id>
<phase>compile</phase>
<goals>
<goal>build</goal>
</goals>
<configuration>
<targetOs>windows</targetOs>
<targetArch>amd64</targetArch>
Expand Down
10 changes: 5 additions & 5 deletions japagoge-win-launcher/src/versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"FileVersion": {
"Major": 2,
"Minor": 1,
"Patch": 6,
"Patch": 7,
"Build": 0
},
"ProductVersion": {
"Major": 2,
"Minor": 1,
"Patch": 6,
"Patch": 7,
"Build": 0
},
"FileFlagsMask": "3f",
Expand All @@ -22,14 +22,14 @@
"Comments": "Japagoge screen recorder.",
"CompanyName": "Igor Maznitsa",
"FileDescription": "Japagoge screen recorder",
"FileVersion": "v2.1.6.0",
"FileVersion": "v2.1.7.0",
"InternalName": "japagoge.exe",
"LegalCopyright": "Copyright (c) 2021-2023 Igor Maznitsa",
"LegalCopyright": "Copyright (c) 2021-2024 Igor Maznitsa",
"LegalTrademarks": "",
"OriginalFilename": "japagoge.exe",
"PrivateBuild": "",
"ProductName": "Japagoge screen recorder",
"ProductVersion": "v2.1.6.0",
"ProductVersion": "v2.1.7.0",
"SpecialBuild": ""
},
"VarFileInfo": {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.igormaznitsa</groupId>
<artifactId>japagoge-pom</artifactId>
<version>2.1.6</version>
<version>2.1.7-SNAPSHOT</version>
<packaging>pom</packaging>

<description>Screen recorder to save animation as APNG and GIF files</description>
Expand Down

0 comments on commit 500bd11

Please sign in to comment.