-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Added - This CHANGELOG.md file. - GitHub Templates for Bug Reports and Feature Requests. - Syncing behavior section in the README.md file. - More info for the `-PlexUser` argument in the README.md file and when using the `-h` argument. ### Fixed - Sync collections now correctly works. - Sentences in README.md file now go correctly to the next line and grammar mistakes. - Syncing collections now correctly works. - Now correctly log the arguments passed before calling `subprocess.check_output()`. - Fixed some puctuation mistakes. ### Changed - Argument for the recently added in the README.md file. - Syncing collection can now either find the owner username, sync all users found in the env, or sync a list of users. - Sorted imports. - Now gets `HEADERS` from a function in utilities.py for less redundancy. ### Removed - Unused import os in scrobble.py. - Unused `arguments_string` variable in the TautulliPython2Trakt.py file.
- Loading branch information
1 parent
c3aa8a7
commit d1ee90e
Showing
8 changed files
with
308 additions
and
61 deletions.
There are no files selected for viewing
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,65 @@ | ||
name: Bug report | ||
description: Create a new ticket for a bug. | ||
title: "🐛 [BUG]: " | ||
labels: | ||
- bug | ||
- triage | ||
assignees: | ||
- TheGeeKing | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: A clear and concise description of the problem. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
placeholder: A clear and concise description of what you expected to happen. | ||
- type: textarea | ||
attributes: | ||
label: Minimal Reproduction | ||
description: Provide steps to reproduce the problem. | ||
value: |- | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Exception or Error | ||
description: provide error logs | ||
- type: textarea | ||
attributes: | ||
label: Screenshots/Screen recording | ||
description: If applicable, add screenshots/recording to help explain your problem. | ||
placeholder: Add screenshots/recording here | ||
- type: input | ||
attributes: | ||
label: Operating System and Version | ||
placeholder: eg. Windows 10, macOS 10.15, Ubuntu 20.04, etc. | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Python Version | ||
placeholder: e.g. 3.11 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Tautulli version | ||
description: Check Tautulli > Settings > Help & Info. | ||
placeholder: e.g. 2.12.5 | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Plex Media Server Version | ||
description: Check Plex Server > Settings (not Plex Web) > General. | ||
placeholder: eg. 1.75.0.3920 | ||
validations: | ||
required: true |
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,24 @@ | ||
name: 💡 Feature Request | ||
description: Create a new ticket for a new feature request. | ||
title: "💡 [Feature Request]: " | ||
labels: | ||
- enhancement | ||
- triage | ||
assignees: | ||
- TheGeeKing | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: A clear and concise description of the problem or missing capability. | ||
placeholder: I'm always frustrated when [...]. I would like to [...]. | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe the solution you'd like | ||
description: If you have a solution in mind, please describe it. | ||
- type: textarea | ||
attributes: | ||
label: Describe alternatives you've considered | ||
description: Have you considered any alternative solutions or workarounds? |
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,51 @@ | ||
# Changelog <!-- omit from toc --> | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
- Refactor code for requests. | ||
- Use a proper logging module. | ||
- Use proper argument conventions (-h, --help, case) and maybe an argument parser. | ||
- Maybe use a different way to `sys.exit()` known errors. | ||
|
||
## [1.1.0] - 2023-08-07 | ||
|
||
### Added | ||
|
||
- This CHANGELOG.md file. | ||
- GitHub Templates for Bug Reports and Feature Requests. | ||
- Syncing behavior section in the README.md file. | ||
- More info for the `-PlexUser` argument in the README.md file and when using the `-h` argument. | ||
|
||
### Fixed | ||
|
||
- Sync collections now correctly works. | ||
- Sentences in README.md file now go correctly to the next line and grammar mistakes. | ||
- Syncing collections now correctly works. | ||
- Now correctly log the arguments passed before calling `subprocess.check_output()`. | ||
- Fixed some puctuation mistakes. | ||
|
||
### Changed | ||
|
||
- Argument for the recently added in the README.md file. | ||
- Syncing collection can now either find the owner username, sync all users found in the env, or sync a list of users. | ||
- Sorted imports. | ||
- Now gets `HEADERS` from a function in utilities.py for less redundancy. | ||
|
||
### Removed | ||
|
||
- Unused import os in scrobble.py. | ||
- Unused `arguments_string` variable in the TautulliPython2Trakt.py file. | ||
|
||
## [1.0.0] - 2023-05-27 | ||
|
||
### Added | ||
|
||
- Initial release of TautulliPython2Trakt v1.0.0. | ||
|
||
[unreleased]: https://github.com/TheGeeKing/TautulliPython2Trakt/compare/v1.1.0...main | ||
[1.1.0]: https://github.com/TheGeeKing/TautulliPython2Trakt/compare/v1.0.0...v1.1.0 | ||
[1.0.0]: https://github.com/TheGeeKing/TautulliPython2Trakt/releases/tag/v1.0.0 |
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
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,5 +1,4 @@ | ||
import json | ||
import os | ||
import sys | ||
import time | ||
|
||
|
Oops, something went wrong.