Skip to content

Commit

Permalink
1.0.48 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ventoy committed Aug 1, 2021
1 parent b003105 commit d843398
Show file tree
Hide file tree
Showing 16 changed files with 79 additions and 229 deletions.
10 changes: 9 additions & 1 deletion .github/ISSUE_TEMPLATE/issue_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body:
attributes:
label: Ventoy Version
description: What version of ventoy are you running?
placeholder: 1.0.47
placeholder: 1.0.48
validations:
required: true
- type: dropdown
Expand Down Expand Up @@ -73,6 +73,14 @@ body:
- No.
validations:
required: false
- type: input
id: link
attributes:
label: Image file download link (if applicable)
description: What is the image file download link?
placeholder: https://xxx
validations:
required: false
- type: textarea
id: what-happened
attributes:
Expand Down
5 changes: 5 additions & 0 deletions IMG/cpio/sbin/init
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,11 @@ elif [ "$VTOY_ARCH" = "i386" ]; then
ln -s $VTOY_PATH/tool/dmsetup32 $VTOY_PATH/tool/dmsetup
ln -s $VTOY_PATH/tool/lunzip32 $VTOY_PATH/tool/lunzip

if uname -a | egrep -q 'x86_64|amd64'; then
echo "zstdcat use 64bit ..." >>$VTLOG
rm -f $VTOY_PATH/tool/zstdcat
ln -s $VTOY_PATH/tool/zstdcat64 $VTOY_PATH/tool/zstdcat
fi
elif [ "$VTOY_ARCH" = "mips64el" ]; then
echo "Use MIPS64 busybox toolkit ..." >>$VTLOG
ln -s $BUSYBOX_PATH/xzminidecm64e $BUSYBOX_PATH/xzminidec
Expand Down
3 changes: 0 additions & 3 deletions INSTALL/README
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ Please refer https://www.ventoy.net/en/doc_start.html for details.
1. sudo sh VentoyWeb.sh
2. open your browser and visit http://127.0.0.1:24680

========== VentoyWebDeepin.sh ===============
1. sudo sh VentoyWebDeepin.sh


========== CreatePersistentImg.sh ===============

Expand Down
Binary file modified INSTALL/Ventoy2Disk.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion INSTALL/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1844,7 +1844,7 @@ function img_unsupport_menuentry {
#############################################################
#############################################################
set VENTOY_VERSION="1.0.47"
set VENTOY_VERSION="1.0.48"
#ACPI not compatible with Window7/8, so disable by default
set VTOY_PARAM_NO_ACPI=1
Expand Down
107 changes: 0 additions & 107 deletions INSTALL/tool/WebDeepin.sh

This file was deleted.

68 changes: 0 additions & 68 deletions INSTALL/tool/WebUos.sh

This file was deleted.

Binary file modified INSTALL/ventoy/vtoyjump32.exe
Binary file not shown.
Binary file modified INSTALL/ventoy/vtoyjump64.exe
Binary file not shown.
9 changes: 4 additions & 5 deletions INSTALL/ventoy_pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ fi

dos2unix -q ./tool/ventoy_lib.sh
dos2unix -q ./tool/VentoyWorker.sh
dos2unix -q ./tool/WebDeepin.sh
dos2unix -q ./tool/WebUos.sh


. ./tool/ventoy_lib.sh

Expand Down Expand Up @@ -101,15 +100,15 @@ cp $OPT ./tool $tmpdir/
rm -f $tmpdir/ENROLL_THIS_KEY_IN_MOKMANAGER.cer
cp $OPT Ventoy2Disk.sh $tmpdir/
cp $OPT VentoyWeb.sh $tmpdir/
cp $OPT VentoyWebDeepin.sh $tmpdir/

#cp $OPT Ventoy.desktop $tmpdir/
cp $OPT README $tmpdir/
cp $OPT plugin $tmpdir/
cp $OPT CreatePersistentImg.sh $tmpdir/
cp $OPT ExtendPersistentImg.sh $tmpdir/
dos2unix -q $tmpdir/Ventoy2Disk.sh
dos2unix -q $tmpdir/VentoyWeb.sh
dos2unix -q $tmpdir/VentoyWebDeepin.sh

#dos2unix -q $tmpdir/Ventoy.desktop
dos2unix -q $tmpdir/CreatePersistentImg.sh
dos2unix -q $tmpdir/ExtendPersistentImg.sh
Expand Down Expand Up @@ -143,7 +142,7 @@ find $tmpdir/ -type d -exec chmod 755 "{}" +
find $tmpdir/ -type f -exec chmod 644 "{}" +
chmod +x $tmpdir/Ventoy2Disk.sh
chmod +x $tmpdir/VentoyWeb.sh
chmod +x $tmpdir/VentoyWebDeepin.sh

#chmod +x $tmpdir/Ventoy.desktop
chmod +x $tmpdir/CreatePersistentImg.sh
chmod +x $tmpdir/ExtendPersistentImg.sh
Expand Down
Loading

0 comments on commit d843398

Please sign in to comment.