Update version
This commit is contained in:
parent
57950fb1ff
commit
406f8c6846
|
@ -11,6 +11,12 @@ If this version doesn't do what you want, don't use it ... simple.
|
||||||
|
|
||||||
Changes from 0xb00bface's v5.3.0 version.
|
Changes from 0xb00bface's v5.3.0 version.
|
||||||
|
|
||||||
|
25.08.31
|
||||||
|
========================
|
||||||
|
* Fix for SC Streams
|
||||||
|
* Add CAMBB search
|
||||||
|
* Adjust server heapsize and Xmx value to 4GB
|
||||||
|
|
||||||
25.05.29
|
25.05.29
|
||||||
========================
|
========================
|
||||||
* Updated Help tab layout a little, now displays WAN IP if it can get it
|
* Updated Help tab layout a little, now displays WAN IP if it can get it
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>25.05.29</version>
|
<version>25.8.31</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>25.05.29</version>
|
<version>25.8.31</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>25.05.29</version>
|
<version>25.8.31</version>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>../common</module>
|
<module>../common</module>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>ctbrec</groupId>
|
<groupId>ctbrec</groupId>
|
||||||
<artifactId>master</artifactId>
|
<artifactId>master</artifactId>
|
||||||
<version>25.05.29</version>
|
<version>25.8.31</version>
|
||||||
<relativePath>../master</relativePath>
|
<relativePath>../master</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
|
||||||
<meta name="description" content="CTB Recorder is a free recording software for Chaturbate">
|
<meta name="description" content="CTB Recorder is a free recording software for Chaturbate">
|
||||||
<meta name="author" content="">
|
<meta name="author" content="">
|
||||||
<meta name="version" content="5.3.2">
|
<meta name="version" content="25.8.31">
|
||||||
|
|
||||||
<title>CTB Recorder 5.3.2</title>
|
<title>CTB Recorder 25.8.31</title>
|
||||||
|
|
||||||
<!-- Bootstrap core CSS -->
|
<!-- Bootstrap core CSS -->
|
||||||
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
|
|
@ -1,21 +1,30 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Usage: ./update-version.sh 1.2.3
|
# Usage: ./update-version.sh 25.08.29
|
||||||
NEW_VERSION=$1
|
INPUT_VERSION=$1
|
||||||
|
|
||||||
if [[ -z "$NEW_VERSION" ]]; then
|
if [[ -z "$INPUT_VERSION" ]]; then
|
||||||
echo "Usage: $0 <new-version>"
|
echo "Usage: $0 <YY.MM.DD>"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pushd ./master
|
# Convert to Launch4j-safe version
|
||||||
echo "Updating Maven project version to $NEW_VERSION..."
|
IFS='.' read -r YY MM DD <<< "$INPUT_VERSION"
|
||||||
|
YY=$((10#$YY))
|
||||||
|
MM=$((10#$MM))
|
||||||
|
DD=$((10#$DD))
|
||||||
|
SAFE_VERSION="${YY}.${MM}.${DD}"
|
||||||
|
|
||||||
|
echo "Updating Maven project version to $SAFE_VERSION..."
|
||||||
|
|
||||||
|
pushd ./master || exit 1
|
||||||
|
|
||||||
# Step 1: Update the parent POM and all modules
|
# Step 1: Update the parent POM and all modules
|
||||||
mvn versions:set -DnewVersion="$NEW_VERSION"
|
mvn versions:set -DnewVersion="$SAFE_VERSION"
|
||||||
|
|
||||||
# Step 2: Commit changes
|
# Step 2: Commit changes
|
||||||
mvn versions:commit
|
mvn versions:commit
|
||||||
|
|
||||||
echo "Version updated to $NEW_VERSION in all modules."
|
echo "Version updated to $SAFE_VERSION in all modules."
|
||||||
popd
|
|
||||||
|
popd || exit 1
|
||||||
|
|
Loading…
Reference in New Issue