]>
glassweightruler.freedombox.rocks Git - Ventoy.git/log
longpanda [Wed, 30 Mar 2022 08:35:07 +0000 (16:35 +0800)]
update for scroll menu text
A1ive [Tue, 29 Mar 2022 14:50:11 +0000 (22:50 +0800)]
support scrolling menu entry's text (#1539)
A1ive [Tue, 29 Mar 2022 14:49:37 +0000 (22:49 +0800)]
Add mouse support for uefi (#1457)
* fix gcc11 warnings
* add mouse support for uefi
longpanda [Sat, 26 Mar 2022 09:33:46 +0000 (17:33 +0800)]
1.0.72 release
longpanda [Sat, 26 Mar 2022 08:07:51 +0000 (16:07 +0800)]
Update README.md
Kerollos Magdy [Sat, 26 Mar 2022 02:51:26 +0000 (04:51 +0200)]
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>
geeseven [Sat, 26 Mar 2022 02:48:45 +0000 (21:48 -0500)]
add IMG to no iso tip (#480)
Celine Lee [Sat, 26 Mar 2022 02:29:18 +0000 (22:29 -0400)]
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!
longpanda [Sat, 26 Mar 2022 02:07:22 +0000 (10:07 +0800)]
update
adrian5 [Sat, 26 Mar 2022 02:05:18 +0000 (03:05 +0100)]
Fix wording, normalize capitalization (#762)
Co-authored-by: longpanda <59477474+ventoy@users.noreply.github.com>
George [Sat, 26 Mar 2022 01:47:28 +0000 (01:47 +0000)]
Changes to english language (#1140)
Changes detail to details and replug to reinsert. Which makes words flow with the sentance better.
Chrystian Rafael Rubio de Melo [Sat, 26 Mar 2022 01:46:35 +0000 (21:46 -0400)]
fixing grammar mistakes (#1482)
longpanda [Thu, 24 Mar 2022 15:48:01 +0000 (23:48 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Thu, 24 Mar 2022 15:47:43 +0000 (23:47 +0800)]
Add missing execute bit when packing (#1530)
Celine Lee [Tue, 22 Mar 2022 11:15:25 +0000 (07:15 -0400)]
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.
longpanda [Tue, 22 Mar 2022 11:14:51 +0000 (19:14 +0800)]
update OS detection
longpanda [Tue, 22 Mar 2022 09:52:56 +0000 (17:52 +0800)]
Add support for venomlinux (#1526)
longpanda [Fri, 11 Mar 2022 13:36:42 +0000 (21:36 +0800)]
1.0.71 release
VenusGirl❤ [Fri, 11 Mar 2022 13:25:01 +0000 (22:25 +0900)]
Create ko_KR.txt (#1462)
Korean Help
B̅ [Fri, 11 Mar 2022 13:23:51 +0000 (22:23 +0900)]
keep up with 1.0.67 (#1464)
Modify Japanese Translation for Grub Help Text to Keep up with 1.0.67 Release
longpanda [Tue, 8 Mar 2022 11:26:04 +0000 (19:26 +0800)]
Suppress the Fn hotkey when VTOY_DEFAULT_IMAGE is already Fn>xxx
longpanda [Tue, 8 Mar 2022 10:27:07 +0000 (18:27 +0800)]
1. Fix the bug when booing Easy Recovery Essentional for Windows10.
2. Fix the bug when booting FreeBSD 13.0 by F2 browser mode.
longpanda [Sun, 6 Mar 2022 16:14:40 +0000 (00:14 +0800)]
Update FUNDING.yml
longpanda [Sun, 6 Mar 2022 13:04:36 +0000 (21:04 +0800)]
Fixe the issue when booting PrimeOS 2.0.1
longpanda [Sun, 6 Mar 2022 11:31:18 +0000 (19:31 +0800)]
Support Easy Recovery Essentials (#1481)
longpanda [Wed, 23 Feb 2022 15:35:57 +0000 (23:35 +0800)]
Auto use memdisk mode for KolibriOS.iso
longpanda [Wed, 23 Feb 2022 09:05:33 +0000 (17:05 +0800)]
Fix the issue when set F2> as the default menu item.
longpanda [Tue, 22 Feb 2022 14:23:33 +0000 (22:23 +0800)]
Auto use memdisk mode for Memtest86+ iso file.
longpanda [Tue, 22 Feb 2022 12:20:59 +0000 (20:20 +0800)]
You can set { "VTOY_DEFAULT_IMAGE": "F2>" } to set F2 browser as the default menu entry.
longpanda [Sat, 19 Feb 2022 02:28:09 +0000 (10:28 +0800)]
1.0.70 release
marcellogianola [Sat, 19 Feb 2022 02:18:52 +0000 (03:18 +0100)]
Update languages.json (#1435)
Tayfun Akkoyun [Sat, 19 Feb 2022 02:18:19 +0000 (05:18 +0300)]
Update tr_TR.txt (#1452)
longpanda [Sat, 19 Feb 2022 01:51:31 +0000 (09:51 +0800)]
Updated help files (#1460)
longpanda [Fri, 18 Feb 2022 15:47:27 +0000 (23:47 +0800)]
Fix the bug when booting Windows 7 iso files in local disk.
longpanda [Fri, 18 Feb 2022 01:48:57 +0000 (09:48 +0800)]
Add tip when save ventoy.json failed.
longpanda [Thu, 17 Feb 2022 12:06:18 +0000 (20:06 +0800)]
Fix a bug when creating multi-mod configuration for img_list in VentoyPlugson.
longpanda [Thu, 17 Feb 2022 04:15:57 +0000 (12:15 +0800)]
Auto use grub2 mode for krd.iso
longpanda [Thu, 17 Feb 2022 03:40:54 +0000 (11:40 +0800)]
Support latest Qubes 4.1.0 release.
longpanda [Thu, 17 Feb 2022 03:09:31 +0000 (11:09 +0800)]
Add cmdline check
longpanda [Thu, 17 Feb 2022 02:49:56 +0000 (10:49 +0800)]
Add check for vlnk file suffix in save as
longpanda [Thu, 17 Feb 2022 02:39:04 +0000 (10:39 +0800)]
Add commad line option -s in VentoyVlnk.exe.
longpanda [Thu, 17 Feb 2022 02:13:27 +0000 (10:13 +0800)]
VentoyVlnk add cmdline mode.
VentoyVlnk.exe -i xxx.iso -o xxx.vlnk.iso
longpanda [Wed, 16 Feb 2022 01:39:36 +0000 (09:39 +0800)]
Update help text
longpanda [Tue, 15 Feb 2022 15:59:28 +0000 (23:59 +0800)]
Fix Kiosk boot issue in latest Ventoy release. (#1446)
longpanda [Tue, 15 Feb 2022 14:04:50 +0000 (22:04 +0800)]
1.0.69 release
longpanda [Tue, 15 Feb 2022 11:17:58 +0000 (19:17 +0800)]
1.0.68 release
longpanda [Tue, 15 Feb 2022 06:42:46 +0000 (14:42 +0800)]
Support to F2 browse Ventoy partition self.
longpanda [Tue, 15 Feb 2022 03:51:32 +0000 (11:51 +0800)]
Make VTOY_TREE_VIEW_MENU_STYLE also control the browser menu style. (#1439)
longpanda [Tue, 15 Feb 2022 03:39:09 +0000 (11:39 +0800)]
Skip System Volume Information directory for F2 browser.
longpanda [Tue, 15 Feb 2022 03:31:03 +0000 (11:31 +0800)]
1. F2 browser and vlnk support partitions in Ventoy reserved space (#1434)
2. Speedup browser
longpanda [Mon, 14 Feb 2022 15:31:54 +0000 (23:31 +0800)]
1.0.67 release
support to browse and boot files in local disk.
longpanda [Mon, 14 Feb 2022 06:29:50 +0000 (14:29 +0800)]
Fixed to select the 1st menu item when switching between upper and lower sub-menus.
longpanda [Mon, 14 Feb 2022 05:28:26 +0000 (13:28 +0800)]
Fix the issue when booting latest systemrescue
longpanda [Mon, 14 Feb 2022 04:31:06 +0000 (12:31 +0800)]
Fix the issue when booting latest systemrescue
longpanda [Mon, 14 Feb 2022 04:06:33 +0000 (12:06 +0800)]
Fix the Plugson web display issue of VTOY_DEFAULT_MENU_MODE.
longpanda [Sun, 13 Feb 2022 13:25:58 +0000 (21:25 +0800)]
Fix the issue when make vlnk for NTFS partition under Linux (#1430)
longpanda [Sun, 13 Feb 2022 09:01:10 +0000 (17:01 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Sun, 13 Feb 2022 09:00:39 +0000 (17:00 +0800)]
1.0.66 release
jakoblell [Sun, 6 Feb 2022 15:13:15 +0000 (16:13 +0100)]
Support `/dev/disk/by-id/` symlinks in command-line installer (#1422)
* Allow symlinks as target device (for supporting /dev/disk/by-id)
* Use correct test (-L) for checking if it is a symlink
Co-authored-by: Jakob Lell <jakob@srlabs.com>
longpanda [Sun, 6 Feb 2022 10:00:29 +0000 (18:00 +0800)]
Add tip in Plugson web page when old ventoy.json contains invalid configuration.
longpanda [Sun, 6 Feb 2022 04:26:36 +0000 (12:26 +0800)]
update tip message for recalbox img file.
longpanda [Sat, 5 Feb 2022 16:25:27 +0000 (00:25 +0800)]
Fix the issue when booting the latest recalbox img file. (#1423)
longpanda [Fri, 4 Feb 2022 09:05:14 +0000 (17:05 +0800)]
1.0.65 release
Sopor [Thu, 3 Feb 2022 04:08:42 +0000 (05:08 +0100)]
Update Swedish language (#1415)
Guillem [Thu, 3 Feb 2022 04:08:27 +0000 (05:08 +0100)]
Add catalan language (#1407)
heidiwenger [Thu, 3 Feb 2022 04:07:31 +0000 (04:07 +0000)]
Update languages.json (#1401)
Finnish language update
longpanda [Sat, 15 Jan 2022 01:13:46 +0000 (09:13 +0800)]
Add check for size in CreatePersistentImg.sh (#1384)
longpanda [Sat, 15 Jan 2022 01:00:48 +0000 (09:00 +0800)]
issue template update
longpanda [Fri, 14 Jan 2022 01:09:57 +0000 (09:09 +0800)]
update tip message for VTOY_DEFAULT_SEARCH_ROOT (#1373)
longpanda [Thu, 13 Jan 2022 03:03:55 +0000 (11:03 +0800)]
fix the page language display issue in VentoyPlugson
longpanda [Wed, 12 Jan 2022 03:10:15 +0000 (11:10 +0800)]
fix typo
longpanda [Wed, 12 Jan 2022 02:24:44 +0000 (10:24 +0800)]
VTOY_LINUX_REMOUNT support for both 64bit(x86_64) and 32bit(i386) linux distro.
longpanda [Tue, 11 Jan 2022 01:39:01 +0000 (09:39 +0800)]
fix plugson page language issue
longpanda [Mon, 10 Jan 2022 11:14:39 +0000 (19:14 +0800)]
add intree flag for ko
longpanda [Mon, 10 Jan 2022 11:02:29 +0000 (19:02 +0800)]
Fix Plugson Web update issue.
longpanda [Sat, 8 Jan 2022 15:23:26 +0000 (23:23 +0800)]
1.0.64
longpanda [Sat, 8 Jan 2022 15:07:04 +0000 (23:07 +0800)]
1.0.64 release
longpanda [Fri, 24 Dec 2021 02:32:59 +0000 (10:32 +0800)]
Support CentOS-9-Stream (#1335)
longpanda [Wed, 22 Dec 2021 01:13:35 +0000 (09:13 +0800)]
fix compile error for vtoyjump in debug mode.
longpanda [Mon, 20 Dec 2021 12:20:07 +0000 (20:20 +0800)]
1.0.63 release
crim50n [Mon, 20 Dec 2021 08:20:31 +0000 (11:20 +0300)]
Adding support for MiniOS. (#1317)
* Create minios-hook.sh
* Create minios-disk.sh
* Update ventoy-hook.sh
* Update grub.cfg
* Update README.md
kheyyam [Mon, 20 Dec 2021 08:17:56 +0000 (12:17 +0400)]
Add Azerbaijani language (#1325)
gbrea [Mon, 20 Dec 2021 08:17:31 +0000 (09:17 +0100)]
Added Galician Language (#1323)
* Update languages.json, added Galician language
* Added Galician Language
Hoàng Điềm Tĩnh [Mon, 20 Dec 2021 08:17:07 +0000 (15:17 +0700)]
Update languages.json (#1320)
Please update Vietnamese Language.
longpanda [Wed, 8 Dec 2021 03:55:23 +0000 (11:55 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Wed, 8 Dec 2021 03:55:06 +0000 (11:55 +0800)]
Solus UEFI boot
VlatkoS [Mon, 6 Dec 2021 01:48:58 +0000 (02:48 +0100)]
Updated Macedonian language (#1309)
Updated Macedonian language
longpanda [Sun, 5 Dec 2021 13:02:14 +0000 (21:02 +0800)]
Update grub.cfg
longpanda [Sun, 5 Dec 2021 04:02:46 +0000 (12:02 +0800)]
Add missing manifest file.
longpanda [Sat, 4 Dec 2021 06:40:04 +0000 (14:40 +0800)]
misc update
longpanda [Fri, 3 Dec 2021 10:31:09 +0000 (18:31 +0800)]
1. Add check for invalid characters in menu_class plugin.
2. Optimization for help language list process
B̅ [Fri, 3 Dec 2021 09:09:30 +0000 (18:09 +0900)]
add ja_JP translation for Grub help text (#1294)
longpanda [Fri, 3 Dec 2021 06:21:47 +0000 (14:21 +0800)]
Fix the "plugson.tar.xz not found" error, when the path contains unicode characters.
longpanda [Thu, 2 Dec 2021 12:02:42 +0000 (20:02 +0800)]
1.0.62 release
longpanda [Thu, 2 Dec 2021 07:17:52 +0000 (15:17 +0800)]
support LibreELEC 10.0.1 (#1268)
longpanda [Thu, 2 Dec 2021 02:55:37 +0000 (10:55 +0800)]
VentoyPlugson update
longpanda [Wed, 1 Dec 2021 12:43:35 +0000 (20:43 +0800)]
VentoyPlugson ---- A GUI ventoy.json configurator
salevdns [Thu, 25 Nov 2021 03:44:31 +0000 (04:44 +0100)]
Add encryption support to CreatePersistentImg.sh (#1130)
Added option to create persistent fs inside LUKS container.
Had to change to #!/bin/bash to parse interactive user input for the encryption passphrase.
The _freeloop=$freeloop part is kind of bad style, but I kept it for now to keep changes minimal.
Hildo Guillardi Júnior [Thu, 25 Nov 2021 03:39:13 +0000 (00:39 -0300)]
Update Brazilian Portoguese language (#1273)
Alexander Berger [Thu, 25 Nov 2021 03:38:55 +0000 (05:38 +0200)]
Updated Ukrainian and Russian localizations (#1269)
* Updated Ukrainian and Russian localizations
* comma in ukr locale