diff --git a/.gitignore b/.gitignore index c01a117..f65a357 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /vendor /log +dist/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b41c356 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Jeremy Dormitzer + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c0948f0 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +dist/pterotype.zip: clean + composer install && mkdir -p dist && zip -r dist/pterotype.zip . -x \.git/\* dist/\* log/\* + +clean: + rm -f dist/pterotype.zip diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..cccdae1 --- /dev/null +++ b/README.txt @@ -0,0 +1,15 @@ +=== Pterotype === +Contributors: jdormit +Tags: ActivityPub,Fediverse,Federation +Requires at least: 4.9.8 +Requires PHP: 7.2.11 +License: MIT +License URI: https://github.com/jdormit/pterotype/blob/master/LICENSE + +Pterotype expands your audience by giving your blog an ActivityPub stream, +making it a part of the Fediverse. + +== Description == +Pterotype expands your audience by giving your blog an ActivityPub stream, +making it a part of the Fediverse. Users of Mastodon, Pleroma, and other Fediverse +services will be able to follow and share your posts from the platform of their choice. diff --git a/assets/banner-772x250.png b/assets/banner-772x250.png new file mode 100644 index 0000000..056d0c2 Binary files /dev/null and b/assets/banner-772x250.png differ diff --git a/assets/icon-128x128.png b/assets/icon-128x128.png new file mode 100644 index 0000000..609d0c6 Binary files /dev/null and b/assets/icon-128x128.png differ diff --git a/pterotype.php b/pterotype.php index 28edcbc..6b48d6b 100644 --- a/pterotype.php +++ b/pterotype.php @@ -1,6 +1,13 @@