Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: exTerEX/morphic
slug: andreassag/morphic
fail_ci_if_error: true
files: ./coverage.out
flags: unittests
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A self-hosted media toolkit — format conversion, duplicate detection, and file organisation in a single dark-themed web UI, built entirely in Go.

[![Build](https://github.com/exterex/morphic/actions/workflows/documentation.yml/badge.svg)](https://github.com/exterex/morphic/actions/workflows/documentation.yml)
[![Build](https://github.com/andreassag/morphic/actions/workflows/documentation.yml/badge.svg)](https://github.com/andreassag/morphic/actions/workflows/documentation.yml)

---

Expand Down Expand Up @@ -48,7 +48,7 @@ Restructure a media collection into clean date-based folders or rename files in
## Quick Start

```bash
git clone https://github.com/exterex/morphic
git clone https://github.com/andreassag/morphic
cd morphic
make build # compiles to ./bin/morphic
./bin/morphic # opens http://127.0.0.1:8000 in the browser
Expand Down
4 changes: 2 additions & 2 deletions cmd/morphic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"os/exec"
"runtime"

"github.com/exterex/morphic/internal/shared"
"github.com/exterex/morphic/web"
"github.com/andreassag/morphic/internal/shared"

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / lint

golang.org/x/image@v0.38.0: missing go.sum entry for go.mod file; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / coverage

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / coverage

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / coverage

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:

Check failure on line 10 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / coverage

no required module provides package github.com/andreassag/morphic/internal/shared; to add it:
"github.com/andreassag/morphic/web"

Check failure on line 11 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / lint

golang.org/x/image@v0.38.0: missing go.sum entry for go.mod file; to add it:

Check failure on line 11 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / test

no required module provides package github.com/andreassag/morphic/web; to add it:

Check failure on line 11 in cmd/morphic/main.go

View workflow job for this annotation

GitHub Actions / coverage

no required module provides package github.com/andreassag/morphic/web; to add it:
Comment on lines +10 to +11
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ title: morphic
description: A self-hosted media toolkit — format conversion, duplicate detection, and file organisation in a single web UI.
theme: jekyll-theme-cayman
show_downloads: false
repository: exterex/morphic
repository: andreassag/morphic
github:
repository_url: https://github.com/exterex/morphic
repository_url: https://github.com/andreassag/morphic
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A self-hosted media toolkit written in Go. Convert formats, find duplicates, and
## Getting Started

```bash
git clone https://github.com/exterex/morphic
git clone https://github.com/andreassag/morphic
cd morphic
make build
./bin/morphic # opens http://127.0.0.1:8000
Expand Down Expand Up @@ -157,4 +157,4 @@ make run # build + start server

## License

[MIT License](https://github.com/exterex/morphic/blob/main/LICENSE)
[MIT License](https://github.com/andreassag/morphic/blob/main/LICENSE)
2 changes: 1 addition & 1 deletion internal/converter/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sort"
"strings"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// VideoContainerConfig describes a supported output video container.
Expand Down
2 changes: 1 addition & 1 deletion internal/converter/converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"

"github.com/disintegration/imaging"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// toWindowsPath converts a WSL /mnt/X/... path to a Windows X:\... path.
Expand Down
2 changes: 1 addition & 1 deletion internal/converter/converter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strings"
"testing"

"github.com/exterex/morphic/internal/converter"
"github.com/andreassag/morphic/internal/converter"
)

// assetsDir returns the absolute path to assets/test relative to this file.
Expand Down
2 changes: 1 addition & 1 deletion internal/converter/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"sort"
"strings"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// ScanResult holds the output of a folder scan.
Expand Down
4 changes: 2 additions & 2 deletions internal/dupfinder/dupfinder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"path/filepath"
"testing"

"github.com/exterex/morphic/internal/dupfinder"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/dupfinder"
"github.com/andreassag/morphic/internal/shared"
)

// assetsDir returns the path to assets/test from internal/dupfinder/.
Expand Down
2 changes: 1 addition & 1 deletion internal/dupfinder/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"

"github.com/corona10/goimagehash"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// ImageInfo stores information about an image file.
Expand Down
2 changes: 1 addition & 1 deletion internal/dupfinder/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// ScanJob represents a running or completed dupfinder job.
Expand Down
2 changes: 1 addition & 1 deletion internal/dupfinder/videos.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

"github.com/corona10/goimagehash"
"github.com/disintegration/imaging"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// VideoInfo stores information about a video file.
Expand Down
2 changes: 1 addition & 1 deletion internal/organizer/organizer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/exterex/morphic/internal/organizer"
"github.com/andreassag/morphic/internal/organizer"
)

// assetsDir returns the abs path of assets/test from internal/organizer/.
Expand Down
2 changes: 1 addition & 1 deletion internal/organizer/scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"
"time"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// ScanJob represents an organizer scan/plan/execute job.
Expand Down
2 changes: 1 addition & 1 deletion internal/shared/shared_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"testing"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
)

// assetsDir returns assets/test relative to internal/shared/.
Expand Down
4 changes: 2 additions & 2 deletions web/routes_converter.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"os"
"time"

"github.com/exterex/morphic/internal/converter"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/converter"

Check failure on line 8 in web/routes_converter.go

View workflow job for this annotation

GitHub Actions / lint

golang.org/x/image@v0.38.0: missing go.sum entry for go.mod file; to add it:
"github.com/andreassag/morphic/internal/shared"
"github.com/gin-gonic/gin"
)

Expand Down
4 changes: 2 additions & 2 deletions web/routes_dupfinder.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"os"
"time"

"github.com/exterex/morphic/internal/dupfinder"
"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/dupfinder"

Check failure on line 8 in web/routes_dupfinder.go

View workflow job for this annotation

GitHub Actions / lint

golang.org/x/image@v0.38.0: missing go.sum entry for go.mod file; to add it:
"github.com/andreassag/morphic/internal/shared"
"github.com/gin-gonic/gin"
)

Expand Down
2 changes: 1 addition & 1 deletion web/routes_organizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import (
"net/http"

"github.com/exterex/morphic/internal/organizer"
"github.com/andreassag/morphic/internal/organizer"

Check failure on line 6 in web/routes_organizer.go

View workflow job for this annotation

GitHub Actions / lint

golang.org/x/image@v0.38.0: missing go.sum entry for go.mod file; to add it:
"github.com/gin-gonic/gin"
)

Expand Down
2 changes: 1 addition & 1 deletion web/routes_shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"sort"
"strings"

"github.com/exterex/morphic/internal/shared"
"github.com/andreassag/morphic/internal/shared"
"github.com/gin-gonic/gin"
)

Expand Down
Loading