From f15ee40d37c426c2a0792c9c58da887cb3192f4e Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 08:18:53 -0800 Subject: [PATCH 1/8] Update README.md --- README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/README.md b/README.md index b4c1e5f..d62fb9e 100644 --- a/README.md +++ b/README.md @@ -27,20 +27,3 @@ This will install the necessary libraries on your host and gives you command-line access to the tool through an entry-point `ptulsconv`. In a terminal window type `ptulsconv -h` for a list of available options. - -## Theory of Operation - -[Avid Pro Tools][avp] can be used to make spotting notes for ADR recording -sessions by creating spotting regions with descriptive text and exporting the -session as text. This file can then be dropped into Excel or any CSV-reading -app like Filemaker Pro. - -**ptulsconv** accepts a text export from Pro Tools and automatically creates -PDF and CSV documents for use in ADR spotting, recording, editing and -reporting, and supplemental JSON documents can be output for use with other -workflows. - -[avp]: http://www.avid.com/pro-tools -[quickstart]: https://ptulsconv.readthedocs.io/en/latest/quickstart.html - - From a18154edb0a31abfa6577f23db56e11fb25d4e8a Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 08:25:06 -0800 Subject: [PATCH 2/8] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d62fb9e..03b3203 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,4 @@ This will install the necessary libraries on your host and gives you command-line access to the tool through an entry-point `ptulsconv`. In a terminal window type `ptulsconv -h` for a list of available options. +[quickstart]: https://ptulsconv.readthedocs.io/en/latest/user/quickstart.html From e2c74084131212f3e5a3e8219b69908cd26c7209 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:08:52 -0800 Subject: [PATCH 3/8] Update pythonpublish.yml --- .github/workflows/pythonpublish.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 870006f..0eeeb79 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -27,3 +27,12 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* + - name: Report to Mastodon + uses: cbrgm/mastodon-github-action@v1.0.1 + with: + message: | + I just released a new version of ptulsconv, my ADR cue sheet generator! + https://github.com/iluvcapra/ptulsconv + env: + MASTODON_URL: ${{ secrets.MASTODON_URL }} + MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} From cdc8a838aca397c6793c13f97a5a0c2c126a4430 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:12:53 -0800 Subject: [PATCH 4/8] Update pythonpublish.yml --- .github/workflows/pythonpublish.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 0eeeb79..32615c6 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -27,12 +27,12 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* - - name: Report to Mastodon - uses: cbrgm/mastodon-github-action@v1.0.1 - with: - message: | - I just released a new version of ptulsconv, my ADR cue sheet generator! - https://github.com/iluvcapra/ptulsconv - env: - MASTODON_URL: ${{ secrets.MASTODON_URL }} - MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} +# - name: Report to Mastodon +# uses: cbrgm/mastodon-github-action@v1.0.1 +# with: +# message: | +# I just released a new version of ptulsconv, my ADR cue sheet generator! +# https://github.com/iluvcapra/ptulsconv +# env: +# MASTODON_URL: ${{ secrets.MASTODON_URL }} +# MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} From c02453d10f43a4ada7aadada0659d0d8e604e499 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:18:45 -0800 Subject: [PATCH 5/8] Create toot.yml --- .github/workflows/toot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/toot.yml diff --git a/.github/workflows/toot.yml b/.github/workflows/toot.yml new file mode 100644 index 0000000..14a27f9 --- /dev/null +++ b/.github/workflows/toot.yml @@ -0,0 +1,19 @@ +name: Test Toot + +on: + workflow_dispatch: + + +jobs: + print-tag: + runs-on: ubuntu-latest + steps: + - name: Report to Mastodon + uses: cbrgm/mastodon-github-action@v1.0.1 + env: + MASTODON_URL: ${{ secrets.MASTODON_URL }} + MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} + with: + message: | + This is a test toot, automatically posted by a github action. + https://github.com/iluvcapra/ptulsconv From e07b3bb6045f82db5379bf5c5aa1f37202667d13 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:28:13 -0800 Subject: [PATCH 6/8] Update toot.yml --- .github/workflows/toot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/toot.yml b/.github/workflows/toot.yml index 14a27f9..5027448 100644 --- a/.github/workflows/toot.yml +++ b/.github/workflows/toot.yml @@ -16,4 +16,4 @@ jobs: with: message: | This is a test toot, automatically posted by a github action. - https://github.com/iluvcapra/ptulsconv + ${{ github.repositoryUrl }} From ddc406b1ebfa995a1aa795eeda15f32bacbe31fa Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:35:29 -0800 Subject: [PATCH 7/8] Update toot.yml --- .github/workflows/toot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/toot.yml b/.github/workflows/toot.yml index 5027448..6f6d1bb 100644 --- a/.github/workflows/toot.yml +++ b/.github/workflows/toot.yml @@ -16,4 +16,7 @@ jobs: with: message: | This is a test toot, automatically posted by a github action. - ${{ github.repositoryUrl }} + + ${{ github.server_url }}/${{ github.repository }} + + ${{ github.ref }} From 07669e4ecaae70c321a427bf14b0312ecff2f961 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 20 Nov 2022 10:53:35 -0800 Subject: [PATCH 8/8] Update pythonpublish.yml Added post to Mastodon --- .github/workflows/pythonpublish.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 32615c6..100341f 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -27,12 +27,13 @@ jobs: run: | python setup.py sdist bdist_wheel twine upload dist/* -# - name: Report to Mastodon -# uses: cbrgm/mastodon-github-action@v1.0.1 -# with: -# message: | -# I just released a new version of ptulsconv, my ADR cue sheet generator! -# https://github.com/iluvcapra/ptulsconv -# env: -# MASTODON_URL: ${{ secrets.MASTODON_URL }} -# MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }} + - name: Report to Mastodon + uses: cbrgm/mastodon-github-action@v1.0.1 + with: + message: | + I just released a new version of ptulsconv, my ADR cue sheet generator! + + ${{ github.server_url }}/${{ github.repository }} + env: + MASTODON_URL: ${{ secrets.MASTODON_URL }} + MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}