From 1228e2adbe4faf352bb1ec9c0139a25c0c0dac9c Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sat, 2 Oct 2021 17:42:09 -0700 Subject: [PATCH] Manpage 0.8.2 bump --- man/ptulsconv.1 | 24 ++---------------------- ptulsconv/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 24 deletions(-) diff --git a/man/ptulsconv.1 b/man/ptulsconv.1 index 70442b5..f02858c 100644 --- a/man/ptulsconv.1 +++ b/man/ptulsconv.1 @@ -1,38 +1,18 @@ .\" Manpage for ptulsconv .\" Contact https://github.com/iluvcapra/ptulsconv -.TH ptulsconv 1 "15 May 2020" "0.4.0" "ptulsconv man page" +.TH ptulsconv 1 "15 May 2020" "0.8.2" "ptulsconv man page" .SH NAME .BR "ptulsconv" " \- convert .IR "Avid Pro Tools" " text exports" .SH SYNOPSIS ptulsconv [OPTIONS] Export.txt .SH DESCRIPTION -Convert a Pro Tools text export into a flat list of clip names with timecodes. A tagging -language is interpreted to add columns and type the data. The default output format is -an XML file for import into Filemaker Pro. +Convert a Pro Tools text export into ADR reports. .SH OPTIONS .IP "-h, --help" show a help message and exit. -.TP -.RI "-i " "TC" -Drop events before this timecode. -.TP -.RI "-o " "TC" -Drop events after this timecode. -.TP -.RI "-m " -Include muted clips. -.TP -.RI "--json " -Output a JSON document instead of XML. (--xform will have no effect.) -.TP -.RI "--xform " "NAME" -Convert the output with a built-in output transform. .TP .RI "--show-available-tags" Print a list of tags that are interpreted and exit. -.TP -.RI "--show-available-transforms" -Print a list of built-in output transforms and exit. .SH AUTHOR Jamie Hardt (contact at https://github.com/iluvcapra/ptulsconv) diff --git a/ptulsconv/__init__.py b/ptulsconv/__init__.py index 285400a..8bb00ec 100644 --- a/ptulsconv/__init__.py +++ b/ptulsconv/__init__.py @@ -1,5 +1,5 @@ from ptulsconv.docparser.ptuls_grammar import protools_text_export_grammar -__version__ = '0.8.1' +__version__ = '0.8.2' __author__ = 'Jamie Hardt' __license__ = 'MIT' diff --git a/setup.py b/setup.py index f276f9b..4382a7c 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup(name='ptulsconv', 'Topic :: Multimedia :: Sound/Audio', "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Development Status :: 4 - Beta", "Topic :: Text Processing :: Filters"], packages=['ptulsconv'],