Browse Source

Remove mt option as it's not useful anymore

pull/34/head
LecygneNoir 5 years ago
parent
commit
3797c9a9f0
4 changed files with 7 additions and 9 deletions
  1. +5
    -0
      CHANGELOG.md
  2. +0
    -3
      lib/pt_upload.py
  3. +0
    -1
      nfo_example.txt
  4. +2
    -5
      prismedia_upload.py

+ 5
- 0
CHANGELOG.md View File

@ -1,5 +1,10 @@
# Changelog
## v0.6.1-1 Hotfix
This fix prepares the python3 compatibility
- Remove mastodon tags (mt) options as it's deprecated. Compatibility between Peertube and Mastodon is complete.
## v0.6.1
### Fixes

+ 0
- 3
lib/pt_upload.py View File

@ -135,9 +135,6 @@ def upload_video(oauth, secret, options):
if len(strtag) >= 30:
logging.warning("Peertube: Sorry, Peertube does not support tag with more than 30 characters, please reduce your tag size")
exit(1)
# If Mastodon compatibility is enabled, clean tags from special characters
if options.get('--mt'):
strtag = utils.cleanString(strtag)
fields.append(("tags", strtag))
if options.get('--category'):

+ 0
- 1
nfo_example.txt View File

@ -12,7 +12,6 @@ description = Your complete video description
should be wrote with a blank space
at the beginning of the line :)
tags = list of tags, comma separated
mt = True
category = Films
cca = True
privacy = private

+ 2
- 5
prismedia_upload.py View File

@ -6,7 +6,7 @@ prismedia_upload - tool to upload videos to Peertube and Youtube
Usage:
prismedia_upload.py --file=<FILE> [options]
prismedia_upload.py -f <FILE> --tags=STRING [--mt options]
prismedia_upload.py -f <FILE> --tags=STRING [options]
prismedia_upload.py -h | --help
prismedia_upload.py --version
@ -18,8 +18,6 @@ Options:
WARN: tags with space and special characters (!, ', ", ?, ...)
are not supported by Mastodon to be published from Peertube
use mastodon compatibility below
--mt Force Mastodon compatibility for tags (drop every incompatible characters inside tags)
This option requires --tags
-c, --category=STRING Category for the videos, see below. (default: Films)
--cca License should be CreativeCommon Attribution (affects Youtube upload only)
-p, --privacy=STRING Choose between public, unlisted or private. (default: private)
@ -94,7 +92,7 @@ except ImportError:
'see https://github.com/ahupp/python-magic\n')
exit(1)
VERSION = "prismedia v0.6.1"
VERSION = "prismedia v0.6.1-1"
VALID_PRIVACY_STATUSES = ('public', 'private', 'unlisted')
VALID_CATEGORIES = (
@ -187,7 +185,6 @@ if __name__ == '__main__':
lambda x: not x.isdigit(),
error="Tags should be a string")
),
Optional('--mt'): bool,
Optional('--category'): Or(None, And(
str,
validateCategory,

Loading…
Cancel
Save