News and announcements about RVGL's development.
-
Huki
- Developer
- Posts: 399
Unread post
by Huki » Mon Oct 04, 2021 3:06 pm
RVGL has been updated to
21.0930a!
Update:
Download
Win32 [
setup |
7z ]
Download
Win64 [
setup |
7z ]
Download
Linux [
setup |
7z ]
Download
macOS [
dmg ]
Download
Android [
apk ]
Visit the topics for the
Android version and the
Shader edition for more information.
Goodies:
Download the
Dreamcast Pack:
rvgl_dcpack.zip
Download the
Community Soundtrack:
soundtrack.zip
Download the
Controller Map Android app:
rvgl_controllermap.apk
More about the update and RVGL:
changelog |
docs
Full game downloads are available at
Re-Volt I/O.
The network version has been updated!
macOS Update:
The new and improved macOS build is finally here.
- Content is no longer loaded directly from the bundle. Instead, files are copied to Application Support on first run, and after each update. This ensures that content is not lost when the app is updated or replaced. [1]
- The game now supports rendering at High DPI resolutions on Retina displays. [2]
- A bug affecting M1 devices has been fixed. (#1452)
ARM Linux:
The Linux package now includes builds for
armhf (32-bit armv7) and
arm64 (64-bit armv8 or aarch64) architectures. The launch script auto-detects your processor and runs the appropriate build.
Bug Fixes:
- Fixed an error about root permissions on Linux. (#1494)
- The low-CoM fix uses a better offset computation.
- Fixed Object Animation glitches in sound effects.
- Fixed reposition triggered immediately at countdown in some custom tracks.
- Fixed the displayed list of stars overflowing in Stunt Arena levels with more than 20 stars.
- Fixed a crash on Windows 7 when certain controllers are plugged in.
- Online: Fixed several inconsistencies in Battle Tag mode.
- Online: Fixed rare instances where a weapon can be spawned twice.
► Show changelog of this version
21.0930a-1:
| Bug-fix release.
| Pumped network version.
Add:
[General]
- Linux: Builds for armhf and arm64 are now included. The 'rvgl' launch
script is updated to auto-detect these architectures and launch the
appropriate build.
Mod:
[General]
- Linux: The 'rvgl' launch script now uses 'ldd' in place of 'ldconfig' to
resolve libraries. This fixes an error message about root permissions.
- Weapon generation and firework target display use a better offset
computation for the low-CoM fix.
Fix:
[General]
- Object Animation: Fixed interpolation glitches in sound effects.
- Fixed a reposition immediately at countdown in some custom tracks.
- Fixed the displayed list of stars overflowing in Stunt Arena.
[Input]
- Fixed a crash on Windows 7 when certain controllers are plugged in.
[Multi]
- Fixed various inconsistencies in the transfer of star in Battle Tag,
like the wrong player appearing to hold the star, timer freezing and
inability to transfer the star.
- Improved packet verification and fixed a bug that caused the same packet to
be received twice in rare occasions.
-
pintassilgo
- Posts: 5
Unread post
by pintassilgo » Wed Oct 13, 2021 3:57 am
Hi,
I'm confused about all the different packs and updates.
I downloaded the latest rvgl_full_win64_online.zip. From the latest content pack in June (by the way, all "Notes" links are broken), it's said that, for instance, the car "AMA 25" was removed from bonus pack (truly removed, not moved to main). But this car is in the full zip I downloaded. Is this right? AMA 25 was just an example, the same happens with Afterburner and others, supposedly removed but still present in latest packs.
-
BurnRubr
- Posts: 30
- From: Australia
Unread post
by BurnRubr » Thu Nov 18, 2021 9:25 am
Have problems with this version on m1 max 32 core macbook pro 64 gig ram memory 4 TB ssd
Says game data seems to be missing and there is no rvgl folder in the library application support folder
-
jamz
- Posts: 1
Unread post
by jamz » Tue Nov 23, 2021 12:59 am
Hello. I'm new to the forum because I'm trying to install Re-volt on the Pi400, for me and my kids
Problem is, while running setup it fails, with the same error as this post:
viewtopic.php?f=8&t=1494&p=6031&hilit=l ... ynth#p6031
7wells wrote: ↑Fri Sep 24, 2021 3:35 pm
I cannot install RVGL on Debian 11 (stable, clean installation):
Code: Select all
user@debian:~/.rvgl$ ./setup
Welcome to RVGL setup.
WARNING: This will modify your RVGL installation in:
/home/user/.rvgl
Are you sure? [y/N] y
Fixing filenames...
./cars/phim_ultraRV was not renamed
Clearing libs...
Creating launcher...
Setting permissions...
Registering for lobby...
./rvgl: Zeile 24: ldconfig: Kommando nicht gefunden.
./rvgl: Zeile 24: ldconfig: Kommando nicht gefunden.
./rvgl: Zeile 24: ldconfig: Kommando nicht gefunden.
Error loading libfluidsynth.so.3: libfluidsynth.so.3: cannot open shared object file: No such file or directory
Done.
Press any key to continue.
The culprit is
ldconfig in line 24 of the
rvgl script that is called:
Code: Select all
#!/bin/bash
DIR="$(dirname "$(readlink -f "$0")")"
cd "$DIR"
LIB_DIR="$DIR/lib"
if [ $(uname -m) = "x86_64" ]; then
exec="./rvgl.64"
lib="lib64"
else
exec="./rvgl.32"
lib="lib32"
fi
libnames=(
"libenet.so.7"
"libopenal.so.1"
"libunistring.so.2"
)
for file in ${libnames[@]}; do
if [ ! "$(ldconfig -p | grep $file)" ]; then
[ -e "$LIB_DIR/$lib/$file" ] && [ ! -e "$LIB_DIR/$file" ] && ln -s "$LIB_DIR/$lib/$file" "$LIB_DIR"
else
[ -e "$LIB_DIR/$file" ] && rm "$LIB_DIR/$file"
fi
done
export LD_LIBRARY_PATH=$LIB_DIR:$LD_LIBRARY_PATH
$exec "$@"
Because
ldconfig needs root (sudo). What can I do? Executing the
rvgl script as root is not a good idea, or is it?
Well, I can execute the
rvgl.64 binary, and the game works, apart from these (same) error message after closing:
Code: Select all
user@debian~/.rvgl$ ./rvgl.64
Error loading libfluidsynth.so.3: libfluidsynth.so.3: cannot open shared object file: No such file or directory
Thanks for your help to get these 2 issues (ldconfig and missing libs) resolved!
But if I load ./rvgl.armhf it loads ! So, can I ignore the setup ? What can we do to fix this?
Many thanks in advance.
-
Huki
- Developer
- Posts: 399
Unread post
by Huki » Mon Dec 27, 2021 8:12 am
jamz wrote: ↑Tue Nov 23, 2021 12:59 am
Hello. I'm new to the forum because I'm trying to install Re-volt on the Pi400, for me and my kids
Problem is, while running setup it fails, with the same error as this post:
viewtopic.php?f=8&t=1494&p=6031&hilit=l ... ynth#p6031
[...]
But if I load ./rvgl.armhf it loads ! So, can I ignore the setup ? What can we do to fix this?
Many thanks in advance.
This problem was already fixed in the 21.0930a release. Are you sure you're getting the same error? Paste the entire output here so we can see what's going on.