From 8b28393596b861fb2db6f4eb9dc822b8d93b68cb Mon Sep 17 00:00:00 2001 From: Earlopain Date: Mon, 23 Jan 2023 20:43:56 +0100 Subject: [PATCH] [Misc] Move to org --- Gemfile | 2 +- Gemfile.lock | 2 +- README.md | 2 +- config/danbooru_default_config.rb | 2 +- docker/iqdb/Dockerfile | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index 8b26a7715..c8222d1eb 100644 --- a/Gemfile +++ b/Gemfile @@ -13,7 +13,7 @@ gem 'bcrypt', :require => "bcrypt" gem 'draper' gem 'streamio-ffmpeg' gem 'responders' -gem 'dtext_rb', :git => "https://github.com/zwagoth/dtext_rb.git", branch: "master", :require => "dtext" +gem 'dtext_rb', :git => "https://github.com/e621ng/dtext_rb.git", branch: "master", :require => "dtext" gem 'cityhash' gem 'memoist' gem 'bootsnap' diff --git a/Gemfile.lock b/Gemfile.lock index 2f18ce034..05c5ed630 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,5 +1,5 @@ GIT - remote: https://github.com/zwagoth/dtext_rb.git + remote: https://github.com/e621ng/dtext_rb.git revision: 978640b904ed359c0903b3b24affaea38eff97f0 branch: master specs: diff --git a/README.md b/README.md index a5c16d621..9bc5573f3 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ To mitigate this you can install a WSL distribution and clone the project inside ### Installation 1. Download and install the [prerequisites](#prerequisites). -1. Clone the repo with `git clone https://github.com/zwagoth/e621ng.git`. +1. Clone the repo with `git clone https://github.com/e621ng/e621ng.git`. 1. `cd` into the repo. 1. Copy the sample environment file with `cp .env.sample .env`. 1. Uncomment the `COMPOSE_PROFILES` variable if you wish to use solargraph. Doesn't work on Windows without WSL. diff --git a/config/danbooru_default_config.rb b/config/danbooru_default_config.rb index e8ad1f20c..a6455d684 100644 --- a/config/danbooru_default_config.rb +++ b/config/danbooru_default_config.rb @@ -52,7 +52,7 @@ module Danbooru end def source_code_url - "https://github.com/zwagoth/e621ng" + "https://github.com/e621ng/e621ng" end def commit_url(hash) diff --git a/docker/iqdb/Dockerfile b/docker/iqdb/Dockerfile index 2815a33e0..86fba4dc1 100644 --- a/docker/iqdb/Dockerfile +++ b/docker/iqdb/Dockerfile @@ -1,6 +1,6 @@ FROM ruby:2.7.3-alpine -ADD https://api.github.com/repos/zwagoth/iqdbs/git/refs/heads/master /tmp/iqdbs_version.json +ADD https://api.github.com/repos/e621ng/iqdbs/git/refs/heads/master /tmp/iqdbs_version.json COPY iqdb.patch /tmp/iqdb.patch ENV IQDB_VERSION=20161008 ENV IQDB_CHECKSUM=daa4812b35f84bc7e2f07661fd9abf73a06738c76beb92252666a86ebaea3c64 @@ -16,7 +16,7 @@ RUN apk --no-cache add build-base git libjpeg-turbo-dev gd-dev bash \ && make EXTRADEFS="-include stdint.h" -j$(nproc) \ && cp iqdb /usr/bin \ # iqdbs - && git clone https://github.com/zwagoth/iqdbs /iqdbs \ + && git clone https://github.com/e621ng/iqdbs /iqdbs \ && bundler install --gemfile /iqdbs/Gemfile \ # cleanup && rm /tmp/iqdb-$IQDB_VERSION.tar.bz2 \