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 6e471a362611aeb90d80ca5ea151d5f7a5f00c98 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 16:08:57 +0000 Subject: [PATCH 2/2] chore(deps-dev): bump globals from 17.0.0 to 17.3.0 in /webui Bumps [globals](https://github.com/sindresorhus/globals) from 17.0.0 to 17.3.0. - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](https://github.com/sindresorhus/globals/compare/v17.0.0...v17.3.0) --- updated-dependencies: - dependency-name: globals dependency-version: 17.3.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- webui/package.json | 2 +- webui/pnpm-lock.yaml | 13 +++++-------- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/webui/package.json b/webui/package.json index 495246b8..658337df 100644 --- a/webui/package.json +++ b/webui/package.json @@ -14,7 +14,7 @@ "devDependencies": { "eslint": "^9.39.2", "eslint-plugin-solid": "^0.14.5", - "globals": "^17.0.0", + "globals": "^17.3.0", "prettier": "^3.8.0", "tslib": "^2.8.1", "typescript": "^5.9.3", diff --git a/webui/pnpm-lock.yaml b/webui/pnpm-lock.yaml index aadc43bf..4ec10fa8 100644 --- a/webui/pnpm-lock.yaml +++ b/webui/pnpm-lock.yaml @@ -1,6 +1,3 @@ -# Copyright 2026 Hybrid Mount Developers -# SPDX-License-Identifier: GPL-3.0-or-later - lockfileVersion: '9.0' settings: @@ -37,8 +34,8 @@ importers: specifier: ^0.14.5 version: 0.14.5(eslint@9.39.2)(typescript@5.9.3) globals: - specifier: ^17.0.0 - version: 17.0.0 + specifier: ^17.3.0 + version: 17.3.0 prettier: specifier: ^3.8.0 version: 3.8.0 @@ -832,8 +829,8 @@ packages: resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} engines: {node: '>=18'} - globals@17.0.0: - resolution: {integrity: sha512-gv5BeD2EssA793rlFWVPMMCqefTlpusw6/2TbAVMy0FzcG8wKJn4O+NqJ4+XWmmwrayJgw5TzrmWjFgmz1XPqw==} + globals@17.3.0: + resolution: {integrity: sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==} engines: {node: '>=18'} has-flag@4.0.0: @@ -1959,7 +1956,7 @@ snapshots: globals@14.0.0: {} - globals@17.0.0: {} + globals@17.3.0: {} has-flag@4.0.0: {}