Skip to content

Commit 8775684

Browse files
committed
1.0.52 release
1 parent d148139 commit 8775684

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

IMG/cpio_x86/ventoy/tool/vtoytool_install.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,15 @@ else
8484

8585
if $GREP -q 64 $VTOY_PATH/ventoy_arch; then
8686
echo "use veritysetup64" >>$VTLOG
87-
$BUSYBOX_PATH/cp -a $VTOY_PATH/tool/veritysetup64 $VTOY_PATH/tool/veritysetup
87+
if [ -f $VTOY_PATH/tool/veritysetup64 ]; then
88+
$BUSYBOX_PATH/cp -a $VTOY_PATH/tool/veritysetup64 $VTOY_PATH/tool/veritysetup
89+
fi
8890
else
8991
echo "use veritysetup32" >>$VTLOG
90-
$BUSYBOX_PATH/cp -a $VTOY_PATH/tool/veritysetup32 $VTOY_PATH/tool/veritysetup
92+
93+
if [ -f $VTOY_PATH/tool/veritysetup32 ]; then
94+
$BUSYBOX_PATH/cp -a $VTOY_PATH/tool/veritysetup32 $VTOY_PATH/tool/veritysetup
95+
fi
9196
fi
9297
fi
9398

INSTALL/README

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ Please refer https://www.ventoy.net/en/doc_start.html for details.
2222
2. open your browser and visit http://127.0.0.1:24680
2323

2424

25+
========= VentoyGUI ===================
26+
VentoyGUI is native GUI program for Linux (GTK/QT)
27+
1. Just double-click the file (e.g. VentoyGUI.x86_64)
28+
2. If it can not startup after double-click, you can open the terminal and just execute the file (e.g. ./VentoyGUI.x86_64)
29+
30+
2531
========== CreatePersistentImg.sh ===============
2632

2733
sudo sh CreatePersistentImg.sh [ -s SIZE_IN_MB ] [ -t FSTYPE ] [ -l LABEL ] for example:

INSTALL/grub/grub.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1963,7 +1963,7 @@ function img_unsupport_menuentry {
19631963
#############################################################
19641964
#############################################################
19651965
1966-
set VENTOY_VERSION="1.0.51"
1966+
set VENTOY_VERSION="1.0.52"
19671967
19681968
#ACPI not compatible with Window7/8, so disable by default
19691969
set VTOY_PARAM_NO_ACPI=1

0 commit comments

Comments
 (0)