├── .github └── workflows │ └── release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── find_og_tag.go ├── go.mod ├── go.sum ├── prepare_release.sh ├── progress_writer.go ├── rrip.go ├── sanitize_filenames.go ├── template_util.go ├── types.go └── util.go /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/README.md -------------------------------------------------------------------------------- /find_og_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/find_og_tag.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/go.sum -------------------------------------------------------------------------------- /prepare_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/prepare_release.sh -------------------------------------------------------------------------------- /progress_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/progress_writer.go -------------------------------------------------------------------------------- /rrip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/rrip.go -------------------------------------------------------------------------------- /sanitize_filenames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/sanitize_filenames.go -------------------------------------------------------------------------------- /template_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/template_util.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/types.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahesh-hegde/rrip/HEAD/util.go --------------------------------------------------------------------------------