Commit Graph

159 Commits (33b958e11280f632c5b8007ca8b50f97fe9f9551)

Author SHA1 Message Date
longpanda 33b958e112 Update language json files 2 years ago
longpanda 194e948cb6 Remove VTOY_HELP_TXT_LANGUAGE option from Global Control Plugin. 2 years ago
longpanda 25b055bb0f Hotkey change:
1. Change F1 from Memdisk to help
2. Add d/Ctrl+d for Memdisk
3. Add L for Language selection

So update the help txt files and menu json files at the same time.
2 years ago
longpanda 511b8091eb Add muli-languages support for Ventoy menu.
F5 ---> Menu Language Select
Language files are in INSTALL/grub/menu/ directory.
2 years ago
longpanda 7d90912a09 Add VTOY_SHOW_PASSWORD_ASTERISK option in global control plugon. (#1931) 2 years ago
longpanda 1ab1799b72 Code Optimization 2 years ago
longpanda 4a42bdfce7 Add support for easyOS easy-4.4.2-amd64.img. (#1926) 2 years ago
longpanda 09a6d33d62 Add _VTNORMAL identifier. 2 years ago
A1ive ebe0b7d282
show asterisks ('*') when typing password (#1868)
* show asterisks ('*') when typing password

* add function ventoy_password_get
2 years ago
longpanda ebc5e2e993 1. Disable Fn hotkey during secondary boot menu.
2. Recover boot mode after boot fail from secondary boot menu.
2 years ago
longpanda 17f9e2fd09 1.0.80 release 2 years ago
longpanda e79dc57ebe wimboot mode support Bob.Ombs.Modified.Win10PEx64 (#1842) 2 years ago
longpanda 13eb9829fa ALT Linux multiple initrd (#1784) 2 years ago
longpanda 5d6d6df39b autosel doesn't work since 1.0.77 (#1716) 2 years ago
longpanda e46e24dde7 1.0.78 release 2 years ago
longpanda 0b81845e42 .ventoyignore also works in F2 browser mode. 2 years ago
longpanda 1ee65a60c2 Fix a bug when booting TrueNAS Core 13.0. (#1684) 2 years ago
longpanda b976923f00 1.0.77 release 2 years ago
longpanda f200c14730 fix build error 2 years ago
longpanda c090197717 Fix build error 2 years ago
longpanda 595b9441e9 Support prameters expansion in auto install script. 2 years ago
longpanda 0f3d48b3d9 Fix the chain load memory alloc failure in UEFI mode. 2 years ago
longpanda 1c0b4ee903 Auto use memdisk/grub2/wimboot mode if the ISO file name has _VTMEMDISK/_VTGRUB2/_VTWIMBOOT suffix. (e.g. ubuntu-22.04-desktop-amd64_VTGRUB2.iso) 2 years ago
longpanda 7f2f845a68 Auto use memdisk mode when booting iKuai OS. 2 years ago
longpanda 69da3a59d8 Reduce the required low memory. 2 years ago
longpanda 75c6c7257f Add debug info fix 2 years ago
longpanda d4d8736620 Add debug info 2 years ago
longpanda 0984f5ba58 Fix a bug that Windows ISO in local disk can not install when boot through F2 browser mode in Legacy BIOS mode. 2 years ago
longpanda 620229508b Show the directory path in the return menu for TreeView mode and Browser mode. 2 years ago
longpanda 132649c4e5 Add F5 Tools ---> Hardware Information menu 2 years ago
longpanda 791da48673 Update for efi mouse 2 years ago
longpanda f683bcbd59 update for scroll menu text 2 years ago
A1ive a20592ecd1
Add mouse support for uefi (#1457)
* fix gcc11 warnings

* add mouse support for uefi
2 years ago
Celine Lee 9789069c0d
Modify casting in protection against underflow (#1514)
Dear Ventoy community –
 
Our team is working with your code and we noticed this if logical expression:
 
                if (len - 1 - (int)(long)(pos - pwdstr) != 32)
 
We studied the surrounding code. We believe we understand the intention of the type casts in the above if statement. It seems they were meant to ensure an underflow doesn’t occur by the subtraction between to char pointers, which is a great catch (!). However, we believe the way the type casts are structured, the code is not actually protecting against such underflow because pwdstr isn’t cast into a signed long until after the subtraction occurs. To properly protect this code against underflow, we believe it should be changed to something like the following:

if (len - 1 - ((long)pos – (long)pwdstr) != 32)

Or, to enhance readability for junior engineers who may not know that the “long” type cast is implicitly of a signed integer type, we could include the `signed` keyword for added verbosity:
 
if (len - 1 - ((signed long)pos – (signed long)pwdstr) != 32)
 
Thank you!
2 years ago
longpanda 6ae8bf840d Suppress the Fn hotkey when VTOY_DEFAULT_IMAGE is already Fn>xxx 2 years ago
longpanda ce862da402 1. Fix the bug when booing Easy Recovery Essentional for Windows10.
2. Fix the bug when booting FreeBSD 13.0 by F2 browser mode.
2 years ago
longpanda ff14c07c4e Support Easy Recovery Essentials (#1481) 2 years ago
longpanda c3718d6001 Auto use memdisk mode for Memtest86+ iso file. 2 years ago
longpanda 96fdd594f0 Support to F2 browse Ventoy partition self. 2 years ago
longpanda 62dc0033ad Make VTOY_TREE_VIEW_MENU_STYLE also control the browser menu style. (#1439) 2 years ago
longpanda 1c3fcbdfe9 Skip System Volume Information directory for F2 browser. 2 years ago
longpanda 7d37cab21d 1. F2 browser and vlnk support partitions in Ventoy reserved space (#1434)
2. Speedup browser
2 years ago
longpanda a1c6fe2d24 1.0.67 release
support to browse and boot files in local disk.
2 years ago
longpanda ba5978d298 1.0.66 release 2 years ago
longpanda 34a36bfc3e Fix the issue when booting the latest recalbox img file. (#1423) 2 years ago
longpanda 1f49265f29 1.0.64 release 2 years ago
longpanda 6a506ee7f3 Optimization for FreeBSD fragments process. 3 years ago
longpanda d938100eeb 1. Add default_file option in theme plugin
2. Add F5 Tools --> Theme Select menu to swith between themes
3 years ago
longpanda e4ccd5115e Optimization for FreeBSD 3 years ago
longpanda 164c8d6505 Optimization for FreeBSD distro. 3 years ago