Update version

This commit is contained in:
Jafea7 2025-08-31 16:46:26 +10:00
parent 6c512e5c0f
commit 48de109961
7 changed files with 31 additions and 16 deletions

View File

@ -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.
25.08.31
========================
* Fix for SC Streams
* Add CAMBB search
* Adjust server heapsize and Xmx value to 4GB
25.05.29
========================
* Updated Help tab layout a little, now displays WAN IP if it can get it

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.29</version>
<version>25.8.31</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.29</version>
<version>25.8.31</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -11,7 +11,7 @@
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<packaging>pom</packaging>
<version>25.05.29</version>
<version>25.8.31</version>
<modules>
<module>../common</module>

View File

@ -8,7 +8,7 @@
<parent>
<groupId>ctbrec</groupId>
<artifactId>master</artifactId>
<version>25.05.29</version>
<version>25.8.31</version>
<relativePath>../master</relativePath>
</parent>

View File

@ -7,9 +7,9 @@
<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="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 -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">

View File

@ -1,21 +1,30 @@
#!/bin/bash
# Usage: ./update-version.sh 1.2.3
NEW_VERSION=$1
# Usage: ./update-version.sh 25.08.29
INPUT_VERSION=$1
if [[ -z "$NEW_VERSION" ]]; then
echo "Usage: $0 <new-version>"
if [[ -z "$INPUT_VERSION" ]]; then
echo "Usage: $0 <YY.MM.DD>"
exit 1
fi
pushd ./master
echo "Updating Maven project version to $NEW_VERSION..."
# Convert to Launch4j-safe 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
mvn versions:set -DnewVersion="$NEW_VERSION"
mvn versions:set -DnewVersion="$SAFE_VERSION"
# Step 2: Commit changes
mvn versions:commit
echo "Version updated to $NEW_VERSION in all modules."
popd
echo "Version updated to $SAFE_VERSION in all modules."
popd || exit 1