Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions webui/eslint.config.js
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion webui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@material/material-color-utilities": "^0.3.0",
"@material/web": "^2.4.1",
"kernelsu": "^3.0.0",
"solid-js": "^1.9.10",
"solid-js": "^1.9.11",
"vite-plugin-solid": "^2.11.10"
}
}
46 changes: 23 additions & 23 deletions webui/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions webui/src/app.css
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
5 changes: 5 additions & 0 deletions webui/src/components/Skeleton.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright 2026 Hybrid Mount Developers
* SPDX-License-Identifier: GPL-3.0-or-later
*/

import "./Skeleton.css";

interface Props {
Expand Down
5 changes: 5 additions & 0 deletions webui/src/components/TopBar.css
Original file line number Diff line number Diff line change
@@ -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);
Expand Down
5 changes: 5 additions & 0 deletions webui/src/components/TopBar.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
5 changes: 5 additions & 0 deletions webui/src/lib/api.mock.ts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
5 changes: 5 additions & 0 deletions webui/src/lib/api.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
5 changes: 5 additions & 0 deletions webui/src/lib/store.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
5 changes: 5 additions & 0 deletions webui/src/lib/theme.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* Copyright 2026 Hybrid Mount Developers
* SPDX-License-Identifier: GPL-3.0-or-later
*/

import {
argbFromHex,
hexFromArgb,
Expand Down
5 changes: 5 additions & 0 deletions webui/src/material-web.d.ts
Original file line number Diff line number Diff line change
@@ -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<HTMLElement>;
Expand Down
5 changes: 5 additions & 0 deletions webui/src/routes/GranaryTab.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
5 changes: 5 additions & 0 deletions webui/src/routes/InfoTab.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
Loading