diff --git a/README.md b/README.md index 77347ac..1e711aa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Plexdrive +Plexdrive [![Build Status](https://travis-ci.org/dweidenfeld/plexdrive.svg?branch=master)](https://travis-ci.org/dweidenfeld/plexdrive) __Plexdrive__ allows you to mount your Google Drive account as read-only fuse filesystem, with direct delete option on the filesystem. @@ -16,7 +16,7 @@ _If you like the project, feel free to make a small [donation via PayPal](https: ## Installation 1. First you need to install fuse on your system -2. Then you should download the newest release from the [GitHub release page](https://github.com/dweidenfeld/plexdrive/releases). +2. Then you should download the newest release from the [GitHub release page](https://github.com/plexdrive/plexdrive/releases). 3. Create your own client id and client secret (see [https://rclone.org/drive/#making-your-own-client-id](https://rclone.org/drive/#making-your-own-client-id)). 4. Sample command line for plexdrive ``` diff --git a/TUTORIAL.md b/TUTORIAL.md index 0818569..d577552 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -8,7 +8,7 @@ apt-get install fuse ``` ## Mounting the unencrypted volume with plexdrive -1. Then you should download the newest release from the [GitHub release page](https://github.com/dweidenfeld/plexdrive/releases). +1. Then you should download the newest release from the [GitHub release page](https://github.com/plexdrive/plexdrive/releases). 2. Create your own client id and client secret (see [https://rclone.org/drive/#making-your-own-client-id](https://rclone.org/drive/#making-your-own-client-id)). 3. Create a systemd startup script for automatic startup on boot ``` diff --git a/chunk/download.go b/chunk/download.go index 50195a7..15e10b6 100644 --- a/chunk/download.go +++ b/chunk/download.go @@ -9,7 +9,7 @@ import ( "time" . "github.com/claudetech/loggo/default" - "github.com/dweidenfeld/plexdrive/drive" + "github.com/plexdrive/plexdrive/drive" ) // Downloader handles concurrent chunk downloads diff --git a/chunk/manager.go b/chunk/manager.go index 2e9784f..07dbb69 100644 --- a/chunk/manager.go +++ b/chunk/manager.go @@ -7,7 +7,7 @@ import ( "math" - "github.com/dweidenfeld/plexdrive/drive" + "github.com/plexdrive/plexdrive/drive" ) // Manager manages chunks on disk diff --git a/ci/compile-nightly.yml b/ci/compile-nightly.yml index c635adf..a74b45a 100644 --- a/ci/compile-nightly.yml +++ b/ci/compile-nightly.yml @@ -7,11 +7,11 @@ image_resource: inputs: - name: plexdrive - path: go/src/github.com/dweidenfeld/plexdrive + path: go/src/github.com/plexdrive/plexdrive run: - path: go/src/github.com/dweidenfeld/plexdrive/ci/scripts/compile-nightly.sh + path: go/src/github.com/plexdrive/plexdrive/ci/scripts/compile-nightly.sh outputs: - name: release -- name: metadata \ No newline at end of file +- name: metadata diff --git a/ci/compile-release.yml b/ci/compile-release.yml index 2be65d6..27a560f 100644 --- a/ci/compile-release.yml +++ b/ci/compile-release.yml @@ -7,11 +7,11 @@ image_resource: inputs: - name: plexdrive - path: go/src/github.com/dweidenfeld/plexdrive + path: go/src/github.com/plexdrive/plexdrive run: - path: go/src/github.com/dweidenfeld/plexdrive/ci/scripts/compile-release.sh + path: go/src/github.com/plexdrive/plexdrive/ci/scripts/compile-release.sh outputs: - name: release -- name: metadata \ No newline at end of file +- name: metadata diff --git a/ci/meta/notification b/ci/meta/notification index 9d35dc0..7382721 100644 --- a/ci/meta/notification +++ b/ci/meta/notification @@ -1,2 +1,2 @@ Version %VERSION% has been published to GitHub. -Download it now: https://github.com/dweidenfeld/plexdrive/releases \ No newline at end of file +Download it now: https://github.com/plexdrive/plexdrive/releases diff --git a/ci/pipeline.yml b/ci/pipeline.yml index dc9c2e1..e0141ff 100644 --- a/ci/pipeline.yml +++ b/ci/pipeline.yml @@ -9,19 +9,19 @@ resources: - name: plexdrive-develop type: git source: - uri: https://github.com/dweidenfeld/plexdrive + uri: https://github.com/plexdrive/plexdrive branch: develop - name: plexdrive-master type: git source: - uri: https://github.com/dweidenfeld/plexdrive + uri: https://github.com/plexdrive/plexdrive branch: master - name: github-nightly-release type: github-release source: - owner: dweidenfeld + owner: plexdrive repository: plexdrive access_token: {{gh-access-token}} release: false @@ -30,7 +30,7 @@ resources: - name: github-release type: github-release source: - owner: dweidenfeld + owner: plexdrive repository: plexdrive access_token: {{gh-access-token}} release: true @@ -80,4 +80,4 @@ jobs: - release/* - put: slack-notification params: - text_file: metadata/notification \ No newline at end of file + text_file: metadata/notification diff --git a/ci/scripts/compile-nightly.sh b/ci/scripts/compile-nightly.sh index ed45643..5857799 100755 --- a/ci/scripts/compile-nightly.sh +++ b/ci/scripts/compile-nightly.sh @@ -6,7 +6,7 @@ export ORIGIN=$PWD export GOPATH=$PWD/go export PATH=$GOPATH/bin:$PATH export TS=$(date +%s) -cd $GOPATH/src/github.com/dweidenfeld/plexdrive +cd $GOPATH/src/github.com/plexdrive/plexdrive # Version export VERSION="$(cat ci/meta/version)-beta.$TS" @@ -25,4 +25,4 @@ mv plexdrive-* $ORIGIN/release # Check cd $ORIGIN ls -lah release -ls -lah metadata \ No newline at end of file +ls -lah metadata diff --git a/ci/scripts/compile-release.sh b/ci/scripts/compile-release.sh index 382ab5a..b2402ed 100755 --- a/ci/scripts/compile-release.sh +++ b/ci/scripts/compile-release.sh @@ -5,7 +5,7 @@ set -xe export ORIGIN=$PWD export GOPATH=$PWD/go export PATH=$GOPATH/bin:$PATH -cd $GOPATH/src/github.com/dweidenfeld/plexdrive +cd $GOPATH/src/github.com/plexdrive/plexdrive # Version export VERSION="$(cat ci/meta/version)" @@ -24,4 +24,4 @@ mv plexdrive-* $ORIGIN/release # Check cd $ORIGIN ls -lah release -ls -lah metadata \ No newline at end of file +ls -lah metadata diff --git a/ci/scripts/test.sh b/ci/scripts/test.sh index 92fc6ac..fe0bf61 100755 --- a/ci/scripts/test.sh +++ b/ci/scripts/test.sh @@ -4,7 +4,7 @@ set -xe export GOPATH=$PWD/go export PATH=$GOPATH/bin:$PATH -cd $GOPATH/src/github.com/dweidenfeld/plexdrive +cd $GOPATH/src/github.com/plexdrive/plexdrive go get -v -go test ./... -race -cover \ No newline at end of file +go test ./... -race -cover diff --git a/ci/test-nightly.yml b/ci/test-nightly.yml index 730b43c..c382770 100644 --- a/ci/test-nightly.yml +++ b/ci/test-nightly.yml @@ -7,7 +7,7 @@ image_resource: inputs: - name: plexdrive - path: go/src/github.com/dweidenfeld/plexdrive + path: go/src/github.com/plexdrive/plexdrive run: - path: go/src/github.com/dweidenfeld/plexdrive/ci/scripts/test.sh \ No newline at end of file + path: go/src/github.com/plexdrive/plexdrive/ci/scripts/test.sh diff --git a/ci/test-release.yml b/ci/test-release.yml index 730b43c..c382770 100644 --- a/ci/test-release.yml +++ b/ci/test-release.yml @@ -7,7 +7,7 @@ image_resource: inputs: - name: plexdrive - path: go/src/github.com/dweidenfeld/plexdrive + path: go/src/github.com/plexdrive/plexdrive run: - path: go/src/github.com/dweidenfeld/plexdrive/ci/scripts/test.sh \ No newline at end of file + path: go/src/github.com/plexdrive/plexdrive/ci/scripts/test.sh diff --git a/drive/drive.go b/drive/drive.go index 4fa026e..b32a4bd 100644 --- a/drive/drive.go +++ b/drive/drive.go @@ -7,7 +7,7 @@ import ( "time" . "github.com/claudetech/loggo/default" - "github.com/dweidenfeld/plexdrive/config" + "github.com/plexdrive/plexdrive/config" "golang.org/x/oauth2" gdrive "google.golang.org/api/drive/v3" "google.golang.org/api/googleapi" diff --git a/main.go b/main.go index 087ae8d..f1eb3a3 100644 --- a/main.go +++ b/main.go @@ -19,10 +19,10 @@ import ( "github.com/claudetech/loggo" . "github.com/claudetech/loggo/default" - "github.com/dweidenfeld/plexdrive/chunk" - "github.com/dweidenfeld/plexdrive/config" - "github.com/dweidenfeld/plexdrive/drive" - "github.com/dweidenfeld/plexdrive/mount" + "github.com/plexdrive/plexdrive/chunk" + "github.com/plexdrive/plexdrive/config" + "github.com/plexdrive/plexdrive/drive" + "github.com/plexdrive/plexdrive/mount" flag "github.com/ogier/pflag" "golang.org/x/sys/unix" ) diff --git a/mount/mount.go b/mount/mount.go index f6f3f05..fe0667c 100644 --- a/mount/mount.go +++ b/mount/mount.go @@ -12,8 +12,8 @@ import ( "bazil.org/fuse" "bazil.org/fuse/fs" . "github.com/claudetech/loggo/default" - "github.com/dweidenfeld/plexdrive/chunk" - "github.com/dweidenfeld/plexdrive/drive" + "github.com/plexdrive/plexdrive/chunk" + "github.com/plexdrive/plexdrive/drive" "golang.org/x/net/context" )