From 65342cdf8a8db76fa5325c6c12c4c5150b248831 Mon Sep 17 00:00:00 2001 From: darakuneko Date: Fri, 26 Jan 2024 18:28:14 +0900 Subject: [PATCH 1/3] Added VIALRGB effects --- src/main/python/editor/rgb_configurator.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/python/editor/rgb_configurator.py b/src/main/python/editor/rgb_configurator.py index b11e2a28d7..84853e714e 100644 --- a/src/main/python/editor/rgb_configurator.py +++ b/src/main/python/editor/rgb_configurator.py @@ -113,6 +113,13 @@ def __init__(self, idx, name): VialRGBEffect(42, "Solid Multisplash"), VialRGBEffect(43, "Pixel Rain"), VialRGBEffect(44, "Pixel Fractal"), + VialRGBEffect(45, "Pixel Flow"), + VialRGBEffect(46, "Flower Blooming"), + VialRGBEffect(47, "Starlight"), + VialRGBEffect(48, "Starlight Hue"), + VialRGBEffect(49, "Starlight Sat"), + VialRGBEffect(50, "Riverflow"), + ] From fd65fa7b8375f4d52d55baa85d496a4916289965 Mon Sep 17 00:00:00 2001 From: darakuneko Date: Fri, 26 Jan 2024 21:38:55 +0900 Subject: [PATCH 2/3] fix effect name --- src/main/python/editor/rgb_configurator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/python/editor/rgb_configurator.py b/src/main/python/editor/rgb_configurator.py index 84853e714e..c1afd07d1f 100644 --- a/src/main/python/editor/rgb_configurator.py +++ b/src/main/python/editor/rgb_configurator.py @@ -116,8 +116,8 @@ def __init__(self, idx, name): VialRGBEffect(45, "Pixel Flow"), VialRGBEffect(46, "Flower Blooming"), VialRGBEffect(47, "Starlight"), - VialRGBEffect(48, "Starlight Hue"), - VialRGBEffect(49, "Starlight Sat"), + VialRGBEffect(48, "Starlight Dual Hue"), + VialRGBEffect(49, "Starlight Dual Sat"), VialRGBEffect(50, "Riverflow"), ] From 64c0f15439aeecfd290e2d7e62aa21b7e41c97dd Mon Sep 17 00:00:00 2001 From: darakuneko Date: Mon, 29 Jan 2024 10:28:29 +0900 Subject: [PATCH 3/3] remove empty line --- src/main/python/editor/rgb_configurator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/python/editor/rgb_configurator.py b/src/main/python/editor/rgb_configurator.py index c1afd07d1f..bed0069576 100644 --- a/src/main/python/editor/rgb_configurator.py +++ b/src/main/python/editor/rgb_configurator.py @@ -119,7 +119,6 @@ def __init__(self, idx, name): VialRGBEffect(48, "Starlight Dual Hue"), VialRGBEffect(49, "Starlight Dual Sat"), VialRGBEffect(50, "Riverflow"), - ]