Commit Graph

640 Commits (ed1aa3d5be7daa8ffd0b3d050609cd9eab492e79)
 

Author SHA1 Message Date
longpanda ed1aa3d5be 1.0.72 release 2 years ago
longpanda 8e66110374
Update README.md 2 years ago
Kerollos Magdy f5f65aa868
add GitHub actions state to README (#419)
* add GitHub actions state to README

* Update README.md

* remove link in README

Co-authored-by: Dylan M. Taylor <dylan@dylanmtaylor.com>
2 years ago
geeseven 4e5fcf211b
add IMG to no iso tip (#480) 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 1cf45ac0c5 update 2 years ago
adrian5 40fe21f909
Fix wording, normalize capitalization (#762)
Co-authored-by: longpanda <59477474+ventoy@users.noreply.github.com>
2 years ago
George e6bdf075ca
Changes to english language (#1140)
Changes detail to details and replug to reinsert. Which makes words flow with the sentance better.
2 years ago
Chrystian Rafael Rubio de Melo 7c76e57bf4
fixing grammar mistakes (#1482) 2 years ago
longpanda 7fe038b697 Merge branch 'master' of https://github.com/ventoy/Ventoy 2 years ago
longpanda c01c69db3b Add missing execute bit when packing (#1530) 2 years ago
Celine Lee 0e996e74c9
Update error message to align with int16 range (#1513)
I think this might be a minor typo-- since the conditional checks for `priority` to be in the signed int16 range, the error message should line up with that expected range.
2 years ago
longpanda 1371159f0b update OS detection 2 years ago
longpanda 44b38dce74 Add support for venomlinux (#1526) 2 years ago
longpanda 392d8ef4fa 1.0.71 release 2 years ago
VenusGirl❤ d1900c75cd
Create ko_KR.txt (#1462)
Korean Help
2 years ago
fa7e1d5fa0
keep up with 1.0.67 (#1464)
Modify Japanese Translation for Grub Help Text to Keep up with 1.0.67 Release
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 6d4f5ff00b
Update FUNDING.yml 2 years ago
longpanda ab0f25d097 Fixe the issue when booting PrimeOS 2.0.1 2 years ago
longpanda ff14c07c4e Support Easy Recovery Essentials (#1481) 2 years ago
longpanda f7fac26c91 Auto use memdisk mode for KolibriOS.iso 2 years ago
longpanda ebae102f41 Fix the issue when set F2> as the default menu item. 2 years ago
longpanda c3718d6001 Auto use memdisk mode for Memtest86+ iso file. 2 years ago
longpanda d0744513a6 You can set { "VTOY_DEFAULT_IMAGE": "F2>" } to set F2 browser as the default menu entry. 2 years ago
longpanda 5b0fca8468 1.0.70 release 2 years ago
marcellogianola 27918eb3f9
Update languages.json (#1435) 2 years ago
Tayfun Akkoyun 7859271b20
Update tr_TR.txt (#1452) 2 years ago
longpanda 1c27c0b489 Updated help files (#1460) 2 years ago
longpanda 0f89c2767f Fix the bug when booting Windows 7 iso files in local disk. 2 years ago
longpanda d1584c10b4 Add tip when save ventoy.json failed. 2 years ago
longpanda 43e921878b Fix a bug when creating multi-mod configuration for img_list in VentoyPlugson. 2 years ago
longpanda 23f4f18e27 Auto use grub2 mode for krd.iso 2 years ago
longpanda 53b95ae17b Support latest Qubes 4.1.0 release. 2 years ago
longpanda e3506c0f10 Add cmdline check 2 years ago
longpanda 9118d5fe45 Add check for vlnk file suffix in save as 2 years ago
longpanda f130325a9c Add commad line option -s in VentoyVlnk.exe. 2 years ago
longpanda 1ca48923da VentoyVlnk add cmdline mode.
VentoyVlnk.exe -i xxx.iso -o xxx.vlnk.iso
2 years ago
longpanda 730fdd5198 Update help text 2 years ago
longpanda d0f3597b26 Fix Kiosk boot issue in latest Ventoy release. (#1446) 2 years ago
longpanda 045f53d768 1.0.69 release 2 years ago
longpanda a173acaf17 1.0.68 release 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 dbeb4023a2 Fixed to select the 1st menu item when switching between upper and lower sub-menus. 2 years ago
longpanda 58b1bbe0b5 Fix the issue when booting latest systemrescue 2 years ago