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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Aggregating RSS/Atom feeds to a single HTML page.

## Installation

First, you need to install [Go](https://golang.org/dl/) version 1.23 or higher.
After that, you can use `go get` to install Keruu:
First, you need to install [Go](https://golang.org/dl/) version 1.24 or higher.
After that, you can use `go install` to install Keruu:

$ go get github.com/jpallari/keruu
$ go install go.lepovirta.org/keruu@latest

The executable should now be in path `$GOPATH/bin/keruu` (or `~/go/bin/keruu`).

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jpallari/keruu
module go.lepovirta.org/keruu

go 1.24.0

Expand Down
2 changes: 1 addition & 1 deletion internal/aggregation/aggregation.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sort"
"time"

"github.com/jpallari/keruu/internal/feed"
"go.lepovirta.org/keruu/internal/feed"
)

type PostGroup struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/aggregation/grouping.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strconv"

"github.com/jpallari/keruu/internal/feed"
"go.lepovirta.org/keruu/internal/feed"
)

const (
Expand Down
8 changes: 4 additions & 4 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"io"
"os"

"github.com/jpallari/keruu/internal/aggregation"
"github.com/jpallari/keruu/internal/feed"
"github.com/jpallari/keruu/internal/fetch"
"github.com/jpallari/keruu/internal/file"
"go.lepovirta.org/keruu/internal/aggregation"
"go.lepovirta.org/keruu/internal/feed"
"go.lepovirta.org/keruu/internal/fetch"
"go.lepovirta.org/keruu/internal/file"
"gopkg.in/yaml.v3"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/feed/feed.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package feed
import (
"fmt"

"github.com/jpallari/keruu/internal/regexp"
"github.com/jpallari/keruu/internal/url"
"go.lepovirta.org/keruu/internal/regexp"
"go.lepovirta.org/keruu/internal/url"
)

// Config contains the details of a single feed
Expand Down
2 changes: 1 addition & 1 deletion internal/feed/feed_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package feed
import (
"testing"

"github.com/jpallari/keruu/internal/regexp"
"go.lepovirta.org/keruu/internal/regexp"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/feed/linker.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package feed
import (
"strings"

"github.com/jpallari/keruu/internal/url"
"go.lepovirta.org/keruu/internal/url"
"github.com/mmcdole/gofeed"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/feed/linker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package feed
import (
"testing"

"github.com/jpallari/keruu/internal/url"
"go.lepovirta.org/keruu/internal/url"
"github.com/mmcdole/gofeed"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/feed/post.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package feed
import (
"time"

"github.com/jpallari/keruu/internal/url"
"go.lepovirta.org/keruu/internal/url"
"github.com/mmcdole/gofeed"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/fetch/fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"

"github.com/jpallari/keruu/internal/feed"
"go.lepovirta.org/keruu/internal/feed"
"github.com/mmcdole/gofeed"
)

Expand Down
8 changes: 4 additions & 4 deletions keruu.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"log"
"os"

"github.com/jpallari/keruu/internal/aggregation"
"github.com/jpallari/keruu/internal/config"
"github.com/jpallari/keruu/internal/fetch"
"github.com/jpallari/keruu/internal/file"
"go.lepovirta.org/keruu/internal/aggregation"
"go.lepovirta.org/keruu/internal/config"
"go.lepovirta.org/keruu/internal/fetch"
"go.lepovirta.org/keruu/internal/file"
)

var cfgPath string
Expand Down