Skip to content

Commit

Permalink
1.0.84 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ventoy committed Dec 4, 2022
1 parent e85c027 commit fd7e34b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 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.83
placeholder: 1.0.84
validations:
required: true
- type: dropdown
Expand Down
12 changes: 11 additions & 1 deletion GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -6177,12 +6177,21 @@ static grub_err_t ventoy_cmd_fs_ignore_case(grub_extcmd_context_t ctxt, int argc
return 0;
}

static grub_err_t ventoy_cmd_init_menu_lang(grub_extcmd_context_t ctxt, int argc, char **args)
{
(void)ctxt;
(void)argc;

ventoy_plugin_load_menu_lang(1, args[0]);
VENTOY_CMD_RETURN(0);
}

static grub_err_t ventoy_cmd_load_menu_lang(grub_extcmd_context_t ctxt, int argc, char **args)
{
(void)ctxt;
(void)argc;

ventoy_plugin_load_menu_lang(args[0]);
ventoy_plugin_load_menu_lang(0, args[0]);
VENTOY_CMD_RETURN(0);
}

Expand Down Expand Up @@ -6399,6 +6408,7 @@ static cmd_para ventoy_cmds[] =
{ "vt_limine_menu", ventoy_cmd_linux_limine_menu, 0, NULL, "", "", NULL },
{ "vt_secondary_recover_mode", ventoy_cmd_secondary_recover_mode, 0, NULL, "", "", NULL },
{ "vt_load_menu_lang", ventoy_cmd_load_menu_lang, 0, NULL, "", "", NULL },
{ "vt_init_menu_lang", ventoy_cmd_init_menu_lang, 0, NULL, "", "", NULL },
{ "vt_cur_menu_lang", ventoy_cmd_cur_menu_lang, 0, NULL, "", "", NULL },
};

Expand Down
2 changes: 1 addition & 1 deletion GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ grub_err_t ventoy_cmd_browser_disk(grub_extcmd_context_t ctxt, int argc, char **
int ventoy_get_fs_type(const char *fs);
int ventoy_img_name_valid(const char *filename, grub_size_t namelen);
void * ventoy_alloc_chain(grub_size_t size);
int ventoy_plugin_load_menu_lang(const char *lang);
int ventoy_plugin_load_menu_lang(int init, const char *lang);
const char *ventoy_get_vmenu_title(const char *vMenu);
grub_err_t ventoy_cmd_cur_menu_lang(grub_extcmd_context_t ctxt, int argc, char **args);
extern int ventoy_menu_push_key(int code);
Expand Down
11 changes: 7 additions & 4 deletions GRUB2/MOD_SRC/grub-2.04/grub-core/ventoy/ventoy_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -3474,7 +3474,7 @@ const char *ventoy_get_vmenu_title(const char *vMenu)
return vtoy_json_get_string_ex(g_menu_lang_json->pstChild, vMenu);
}

int ventoy_plugin_load_menu_lang(const char *lang)
int ventoy_plugin_load_menu_lang(int init, const char *lang)
{
int ret = 1;
grub_file_t file = NULL;
Expand Down Expand Up @@ -3528,9 +3528,12 @@ int ventoy_plugin_load_menu_lang(const char *lang)
grub_snprintf(g_ventoy_hotkey_tip, sizeof(g_ventoy_hotkey_tip), "%s", ventoy_get_vmenu_title("VTMENU_STR_HOTKEY_LIST"));
}

ventoy_menu_push_key(GRUB_TERM_ESC);
ventoy_menu_push_key(GRUB_TERM_ESC);
g_ventoy_menu_refresh = 1;
if (init == 0)
{
ventoy_menu_push_key(GRUB_TERM_ESC);
ventoy_menu_push_key(GRUB_TERM_ESC);
g_ventoy_menu_refresh = 1;
}
ret = 0;

end:
Expand Down
6 changes: 3 additions & 3 deletions INSTALL/grub/grub.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2354,7 +2354,7 @@ function img_unsupport_menuentry {
#############################################################
#############################################################

set VENTOY_VERSION="1.0.83"
set VENTOY_VERSION="1.0.84"

#ACPI not compatible with Window7/8, so disable by default
set VTOY_PARAM_NO_ACPI=1
Expand Down Expand Up @@ -2457,9 +2457,9 @@ else
fi

if [ -n "$VTOY_MENU_LANGUAGE" ]; then
vt_load_menu_lang "$VTOY_MENU_LANGUAGE"
vt_init_menu_lang "$VTOY_MENU_LANGUAGE"
else
vt_load_menu_lang en_US
vt_init_menu_lang en_US
fi

if [ -n "$VTOY_MENU_TIMEOUT" ]; then
Expand Down

0 comments on commit fd7e34b

Please sign in to comment.