Compare commits
17 Commits
master
...
4721c058ae
| Author | SHA1 | Date | |
|---|---|---|---|
| 4721c058ae | |||
| e5bd7209eb | |||
| d8b03ec702 | |||
| ae288cc4e4 | |||
| 666722056b | |||
| 06aaa8cf74 | |||
| 394bdaca89 | |||
| 5dda540a16 | |||
| 7a146e9e4f | |||
| 7ac5eb89ce | |||
|
|
4652689aec | ||
|
|
a3dcfc043d | ||
|
|
efb4e5aef5 | ||
|
|
b9e75622d1 | ||
|
|
b82ba0749b | ||
| 8886302809 | |||
|
|
b5669cf831 |
@@ -1 +1 @@
|
|||||||
NEXT_PUBLIC_COMMIT_SHA=b5fc053
|
NEXT_PUBLIC_COMMIT_SHA=e5bd720
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ This is a "Modern" Navidrome (or Subsonic) client built with [Next.js](https://n
|
|||||||
- **Search** - Find music across your entire library
|
- **Search** - Find music across your entire library
|
||||||
- **Audio Player** with queue management
|
- **Audio Player** with queue management
|
||||||
- **Scrobbling** - Track your listening history
|
- **Scrobbling** - Track your listening history
|
||||||
- **Playlist Management** - Create and manage playlists
|
<!-- - **Playlist Management** - Create and manage playlists -->
|
||||||
|
|
||||||
### Preview
|
### Preview
|
||||||

|

|
||||||
@@ -34,8 +34,8 @@ This is a "Modern" Navidrome (or Subsonic) client built with [Next.js](https://n
|
|||||||
1. **Clone and install the required dependencies**
|
1. **Clone and install the required dependencies**
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/sillyangel/project-still.git
|
git clone https://github.com/sillyangel/mice.git
|
||||||
cd project-still/
|
cd mice/
|
||||||
pnpm install
|
pnpm install
|
||||||
|
|
||||||
# or npm
|
# or npm
|
||||||
@@ -113,7 +113,7 @@ docker run -p 3000:3000 \
|
|||||||
sillyangel/mice:latest
|
sillyangel/mice:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
**For detailed Docker configuration, environment variables, troubleshooting, and advanced setups, see [DOCKER.md](./DOCKER.md)**
|
**For detailed Docker configuration, environment variables, troubleshooting, and advanced setups, see [DOCKER.md](./docs/DOCKER.md)**
|
||||||
|
|
||||||
## Tech Stack
|
## Tech Stack
|
||||||
|
|
||||||
|
|||||||
@@ -255,7 +255,7 @@ export function LoginForm({
|
|||||||
<span>
|
<span>
|
||||||
<Label htmlFor="theme">Theme</Label>
|
<Label htmlFor="theme">Theme</Label>
|
||||||
</span>
|
</span>
|
||||||
<Select value={theme} onValueChange={setTheme}>
|
<Select value={theme || "blue"} onValueChange={setTheme}>
|
||||||
<SelectTrigger>
|
<SelectTrigger>
|
||||||
<SelectValue placeholder="Select a theme" />
|
<SelectValue placeholder="Select a theme" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ const ToastViewport = React.forwardRef<
|
|||||||
<ToastPrimitives.Viewport
|
<ToastPrimitives.Viewport
|
||||||
ref={ref}
|
ref={ref}
|
||||||
className={cn(
|
className={cn(
|
||||||
"fixed top-0 z-100 flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
|
"fixed top-0 z-[9999] flex max-h-screen w-full flex-col-reverse p-4 sm:bottom-0 sm:right-0 sm:top-auto sm:flex-col md:max-w-[420px]",
|
||||||
className
|
className
|
||||||
)}
|
)}
|
||||||
{...props}
|
{...props}
|
||||||
|
|||||||
Reference in New Issue
Block a user