Skip to content

Commit 69d0901

Browse files
committed
chore: dynamicize AppImage filename using version from Cargo.toml
1 parent b03c0b2 commit 69d0901

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

TODO.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
# RustTracker TODO List
22

3-
## Version 0.8.8: Scalable panels
4-
5-
** Feature Request:**
6-
7-
Without adding any visible borders, the user should be able to dynamically resize the visualizer by dragging the horizontally intersecting line up/down. This would rescale the top three panels (or video window if active) and dynamically scaling the vizualization's graphics.
8-
If the user does not have a mouse then this should be acheived by using a gamepad's right stick. Moving the stick up and down would rescale the top three panels (or video window if active) and dynamically scaling the vizualization's graphics in the bottom panel.
9-
10-
11-
## Version 0.9: Neon Room Ray Traced Visualizer
12-
133
**Feature Request:**
144
Load `assets/neon_room.blend` to use as the basis for a new visualizer. It is a basic room scene with objects labelled after spatial channels (Front, LFE, center, rear, etc).
155

build_in_container.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ cp AppRun.template AppDir/AppRun
4747
chmod +x AppDir/AppRun
4848

4949
echo 'Building final AppImage...'
50-
APPIMAGE_EXTRACT_AND_RUN=1 ./appimagetool-x86_64.AppImage AppDir RustTracker-SteamDeck-v0.8.10.AppImage
50+
VERSION=$(grep -m 1 '^version = ' Cargo.toml | sed 's/version = "\(.*\)"/\1/')
51+
TAG="v$VERSION"
52+
APPIMAGE_EXTRACT_AND_RUN=1 ./appimagetool-x86_64.AppImage AppDir RustTracker-SteamDeck-$TAG.AppImage
5153

5254
echo 'Done!'

0 commit comments

Comments
 (0)