Skip to content

Commit

Permalink
Bump version to 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
heikopanjas committed Oct 21, 2024
1 parent b48617d commit d0ca3e6
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
build_timestamp: ${{steps.timestamp.outputs.timestamp}}
build_id: R5.1_${{github.run_number}}_${{steps.timestamp.outputs.timestamp}}
build_id: R5.1.1_${{github.run_number}}_${{steps.timestamp.outputs.timestamp}}
steps:
- name: configure build id
id: timestamp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
build_timestamp: ${{steps.timestamp.outputs.timestamp}}
build_id: V5.1_${{github.run_number}}_${{steps.timestamp.outputs.timestamp}}
build_id: V5.1.1_${{github.run_number}}_${{steps.timestamp.outputs.timestamp}}
steps:
- name: configure build id
id: timestamp
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $ ./build.sh
To install Ultraschall, get the installer artifact in `linux/build/artifacts` (tar.gz file):

```bash
$ tar xvf ULTRASCHALL_R5.1-preview.tar.gz
$ cd R5.1-preview
$ tar xvf ULTRASCHALL_R5.1.1-preview.tar.gz
$ cd R5.1.1-preview
$ ./install.sh
```
6 changes: 3 additions & 3 deletions linux/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ULTRASCHALL_CMAKE_TOOL=cmake
ULTRASCHALL_PANDOC_TOOL=pandoc

ULTRASCHALL_BUILD_PRODUCT="ultraschall"
ULTRASCHALL_BUILD_VERSION="5.1"
ULTRASCHALL_BUILD_VERSION="5.1.1"
ULTRASCHALL_BUILD_DATE=$(date -u "+%Y%m%dT%H%M%S")Z
ULTRASCHALL_BUILD_ID=$(uuidgen)

Expand Down Expand Up @@ -82,9 +82,9 @@ fi

# Specify build id
if [ $ULTRASCHALL_BUILD_RELEASE -eq 1 ]; then
ULTRASCHALL_BUILD_ID="Ultraschall-5.1"
ULTRASCHALL_BUILD_ID="Ultraschall-5.1.1"
else
ULTRASCHALL_BUILD_ID="ULTRASCHALL_R5.1-preview"
ULTRASCHALL_BUILD_ID="ULTRASCHALL_R5.1.1-preview"
fi

ULTRASCHALL_INSTALLER_DIR="$ULTRASCHALL_BUILD_ID"
Expand Down
4 changes: 2 additions & 2 deletions macos/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,9 @@ if [ -d $ULTRASCHALL_PAYLOAD_DIRECTORY ]; then
#-------------------------------------------------------------------------------
echo "Creating final installer package..."
if [ $ULTRASCHALL_BUILD_RELEASE -eq 1 ]; then
ULTRASCHALL_BUILD_NAME="Ultraschall-5.1"
ULTRASCHALL_BUILD_NAME="Ultraschall-5.1.1"
else
ULTRASCHALL_BUILD_NAME="ULTRASCHALL_R5.1-preview"
ULTRASCHALL_BUILD_NAME="ULTRASCHALL_R5.1.1-preview"
fi


Expand Down
10 changes: 5 additions & 5 deletions macos/installer-scripts/distribution.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>Ultraschall-5.1</title>
<title>Ultraschall-5.1.1</title>
<organization>fm.ultraschall</organization>
<options customize="never" require-scripts="true" rootVolumeOnly="true" />
<domains enable_anywhere="false" enable_localSystem="false" enable_currentUserHome="true" />
Expand All @@ -9,16 +9,16 @@
<!-- Define documents displayed at various steps -->
<license file="license.html" mime-type="text/html" />
<!-- List all component packages -->
<pkg-ref id="fm.ultraschall.reaper.theme" version="5.1">
<pkg-ref id="fm.ultraschall.reaper.theme" version="5.1.1">
ultraschall-reaper-theme.pkg
</pkg-ref>
<pkg-ref id="fm.ultraschall.soundboard" version="5.1">
<pkg-ref id="fm.ultraschall.soundboard" version="5.1.1">
ultraschall-soundboard.pkg
</pkg-ref>
<pkg-ref id="fm.ultraschall.studiolink" version="5.1">
<pkg-ref id="fm.ultraschall.studiolink" version="5.1.1">
studio-link.pkg
</pkg-ref>
<pkg-ref id="fm.ultraschall.studiolink.onair" version="5.1">
<pkg-ref id="fm.ultraschall.studiolink.onair" version="5.1.1">
studio-link-onair.pkg
</pkg-ref>
<!-- List them again here. They can now be organised as a hierarchy if you want. -->
Expand Down
4 changes: 2 additions & 2 deletions windows/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Write-Host "*
Write-Host "**********************************************************************"

$BuildDirectory = "./build"
$BuildId = "ULTRASCHALL_R5.1-preview"
$BuildId = "ULTRASCHALL_R5.1.1-preview"
$BuildFailed = $False

if ($args.Count -gt 0) {
Expand All @@ -14,7 +14,7 @@ if ($args.Count -gt 0) {
return
}
elseif ($args[0] -eq "--release") {
$BuildId = "Ultraschall-5.1"
$BuildId = "Ultraschall-5.1.1"
}
}

Expand Down
4 changes: 2 additions & 2 deletions windows/installer-scripts/distribution.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<?define UpgradeCode="D1D96805-203A-4323-B50A-6DE876021B35" ?>
<!-- The URL for add/remove programs -->
<?define InfoURL="http://ultraschall.fm/" ?>
<?define VersionNumber="5.1" ?>
<?define VersionNumber="5.1.1" ?>
<?define ProductName="$(env.ULTRASCHALL_BUILD_ID)" ?>
<Product Id="*" Name="$(var.ProductName)" Language="1033" Version="$(var.VersionNumber)" Manufacturer="ultraschall.fm" UpgradeCode="$(var.UpgradeCode)">
<Package Id="*" InstallerVersion="301" Compressed="yes" Platform="x64" Description="Podcasting Extensions for the REAPER DAW" Comments="Installs the Ultraschall REAPER Extension $(var.VersionNumber)" />
Expand All @@ -27,7 +27,7 @@
<Custom Action="ULTRASCHALL_PreInstallActionId" Before="CostInitialize">NOT REMOVE</Custom>
</InstallExecuteSequence>

<Property Id="DiskPrompt" Value="Ultraschall 5.1 Installation [1]" />
<Property Id="DiskPrompt" Value="Ultraschall 5.1.1 Installation [1]" />
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="AppDataFolder">
<Directory Id="ReaperFolder" Name="REAPER">
Expand Down

0 comments on commit d0ca3e6

Please sign in to comment.