]> glassweightruler.freedombox.rocks Git - Ventoy.git/log
Ventoy.git
4 years agoUpdate vtoytool
longpanda [Sat, 2 Apr 2022 15:24:10 +0000 (23:24 +0800)]
Update vtoytool

4 years agoSupport specify menu_tip position and color per theme.
longpanda [Fri, 1 Apr 2022 12:23:56 +0000 (20:23 +0800)]
Support specify menu_tip position and color per theme.

4 years agoUpdate for efi mouse
longpanda [Wed, 30 Mar 2022 11:52:04 +0000 (19:52 +0800)]
Update for efi mouse

4 years agoupdate for scroll menu text
longpanda [Wed, 30 Mar 2022 08:35:07 +0000 (16:35 +0800)]
update for scroll menu text

4 years agosupport scrolling menu entry's text (#1539)
A1ive [Tue, 29 Mar 2022 14:50:11 +0000 (22:50 +0800)]
support scrolling menu entry's text (#1539)

4 years agoAdd mouse support for uefi (#1457)
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

4 years ago1.0.72 release v1.0.72
longpanda [Sat, 26 Mar 2022 09:33:46 +0000 (17:33 +0800)]
1.0.72 release

4 years agoUpdate README.md
longpanda [Sat, 26 Mar 2022 08:07:51 +0000 (16:07 +0800)]
Update README.md

4 years agoadd GitHub actions state to README (#419)
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>
4 years agoadd IMG to no iso tip (#480)
geeseven [Sat, 26 Mar 2022 02:48:45 +0000 (21:48 -0500)]
add IMG to no iso tip (#480)

4 years agoModify casting in protection against underflow (#1514)
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!

4 years agoupdate
longpanda [Sat, 26 Mar 2022 02:07:22 +0000 (10:07 +0800)]
update

4 years agoFix wording, normalize capitalization (#762)
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>
4 years agoChanges to english language (#1140)
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.

4 years agofixing grammar mistakes (#1482)
Chrystian Rafael Rubio de Melo [Sat, 26 Mar 2022 01:46:35 +0000 (21:46 -0400)]
fixing grammar mistakes (#1482)

4 years agoMerge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Thu, 24 Mar 2022 15:48:01 +0000 (23:48 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy

4 years agoAdd missing execute bit when packing (#1530)
longpanda [Thu, 24 Mar 2022 15:47:43 +0000 (23:47 +0800)]
Add missing execute bit when packing (#1530)

4 years agoUpdate error message to align with int16 range (#1513)
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.

4 years agoupdate OS detection
longpanda [Tue, 22 Mar 2022 11:14:51 +0000 (19:14 +0800)]
update OS detection

4 years agoAdd support for venomlinux (#1526)
longpanda [Tue, 22 Mar 2022 09:52:56 +0000 (17:52 +0800)]
Add support for venomlinux (#1526)

4 years ago1.0.71 release v1.0.71
longpanda [Fri, 11 Mar 2022 13:36:42 +0000 (21:36 +0800)]
1.0.71 release

4 years agoCreate ko_KR.txt (#1462)
VenusGirl❤ [Fri, 11 Mar 2022 13:25:01 +0000 (22:25 +0900)]
Create ko_KR.txt (#1462)

Korean Help

4 years agokeep up with 1.0.67 (#1464)
[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

4 years agoSuppress the Fn hotkey when VTOY_DEFAULT_IMAGE is already Fn>xxx
longpanda [Tue, 8 Mar 2022 11:26:04 +0000 (19:26 +0800)]
Suppress the Fn hotkey when VTOY_DEFAULT_IMAGE is already Fn>xxx

4 years ago1. Fix the bug when booing Easy Recovery Essentional for Windows10.
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.

4 years agoUpdate FUNDING.yml
longpanda [Sun, 6 Mar 2022 16:14:40 +0000 (00:14 +0800)]
Update FUNDING.yml

4 years agoFixe the issue when booting PrimeOS 2.0.1
longpanda [Sun, 6 Mar 2022 13:04:36 +0000 (21:04 +0800)]
Fixe the issue when booting PrimeOS 2.0.1

4 years agoSupport Easy Recovery Essentials (#1481)
longpanda [Sun, 6 Mar 2022 11:31:18 +0000 (19:31 +0800)]
Support Easy Recovery Essentials (#1481)

4 years agoAuto use memdisk mode for KolibriOS.iso
longpanda [Wed, 23 Feb 2022 15:35:57 +0000 (23:35 +0800)]
Auto use memdisk mode for KolibriOS.iso

4 years agoFix the issue when set F2> as the default menu item.
longpanda [Wed, 23 Feb 2022 09:05:33 +0000 (17:05 +0800)]
Fix the issue when set F2> as the default menu item.

4 years agoAuto use memdisk mode for Memtest86+ iso file.
longpanda [Tue, 22 Feb 2022 14:23:33 +0000 (22:23 +0800)]
Auto use memdisk mode for Memtest86+ iso file.

4 years agoYou can set { "VTOY_DEFAULT_IMAGE": "F2>" } to set F2 browser as the default menu...
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.

4 years ago1.0.70 release v1.0.70
longpanda [Sat, 19 Feb 2022 02:28:09 +0000 (10:28 +0800)]
1.0.70 release

4 years agoUpdate languages.json (#1435)
marcellogianola [Sat, 19 Feb 2022 02:18:52 +0000 (03:18 +0100)]
Update languages.json (#1435)

4 years agoUpdate tr_TR.txt (#1452)
Tayfun Akkoyun [Sat, 19 Feb 2022 02:18:19 +0000 (05:18 +0300)]
Update tr_TR.txt (#1452)

4 years agoUpdated help files (#1460)
longpanda [Sat, 19 Feb 2022 01:51:31 +0000 (09:51 +0800)]
Updated help files (#1460)

4 years agoFix the bug when booting Windows 7 iso files in local disk.
longpanda [Fri, 18 Feb 2022 15:47:27 +0000 (23:47 +0800)]
Fix the bug when booting Windows 7 iso files in local disk.

4 years agoAdd tip when save ventoy.json failed.
longpanda [Fri, 18 Feb 2022 01:48:57 +0000 (09:48 +0800)]
Add tip when save ventoy.json failed.

4 years agoFix a bug when creating multi-mod configuration for img_list in VentoyPlugson.
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.

4 years agoAuto use grub2 mode for krd.iso
longpanda [Thu, 17 Feb 2022 04:15:57 +0000 (12:15 +0800)]
Auto use grub2 mode for krd.iso

4 years agoSupport latest Qubes 4.1.0 release.
longpanda [Thu, 17 Feb 2022 03:40:54 +0000 (11:40 +0800)]
Support latest Qubes 4.1.0 release.

4 years agoAdd cmdline check
longpanda [Thu, 17 Feb 2022 03:09:31 +0000 (11:09 +0800)]
Add cmdline check

4 years agoAdd check for vlnk file suffix in save as
longpanda [Thu, 17 Feb 2022 02:49:56 +0000 (10:49 +0800)]
Add check for vlnk file suffix in save as

4 years agoAdd commad line option -s in VentoyVlnk.exe.
longpanda [Thu, 17 Feb 2022 02:39:04 +0000 (10:39 +0800)]
Add commad line option -s in VentoyVlnk.exe.

4 years agoVentoyVlnk add cmdline mode.
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

4 years agoUpdate help text
longpanda [Wed, 16 Feb 2022 01:39:36 +0000 (09:39 +0800)]
Update help text

4 years agoFix Kiosk boot issue in latest Ventoy release. (#1446)
longpanda [Tue, 15 Feb 2022 15:59:28 +0000 (23:59 +0800)]
Fix Kiosk boot issue in latest Ventoy release. (#1446)

4 years ago1.0.69 release v1.0.69
longpanda [Tue, 15 Feb 2022 14:04:50 +0000 (22:04 +0800)]
1.0.69 release

4 years ago1.0.68 release v1.0.68
longpanda [Tue, 15 Feb 2022 11:17:58 +0000 (19:17 +0800)]
1.0.68 release

4 years agoSupport to F2 browse Ventoy partition self.
longpanda [Tue, 15 Feb 2022 06:42:46 +0000 (14:42 +0800)]
Support to F2 browse Ventoy partition self.

4 years agoMake VTOY_TREE_VIEW_MENU_STYLE also control the browser menu style. (#1439)
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)

4 years agoSkip System Volume Information directory for F2 browser.
longpanda [Tue, 15 Feb 2022 03:39:09 +0000 (11:39 +0800)]
Skip System Volume Information directory for F2 browser.

4 years ago1. F2 browser and vlnk support partitions in Ventoy reserved space (#1434)
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

4 years ago1.0.67 release v1.0.67
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.

4 years agoFixed to select the 1st menu item when switching between upper and lower sub-menus.
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.

4 years agoFix the issue when booting latest systemrescue
longpanda [Mon, 14 Feb 2022 05:28:26 +0000 (13:28 +0800)]
Fix the issue when booting latest systemrescue

4 years agoFix 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

4 years agoFix the Plugson web display issue of VTOY_DEFAULT_MENU_MODE.
longpanda [Mon, 14 Feb 2022 04:06:33 +0000 (12:06 +0800)]
Fix the Plugson web display issue of VTOY_DEFAULT_MENU_MODE.

4 years agoFix the issue when make vlnk for NTFS partition under Linux (#1430)
longpanda [Sun, 13 Feb 2022 13:25:58 +0000 (21:25 +0800)]
Fix the issue when make vlnk for NTFS partition under Linux (#1430)

4 years agoMerge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Sun, 13 Feb 2022 09:01:10 +0000 (17:01 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy

4 years ago1.0.66 release v1.0.66
longpanda [Sun, 13 Feb 2022 09:00:39 +0000 (17:00 +0800)]
1.0.66 release

4 years agoSupport `/dev/disk/by-id/` symlinks in command-line installer (#1422)
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>
4 years agoAdd tip in Plugson web page when old ventoy.json contains invalid configuration.
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.

4 years agoupdate tip message for recalbox img file.
longpanda [Sun, 6 Feb 2022 04:26:36 +0000 (12:26 +0800)]
update tip message for recalbox img file.

4 years agoFix the issue when booting the latest recalbox img file. (#1423)
longpanda [Sat, 5 Feb 2022 16:25:27 +0000 (00:25 +0800)]
Fix the issue when booting the latest recalbox img file. (#1423)

4 years ago1.0.65 release v1.0.65
longpanda [Fri, 4 Feb 2022 09:05:14 +0000 (17:05 +0800)]
1.0.65 release

4 years agoUpdate Swedish language (#1415)
Sopor [Thu, 3 Feb 2022 04:08:42 +0000 (05:08 +0100)]
Update Swedish language (#1415)

4 years agoAdd catalan language (#1407)
Guillem [Thu, 3 Feb 2022 04:08:27 +0000 (05:08 +0100)]
Add catalan language (#1407)

4 years agoUpdate languages.json (#1401)
heidiwenger [Thu, 3 Feb 2022 04:07:31 +0000 (04:07 +0000)]
Update languages.json (#1401)

Finnish language update

4 years agoAdd check for size in CreatePersistentImg.sh (#1384)
longpanda [Sat, 15 Jan 2022 01:13:46 +0000 (09:13 +0800)]
Add check for size in CreatePersistentImg.sh (#1384)

4 years agoissue template update
longpanda [Sat, 15 Jan 2022 01:00:48 +0000 (09:00 +0800)]
issue template update

4 years agoupdate tip message for VTOY_DEFAULT_SEARCH_ROOT (#1373)
longpanda [Fri, 14 Jan 2022 01:09:57 +0000 (09:09 +0800)]
update tip message for VTOY_DEFAULT_SEARCH_ROOT (#1373)

4 years agofix the page language display issue in VentoyPlugson
longpanda [Thu, 13 Jan 2022 03:03:55 +0000 (11:03 +0800)]
fix the page language display issue in VentoyPlugson

4 years agofix typo
longpanda [Wed, 12 Jan 2022 03:10:15 +0000 (11:10 +0800)]
fix typo

4 years agoVTOY_LINUX_REMOUNT support for both 64bit(x86_64) and 32bit(i386) linux distro.
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.

4 years agofix plugson page language issue
longpanda [Tue, 11 Jan 2022 01:39:01 +0000 (09:39 +0800)]
fix plugson page language issue

4 years agoadd intree flag for ko
longpanda [Mon, 10 Jan 2022 11:14:39 +0000 (19:14 +0800)]
add intree flag for ko

4 years agoFix Plugson Web update issue.
longpanda [Mon, 10 Jan 2022 11:02:29 +0000 (19:02 +0800)]
Fix Plugson Web update issue.

4 years ago1.0.64 v1.0.64
longpanda [Sat, 8 Jan 2022 15:23:26 +0000 (23:23 +0800)]
1.0.64

4 years ago1.0.64 release
longpanda [Sat, 8 Jan 2022 15:07:04 +0000 (23:07 +0800)]
1.0.64 release

4 years agoSupport CentOS-9-Stream (#1335)
longpanda [Fri, 24 Dec 2021 02:32:59 +0000 (10:32 +0800)]
Support CentOS-9-Stream (#1335)

4 years agofix compile error for vtoyjump in debug mode.
longpanda [Wed, 22 Dec 2021 01:13:35 +0000 (09:13 +0800)]
fix compile error for vtoyjump in debug mode.

4 years ago1.0.63 release v1.0.63
longpanda [Mon, 20 Dec 2021 12:20:07 +0000 (20:20 +0800)]
1.0.63 release

4 years agoAdding support for MiniOS. (#1317)
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

4 years agoAdd Azerbaijani language (#1325)
kheyyam [Mon, 20 Dec 2021 08:17:56 +0000 (12:17 +0400)]
Add Azerbaijani language (#1325)

4 years agoAdded Galician Language (#1323)
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

4 years agoUpdate languages.json (#1320)
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.

4 years agoMerge branch 'master' of https://github.com/ventoy/Ventoy
longpanda [Wed, 8 Dec 2021 03:55:23 +0000 (11:55 +0800)]
Merge branch 'master' of https://github.com/ventoy/Ventoy

4 years agoSolus UEFI boot
longpanda [Wed, 8 Dec 2021 03:55:06 +0000 (11:55 +0800)]
Solus UEFI boot

4 years agoUpdated Macedonian language (#1309)
VlatkoS [Mon, 6 Dec 2021 01:48:58 +0000 (02:48 +0100)]
Updated Macedonian language (#1309)

Updated Macedonian language

4 years agoUpdate grub.cfg
longpanda [Sun, 5 Dec 2021 13:02:14 +0000 (21:02 +0800)]
Update grub.cfg

4 years agoAdd missing manifest file.
longpanda [Sun, 5 Dec 2021 04:02:46 +0000 (12:02 +0800)]
Add missing manifest file.

4 years agomisc update
longpanda [Sat, 4 Dec 2021 06:40:04 +0000 (14:40 +0800)]
misc update

4 years ago1. Add check for invalid characters in menu_class plugin.
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

4 years agoadd ja_JP translation for Grub help text (#1294)
[Fri, 3 Dec 2021 09:09:30 +0000 (18:09 +0900)]
add ja_JP translation for Grub help text (#1294)

4 years agoFix the "plugson.tar.xz not found" error, when the path contains unicode characters.
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.

4 years ago1.0.62 release v1.0.62
longpanda [Thu, 2 Dec 2021 12:02:42 +0000 (20:02 +0800)]
1.0.62 release

4 years agosupport LibreELEC 10.0.1 (#1268)
longpanda [Thu, 2 Dec 2021 07:17:52 +0000 (15:17 +0800)]
support LibreELEC 10.0.1 (#1268)

4 years agoVentoyPlugson update
longpanda [Thu, 2 Dec 2021 02:55:37 +0000 (10:55 +0800)]
VentoyPlugson update

4 years agoVentoyPlugson ---- A GUI ventoy.json configurator
longpanda [Wed, 1 Dec 2021 12:43:35 +0000 (20:43 +0800)]
VentoyPlugson ---- A GUI ventoy.json configurator