Skip to content

Commit

Permalink
1.0.87 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ventoy committed Jan 7, 2023
1 parent e24daca commit 3c03df3
Show file tree
Hide file tree
Showing 3 changed files with 526 additions and 4 deletions.
2 changes: 1 addition & 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.84
placeholder: 1.0.87
validations:
required: true
- type: dropdown
Expand Down
15 changes: 12 additions & 3 deletions INSTALL/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2386,7 +2386,7 @@ function mimg_common_menuentry {
#############################################################
#############################################################

set VENTOY_VERSION="1.0.86"
set VENTOY_VERSION="1.0.87"

#ACPI not compatible with Window7/8, so disable by default
set VTOY_PARAM_NO_ACPI=1
Expand Down Expand Up @@ -2545,9 +2545,18 @@ elif [ "$vtoy_display_mode" = "serial_console" ]; then
terminal_input serial console
terminal_output serial console
else
if [ "$vtoy_res_fit" = "1" ]; then
if [ "$vtoy_gfxmode" = "max" ]; then
set gfxmode=1024x768
terminal_output gfxterm
fi

vt_enum_video_mode
vt_get_video_mode 0 vtCurMode
terminal_output console
set gfxmode=$vtCurMode
terminal_output gfxterm
elif [ "$vtoy_res_fit" = "1" ]; then
terminal_output gfxterm
fi

if [ -n "$vtoy_theme" ]; then
vt_set_theme
Expand Down
Loading

0 comments on commit 3c03df3

Please sign in to comment.