Skip to content

Commit

Permalink
remove refs to 'rIssole'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMightyGit committed Aug 26, 2024
1 parent bbe4336 commit 2fc499b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![badge](./badge.svg) ![workflow status](https://github.com/TheMightyGit/rssole/actions/workflows/build.yml/badge.svg) [![Go Report Card](https://goreportcard.com/badge/github.com/TheMightyGit/rssole)](https://goreportcard.com/report/github.com/TheMightyGit/rssole)

# rssole (aka rissole)
# rssole

An RSS Reader inspired by the late Google Reader. Runs on your local machine or local network serving your RSS feeds via a clean responsive web interface.

Expand All @@ -16,8 +16,6 @@ I really miss Google Reader. Recently I noticed I'd gone back to an old habbit o

So I made this non-SaaS ode to Google Reader so I can triage my incoming information in one place with one interface in a way I like. At heart this is a very self serving project solely based around my needs, and because of that it's something I use constantly. Hopefully it's of use to some other people, or you can build upon it (MIT license, do what you want to it - make it comfortable for you).

The name is supposed to be a pun on 'rissole'. As well as 'rissole' containing the letters R S and S, a rissole is a "*a compressed mixture of meat and spices, coated in breadcrumbs and fried*" and that struck me as similar to the role of an RSS reader (compressing the mixed meat of the internet into a handy faceful).

## Pre-Built Binaries and Packages

Check out the [Releases](https://github.com/TheMightyGit/rssole/releases/) section in github, there should be a good selection of pre-built binaries
Expand Down
2 changes: 1 addition & 1 deletion cmd/rssole/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func getFeedsFileConfigSection(filename string) (rssole.ConfigSection, error) {
func handleFlags(configFilename, configReadCacheFilename *string) {
originalUsage := flag.Usage
flag.Usage = func() {
fmt.Println("RiSSOLE version", rssole.Version)
fmt.Println("RSSOLE version", rssole.Version)
fmt.Println()
originalUsage()
}
Expand Down
2 changes: 1 addition & 1 deletion internal/rssole/rssole.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func loadTemplates() error {
}

func Start(configFilename, configReadCacheFilename, listenAddress string, updateTime time.Duration) error {
slog.Info("RiSSOLE", "version", Version)
slog.Info("RSSOLE", "version", Version)

err := loadTemplates()
if err != nil {
Expand Down
4 changes: 2 additions & 2 deletions internal/rssole/templates/base.go.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!doctype html>
<html lang="en">
<head>
<title>RiSSOLE</title>
<title>RSSOLE</title>
<script src="/libs/htmx.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down Expand Up @@ -44,7 +44,7 @@
</button>
</div>
<div class="p-0 flex-grow-1 text-end text-truncate">
<a href="https://github.com/TheMightyGit/rssole" target="_new" class="btn text-secondary fs-6">RiSSOLE {{.Version}}</a>
<a href="https://github.com/TheMightyGit/rssole" target="_new" class="btn text-secondary fs-6">RSSOLE {{.Version}}</a>
</div>
</div>

Expand Down

0 comments on commit 2fc499b

Please sign in to comment.