Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
94a5e8e
Convert Renamer to Svelte
madebyisaacr Aug 1, 2025
4808235
Combine CSS into one file
madebyisaacr Aug 1, 2025
8e01f09
Improve styles
madebyisaacr Aug 1, 2025
1774b0c
Add vector set and component support
madebyisaacr Aug 1, 2025
ed65987
Filter out replica nodes
madebyisaacr Aug 1, 2025
dbe48d7
Remove Svelte, improve spinner and search icon
madebyisaacr Aug 1, 2025
be5f3e9
Remove unused icon, make stars not draggable
madebyisaacr Aug 1, 2025
4027d6e
Improve layer icons
madebyisaacr Aug 1, 2025
21e597a
Add classnames, eslint fixes
madebyisaacr Aug 1, 2025
20a2c26
eslint and typescript fixes
madebyisaacr Aug 1, 2025
83b8576
Update SearchIcon.tsx
madebyisaacr Aug 2, 2025
aa3d344
Auto focus input
madebyisaacr Aug 4, 2025
23ced01
Fix button color
madebyisaacr Aug 4, 2025
d1964c1
Add overflow gradients
madebyisaacr Aug 4, 2025
d31fcfb
Replace tabs with segmented control
madebyisaacr Aug 4, 2025
a64e13f
Fix rename not working
madebyisaacr Aug 4, 2025
4330261
Add notification, disable button when no results
madebyisaacr Aug 4, 2025
08d6851
Move error notification
madebyisaacr Aug 4, 2025
86603bd
Show correct number in notification
madebyisaacr Aug 4, 2025
1ef2ea4
Fix CSS
madebyisaacr Aug 4, 2025
4ed97e7
Fix eslint error
madebyisaacr Aug 4, 2025
77322fd
Fix rename error
madebyisaacr Aug 4, 2025
2ebb132
Revert tab style
madebyisaacr Aug 4, 2025
6ddd7a3
Update batch_process_results.ts
madebyisaacr Aug 4, 2025
a40463c
Remove vector set support
madebyisaacr Aug 4, 2025
5d7692c
Fix replica filtering on variants/breakpoints
madebyisaacr Aug 5, 2025
01cb97f
Code improvements
madebyisaacr Aug 5, 2025
e365fba
Update SearchIcon.tsx
madebyisaacr Aug 5, 2025
b55b5af
Address review points
madebyisaacr Aug 5, 2025
dc313f3
Update indexer.ts
madebyisaacr Aug 5, 2025
b77551f
Move rename counter logic
madebyisaacr Aug 5, 2025
327da6d
Eslint error fix
madebyisaacr Aug 5, 2025
178b5c1
e?.preventDefault()
madebyisaacr Aug 6, 2025
a1af2ee
Implement virtual list
madebyisaacr Aug 11, 2025
91a2ecd
Use id for key
madebyisaacr Aug 12, 2025
afed450
Add title to rows
madebyisaacr Aug 12, 2025
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/mri-npm-1.2.0-8ecee0357d-6775a1d222.zip
Binary file not shown.
Binary file not shown.
Binary file removed .yarn/cache/sade-npm-1.8.1-4759dc74c1-1c67ba03c9.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 10 additions & 10 deletions plugins/renamer/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Renamer</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Renamer</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
20 changes: 7 additions & 13 deletions plugins/renamer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,23 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"check-svelte": "svelte-check",
"dev": "vite",
"build": "vite build",
"dev": "run g:dev",
"build": "run g:build",
"check-biome": "run g:check-biome",
"check-eslint": "run g:check-eslint",
"pack": "npx framer-plugin-tools@latest pack",
"preview": "vite preview",
"preview": "run g:preview",
"pack": "framer-plugin-tools pack",
"check-typescript": "run g:check-typescript"
},
"dependencies": {
"framer-plugin": "^3.3.2",
"classnames": "^2.5.1",
"framer-plugin": "^3.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.1.0",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"svelte": "^5.35.2",
"svelte-check": "^4.2.2",
"typescript": "^5.8.3",
"vite": "^7.0.1",
"vite-plugin-framer": "^1.0.7",
"vite-plugin-mkcert": "^1.17.8"
"framer-plugin-tools": "^1.0.0"
}
}
6 changes: 0 additions & 6 deletions plugins/renamer/public/framer.json

This file was deleted.

Loading
Loading