From 0e1146f5789ac1ce843c5d71510de247738d3a86 Mon Sep 17 00:00:00 2001 From: Caramel Date: Wed, 15 Mar 2023 14:24:26 +0100 Subject: [PATCH] Rebrand --- .github/FUNDING.yml | 2 +- LICENSE | 2 +- backend/package.json | 4 ++-- frontend/package.json | 4 ++-- frontend/src/app/components/footer/footer.component.html | 6 +++--- frontend/src/index.html | 6 +++--- shared/package.json | 4 ++-- support/build.sh | 2 +- support/picsur-stage2.Dockerfile | 2 +- support/picsur.docker-compose.yml | 2 +- 10 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index c1752b1..42b1718 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,3 @@ # These are supported funding model platforms -github: rubikscraft +github: caramelfur diff --git a/LICENSE b/LICENSE index b153eaf..b347dc8 100644 --- a/LICENSE +++ b/LICENSE @@ -630,7 +630,7 @@ state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Picsur - An easy to use, selfhostable image sharing service like Imgur - Copyright (C) 2022 Rubikscraft + Copyright (C) 2022 Caramel This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published diff --git a/backend/package.json b/backend/package.json index 484db92..5e51317 100644 --- a/backend/package.json +++ b/backend/package.json @@ -3,8 +3,8 @@ "version": "0.5.1", "description": "Backend for Picsur", "license": "GPL-3.0", - "repository": "https://github.com/rubikscraft/Picsur", - "author": "Rubikscraft ", + "repository": "https://github.com/caramelfur/Picsur", + "author": "Caramel ", "type": "module", "main": "dist/main.js", "scripts": { diff --git a/frontend/package.json b/frontend/package.json index 7710174..46c84c8 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -3,8 +3,8 @@ "version": "0.5.1", "description": "Frontend for Picsur", "license": "GPL-3.0", - "repository": "https://github.com/rubikscraft/Picsur", - "author": "Rubikscraft ", + "repository": "https://github.com/caramelfur/Picsur", + "author": "Caramel ", "type": "module", "scripts": { "ng": "ng", diff --git a/frontend/src/app/components/footer/footer.component.html b/frontend/src/app/components/footer/footer.component.html index 42dffef..cd9f2c3 100644 --- a/frontend/src/app/components/footer/footer.component.html +++ b/frontend/src/app/components/footer/footer.component.html @@ -5,8 +5,8 @@ Made with favorite_border by - - Rubikscraft + + Caramel {{ isDemo ? ' - Demo Version' : '' }} @@ -16,7 +16,7 @@  - {{ version }} - - + Source Code diff --git a/frontend/src/index.html b/frontend/src/index.html index 27a8b1f..1943551 100644 --- a/frontend/src/index.html +++ b/frontend/src/index.html @@ -14,7 +14,7 @@ - + - + ", + "repository": "https://github.com/caramelfur/Picsur", + "author": "Caramel ", "type": "module", "main": "./dist/index.js", "dependencies": { diff --git a/support/build.sh b/support/build.sh index 9298921..2407317 100755 --- a/support/build.sh +++ b/support/build.sh @@ -1,6 +1,6 @@ #!/bin/bash -PACKAGE_URL="ghcr.io/rubikscraft/picsur" +PACKAGE_URL="ghcr.io/caramelfur/picsur" if [ "$1" == "alpha" ]; then PACKAGE_URL="$PACKAGE_URL-alpha" diff --git a/support/picsur-stage2.Dockerfile b/support/picsur-stage2.Dockerfile index ea00a0c..50894f1 100644 --- a/support/picsur-stage2.Dockerfile +++ b/support/picsur-stage2.Dockerfile @@ -1,7 +1,7 @@ # This dockerfile than builds the production dependencies and the final image # Always fetch amd64 image -FROM ghcr.io/rubikscraft/picsur-alpha-stage1:latest AS BUILDER_STAGE1 +FROM ghcr.io/caramelfur/picsur-alpha-stage1:latest AS BUILDER_STAGE1 FROM node:18-alpine AS BUILDER_STAGE2 diff --git a/support/picsur.docker-compose.yml b/support/picsur.docker-compose.yml index 54b643b..ae3ed38 100644 --- a/support/picsur.docker-compose.yml +++ b/support/picsur.docker-compose.yml @@ -1,7 +1,7 @@ version: '3' services: picsur: - image: ghcr.io/rubikscraft/picsur:latest + image: ghcr.io/caramelfur/picsur:latest container_name: picsur ports: - '8080:8080'