From 26c58e05011c251d1e3ce450066efbb9e542a21c Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Wed, 11 Jan 2023 20:49:15 +0000 Subject: [PATCH 1/3] added ToneLib Zoom --- 01-main/manifest | 1 + 01-main/packages/tonelib-zoom | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 01-main/packages/tonelib-zoom diff --git a/01-main/manifest b/01-main/manifest index 5b217ee6..700a193a 100644 --- a/01-main/manifest +++ b/01-main/manifest @@ -198,6 +198,7 @@ terraform texworks tidal-hifi tixati +tonelib-zoom tribler trivy typora diff --git a/01-main/packages/tonelib-zoom b/01-main/packages/tonelib-zoom new file mode 100644 index 00000000..afb4c6fd --- /dev/null +++ b/01-main/packages/tonelib-zoom @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="Zoom" +if [ "${ACTION}" != "prettylist" ]; then + URL="https://www.tonelib.net/download/ToneLib-Zoom-amd64.deb" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib Zoom" +WEBSITE="https://tonelib.net" +SUMMARY="An easy-to-use application which allows you to see, change and save all the settings in your Zoom guitar pedal." From b74058efa9b14ac9d857609337a3867560fd5d8e Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Wed, 11 Jan 2023 20:53:58 +0000 Subject: [PATCH 2/3] added ToneLib Freeware --- 01-main/manifest | 3 +++ 01-main/packages/tonelib-bassdrive | 10 ++++++++++ 01-main/packages/tonelib-noisereducer | 10 ++++++++++ 01-main/packages/tonelib-tubewarmth | 10 ++++++++++ 4 files changed, 33 insertions(+) create mode 100644 01-main/packages/tonelib-bassdrive create mode 100644 01-main/packages/tonelib-noisereducer create mode 100644 01-main/packages/tonelib-tubewarmth diff --git a/01-main/manifest b/01-main/manifest index 5b217ee6..21e59583 100644 --- a/01-main/manifest +++ b/01-main/manifest @@ -198,6 +198,9 @@ terraform texworks tidal-hifi tixati +tonelib-bassdrive +tonelib-noisereducer +tonelib-tubewarmth tribler trivy typora diff --git a/01-main/packages/tonelib-bassdrive b/01-main/packages/tonelib-bassdrive new file mode 100644 index 00000000..53a4aff0 --- /dev/null +++ b/01-main/packages/tonelib-bassdrive @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="BassDrive" +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib BassDrive" +WEBSITE="https://tonelib.net" +SUMMARY="Freeware Audio effect plugin." \ No newline at end of file diff --git a/01-main/packages/tonelib-noisereducer b/01-main/packages/tonelib-noisereducer new file mode 100644 index 00000000..82065394 --- /dev/null +++ b/01-main/packages/tonelib-noisereducer @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="NoiseReducer" +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib GFX" +WEBSITE="https://tonelib.net" +SUMMARY="Freeware Audio effect plugin." diff --git a/01-main/packages/tonelib-tubewarmth b/01-main/packages/tonelib-tubewarmth new file mode 100644 index 00000000..56490f0f --- /dev/null +++ b/01-main/packages/tonelib-tubewarmth @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="TubeWarmth" +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib TubeWarmth" +WEBSITE="https://tonelib.net" +SUMMARY="Freeware Audio effect plugin." From c893eab16c2004c32d1b0da3b59594c43246e9e0 Mon Sep 17 00:00:00 2001 From: Phil Clifford Date: Wed, 11 Jan 2023 20:56:13 +0000 Subject: [PATCH 3/3] added ToneLib non-free --- 01-main/manifest | 3 +++ 01-main/packages/tonelib-gfx | 10 ++++++++++ 01-main/packages/tonelib-jam | 10 ++++++++++ 01-main/packages/tonelib-metal | 10 ++++++++++ 4 files changed, 33 insertions(+) create mode 100644 01-main/packages/tonelib-gfx create mode 100644 01-main/packages/tonelib-jam create mode 100644 01-main/packages/tonelib-metal diff --git a/01-main/manifest b/01-main/manifest index 5b217ee6..ce99af3c 100644 --- a/01-main/manifest +++ b/01-main/manifest @@ -198,6 +198,9 @@ terraform texworks tidal-hifi tixati +tonelib-gfx +tonelib-jam +tonelib-metal tribler trivy typora diff --git a/01-main/packages/tonelib-gfx b/01-main/packages/tonelib-gfx new file mode 100644 index 00000000..95ae3559 --- /dev/null +++ b/01-main/packages/tonelib-gfx @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP=$(echo ${APP^^} |cut -d- -f2) +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib GFX" +WEBSITE="https://tonelib.net" +SUMMARY="A complete guitar studio in one app." \ No newline at end of file diff --git a/01-main/packages/tonelib-jam b/01-main/packages/tonelib-jam new file mode 100644 index 00000000..8eebbf62 --- /dev/null +++ b/01-main/packages/tonelib-jam @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="Jam" +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib Jam" +WEBSITE="https://tonelib.net" +SUMMARY="The ultimate software dedicated to the beginner as well as the advanced guitar player." \ No newline at end of file diff --git a/01-main/packages/tonelib-metal b/01-main/packages/tonelib-metal new file mode 100644 index 00000000..f2331360 --- /dev/null +++ b/01-main/packages/tonelib-metal @@ -0,0 +1,10 @@ +DEFVER=1 +get_website "https://www.tonelib.net/downloads.html" +TLAPP="Metal" +if [ "${ACTION}" != "prettylist" ]; then + URL="$(unroll_url "$(grep -o "https://www\.tonelib\.net/download/ToneLib-${TLAPP}[[:alpha:]]*-amd64\.deb" "${CACHE_FILE}")")" + VERSION_PUBLISHED="$(echo $(grep -A4 "ToneLib ${TLAPP}" ${CACHE_FILE} |grep Version |grep -o "[[:digit:]]*\.[[:digit:]]*\.[[:digit:]]*") | sed 's/\./-/2' )" +fi +PRETTY_NAME="ToneLib Metal" +WEBSITE="https://tonelib.net" +SUMMARY="Ideal Amp Suite for Metal Guitar" \ No newline at end of file