diff --git a/README.md b/README.md index 17aa6a8..899f65a 100644 --- a/README.md +++ b/README.md @@ -76,4 +76,4 @@ Bashbot is not more (in)secure as any other Bot written in any other language, w If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/README.txt b/README.txt index 0fdb1cc..f39b123 100644 --- a/README.txt +++ b/README.txt @@ -24,38 +24,14 @@ Bashbot https://github.com/topkecleon/telegram-bot-bash[Documentation] and https://github.com/topkecleon/telegram-bot-bash/releases[Downloads] are availible on www.github.com -Install bashbot -~~~~~~~~~~~~~~~ - -1. Go to the directory you want to install bashbot, e.g. -* your $HOME directory (install and run with your user-ID) -* /usr/local if you want to run as service -2. https://github.com/topkecleon/telegram-bot-bash/releases[Download -latest release zip from github] and extract all files. -+ -As an alternative you can clone the github repository to get the latest -improvements/fixes, run bashbot test suite `All-tests.sh` afterwards to -see if code looks OK. -+ -.... -git clone https://github.com/topkecleon/telegram-bot-bash; test/ALL-tests.sh -.... -3. Go to directory `telegram-bot-bash`, run `./bashbot.sh init` and -follow the instructions. At this point you are asked for your Bots token -given by botfather. - -Update bashbot -~~~~~~~~~~~~~~ - -1. https://github.com/topkecleon/telegram-bot-bash/releases[Download -latest update zip from github] -2. Extract all files and copy them to your bashbot dir -3. Run `sudo ./bashbot.sh init` to setup your environment after the -update - Documentation ~~~~~~~~~~~~~ +* link:doc/0_install.md[Install Bashbot] +** Install release +** Install from githup +** Update Bashbot +** Notes on Updates * link:doc/1_firstbot.md[Create a new Telegram Bot with botfather] * link:doc/2_usage.md[Getting Started] ** Managing your Bot @@ -79,27 +55,6 @@ Documentation * link:doc/7_develop.md[Notes for bashbot developers] * link:doc/8_customize.md[Customize bashbot environment] -Note on Keyboards -~~~~~~~~~~~~~~~~~ - -From Version 0.60 on keybord format for `send_keyboard` and -`send_message "mykeyboardstartshere ..."` was changed. Keybords are now -defined in JSON Array notation e.g. "[ \"yes\" , \"no\" ]". This has the -advantage that you can create any type of keyboard supported by -Telegram. The old format is supported for backward compatibility, but -may fail for corner cases. - -_Example Keyboards_: - -* yes no in two rows: -** OLD format: 'yes' 'no' (two strings) -** NEW format: '[ "yes" ] , [ "no" ]' (two arrays with a string) -* new layouts made easy with NEW format: -** Yes No in one row: '[ "yes" , "no" ]' -** Yes No plus Maybe in 2.row: '[ "yes" , "no" ] , [ "maybe" ]' -** numpad style keyboard: '[ "1" , "2" , "3" ] , [ "4" , "5" , "6" ] , [ -"7" , "8" , "9" ] , [ "0" ]' - Security Considerations ~~~~~~~~~~~~~~~~~~~~~~~ @@ -168,5 +123,5 @@ That's it! If you feel that there's something missing or if you found a bug, feel free to submit a pull request! -latexmath:[\[VERSION\]] v0.70-dev2-18-g097a841 +latexmath:[\[VERSION\]] v0.70-dev2-21-g0cfb9f0 ++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/bashbot.rc b/bashbot.rc index dd4df67..087ce96 100755 --- a/bashbot.rc +++ b/bashbot.rc @@ -1,7 +1,7 @@ #!/bin/sh # description: Start or stop telegram-bash-bot # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # shellcheck disable=SC2009 # shellcheck disable=SC2181 diff --git a/bashbot.sh b/bashbot.sh index 0768f98..34f7f37 100755 --- a/bashbot.sh +++ b/bashbot.sh @@ -12,7 +12,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # # Exit Codes: # - 0 sucess (hopefully) @@ -334,6 +334,15 @@ remove_keyboard() { shift 2 res="$(curl -s "$MSG_URL" --header "content-type: multipart/form-data" -F "chat_id=$chat" -F "text=$text" -F "reply_markup={\"remove_keyboard\": true}")" } +send_inline_button() { + local chat='"chat_id": '"$1" + local text='"text": "'"$2"'"' + local button='{ "text" : "'"$3"' , "url": "'"$4"'" }' + local JSON='{ '"${chat}"' , '"${text}"' , "reply_markup": { "inline_keyboard": [[ '"${button}"' ]]} }' + # JSON='{"chat_id":$1, "text":"$2", "reply_markup": {"inline_keyboard": [[ {"text":"$3", "url":"$4"} ]]} }' + + res="$(curl -d "$JSON" -H "Content-Type: application/json" -X POST "$MSG_URL")" +} get_file() { [ "$1" = "" ] && return diff --git a/commands.sh b/commands.sh index e99b33c..b936923 100644 --- a/commands.sh +++ b/commands.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # # shellcheck disable=SC2154 # shellcheck disable=SC2034 diff --git a/dev/hooks/pre-commit.sh b/dev/hooks/pre-commit.sh index a403d18..4c2cef7 100755 --- a/dev/hooks/pre-commit.sh +++ b/dev/hooks/pre-commit.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/hooks/pre-push.sh b/dev/hooks/pre-push.sh index 9b2b58e..0568c7e 100755 --- a/dev/hooks/pre-push.sh +++ b/dev/hooks/pre-push.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/install-hooks.sh b/dev/install-hooks.sh index 50214ac..82f48be 100755 --- a/dev/install-hooks.sh +++ b/dev/install-hooks.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/make-dist.sh b/dev/make-dist.sh index 5aba78c..86ddad3 100755 --- a/dev/make-dist.sh +++ b/dev/make-dist.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/dev/shellcheck.files b/dev/shellcheck.files index 1dd8b5f..dcd6264 100644 --- a/dev/shellcheck.files +++ b/dev/shellcheck.files @@ -1,3 +1,3 @@ # list of additional files to check from shellcheck -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 bashbot.rc diff --git a/dev/version.sh b/dev/version.sh index 80d85a7..bad101b 100755 --- a/dev/version.sh +++ b/dev/version.sh @@ -1,6 +1,6 @@ #!/bin/bash # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # shellcheck disable=SC2016 # # Easy Versioning in git: diff --git a/doc/0_install.md b/doc/0_install.md index b4ac65b..9f5c2b8 100644 --- a/doc/0_install.md +++ b/doc/0_install.md @@ -14,16 +14,15 @@ Now your Bot is ready to start ... ### Install from Github -As an alternative to donwload the zip files, you can clone the github repository to get the latest improvements/fixes. +As an alternative to download the zip files, you can clone the github repository to get the latest improvements/fixes. 1. Go to the directory you want to install bashbot, e.g. * your $HOME directory (install and run with your user-ID) * /usr/local if you want to run as service - -2. Run ```git clone https://github.com/topkecleon/telegram-bot-bash;``` +2. Run ```git clone https://github.com/topkecleon/telegram-bot-bash.git``` 3. Change into the directory ```telegram-bot-bash``` 4. Run ``` test/ALL-tests.sh``` and if everthing finish OK ... -5. Run ```./bashbot.sh init``` to setup the environment and enter your Bots token given by botfather. +5. Run ```sudo ./bashbot.sh init``` to setup the environment and enter your Bots token given by botfather. ### Update bashbot @@ -31,15 +30,16 @@ As an alternative to donwload the zip files, you can clone the github repository * your $HOME directory * /usr/local 2. [Download latest release zip from github](https://github.com/topkecleon/telegram-bot-bash/releases) -3. Extract all files to you existing bashbot dir **Note** all files execpt 'mycommands.sh' and 'commands.sh' may overwritten!** +3. Extract all files to your existing bashbot dir + **Note: all files execpt 'mycommands.sh' and 'commands.sh' may overwritten!** 4. Run ```sudo ./bashbot.sh init``` to setup your environment after the update ### Notes on Updates #### Location of tmp / data dir -From version 0.70 on the tmp dir is renamed to 'data-bot-bash' to refelect the fact that not only temporyry files are stored. an existing 'tmp-bot-bash' will be automatically after update renamed. +From version 0.70 on the tmp dir is renamed to 'data-bot-bash' to reflect the fact that not only temporary files are stored. an existing 'tmp-bot-bash' will be automatically renamed after update. -From version 0.50 on the temporary files are no more placed in '/tmp'. instead a dedicatet tmp dir is used. +From version 0.50 on the temporary files are no more placed in '/tmp'. instead a dedicated tmp dir is used. #### Changes to send_keyboard in v0.6 From Version 0.60 on keybord format for ```send_keyboard``` and ```send_message "mykeyboardstartshere ..."``` was changed. @@ -50,8 +50,8 @@ The old format is supported for backward compatibility, but may fail for corner *Example Keyboards*: - yes no in two rows: - - OLD format: 'yes' 'no' (two strings) - - NEW format: '[ "yes" ] , [ "no" ]' (two arrays with a string) + - OLD format: 'yes' 'no' *(two strings)* + - NEW format: '[ "yes" ] , [ "no" ]' *(two arrays with a string)* - new layouts made easy with NEW format: - Yes No in one row: '[ "yes" , "no" ]' - Yes No plus Maybe in 2.row: '[ "yes" , "no" ] , [ "maybe" ]' @@ -61,5 +61,5 @@ The old format is supported for backward compatibility, but may fail for corner #### [Next Create Bot](1_firstbot.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/1_firstbot.md b/doc/1_firstbot.md index 6bb2fa3..f699204 100644 --- a/doc/1_firstbot.md +++ b/doc/1_firstbot.md @@ -62,5 +62,5 @@ group. This step is up to you actually. #### [Prev Installation](0_install.md) #### [Next Getting started](2_usage.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/2_usage.md b/doc/2_usage.md index 690ba18..e45175b 100644 --- a/doc/2_usage.md +++ b/doc/2_usage.md @@ -1,7 +1,7 @@ #### [Home](../README.md) ## Gettting Started -THe Bots standard commands are in the ```commands.sh``` file. Vou must not add your commands to 'commands.sh' instead place them in ```mycommands.sh```, there you also find examples how to process messages and send out text. +The Bots standard commands are in ```commands.sh``` file. You must not add your commands to 'commands.sh', instead place them in ```mycommands.sh```, there you also find examples how to process messages and send out text. Once you're done with editing 'mycommands.sh' start the Bot with ```./bashbot.sh start```. If some thing doesn't work as it should, debug with ```bash -x bashbot.sh```. To stop the Bot run ```./bashbot.sh kill``` @@ -166,5 +166,5 @@ send_action "${CHAT[ID]}" "action" #### [Prev Create Bot](1_firstbot.md) #### [Next Advanced Usage](3_advanced.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/3_advanced.md b/doc/3_advanced.md index 6978135..24e40dc 100644 --- a/doc/3_advanced.md +++ b/doc/3_advanced.md @@ -156,5 +156,5 @@ answer_inline_query "$iQUERY_ID" "cached_sticker" "identifier for the sticker" #### [Prev Advanced Usage](3_advanced.md) #### [Next Expert Use](4_expert.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/4_expert.md b/doc/4_expert.md index 0c962df..4b84eb9 100644 --- a/doc/4_expert.md +++ b/doc/4_expert.md @@ -104,5 +104,5 @@ An example crontab is provided in ```examples/bashbot.cron```. #### [Prev Expert Use](4_expert.md) #### [Next Best Practice](5_practice.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/5_practice.md b/doc/5_practice.md index cf65014..1cdaafc 100644 --- a/doc/5_practice.md +++ b/doc/5_practice.md @@ -2,7 +2,7 @@ ## Best Practices ### Add commands to mycommands.sh only -To ease Updates never change ```bashbot.sh```, instead your commands and functions must go to ```mycommands.sh``` . Insert your Bot commands in the ```case ... esac``` block of the 'mycommands()' function: +To ease updates never change ```bashbot.sh```, instead your commands and functions must go to ```mycommands.sh``` . Insert your Bot commands in the ```case ... esac``` block of the 'mycommands()' function: ```bash # file: mycommands.sh # your additional bahsbot commands @@ -32,7 +32,6 @@ every line from ```'/command')``` to ```;;```. **Note: Never disable the catchall command ``*)```` in 'commands.sh'!!** ```bash -#!/bin/bash # file: commands.sh case "$MESSAGE" in @@ -59,10 +58,10 @@ every line from ```'/command')``` to ```;;```. ### Seperate logic from commands -If a command need more than 2-3 lines of code, you should use a function to seperate logic from command. Place your functions in ```mycommands.sh``` and call the from you commands. Example: +If a command need more than 2-3 lines of code, you should use a function to seperate logic from command. Place your functions in ```mycommands.sh``` and call the from your command. Example: ```bash -#!/bin/bash # file: mycommands.sh +# your additional bahsbot commands mycommands() { @@ -142,5 +141,5 @@ The second warning is about an unused variable, this is true because in our exam #### [Prev Best Practice](5_practice.md) #### [Next Functions Reference](6_reference.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/6_reference.md b/doc/6_reference.md index b684625..aa32776 100644 --- a/doc/6_reference.md +++ b/doc/6_reference.md @@ -445,5 +445,5 @@ Send Input from Telegram to waiting Interactive Chat. #### [Prev Best Practice](5_practice.md) #### [Next Notes for Developers](7_develop.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/7_develop.md b/doc/7_develop.md index d57e30d..1d6a772 100644 --- a/doc/7_develop.md +++ b/doc/7_develop.md @@ -71,5 +71,5 @@ fi #### [Prev Function Reference](6_function.md) #### [Next Bashbot Environment](8_custom.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/doc/8_custom.md b/doc/8_custom.md index b725cc8..6d1c1c9 100644 --- a/doc/8_custom.md +++ b/doc/8_custom.md @@ -131,5 +131,5 @@ for every poll until the maximum of BASHBOT_SLEEP ms. #### [Prev Notes for Developers](7_develop.md) -#### $$VERSION$$ v0.70-dev2-20-ga3b82f7 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 diff --git a/examples/bashbot.cron b/examples/bashbot.cron index 1565d4b..ffec6a1 100644 --- a/examples/bashbot.cron +++ b/examples/bashbot.cron @@ -7,7 +7,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 SHELL=/bin/sh diff --git a/examples/calc.sh b/examples/calc.sh index 9fd26ae..ad1910b 100755 --- a/examples/calc.sh +++ b/examples/calc.sh @@ -3,7 +3,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/notify.sh b/examples/notify.sh index 48178b4..58e9bc0 100755 --- a/examples/notify.sh +++ b/examples/notify.sh @@ -2,7 +2,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/question,sh b/examples/question,sh index c6f010e..15f9f51 100755 --- a/examples/question,sh +++ b/examples/question,sh @@ -3,7 +3,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/examples/question.sh b/examples/question.sh index c6f010e..15f9f51 100755 --- a/examples/question.sh +++ b/examples/question.sh @@ -3,7 +3,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # adjust your language setting here # https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment diff --git a/modules/aliases.sh b/modules/aliases.sh index 53e4825..989744d 100644 --- a/modules/aliases.sh +++ b/modules/aliases.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # source from commands.sh to use the aliases # some handy aliases for use when processing messages: diff --git a/modules/background.sh b/modules/background.sh index 5cc6164..e523f07 100644 --- a/modules/background.sh +++ b/modules/background.sh @@ -5,7 +5,7 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # source from commands.sh if you want ro use interactive or background jobs diff --git a/modules/inline.sh b/modules/inline.sh index a690c92..ac3af19 100644 --- a/modules/inline.sh +++ b/modules/inline.sh @@ -5,6 +5,6 @@ # This file is public domain in the USA and all free countries. # Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying) # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # source from commands.sh to use the inline functions diff --git a/mycommands.sh b/mycommands.sh index f95aac1..d9ad854 100644 --- a/mycommands.sh +++ b/mycommands.sh @@ -2,7 +2,7 @@ # files: mycommands.sh.dist # copy to mycommands.sh and add all your commands and functions here ... # -#### $$VERSION$$ v0.70-dev2-19-g262bb9e +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # # shellcheck disable=SC2154 # shellcheck disable=SC2034 diff --git a/test/ADD-test-new.sh b/test/ADD-test-new.sh index ec0ef1c..989047b 100755 --- a/test/ADD-test-new.sh +++ b/test/ADD-test-new.sh @@ -2,7 +2,7 @@ # # ADD a new test skeleton to test dir, but does not activate test # -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/test/ALL-tests.inc.sh b/test/ALL-tests.inc.sh index 025faac..1ae11e0 100644 --- a/test/ALL-tests.inc.sh +++ b/test/ALL-tests.inc.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # common variables export TESTME DIRME TESTDIR LOGFILE REFDIR TESTNAME diff --git a/test/ALL-tests.sh b/test/ALL-tests.sh index 840b340..269085b 100755 --- a/test/ALL-tests.sh +++ b/test/ALL-tests.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # this has to run once atfer git clone # and every time we create new hooks -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # magic to ensure that we're always inside the root of our application, # no matter from which directory we'll run script diff --git a/test/a-commit-test.sh b/test/a-commit-test.sh index 687324c..7f41bc8 100755 --- a/test/a-commit-test.sh +++ b/test/a-commit-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 ../dev/hooks/pre-commit.sh diff --git a/test/a-push-test.sh b/test/a-push-test.sh index f70c6c1..6f981eb 100755 --- a/test/a-push-test.sh +++ b/test/a-push-test.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 ../dev/hooks/pre-push.sh diff --git a/test/c-init-test.sh b/test/c-init-test.sh index 0a1bcca..6f782ba 100755 --- a/test/c-init-test.sh +++ b/test/c-init-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-JSON.sh-test.sh b/test/d-JSON.sh-test.sh index f8c449f..25c28b0 100755 --- a/test/d-JSON.sh-test.sh +++ b/test/d-JSON.sh-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-process_message-test.sh b/test/d-process_message-test.sh index 6e78515..6e5fb0a 100755 --- a/test/d-process_message-test.sh +++ b/test/d-process_message-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh diff --git a/test/d-user_is-test.sh b/test/d-user_is-test.sh index b9fee0b..74f367b 100755 --- a/test/d-user_is-test.sh +++ b/test/d-user_is-test.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -#### $$VERSION$$ v0.70-dev2-18-g097a841 +#### $$VERSION$$ v0.70-dev2-21-g0cfb9f0 # include common functions and definitions # shellcheck source=test/ALL-tests.inc.sh