-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd70bb6
commit 094b264
Showing
4 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tvrank" | ||
version = "0.7.8" | ||
version = "0.8.0" | ||
edition = "2021" | ||
description = "Query and sort information about movies and series" | ||
authors = ["Fred Morcos <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
* The `title` sub-command has been renamed to `search`. | ||
* The `movies-dir` and `series-dir` sub-commands have been renamed to `scan-movies` and | ||
`scan-series`, respectively. | ||
* Documentation updates to the `db` module. | ||
* This release fixes an issue with the `mark` sub-command writing in correct `tvrank.json` | ||
files. The incorrect `tvrank.json` files looked like this: | ||
|
||
```json | ||
{ | ||
"imdb": { | ||
"id": { | ||
"title_id": "ttXXXXX" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
While the correct `tvrank.json` files should like this: | ||
|
||
```json | ||
{ | ||
"imdb": { | ||
"id": "ttXXXXXX" | ||
} | ||
} | ||
``` | ||
|
||
* This release also fixes an issue (#54) with IMDB IDs that end with non-numeric | ||
characters being accepted. Example: `ttXXXXXabc` where XXXX are digits. |