├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── autopost-to-mastodon ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ ├── screenshot-2.png │ └── screenshot-3.png ├── svn-commit.tmp ├── tags │ ├── 1.0.1.1 │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.0.1.5 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── mastodon-autopost-TD-de_DE.mo │ │ │ └── mastodon-autopost-TD-de_DE.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.0.1 │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.0 │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.1.0.1 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ ├── autopost-to-mastodon-fr_FR.po │ │ │ ├── mastodon-autopost-TD-de_DE.mo │ │ │ └── mastodon-autopost-TD-de_DE.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.1.0.2 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ ├── autopost-to-mastodon-fr_FR.po │ │ │ ├── mastodon-autopost-TD-de_DE.mo │ │ │ └── mastodon-autopost-TD-de_DE.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.1.0.3 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.1.0.4 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.1 │ │ ├── internationalization.php │ │ ├── languages │ │ │ ├── mastodon-autopost-TD-de_DE.mo │ │ │ └── mastodon-autopost-TD-de_DE.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 1.3 │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── internationalization.php │ │ ├── js │ │ │ └── testConnection.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── mastodon_wordpress_api │ │ │ ├── .gitignore │ │ │ ├── LICENCSE │ │ │ ├── MIT_license │ │ │ ├── README.md │ │ │ ├── mastodon_wordpress_api.php │ │ │ └── mastodon_wordpress_networking_api.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.0.1 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.0.2 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.1 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.2 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.3 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.4 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0.9 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.0 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 2.1 │ │ ├── MastodonOAuthPHP │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ ├── example.php │ │ │ └── theCodingCompany │ │ │ │ ├── HttpRequest.php │ │ │ │ ├── Mastodon.php │ │ │ │ └── oAuth.php │ │ ├── ajax_handler.php │ │ ├── css │ │ │ └── settingsPage.css │ │ ├── enque_scripts.php │ │ ├── generalNotices.php │ │ ├── internationalization.php │ │ ├── js │ │ │ ├── ajax.js │ │ │ └── formValidation.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-fr_FR.mo │ │ │ └── autopost-to-mastodon-fr_FR.po │ │ ├── license.txt │ │ ├── mastodon_autopost.php │ │ ├── post_meta_box.php │ │ ├── publish_post_notification.php │ │ ├── readme.txt │ │ └── settings_page.php │ ├── 3.0 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.1 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.1 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.2 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.3 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.4 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.5 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.6 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.7.1 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.7.5 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.7 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2.8 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.2 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ └── autopost-to-mastodon-de_DE.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.3.2 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.3.3 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.3.4 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.3 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.4 │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── trunk.iml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.5 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.1 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.2 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.3 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.4 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.5 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.6 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6.7 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ ├── 3.6 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ │ ├── donate.svg │ │ │ ├── patron.png │ │ │ ├── paypal.png │ │ │ └── post │ │ │ │ ├── direct.svg │ │ │ │ ├── private.svg │ │ │ │ ├── public.svg │ │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ │ └── settings_page.js │ │ ├── languages │ │ │ ├── autopost-to-mastodon-de_DE.mo │ │ │ ├── autopost-to-mastodon-de_DE.po │ │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php │ └── 3.7 │ │ ├── client.php │ │ ├── form.tpl.php │ │ ├── img │ │ ├── donate.svg │ │ ├── patron.png │ │ ├── paypal.png │ │ └── post │ │ │ ├── direct.svg │ │ │ ├── private.svg │ │ │ ├── public.svg │ │ │ └── unlisted.svg │ │ ├── instanceList.php │ │ ├── js │ │ └── settings_page.js │ │ ├── languages │ │ ├── autopost-to-mastodon-de_DE.mo │ │ ├── autopost-to-mastodon-de_DE.po │ │ ├── autopost-to-mastodon-nl_NL.mo │ │ └── autopost-to-mastodon-nl_NL.po │ │ ├── list │ │ ├── mastodon_autopost.php │ │ ├── readme.txt │ │ ├── style.css │ │ └── uninstall.php └── trunk │ ├── client.php │ ├── form.tpl.php │ ├── img │ ├── donate.svg │ ├── patron.png │ ├── paypal.png │ └── post │ │ ├── direct.svg │ │ ├── private.svg │ │ ├── public.svg │ │ └── unlisted.svg │ ├── instanceList.php │ ├── js │ └── settings_page.js │ ├── languages │ ├── autopost-to-mastodon-de_DE.mo │ ├── autopost-to-mastodon-de_DE.po │ ├── autopost-to-mastodon-nl_NL.mo │ └── autopost-to-mastodon-nl_NL.po │ ├── list │ ├── mastodon_autopost.php │ ├── readme.txt │ ├── style.css │ └── uninstall.php └── graphics ├── Mastodon_logo.svg ├── banner.png ├── banner_background.png ├── bannerxcf.xcf ├── logo.png ├── logo.svg ├── send.svg └── unsplash_background.jpe /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [simonfrey] 2 | custom: ["https://paypal.me/51edpo"] 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "mastodon_wordpress_api"] 2 | path = mastodon_wordpress_api 3 | url = https://github.com/L1am0/mastodon_wordpress_api.git 4 | [submodule "autopost-to-mastodon/trunk/MastodonOAuthPHP"] 5 | path = autopost-to-mastodon/trunk/MastodonOAuthPHP 6 | url = git@github.com:TheCodingCompany/MastodonOAuthPHP.git 7 | -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/banner-1544x500.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/banner-772x250.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/icon-128x128.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/icon-256x256.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/screenshot-1.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/screenshot-2.png -------------------------------------------------------------------------------- /autopost-to-mastodon/assets/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/assets/screenshot-3.png -------------------------------------------------------------------------------- /autopost-to-mastodon/svn-commit.tmp: -------------------------------------------------------------------------------- 1 | 2 | --This line, and those below, will be ignored-- 3 | 4 | A + tags/3.1 5 | A + tags/3.1/client.php 6 | A + tags/3.1/form.tpl.php 7 | A + tags/3.1/img 8 | A + tags/3.1/instanceList.php 9 | R + tags/3.1/js 10 | R + tags/3.1/languages 11 | R + tags/3.1/mastodon_autopost.php 12 | R + tags/3.1/readme.txt 13 | A + tags/3.1/style.css 14 | A + tags/3.1/uninstall.php 15 | M trunk/mastodon_autopost.php 16 | M trunk/readme.txt 17 | D tags/3.1/MastodonOAuthPHP 18 | D tags/3.1/ajax_handler.php 19 | D tags/3.1/css 20 | D tags/3.1/enque_scripts.php 21 | D tags/3.1/generalNotices.php 22 | D tags/3.1/internationalization.php 23 | D tags/3.1/license.txt 24 | D tags/3.1/post_meta_box.php 25 | D tags/3.1/publish_post_notification.php 26 | D tags/3.1/settings_page.php 27 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.1/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.1/mastodon_wordpress_api/.gitignore: -------------------------------------------------------------------------------- 1 | notes.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.1/mastodon_wordpress_api/MIT_license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KwangSeon Yun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.1/mastodon_wordpress_api/README.md: -------------------------------------------------------------------------------- 1 | # Mastodon Wordpress API 2 | A Mastodon API tailored to the Wordpress HTTP libary. 3 | 4 | ## How to use 5 | Instructions following on the finishing of the translation to wordpress 6 | 7 | ## License 8 | This libary is licensed under the GPLv2. 9 | For concern of the original license the MIT licensefile is included, but is not applied to this project! 10 | 11 | ## Credits 12 | Special Thanks to [yks118](https://github.com/yks118/Mastodon-api-php) for providing us with the mastodon-api-php (MIT License) from which this project is forked. 13 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.1/mastodon_wordpress_api/mastodon_wordpress_api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/languages/mastodon-autopost-TD-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.0.1.5/languages/mastodon-autopost-TD-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/languages/mastodon-autopost-TD-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: settings_page.php 9 | msgid "Server Settings" 10 | msgstr "Server Einstellungen" 11 | 12 | msgid "Server URL" 13 | msgstr "Server URL" 14 | 15 | msgid "Email" 16 | msgstr "E-Mail" 17 | 18 | msgid "Password" 19 | msgstr "Passwort" 20 | 21 | msgid "Plugin Behavior" 22 | msgstr "Plugin Verhalten" 23 | 24 | msgid "Also toot on Post Update" 25 | msgstr "Auch bei einem Post Update tooten" 26 | 27 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 28 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 29 | 30 | msgid "Configure the Plugin Behavior" 31 | msgstr "Konfiguriere das Plugin Verhalten" 32 | 33 | msgid "Mastodon Autopost Settings" 34 | msgstr "Mastodon Autopost Einstellungen" 35 | 36 | msgid "Settings" 37 | msgstr "Einstellungen" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | 38 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/mastodon_wordpress_api/.gitignore: -------------------------------------------------------------------------------- 1 | notes.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/mastodon_wordpress_api/MIT_license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KwangSeon Yun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/mastodon_wordpress_api/README.md: -------------------------------------------------------------------------------- 1 | # Mastodon Wordpress API 2 | A Mastodon API tailored to the Wordpress HTTP libary. 3 | 4 | ## How to use 5 | Instructions following on the finishing of the translation to wordpress 6 | 7 | ## License 8 | This libary is licensed under the GPLv2. 9 | For concern of the original license the MIT licensefile is included, but is not applied to this project! 10 | 11 | ## Credits 12 | Special Thanks to [yks118](https://github.com/yks118/Mastodon-api-php) for providing us with the mastodon-api-php (MIT License) from which this project is forked. 13 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1.5/mastodon_wordpress_api/mastodon_wordpress_api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1/mastodon_wordpress_api/.gitignore: -------------------------------------------------------------------------------- 1 | notes.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1/mastodon_wordpress_api/MIT_license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KwangSeon Yun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1/mastodon_wordpress_api/README.md: -------------------------------------------------------------------------------- 1 | # Mastodon Wordpress API 2 | A Mastodon API tailored to the Wordpress HTTP libary. 3 | 4 | ## How to use 5 | Instructions following on the finishing of the translation to wordpress 6 | 7 | ## License 8 | This libary is licensed under the GPLv2. 9 | For concern of the original license the MIT licensefile is included, but is not applied to this project! 10 | 11 | ## Credits 12 | Special Thanks to [yks118](https://github.com/yks118/Mastodon-api-php) for providing us with the mastodon-api-php (MIT License) from which this project is forked. 13 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0.1/mastodon_wordpress_api/mastodon_wordpress_api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | 29 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0/mastodon_wordpress_api/.gitignore: -------------------------------------------------------------------------------- 1 | notes.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0/mastodon_wordpress_api/MIT_license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KwangSeon Yun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0/mastodon_wordpress_api/README.md: -------------------------------------------------------------------------------- 1 | # Mastodon Wordpress API 2 | A Mastodon API tailored to the Wordpress HTTP libary. 3 | 4 | ## How to use 5 | Instructions following on the finishing of the translation to wordpress 6 | 7 | ## License 8 | This libary is licensed under the GPLv2. 9 | For concern of the original license the MIT licensefile is included, but is not applied to this project! 10 | 11 | ## Credits 12 | Special Thanks to [yks118](https://github.com/yks118/Mastodon-api-php) for providing us with the mastodon-api-php (MIT License) from which this project is forked. 13 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.0/mastodon_wordpress_api/mastodon_wordpress_api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.1/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/languages/autopost-to-mastodon-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: post_meta_box.php 9 | msgid "Mastodon Autopost" 10 | msgstr "Mastodon Autopost" 11 | 12 | msgid "Post to Mastodon" 13 | msgstr "Auf Mastdodon tooten" 14 | 15 | #: settings_page.php 16 | msgid "Server Settings" 17 | msgstr "Server Einstellungen" 18 | 19 | msgid "Server URL" 20 | msgstr "Server URL" 21 | 22 | msgid "Email" 23 | msgstr "E-Mail" 24 | 25 | msgid "Password" 26 | msgstr "Passwort" 27 | 28 | msgid "Plugin Behavior" 29 | msgstr "Plugin Verhalten" 30 | 31 | msgid "Also toot on Post Update" 32 | msgstr "Auch bei einem Post Update tooten" 33 | 34 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 35 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 36 | 37 | msgid "Configure the Plugin Behavior" 38 | msgstr "Konfiguriere das Plugin Verhalten" 39 | 40 | msgid "Mastodon Autopost Settings" 41 | msgstr "Mastodon Autopost Einstellungen" 42 | 43 | msgid "Settings" 44 | msgstr "Einstellungen" 45 | 46 | msgid "Save Settings" 47 | msgstr "Einstellungen speichern" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.1/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/languages/mastodon-autopost-TD-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.1/languages/mastodon-autopost-TD-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/languages/mastodon-autopost-TD-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: post_meta_box.php 9 | msgid "Mastodon Autopost" 10 | msgstr "Mastodon Autopost" 11 | 12 | msgid "Post to Mastodon" 13 | msgstr "Auf Mastdodon tooten" 14 | 15 | #: settings_page.php 16 | msgid "Server Settings" 17 | msgstr "Server Einstellungen" 18 | 19 | msgid "Server URL" 20 | msgstr "Server URL" 21 | 22 | msgid "Email" 23 | msgstr "E-Mail" 24 | 25 | msgid "Password" 26 | msgstr "Passwort" 27 | 28 | msgid "Plugin Behavior" 29 | msgstr "Plugin Verhalten" 30 | 31 | msgid "Also toot on Post Update" 32 | msgstr "Auch bei einem Post Update tooten" 33 | 34 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 35 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 36 | 37 | msgid "Configure the Plugin Behavior" 38 | msgstr "Konfiguriere das Plugin Verhalten" 39 | 40 | msgid "Mastodon Autopost Settings" 41 | msgstr "Mastodon Autopost Einstellungen" 42 | 43 | msgid "Settings" 44 | msgstr "Einstellungen" 45 | 46 | msgid "Save Settings" 47 | msgstr "Einstellungen speichern" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.1/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.2/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/languages/autopost-to-mastodon-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: post_meta_box.php 9 | msgid "Mastodon Autopost" 10 | msgstr "Mastodon Autopost" 11 | 12 | msgid "Post to Mastodon" 13 | msgstr "Auf Mastdodon tooten" 14 | 15 | #: settings_page.php 16 | msgid "Server Settings" 17 | msgstr "Server Einstellungen" 18 | 19 | msgid "Server URL" 20 | msgstr "Server URL" 21 | 22 | msgid "Email" 23 | msgstr "E-Mail" 24 | 25 | msgid "Password" 26 | msgstr "Passwort" 27 | 28 | msgid "Plugin Behavior" 29 | msgstr "Plugin Verhalten" 30 | 31 | msgid "Also toot on Post Update" 32 | msgstr "Auch bei einem Post Update tooten" 33 | 34 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 35 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 36 | 37 | msgid "Configure the Plugin Behavior" 38 | msgstr "Konfiguriere das Plugin Verhalten" 39 | 40 | msgid "Mastodon Autopost Settings" 41 | msgstr "Mastodon Autopost Einstellungen" 42 | 43 | msgid "Settings" 44 | msgstr "Einstellungen" 45 | 46 | msgid "Save Settings" 47 | msgstr "Einstellungen speichern" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.2/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/languages/mastodon-autopost-TD-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.2/languages/mastodon-autopost-TD-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/languages/mastodon-autopost-TD-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: post_meta_box.php 9 | msgid "Mastodon Autopost" 10 | msgstr "Mastodon Autopost" 11 | 12 | msgid "Post to Mastodon" 13 | msgstr "Auf Mastdodon tooten" 14 | 15 | #: settings_page.php 16 | msgid "Server Settings" 17 | msgstr "Server Einstellungen" 18 | 19 | msgid "Server URL" 20 | msgstr "Server URL" 21 | 22 | msgid "Email" 23 | msgstr "E-Mail" 24 | 25 | msgid "Password" 26 | msgstr "Passwort" 27 | 28 | msgid "Plugin Behavior" 29 | msgstr "Plugin Verhalten" 30 | 31 | msgid "Also toot on Post Update" 32 | msgstr "Auch bei einem Post Update tooten" 33 | 34 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 35 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 36 | 37 | msgid "Configure the Plugin Behavior" 38 | msgstr "Konfiguriere das Plugin Verhalten" 39 | 40 | msgid "Mastodon Autopost Settings" 41 | msgstr "Mastodon Autopost Einstellungen" 42 | 43 | msgid "Settings" 44 | msgstr "Einstellungen" 45 | 46 | msgid "Save Settings" 47 | msgstr "Einstellungen speichern" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.2/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.3/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.3/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.3/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.3/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.3/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.3/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.4/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.4/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.4/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.4/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1.0.4/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1.0.4/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/languages/mastodon-autopost-TD-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.1/languages/mastodon-autopost-TD-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/languages/mastodon-autopost-TD-de_DE.po: -------------------------------------------------------------------------------- 1 | #German Translation 2 | #for Mastdon Autopost Wordpress Plugin 3 | 4 | #: publish_post_notification.php 5 | msgid "Tooted to Mastodon!" 6 | msgstr "Auf Mastodon gepostet!" 7 | 8 | #: post_meta_box.php 9 | msgid "Mastodon Autopost" 10 | msgstr "Mastodon Autopost" 11 | 12 | msgid "Post to Mastodon" 13 | msgstr "Auf Mastdodon tooten" 14 | 15 | #: settings_page.php 16 | msgid "Server Settings" 17 | msgstr "Server Einstellungen" 18 | 19 | msgid "Server URL" 20 | msgstr "Server URL" 21 | 22 | msgid "Email" 23 | msgstr "E-Mail" 24 | 25 | msgid "Password" 26 | msgstr "Passwort" 27 | 28 | msgid "Plugin Behavior" 29 | msgstr "Plugin Verhalten" 30 | 31 | msgid "Also toot on Post Update" 32 | msgstr "Auch bei einem Post Update tooten" 33 | 34 | msgid "Please provide the account details for the server. The server URL should include http or https and a trailing slash. e.g. http://mastodon.social/" 35 | msgstr "Bitte gib die Accountdaten des Servers ein. Die Server URL sollte auch http bzw. https und einen / am Ende enthalten. z.B. https://mastodon.social" 36 | 37 | msgid "Configure the Plugin Behavior" 38 | msgstr "Konfiguriere das Plugin Verhalten" 39 | 40 | msgid "Mastodon Autopost Settings" 41 | msgstr "Mastodon Autopost Einstellungen" 42 | 43 | msgid "Settings" 44 | msgstr "Einstellungen" 45 | 46 | msgid "Save Settings" 47 | msgstr "Einstellungen speichern" -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | 41 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/mastodon_wordpress_api/.gitignore: -------------------------------------------------------------------------------- 1 | notes.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/mastodon_wordpress_api/MIT_license: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KwangSeon Yun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/mastodon_wordpress_api/README.md: -------------------------------------------------------------------------------- 1 | # Mastodon Wordpress API 2 | A Mastodon API tailored to the Wordpress HTTP libary. 3 | 4 | ## How to use 5 | Instructions following on the finishing of the translation to wordpress 6 | 7 | ## License 8 | This libary is licensed under the GPLv2. 9 | For concern of the original license the MIT licensefile is included, but is not applied to this project! 10 | 11 | ## Credits 12 | Special Thanks to [yks118](https://github.com/yks118/Mastodon-api-php) for providing us with the mastodon-api-php (MIT License) from which this project is forked. 13 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.1/mastodon_wordpress_api/mastodon_wordpress_api.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.3/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | input[name=submit]{ 12 | float:left; 13 | } 14 | #testConnectionButton{ 15 | float: left; 16 | margin-left: 5px; 17 | } 18 | 19 | #testConnectionMessage{ 20 | font-weight: bold; 21 | padding: 5px; 22 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.3/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.3/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.3/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.3/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/1.3/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/1.3/mastodon_autopost.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |
'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.0.1/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.1/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.0.1/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.0.2/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.0.2/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.0.2/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.1/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.1/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.1/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.2/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.2/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.2/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.3/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.3/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.3/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.4/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.4/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.4/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.9/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0.9/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0.9/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check the your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.0/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.0/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/MastodonOAuthPHP/.gitignore: -------------------------------------------------------------------------------- 1 | test_code.php 2 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/MastodonOAuthPHP/autoload.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.0 8 | * @license http://www.apache.org/licenses/GPL-compatibility.html GPL 9 | * 10 | */ 11 | define('CLASS_DIR', __DIR__); 12 | set_include_path(get_include_path().PATH_SEPARATOR.CLASS_DIR); 13 | 14 | spl_autoload_register(function($name){ 15 | //For namespaces we replace \ with / to correct the Path 16 | $filename = str_replace("\\", "/", $name); 17 | require_once "{$filename}.php"; 18 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/MastodonOAuthPHP/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thecodingcompany/php-mastodon", 3 | "type": "library", 4 | "description": "Mastodon PHP library oAuth and API", 5 | "keywords": ["php","mastodon","api","oauth"], 6 | "homepage": "https://github.com/TheCodingCompany/MastodonOAuthPHP", 7 | "license": "MIT", 8 | "authors": [ 9 | { 10 | "name": "Victor Angelier", 11 | "email": "vangelier@hotmail.com", 12 | "homepage": "https://www.thecodingcompany.se", 13 | "role": "Founder" 14 | } 15 | ], 16 | "require": { 17 | "php": ">=5.6.0" 18 | }, 19 | "autoload": { 20 | "psr-4": { 21 | "theCodingCompany\\": "theCodingCompany/" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/css/settingsPage.css: -------------------------------------------------------------------------------- 1 | @keyframes glowing { 2 | 0% { box-shadow: 0 0 5px rgba(0,115,170,1)} 3 | 50% { box-shadow: 0 0 10px rgba(0,0,0,1)} 4 | 100% { box-shadow: 0 0 5px rgba(0,115,170,1)} 5 | } 6 | 7 | p.submit{ 8 | margin: 0; 9 | padding: 0; 10 | } 11 | 12 | #testConnectionButton{ 13 | margin-left: 5px; 14 | } 15 | 16 | #testConnectionMessage, #mAuthMessage{ 17 | font-weight: bold; 18 | padding: 5px; 19 | } 20 | 21 | #tokenEnterForm{ 22 | display: none; 23 | } -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/generalNotices.php: -------------------------------------------------------------------------------- 1 | 7 |'.esc_html__('Seems like you are not logged into Mastodon Autopost! Please check your login!', 'autopost-to-mastodon'). ' - '.esc_attr__('Settings', 'autopost-to-mastodon').'
8 | '; 9 | } 10 | } 11 | 12 | ?> -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/internationalization.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/js/formValidation.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($) { 2 | //Enable login button 3 | $("input[name=mastodon_instance_url]").keyup(function(){ 4 | if($(this).val().length !=0){ 5 | $('#userAuthButton').attr('disabled', false); 6 | } 7 | else 8 | { 9 | $('#userAuthButton').attr('disabled', true); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/languages/autopost-to-mastodon-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.1/languages/autopost-to-mastodon-de_DE.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/2.1/languages/autopost-to-mastodon-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonfrey/mastodon_wordpress_autopost/a8b8d688e92c360a5369710b9d769c6c8a66873a/autopost-to-mastodon/tags/2.1/languages/autopost-to-mastodon-fr_FR.mo -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/3.0/img/donate.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autopost-to-mastodon/tags/3.0/img/post/direct.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 |