Commit Graph

681 Commits (0984f5ba58dbd89104f0b56299eb57c774c80fcf)
 

Author SHA1 Message Date
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 fd0d335eb6 Fix a bug when install Ventoy if the USB already mounted at a path that contains space. 2 years ago
Mastiggia 12a284b543
Update French translation (#1589) 2 years ago
longpanda 9e2e4ec0a9 Fix a bug for Linux GUI program when update from old release. (#1590) 2 years ago
longpanda 480afee1a7
Update FUNDING.yml 2 years ago
longpanda 1305945bc0
Update FUNDING.yml 2 years ago
longpanda 2feb148982 --xdg improvement 2 years ago
longpanda 5eec535391 --xdg improvement 2 years ago
longpanda 33a562c273 support inst.ks=cdrom:/xxx for CentOS 7 2 years ago
longpanda 75517039a1 Firstly try to use chainload to boot .efi files. 2 years ago
longpanda 620229508b Show the directory path in the return menu for TreeView mode and Browser mode. 2 years ago
Lyrx997 5553dd4fc4
Updated Italian language (#1574) 2 years ago
longpanda 89addae48f Fix the issue when booting Prime OS 2.1.0 (#1580) 2 years ago
longpanda 682e8cdc42 Fixe the boot issue for Fedora when VTOY_LINUX_REMOUNT=1 2 years ago
Ida Bagus 1882cfcce2
Update indonesian (#1573) 2 years ago
ShalokShalom b8be46f0dc
Update README.md (#1570) 2 years ago
longpanda 07693bf840 cc 2 years ago
longpanda b4a059dd68 Add missing file 2 years ago
longpanda 858eec99a1 Fix the log/ini owner for VentoyGUI in linux. 2 years ago
VenusGirl❤ 8180382fe1
Update languages.json (#1564)
Korean Update
2 years ago
MELERIX a5d9b1fd43
Update Spanish Translation (#1566) 2 years ago
VenusGirl❤ 8b76e06f6d
Update languages.json (#1565)
Korean Update
2 years ago
VenusGirl❤ ecb133ed5e
Update languages.json (#1563)
Korean Update
2 years ago
longpanda da20eb5568 1.0.73 release 2 years ago
A1ive 2d76fa7303
fix bugs (#1561)
* fix bug stopping iteration when --no-floppy is used

* fix gfxmenu theme config handling bug
2 years ago
Tayfun Akkoyun 8fc8cc6867
Update languages.json (#1560)
@ventoy 
I translated new adding lines(528,529) on Turkish Language
2 years ago
longpanda 132649c4e5 Add F5 Tools ---> Hardware Information menu 2 years ago
longpanda c3c8100866 Merge branch 'master' of https://github.com/ventoy/Ventoy 2 years ago
longpanda 94e24e63c5 Add F5 Tools ---> Power ---> Reboot to EFI setup 2 years ago
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