fix(ci): Resolve compilation errors in asusd and control-center

This commit is contained in:
mihai2mn
2026-01-24 17:47:27 +01:00
parent 23207ab8ae
commit 17bbd8aabb
5 changed files with 59 additions and 14 deletions

View File

@@ -96,7 +96,11 @@ export global AuraPageData {
@tr("Basic aura mode" => "Comet"),
@tr("Basic aura mode" => "Flash"),
];
in-out property <[string]> available_mode_names: [ @tr("Basic aura mode" => "Static"), @tr("Basic aura mode" => "Breathe"), @tr("Basic aura mode" => "Strobe") ];
in-out property <[string]> available_mode_names: [
@tr("Basic aura mode" => "Static"),
@tr("Basic aura mode" => "Breathe"),
@tr("Basic aura mode" => "Strobe")
];
in-out property <int> current_available_mode: 0;
in-out property <[int]> supported_basic_modes: [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12];
in-out property <[string]> zone_names: [
@@ -129,6 +133,8 @@ export global AuraPageData {
speed: 0,
direction: 0,
};
in-out property <int> led_mode;
callback cb_led_mode(int);
in-out property <color> color1;
in-out property <brush> colorbox1;
in-out property <color> color2;
@@ -139,9 +145,12 @@ export global AuraPageData {
out property <bool> speed_enabled: led_mode_data.mode == 1 || led_mode_data.mode == 2 || led_mode_data.mode == 3 || led_mode_data.mode == 4 || led_mode_data.mode == 5 || led_mode_data.mode == 6 || led_mode_data.mode == 7 || led_mode_data.mode == 8;
out property <bool> direction_enabled: led_mode_data.mode == 3;
callback apply_led_mode_data();
callback cb_led_mode_data(AuraEffect);
callback apply_effect(AuraEffect);
apply_effect(e) => { led_mode_data = e; apply_led_mode_data(); }
apply_effect(e) => {
led_mode_data = e;
cb_led_mode_data(e);
}
in-out property <int> zone;
in-out property <int> speed;
in-out property <int> direction;