Skip to content

Commit 8f784c3

Browse files
authored
feat: Rewrite UI (#27)
* Feat: Add settings management with open settings window functionality * Feat: Implement comprehensive settings management including Ollama provider configurations * Rewrite UI * Delete settings.local.json and update .gitignore to include .claude directory
1 parent beaf555 commit 8f784c3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+7615
-13054
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# misc
2020
.DS_Store
2121
*.pem
22+
.claude/
2223

2324
# debug
2425
npm-debug.log*

compact-popup.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en" class="dark">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Refiner</title>
7+
<script>
8+
(function () {
9+
var s = localStorage.getItem("refiner-theme");
10+
if (s === "light" || s === "dark") {
11+
document.documentElement.className = s;
12+
}
13+
})();
14+
</script>
15+
</head>
16+
<body>
17+
<div id="root"></div>
18+
<script type="module" src="/src/popup.tsx"></script>
19+
</body>
20+
</html>

index.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!doctype html>
2+
<html lang="en" class="dark">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Refiner</title>
7+
<script>
8+
(function () {
9+
var s = localStorage.getItem("refiner-theme");
10+
if (s === "light" || s === "dark") {
11+
document.documentElement.className = s;
12+
}
13+
})();
14+
</script>
15+
</head>
16+
<body>
17+
<div id="root"></div>
18+
<script type="module" src="/src/main.tsx"></script>
19+
</body>
20+
</html>

next.config.mjs

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)