From 49fdaeb42a612db2945f38d383e1586714472c29 Mon Sep 17 00:00:00 2001 From: "Michael M. Chang" Date: Wed, 1 Jan 2025 03:38:59 -0500 Subject: [PATCH] update username (#234) --- README.md | 12 ++++----- frontend/package.json | 2 +- frontend/src/views/Login.tsx | 2 +- go.mod | 2 +- main.go | 8 +++--- nix/common.nix | 2 +- openapi/openapi.json | 4 +-- server/archive/archive.go | 2 +- server/archive/container.go | 2 +- server/archive/domain/archive.go | 2 +- server/archive/provider.go | 8 +++--- server/archive/repository/repository.go | 4 +-- server/archive/rest/handler.go | 8 +++--- server/archive/service/service.go | 4 +-- server/archiver/archiver.go | 4 +-- server/dbutil/migrate.go | 2 +- server/formats/parser.go | 2 +- server/handlers/filebrowser.go | 4 +-- server/handlers/login.go | 2 +- server/internal/livestream/livestream.go | 4 +-- server/internal/livestream/livestream_test.go | 4 +-- server/internal/livestream/monitor.go | 4 +-- server/internal/memory_db.go | 2 +- server/internal/message_queue.go | 2 +- server/internal/playlist.go | 2 +- server/internal/process.go | 4 +-- server/logging/handler.go | 6 ++--- server/openid/config.go | 2 +- server/rest/common.go | 2 +- server/rest/container.go | 6 ++--- server/rest/handlers.go | 2 +- server/rest/service.go | 6 ++--- server/rpc/container.go | 10 +++---- server/rpc/service.go | 10 +++---- server/server.go | 26 +++++++++---------- server/status/repository/repository.go | 4 +-- server/status/rest/handler.go | 2 +- server/status/service/service.go | 4 +-- server/status/status.go | 8 +++--- server/sys/fs.go | 4 +-- server/updater/update.go | 2 +- 41 files changed, 96 insertions(+), 96 deletions(-) diff --git a/README.md b/README.md index 852d5a2..fa1b2e1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ > [!NOTE] > A poll is up to decide the future of yt-dlp-web-ui frontend! If you're interested you can take part. -> https://github.com/marcopeocchi/yt-dlp-web-ui/discussions/223 +> https://github.com/marcopiovanello/yt-dlp-web-ui/discussions/223 # yt-dlp Web UI @@ -10,14 +10,14 @@ High performance extendeable web ui and RPC server for yt-dlp with low impact on Created for the only purpose of *fetching* videos from my server/nas and monitor upcoming livestreams. -**Docker images are available on [Docker Hub](https://hub.docker.com/r/marcobaobao/yt-dlp-webui) or [ghcr.io](https://github.com/marcopeocchi/yt-dlp-web-ui/pkgs/container/yt-dlp-web-ui)**. +**Docker images are available on [Docker Hub](https://hub.docker.com/r/marcobaobao/yt-dlp-webui) or [ghcr.io](https://github.com/marcopiovanello/yt-dlp-web-ui/pkgs/container/yt-dlp-web-ui)**. ```sh docker pull marcobaobao/yt-dlp-webui ``` ```sh # latest dev -docker pull ghcr.io/marcopeocchi/yt-dlp-web-ui:latest +docker pull ghcr.io/marcopiovanello/yt-dlp-web-ui:latest ``` ## Donate to yt-dlp-webui development @@ -31,7 +31,7 @@ docker pull ghcr.io/marcopeocchi/yt-dlp-web-ui:latest ![image](https://github.com/user-attachments/assets/16450a40-cda6-4c8b-9d20-8ec36282f6ed) ## Video showcase -[app.webm](https://github.com/marcopeocchi/yt-dlp-web-ui/assets/35533749/91545bc4-233d-4dde-8504-27422cb26964) +[app.webm](https://github.com/marcopiovanello/yt-dlp-web-ui/assets/35533749/91545bc4-233d-4dde-8504-27422cb26964) ## Settings @@ -52,7 +52,7 @@ This feature is disabled by default as this intended to be used to retrieve the To enable it just go to the settings page and enable the **Enable video/audio formats selection** flag! -## [Docker](https://github.com/marcopeocchi/yt-dlp-web-ui/pkgs/container/yt-dlp-web-ui) run +## [Docker](https://github.com/marcopiovanello/yt-dlp-web-ui/pkgs/container/yt-dlp-web-ui) run ```sh docker pull marcobaobao/yt-dlp-webui docker run -d -p 3033:3033 -v :/downloads marcobaobao/yt-dlp-webui @@ -110,7 +110,7 @@ services: restart: unless-stopped ``` -## [Prebuilt binaries](https://github.com/marcopeocchi/yt-dlp-web-ui/releases) installation +## [Prebuilt binaries](https://github.com/marcopiovanello/yt-dlp-web-ui/releases) installation ```sh # download the latest release from the releases page diff --git a/frontend/package.json b/frontend/package.json index 60e65fa..a80a810 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -6,7 +6,7 @@ "dev": "vite", "build": "vite build" }, - "author": "marcopeocchi", + "author": "marcopiovanello", "license": "GPL-3.0-only", "private": true, "dependencies": { diff --git a/frontend/src/views/Login.tsx b/frontend/src/views/Login.tsx index 8b76197..d7b23a0 100644 --- a/frontend/src/views/Login.tsx +++ b/frontend/src/views/Login.tsx @@ -93,7 +93,7 @@ export default function Login() { To configure authentication check the  - <a href='https://github.com/marcopeocchi/yt-dlp-web-ui/wiki/Authentication-methods'>wiki</a>. + <a href='https://github.com/marcopiovanello/yt-dlp-web-ui/wiki/Authentication-methods'>wiki</a>.