Merge branch 'master' of ssh://git.jeremydormitzer.com:222/jdormit/pterotype
This commit is contained in:
commit
f069933b0e
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
/vendor
|
||||
/log
|
||||
dist/
|
||||
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -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.
|
5
Makefile
Normal file
5
Makefile
Normal file
@ -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
|
15
README.txt
Normal file
15
README.txt
Normal file
@ -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.
|
BIN
assets/banner-772x250.png
Normal file
BIN
assets/banner-772x250.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.0 KiB |
BIN
assets/icon-128x128.png
Normal file
BIN
assets/icon-128x128.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -1,6 +1,13 @@
|
||||
<?php
|
||||
/*
|
||||
Plugin Name: Pterotype
|
||||
Plugin URI: https://getpterotype.com
|
||||
Description: Pterotype expands your audience by giving your blog an ActivityPub stream, making it a part of the Fediverse.
|
||||
Version: 0.0.1
|
||||
Author: Jeremy Dormitzer
|
||||
Author URI: https://jeremydormitzer.com
|
||||
License: MIT
|
||||
License URI: https://github.com/jdormit/blob/master/LICENSE
|
||||
*/
|
||||
require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php';
|
||||
require_once plugin_dir_path( __FILE__ ) . 'includes/init.php';
|
||||
|
Loading…
Reference in New Issue
Block a user