longpanda
07693bf840
cc
2022-04-09 18:07:04 +08:00
longpanda
b4a059dd68
Add missing file
2022-04-08 17:21:36 +08:00
longpanda
858eec99a1
Fix the log/ini owner for VentoyGUI in linux.
2022-04-08 15:35:22 +08:00
VenusGirl❤
8180382fe1
Update languages.json ( #1564 )
...
Korean Update
2022-04-07 15:12:09 +08:00
MELERIX
a5d9b1fd43
Update Spanish Translation ( #1566 )
2022-04-07 09:04:05 +08:00
VenusGirl❤
8b76e06f6d
Update languages.json ( #1565 )
...
Korean Update
2022-04-07 09:03:23 +08:00
VenusGirl❤
ecb133ed5e
Update languages.json ( #1563 )
...
Korean Update
2022-04-06 22:06:33 +08:00
longpanda
da20eb5568
1.0.73 release
2022-04-06 20:34:33 +08:00
A1ive
2d76fa7303
fix bugs ( #1561 )
...
* fix bug stopping iteration when --no-floppy is used
* fix gfxmenu theme config handling bug
2022-04-06 20:09:45 +08:00
Tayfun Akkoyun
8fc8cc6867
Update languages.json ( #1560 )
...
@ventoy
I translated new adding lines(528,529) on Turkish Language
2022-04-06 19:13:54 +08:00
longpanda
132649c4e5
Add F5 Tools ---> Hardware Information menu
2022-04-06 19:12:59 +08:00
longpanda
c3c8100866
Merge branch 'master' of https://github.com/ventoy/Ventoy
2022-04-06 15:57:57 +08:00
longpanda
94e24e63c5
Add F5 Tools ---> Power ---> Reboot to EFI setup
2022-04-06 15:57:42 +08:00
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>
2022-04-06 15:24:25 +08:00
VlatkoS
20914350fb
Updated and fixed typos in the Macedonian language ( #1535 )
...
Updated and fixed typos in the Macedonian language
2022-04-06 15:19:49 +08:00
A1ive
8b411663cf
add support for uefi driver loading ( #1552 )
2022-04-06 15:13:37 +08:00
longpanda
01292939d3
update
2022-04-05 19:19:06 +08:00
longpanda
dcc5889677
Prevent DLL search order hijacking for VentoyPlugson.exe and VentoyVlnk.exe
2022-04-05 17:37:08 +08:00
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
2022-04-05 17:26:59 +08:00
longpanda
2f95139c77
Update vtoytool
2022-04-02 23:24:10 +08:00
longpanda
f2bb3667c4
Support specify menu_tip position and color per theme.
2022-04-01 20:23:56 +08:00
longpanda
791da48673
Update for efi mouse
2022-03-30 19:52:04 +08:00
longpanda
f683bcbd59
update for scroll menu text
2022-03-30 16:35:07 +08:00
A1ive
15b8b1f358
support scrolling menu entry's text ( #1539 )
2022-03-29 22:50:11 +08:00
A1ive
a20592ecd1
Add mouse support for uefi ( #1457 )
...
* fix gcc11 warnings
* add mouse support for uefi
2022-03-29 22:49:37 +08:00
longpanda
ed1aa3d5be
1.0.72 release
2022-03-26 17:33:46 +08:00
longpanda
8e66110374
Update README.md
2022-03-26 16:07:51 +08:00
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>
2022-03-26 10:51:26 +08:00
geeseven
4e5fcf211b
add IMG to no iso tip ( #480 )
2022-03-26 10:48:45 +08:00
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!
2022-03-26 10:29:18 +08:00
longpanda
1cf45ac0c5
update
2022-03-26 10:07:22 +08:00
adrian5
40fe21f909
Fix wording, normalize capitalization ( #762 )
...
Co-authored-by: longpanda <59477474+ventoy@users.noreply.github.com>
2022-03-26 10:05:18 +08:00
George
e6bdf075ca
Changes to english language ( #1140 )
...
Changes detail to details and replug to reinsert. Which makes words flow with the sentance better.
2022-03-26 09:47:28 +08:00
Chrystian Rafael Rubio de Melo
7c76e57bf4
fixing grammar mistakes ( #1482 )
2022-03-26 09:46:35 +08:00
longpanda
7fe038b697
Merge branch 'master' of https://github.com/ventoy/Ventoy
2022-03-24 23:48:01 +08:00
longpanda
c01c69db3b
Add missing execute bit when packing ( #1530 )
2022-03-24 23:47:43 +08:00
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.
2022-03-22 19:15:25 +08:00
longpanda
1371159f0b
update OS detection
2022-03-22 19:14:51 +08:00
longpanda
44b38dce74
Add support for venomlinux ( #1526 )
2022-03-22 17:52:56 +08:00
longpanda
392d8ef4fa
1.0.71 release
2022-03-11 21:36:42 +08:00
VenusGirl❤
d1900c75cd
Create ko_KR.txt ( #1462 )
...
Korean Help
2022-03-11 21:25:01 +08:00
B̅
fa7e1d5fa0
keep up with 1.0.67 ( #1464 )
...
Modify Japanese Translation for Grub Help Text to Keep up with 1.0.67 Release
2022-03-11 21:23:51 +08:00
longpanda
6ae8bf840d
Suppress the Fn hotkey when VTOY_DEFAULT_IMAGE is already Fn>xxx
2022-03-08 19:26:04 +08:00
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.
2022-03-08 18:27:07 +08:00
longpanda
6d4f5ff00b
Update FUNDING.yml
2022-03-07 00:14:40 +08:00
longpanda
ab0f25d097
Fixe the issue when booting PrimeOS 2.0.1
2022-03-06 21:04:36 +08:00
longpanda
ff14c07c4e
Support Easy Recovery Essentials ( #1481 )
2022-03-06 19:31:18 +08:00
longpanda
f7fac26c91
Auto use memdisk mode for KolibriOS.iso
2022-02-23 23:35:57 +08:00
longpanda
ebae102f41
Fix the issue when set F2> as the default menu item.
2022-02-23 17:05:33 +08:00
longpanda
c3718d6001
Auto use memdisk mode for Memtest86+ iso file.
2022-02-22 22:23:33 +08:00