Commit Graph

802 Commits (ac65c0fb24e537282b1b863ba66bfc3064cd17dc)
 

Author SHA1 Message Date
reggie c19cd649d8
Add all slovak and some czech translations (#1534)
* Add slovak translations

* Add missing czech translations

* Fix two typos

* Fix previous typo fix (im dumb, ok?)

Co-authored-by: longpanda <59477474+ventoy@users.noreply.github.com>
2 years ago
VlatkoS 20914350fb
Updated and fixed typos in the Macedonian language (#1535)
Updated and fixed typos in the Macedonian language
2 years ago
A1ive 8b411663cf
add support for uefi driver loading (#1552) 2 years ago
longpanda 01292939d3 update 2 years ago
longpanda dcc5889677 Prevent DLL search order hijacking for VentoyPlugson.exe and VentoyVlnk.exe 2 years ago
longpanda 04828df028 1. When click install button, if the USB stick already installed with Ventoy, then popup a dialog to require a YES text input to confirm.
2. Prevent DLL search order hijacking
2 years ago
longpanda 2f95139c77 Update vtoytool 2 years ago
longpanda f2bb3667c4 Support specify menu_tip position and color per theme. 2 years ago
longpanda 791da48673 Update for efi mouse 2 years ago
longpanda f683bcbd59 update for scroll menu text 2 years ago
A1ive 15b8b1f358
support scrolling menu entry's text (#1539) 2 years ago
A1ive a20592ecd1
Add mouse support for uefi (#1457)
* fix gcc11 warnings

* add mouse support for uefi
2 years ago
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