Skip to content

Commit

Permalink
Prepare version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Mar 11, 2021
1 parent bacde76 commit 697732b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,24 @@
## [Unreleased]


## [1.1.0] - 2021-03-10

### Added

* `--exclude-files` option accepts a [glob](https://en.wikipedia.org/wiki/Glob_(programming)) of file paths to ignore even if they are not indexed by Plex.

For example, you may ignore `/media/music/**/cover.*` to ignore cover images or `/media/music/**/*.m3u` to ignore album playlists.
* `--exclude-library` option accepts names of Plex libraries to skip checks.
* The command now accepts explicit Plex library names to check. This is mutually exclusive to `--exclude-library`.

For example, `./plex-orphaned-libraries --base-url .. --token .. Music Photos`


## [1.0.0] - 2021-03-06

- Initial release


[Unreleased]: https://github.com/JakeWharton/plex-orphaned-files/compare/1.0.0...HEAD
[Unreleased]: https://github.com/JakeWharton/plex-orphaned-files/compare/1.1.0...HEAD
[1.1.0]: https://github.com/JakeWharton/plex-orphaned-files/releases/tag/1.1.0
[1.0.0]: https://github.com/JakeWharton/plex-orphaned-files/releases/tag/1.0.0
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ See [command-line usage](#command-line) for how to run the binary.
### Command-Line

```
Usage: plex-orphaned-files [OPTIONS]
Usage: plex-orphaned-files [OPTIONS] [LIBRARY]...
Find files in your Plex libraries which are not indexed by Plex.
Expand All @@ -66,9 +66,17 @@ Options:
http://plex:32400/)
--token TOKEN Plex authentication token. See:
https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/
--folder-mapping MAPPING Map a plex folder path to a local filesystem path
(e.g., /media:/tank/media)
--folder-mapping MAPPING Map a Plex folder path to filesystem path (e.g.,
/media:/tank/media)
--exclude-files GLOB Glob pattern of files to ignore (e.g.,
/media/**/*.nfo, /music/**/cover.*)
--exclude-library NAME Name of libraries to exclude. Mutually exclusive
with LIBRARY arguments.
-h, --help Show this message and exit
Arguments:
LIBRARY Name of libraries to scan. All libraries will be scanned if none
specified. Mutually exclusive with --exclude-library
```

The `--base-url` and `--token` arguments are required.
Expand Down

0 comments on commit 697732b

Please sign in to comment.