From 390218a85ee01b49dc700867d7b35538c2760575 Mon Sep 17 00:00:00 2001 From: lovetox Date: Fri, 29 Apr 2022 19:07:15 +0200 Subject: [PATCH] Port all plugin manifests to JSON --- acronyms_expander/manifest.ini | 10 ---------- acronyms_expander/manifest.json | 20 ++++++++++++++++++++ anti_spam/manifest.ini | 11 ----------- anti_spam/manifest.json | 21 +++++++++++++++++++++ birthday_reminder/manifest.ini | 10 ---------- clients_icons/manifest.ini | 11 ----------- clients_icons/manifest.json | 21 +++++++++++++++++++++ form_handler/manifest.ini | 9 --------- length_notifier/manifest.ini | 9 --------- length_notifier/manifest.json | 19 +++++++++++++++++++ message_box_size/manifest.ini | 10 ---------- message_box_size/manifest.json | 20 ++++++++++++++++++++ now_listen/manifest.ini | 9 --------- now_listen/manifest.json | 17 +++++++++++++++++ omemo/manifest.ini | 11 ----------- omemo/manifest.json | 21 +++++++++++++++++++++ openpgp/manifest.ini | 9 --------- openpgp/manifest.json | 19 +++++++++++++++++++ pgp/manifest.ini | 9 --------- pgp/manifest.json | 19 +++++++++++++++++++ plugins_translations/manifest.ini | 9 --------- plugins_translations/manifest.json | 19 +++++++++++++++++++ quick_replies/manifest.ini | 9 --------- quick_replies/manifest.json | 19 +++++++++++++++++++ regex_filter/manifest.ini | 9 --------- regex_filter/manifest.json | 19 +++++++++++++++++++ triggers/manifest.ini | 9 --------- triggers/manifest.json | 19 +++++++++++++++++++ 28 files changed, 253 insertions(+), 144 deletions(-) delete mode 100644 acronyms_expander/manifest.ini create mode 100644 acronyms_expander/manifest.json delete mode 100644 anti_spam/manifest.ini create mode 100644 anti_spam/manifest.json delete mode 100644 birthday_reminder/manifest.ini delete mode 100644 clients_icons/manifest.ini create mode 100644 clients_icons/manifest.json delete mode 100644 form_handler/manifest.ini delete mode 100644 length_notifier/manifest.ini create mode 100644 length_notifier/manifest.json delete mode 100644 message_box_size/manifest.ini create mode 100644 message_box_size/manifest.json delete mode 100644 now_listen/manifest.ini create mode 100644 now_listen/manifest.json delete mode 100644 omemo/manifest.ini create mode 100644 omemo/manifest.json delete mode 100644 openpgp/manifest.ini create mode 100644 openpgp/manifest.json delete mode 100644 pgp/manifest.ini create mode 100644 pgp/manifest.json delete mode 100644 plugins_translations/manifest.ini create mode 100644 plugins_translations/manifest.json delete mode 100644 quick_replies/manifest.ini create mode 100644 quick_replies/manifest.json delete mode 100644 regex_filter/manifest.ini create mode 100644 regex_filter/manifest.json delete mode 100644 triggers/manifest.ini create mode 100644 triggers/manifest.json diff --git a/acronyms_expander/manifest.ini b/acronyms_expander/manifest.ini deleted file mode 100644 index 536abd7..0000000 --- a/acronyms_expander/manifest.ini +++ /dev/null @@ -1,10 +0,0 @@ -[info] -name: Acronyms Expander -short_name: acronyms_expander -version: 1.4.3 -description: Replaces acronyms (or other strings) with given expansions/substitutes. -authors: Philipp Hörist - Mateusz Biliński -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/AcronymsExpanderPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/acronyms_expander/manifest.json b/acronyms_expander/manifest.json new file mode 100644 index 0000000..01a3467 --- /dev/null +++ b/acronyms_expander/manifest.json @@ -0,0 +1,20 @@ +{ + "authors": [ + "Philipp Hörist ", + "Mateusz Biliński " + ], + "description": "Replaces acronyms (or other strings) with given expansions/substitutes.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/AcronymsExpanderPlugin", + "config_dialog": true, + "name": "Acronyms Expander", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "acronyms_expander", + "version": "1.4.4" +} \ No newline at end of file diff --git a/anti_spam/manifest.ini b/anti_spam/manifest.ini deleted file mode 100644 index e9765e8..0000000 --- a/anti_spam/manifest.ini +++ /dev/null @@ -1,11 +0,0 @@ -[info] -name: Anti Spam -short_name: anti_spam -version: 1.6.3 -description: Block some incoming messages. -authors: Yann Leboulanger - Denis Fomin - Ilya Kanyukov -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/AntiSpamPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/anti_spam/manifest.json b/anti_spam/manifest.json new file mode 100644 index 0000000..1bd3041 --- /dev/null +++ b/anti_spam/manifest.json @@ -0,0 +1,21 @@ +{ + "authors": [ + "Yann Leboulanger ", + "Denis Fomin ", + "Ilya Kanyukov " + ], + "description": "Block some incoming messages.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/AntiSpamPlugin", + "config_dialog": true, + "name": "Anti Spam", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "anti_spam", + "version": "1.6.4" +} \ No newline at end of file diff --git a/birthday_reminder/manifest.ini b/birthday_reminder/manifest.ini deleted file mode 100644 index 8bb350f..0000000 --- a/birthday_reminder/manifest.ini +++ /dev/null @@ -1,10 +0,0 @@ -[info] -name: Birthday reminder -short_name: birthday_reminder -version: 1.4.3 -description: Reminds you if a contact of yours has a birthday. -authors: Evgeniy Popov - Philipp Hörist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/BirthdayReminderPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/clients_icons/manifest.ini b/clients_icons/manifest.ini deleted file mode 100644 index c4255c5..0000000 --- a/clients_icons/manifest.ini +++ /dev/null @@ -1,11 +0,0 @@ -[info] -name: Clients icons -short_name: clients_icons -version: 7.10.4 -description: Shows client icons in roster and in groupchats. -authors: Denis Fomin - Artem Klyop - Thilo Molitor -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/ClientsIconsPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/clients_icons/manifest.json b/clients_icons/manifest.json new file mode 100644 index 0000000..69ca008 --- /dev/null +++ b/clients_icons/manifest.json @@ -0,0 +1,21 @@ +{ + "authors": [ + "Denis Fomin ", + "Artem Klyop ", + "Thilo Molitor " + ], + "description": "Shows client icons in roster and in groupchats.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/ClientsIconsPlugin", + "config_dialog": true, + "name": "Clients icons", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "clients_icons", + "version": "7.10.5" +} \ No newline at end of file diff --git a/form_handler/manifest.ini b/form_handler/manifest.ini deleted file mode 100644 index c967b60..0000000 --- a/form_handler/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Form Handler -short_name: form_handler -version: 1.4.1 -description: Lets the user display and answer forms attached to messages. -authors = Philipp Hoerist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/formhandler -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/length_notifier/manifest.ini b/length_notifier/manifest.ini deleted file mode 100644 index f1affea..0000000 --- a/length_notifier/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Message Length Notifier -short_name: length_notifier -version: 1.4.3 -description: Highlights the chat window’s message input if a specified message length is exceeded -authors: Mateusz Biliński -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/LengthNotifierPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/length_notifier/manifest.json b/length_notifier/manifest.json new file mode 100644 index 0000000..f460e12 --- /dev/null +++ b/length_notifier/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Mateusz Biliński " + ], + "description": "Highlights the chat window’s message input if a specified message length is exceeded", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/LengthNotifierPlugin", + "config_dialog": true, + "name": "Message Length Notifier", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "length_notifier", + "version": "1.4.4" +} \ No newline at end of file diff --git a/message_box_size/manifest.ini b/message_box_size/manifest.ini deleted file mode 100644 index f6c5e57..0000000 --- a/message_box_size/manifest.ini +++ /dev/null @@ -1,10 +0,0 @@ -[info] -name: Message Box Size -short_name: message_box_size -version: 1.4.0 -description: Allows you to adjust the height of the 'New message' input field. -authors: Denis Fomin - Philipp Hörist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/MessageBoxSizePlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/message_box_size/manifest.json b/message_box_size/manifest.json new file mode 100644 index 0000000..b738845 --- /dev/null +++ b/message_box_size/manifest.json @@ -0,0 +1,20 @@ +{ + "authors": [ + "Denis Fomin ", + "Philipp Hörist " + ], + "description": "Allows you to adjust the height of the 'New message' input field.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/MessageBoxSizePlugin", + "config_dialog": true, + "name": "Message Box Size", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "message_box_size", + "version": "1.4.1" +} \ No newline at end of file diff --git a/now_listen/manifest.ini b/now_listen/manifest.ini deleted file mode 100644 index f415f9c..0000000 --- a/now_listen/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Now Listen -short_name: now_listen -version: 1.4.0 -description: Allows you to paste info about the music you are playing (use by pressing Alt+N in the message input). -authors = Denis Fomin -homepage = https://dev.gajim.org/gajim/gajim-plugins/wikis/NowListenPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/now_listen/manifest.json b/now_listen/manifest.json new file mode 100644 index 0000000..3c5938b --- /dev/null +++ b/now_listen/manifest.json @@ -0,0 +1,17 @@ +{ + "authors": [ + "Denis Fomin " + ], + "description": "Allows you to paste info about the music you are playing (use by pressing Alt+N in the message input).", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/NowListenPlugin", + "config_dialog": true, + "name": "Now Listen", + "platforms": [ + "linux" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "now_listen", + "version": "1.4.1" +} \ No newline at end of file diff --git a/omemo/manifest.ini b/omemo/manifest.ini deleted file mode 100644 index 8783fb0..0000000 --- a/omemo/manifest.ini +++ /dev/null @@ -1,11 +0,0 @@ -[info] -name: OMEMO -short_name: omemo -version: 2.8.13 -description: OMEMO is an XMPP Extension Protocol (XEP) for secure multi-client end-to-end encryption based on Axolotl and PEP. You need to install some dependencies, detailed in the installation instructions for your system in the GitLab wiki. -authors: Bahtiar `kalkin-` Gadimov - Daniel Gultsch - Philipp Hörist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/OmemoGajimPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/omemo/manifest.json b/omemo/manifest.json new file mode 100644 index 0000000..7f8c76d --- /dev/null +++ b/omemo/manifest.json @@ -0,0 +1,21 @@ +{ + "authors": [ + "Bahtiar `kalkin-` Gadimov ", + "Daniel Gultsch ", + "Philipp Hörist " + ], + "description": "OMEMO is an XMPP Extension Protocol (XEP) for secure multi-client end-to-end encryption based on Axolotl and PEP. You need to install some dependencies, detailed in the installation instructions for your system in the GitLab wiki.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/OmemoGajimPlugin", + "config_dialog": true, + "name": "OMEMO", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "omemo", + "version": "2.8.14" +} \ No newline at end of file diff --git a/openpgp/manifest.ini b/openpgp/manifest.ini deleted file mode 100644 index b25ab14..0000000 --- a/openpgp/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: OpenPGP -short_name: openpgp -version: 1.4.8 -description: Experimental OpenPGP (XEP-0373) implementation. -authors: Philipp Hörist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/pgp -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/openpgp/manifest.json b/openpgp/manifest.json new file mode 100644 index 0000000..63e9132 --- /dev/null +++ b/openpgp/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Philipp Hörist " + ], + "description": "Experimental OpenPGP (XEP-0373) implementation.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/pgp", + "config_dialog": false, + "name": "OpenPGP", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "openpgp", + "version": "1.4.9" +} \ No newline at end of file diff --git a/pgp/manifest.ini b/pgp/manifest.ini deleted file mode 100644 index 8647017..0000000 --- a/pgp/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: PGP -short_name: pgp -version: 1.4.4 -description: PGP encryption as per XEP-0027. -authors: Philipp Hörist -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/pgpplugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/pgp/manifest.json b/pgp/manifest.json new file mode 100644 index 0000000..73a71bb --- /dev/null +++ b/pgp/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Philipp Hörist " + ], + "description": "PGP encryption as per XEP-0027.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/pgpplugin", + "config_dialog": false, + "name": "PGP", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "pgp", + "version": "1.4.5" +} \ No newline at end of file diff --git a/plugins_translations/manifest.ini b/plugins_translations/manifest.ini deleted file mode 100644 index bff5636..0000000 --- a/plugins_translations/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Plugins translations -short_name: plugins_translations -version: 1.4.0 -description: This plugin contains translation files for Gajim plugins. -authors = Denis Fomin -homepage = https://dev.gajim.org/gajim/gajim-plugins/wikis/PluginsTranslationsPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/plugins_translations/manifest.json b/plugins_translations/manifest.json new file mode 100644 index 0000000..7e0da7b --- /dev/null +++ b/plugins_translations/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Denis Fomin " + ], + "description": "This plugin contains translation files for Gajim plugins.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/PluginsTranslationsPlugin", + "config_dialog": false, + "name": "Plugins translations", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "plugins_translations", + "version": "1.4.1" +} \ No newline at end of file diff --git a/quick_replies/manifest.ini b/quick_replies/manifest.ini deleted file mode 100644 index 079efaf..0000000 --- a/quick_replies/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Quick replies -short_name: quick_replies -version: 1.4.1 -description: Adds a menu with customizable quick replies -authors = Evgeniy Popov -homepage = https://dev.gajim.org/gajim/gajim-plugins/wikis/QuickRepliesPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/quick_replies/manifest.json b/quick_replies/manifest.json new file mode 100644 index 0000000..2f13919 --- /dev/null +++ b/quick_replies/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Evgeniy Popov " + ], + "description": "Adds a menu with customizable quick replies", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/QuickRepliesPlugin", + "config_dialog": false, + "name": "Quick replies", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "quick_replies", + "version": "1.4.2" +} \ No newline at end of file diff --git a/regex_filter/manifest.ini b/regex_filter/manifest.ini deleted file mode 100644 index 41e3954..0000000 --- a/regex_filter/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Regex Filter -short_name: regex_filter -version: 1.4.1 -description: Filter incoming messages using regex. -authors: Yann Leboulanger -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/RegexFilterPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/regex_filter/manifest.json b/regex_filter/manifest.json new file mode 100644 index 0000000..6361586 --- /dev/null +++ b/regex_filter/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Yann Leboulanger " + ], + "description": "Filter incoming messages using regex.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/RegexFilterPlugin", + "config_dialog": false, + "name": "Regex Filter", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "regex_filter", + "version": "1.4.2" +} \ No newline at end of file diff --git a/triggers/manifest.ini b/triggers/manifest.ini deleted file mode 100644 index 901d825..0000000 --- a/triggers/manifest.ini +++ /dev/null @@ -1,9 +0,0 @@ -[info] -name: Triggers -short_name: triggers -version: 1.4.4 -description: Configure Gajim's behaviour for each contact. -authors: Yann Leboulanger -homepage: https://dev.gajim.org/gajim/gajim-plugins/wikis/TriggersPlugin -min_gajim_version: 1.4.0-dev1 -max_gajim_version: 1.4.90 diff --git a/triggers/manifest.json b/triggers/manifest.json new file mode 100644 index 0000000..7196609 --- /dev/null +++ b/triggers/manifest.json @@ -0,0 +1,19 @@ +{ + "authors": [ + "Yann Leboulanger " + ], + "description": "Configure Gajim's behaviour for each contact.", + "homepage": "https://dev.gajim.org/gajim/gajim-plugins/wikis/TriggersPlugin", + "config_dialog": true, + "name": "Triggers", + "platforms": [ + "linux", + "darwin", + "win32" + ], + "requirements": [ + "gajim>=1.4.0" + ], + "short_name": "triggers", + "version": "1.4.5" +} \ No newline at end of file