Skip to content

Commit

Permalink
(maint) add readme screenshot, add progress ticker to console
Browse files Browse the repository at this point in the history
  • Loading branch information
tphoney committed Feb 29, 2024
1 parent 3b0589f commit a018a29
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.vscode/
plex-lookup
__debug_bin*
4 changes: 3 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@

A tool to compare your plex libraries with other physical media rental / purchasing services.

![alt text](image.png)

## Table of Contents

- [Docker](#Docker)
- [Usage](#usage)
- [amazon](#amazon) uses blu-ray.com **BETA**
- [amazon](#amazon) uses blu-ray.com
- [cinema paradiso](#cinema-paradiso)
- [plex libraries](#plex-libraries)
- [web](#web)
Expand Down
Binary file added image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions web/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ func fetchPlexMovies(plexIP, plexLibraryID, plexToken string) (allMovies []types

func cinemaParadisoLookup(allMovies []types.Movie) (spax []types.MovieSearchResults) {
for _, movie := range allMovies {
fmt.Print(".")
movieResult, _ := cinemaparadiso.SearchCinemaParadiso(movie.Title, movie.Year)
spax = append(spax, movieResult)
}
Expand All @@ -98,6 +99,7 @@ func cinemaParadisoLookup(allMovies []types.Movie) (spax []types.MovieSearchResu

func amazonLookup(allMovies []types.Movie) (spax []types.MovieSearchResults) {
for _, movie := range allMovies {
fmt.Print(".")
movieResult, _ := amazon.SearchAmazon(movie.Title, movie.Year)
spax = append(spax, movieResult)
}
Expand Down

0 comments on commit a018a29

Please sign in to comment.