Skip to content

Commit

Permalink
Update all github repo references (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbuenemann committed Sep 3, 2020
1 parent b6c8f17 commit 6baff61
Show file tree
Hide file tree
Showing 16 changed files with 34 additions and 34 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
<a href="https://github.com/dweidenfeld/plexdrive"><img src="logo/banner.png" alt="Plexdrive" /></a>
<a href="https://github.com/plexdrive/plexdrive"><img src="logo/banner.png" alt="Plexdrive" /></a>
[![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.
Expand All @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion TUTORIAL.md
Expand Up @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion chunk/download.go
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion chunk/manager.go
Expand Up @@ -7,7 +7,7 @@ import (

"math"

"github.com/dweidenfeld/plexdrive/drive"
"github.com/plexdrive/plexdrive/drive"
)

// Manager manages chunks on disk
Expand Down
6 changes: 3 additions & 3 deletions ci/compile-nightly.yml
Expand Up @@ -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
- name: metadata
6 changes: 3 additions & 3 deletions ci/compile-release.yml
Expand Up @@ -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
- name: metadata
2 changes: 1 addition & 1 deletion ci/meta/notification
@@ -1,2 +1,2 @@
Version %VERSION% has been published to GitHub.
Download it now: https://github.com/dweidenfeld/plexdrive/releases
Download it now: https://github.com/plexdrive/plexdrive/releases
10 changes: 5 additions & 5 deletions ci/pipeline.yml
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -80,4 +80,4 @@ jobs:
- release/*
- put: slack-notification
params:
text_file: metadata/notification
text_file: metadata/notification
4 changes: 2 additions & 2 deletions ci/scripts/compile-nightly.sh
Expand Up @@ -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"
Expand All @@ -25,4 +25,4 @@ mv plexdrive-* $ORIGIN/release
# Check
cd $ORIGIN
ls -lah release
ls -lah metadata
ls -lah metadata
4 changes: 2 additions & 2 deletions ci/scripts/compile-release.sh
Expand Up @@ -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)"
Expand All @@ -24,4 +24,4 @@ mv plexdrive-* $ORIGIN/release
# Check
cd $ORIGIN
ls -lah release
ls -lah metadata
ls -lah metadata
4 changes: 2 additions & 2 deletions ci/scripts/test.sh
Expand Up @@ -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
go test ./... -race -cover
4 changes: 2 additions & 2 deletions ci/test-nightly.yml
Expand Up @@ -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
path: go/src/github.com/plexdrive/plexdrive/ci/scripts/test.sh
4 changes: 2 additions & 2 deletions ci/test-release.yml
Expand Up @@ -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
path: go/src/github.com/plexdrive/plexdrive/ci/scripts/test.sh
2 changes: 1 addition & 1 deletion drive/drive.go
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions main.go
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions mount/mount.go
Expand Up @@ -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"
)

Expand Down

0 comments on commit 6baff61

Please sign in to comment.