From 36d6a967c3b202e3115b6d1dc19a95d2ce04a40e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 26 Jan 2026 01:24:04 +0000 Subject: [PATCH 1/2] chore: update license headers [skip ci] --- webui/eslint.config.js | 5 +++++ webui/pnpm-lock.yaml | 3 +++ webui/src/app.css | 5 +++++ webui/src/components/Skeleton.tsx | 5 +++++ webui/src/components/TopBar.css | 5 +++++ webui/src/components/TopBar.tsx | 5 +++++ webui/src/lib/api.mock.ts | 5 +++++ webui/src/lib/api.ts | 5 +++++ webui/src/lib/store.ts | 5 +++++ webui/src/lib/theme.ts | 5 +++++ webui/src/material-web.d.ts | 5 +++++ webui/src/routes/GranaryTab.tsx | 5 +++++ webui/src/routes/InfoTab.tsx | 5 +++++ 13 files changed, 63 insertions(+) diff --git a/webui/eslint.config.js b/webui/eslint.config.js index 8378b436..00e29960 100644 --- a/webui/eslint.config.js +++ b/webui/eslint.config.js @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import js from "@eslint/js"; import tseslint from "typescript-eslint"; import solid from "eslint-plugin-solid"; diff --git a/webui/pnpm-lock.yaml b/webui/pnpm-lock.yaml index 761787cc..aadc43bf 100644 --- a/webui/pnpm-lock.yaml +++ b/webui/pnpm-lock.yaml @@ -1,3 +1,6 @@ +# Copyright 2026 Hybrid Mount Developers +# SPDX-License-Identifier: GPL-3.0-or-later + lockfileVersion: '9.0' settings: diff --git a/webui/src/app.css b/webui/src/app.css index a205a243..f6b339d9 100644 --- a/webui/src/app.css +++ b/webui/src/app.css @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + :root { --md-sys-shape-corner-medium: 12px; --md-sys-shape-corner-large: 16px; diff --git a/webui/src/components/Skeleton.tsx b/webui/src/components/Skeleton.tsx index 4684bd59..05146ff5 100644 --- a/webui/src/components/Skeleton.tsx +++ b/webui/src/components/Skeleton.tsx @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import "./Skeleton.css"; interface Props { diff --git a/webui/src/components/TopBar.css b/webui/src/components/TopBar.css index 0ad8d5b8..d9e2c92a 100644 --- a/webui/src/components/TopBar.css +++ b/webui/src/components/TopBar.css @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + .top-bar { flex-shrink: 0; background-color: var(--md-sys-color-surface-container); diff --git a/webui/src/components/TopBar.tsx b/webui/src/components/TopBar.tsx index c55f92ab..b0e4ac08 100644 --- a/webui/src/components/TopBar.tsx +++ b/webui/src/components/TopBar.tsx @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { Show, For } from "solid-js"; import { store } from "../lib/store"; import { ICONS } from "../lib/constants"; diff --git a/webui/src/lib/api.mock.ts b/webui/src/lib/api.mock.ts index 383bd2ea..122d312f 100644 --- a/webui/src/lib/api.mock.ts +++ b/webui/src/lib/api.mock.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { APP_VERSION } from "./constants_gen"; import { DEFAULT_CONFIG } from "./constants"; import type { diff --git a/webui/src/lib/api.ts b/webui/src/lib/api.ts index e9b9e431..f128daa4 100644 --- a/webui/src/lib/api.ts +++ b/webui/src/lib/api.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { DEFAULT_CONFIG, PATHS } from "./constants"; import { APP_VERSION } from "./constants_gen"; import { MockAPI } from "./api.mock"; diff --git a/webui/src/lib/store.ts b/webui/src/lib/store.ts index bf751f58..40ae28e5 100644 --- a/webui/src/lib/store.ts +++ b/webui/src/lib/store.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { createSignal, createMemo, createEffect, createRoot } from "solid-js"; import { API } from "./api"; import { DEFAULT_CONFIG, DEFAULT_SEED } from "./constants"; diff --git a/webui/src/lib/theme.ts b/webui/src/lib/theme.ts index 58c1dfba..a3034964 100644 --- a/webui/src/lib/theme.ts +++ b/webui/src/lib/theme.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { argbFromHex, hexFromArgb, diff --git a/webui/src/material-web.d.ts b/webui/src/material-web.d.ts index 6e7731c2..eb17df35 100644 --- a/webui/src/material-web.d.ts +++ b/webui/src/material-web.d.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import type { JSX } from "solid-js"; type BaseProps = JSX.HTMLAttributes; diff --git a/webui/src/routes/GranaryTab.tsx b/webui/src/routes/GranaryTab.tsx index dd805072..01d48535 100644 --- a/webui/src/routes/GranaryTab.tsx +++ b/webui/src/routes/GranaryTab.tsx @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { createSignal, createMemo, onMount, Show, For } from "solid-js"; import { API } from "../lib/api"; import { store } from "../lib/store"; diff --git a/webui/src/routes/InfoTab.tsx b/webui/src/routes/InfoTab.tsx index 5fc81efd..1d6c6bdf 100644 --- a/webui/src/routes/InfoTab.tsx +++ b/webui/src/routes/InfoTab.tsx @@ -1,3 +1,8 @@ +/** + * Copyright 2026 Hybrid Mount Developers + * SPDX-License-Identifier: GPL-3.0-or-later + */ + import { createSignal, onMount, Show, For, createMemo } from "solid-js"; import { store } from "../lib/store"; import { API } from "../lib/api"; From 2e208f4eae200118cafd5be01855b2f3b07acd45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:08:48 +0000 Subject: [PATCH 2/2] chore(deps): bump ksu from `9dcb5c4` to `5aab6aa` Bumps [ksu](https://github.com/Tools-cx-app/ksu) from `9dcb5c4` to `5aab6aa`. - [Commits](https://github.com/Tools-cx-app/ksu/compare/9dcb5c41e48c7b359fdbf203a91f0d37202dc0e8...5aab6aa46ca2a6499bd8d605ac942a39efa33ffb) --- updated-dependencies: - dependency-name: ksu dependency-version: 5aab6aa46ca2a6499bd8d605ac942a39efa33ffb dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 ++++++++++++++++++++++++++++-------- 1 file changed, 28 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6bebad44..482366e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -435,7 +435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.2", + "windows-sys 0.59.0", ] [[package]] @@ -650,14 +650,14 @@ dependencies = [ [[package]] name = "ksu" -version = "0.1.0" -source = "git+https://github.com/Tools-cx-app/ksu.git#9dcb5c41e48c7b359fdbf203a91f0d37202dc0e8" +version = "0.1.1" +source = "git+https://github.com/Tools-cx-app/ksu.git#5aab6aa46ca2a6499bd8d605ac942a39efa33ffb" dependencies = [ "anyhow", "libc", "log", - "nix", "rustix 1.1.3", + "thiserror", ] [[package]] @@ -718,7 +718,7 @@ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "meta-hybrid" -version = "2.0.72" +version = "2.2.0" dependencies = [ "android_logger", "anyhow", @@ -971,7 +971,7 @@ dependencies = [ "errno 0.3.14", "libc", "linux-raw-sys 0.11.0", - "windows-sys 0.61.2", + "windows-sys 0.59.0", ] [[package]] @@ -1108,7 +1108,27 @@ dependencies = [ "getrandom", "once_cell", "rustix 1.1.3", - "windows-sys 0.61.2", + "windows-sys 0.59.0", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", ] [[package]] @@ -1279,7 +1299,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.59.0", ] [[package]]