Skip to content

Commit

Permalink
adding updater
Browse files Browse the repository at this point in the history
  • Loading branch information
neilpie committed Aug 4, 2023
1 parent 5c1cc1d commit 9b4dde9
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Invision Community Single Logout
Just a starter template for basic WordPress plugins. Please create a new repo from this template and make the relevant edits to This plugin logs a user out from Invision Community when they visit a specified URL, and then logs them out of WordPress. Helpful when using WordPress as an Oauth Server since Invision Community does not allow for a custom logout URL
This plugin logs a user out from Invision Community when they visit a specified URL, and then logs them out of WordPress. Helpful when using WordPress as an Oauth Server since Invision Community does not allow for a custom logout URL.
2 changes: 2 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Added
- Support for native WordPress updates

## [0.0.1]
### Added
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
"email": "[email protected]"
}
],
"require": {}
"require": {
"yahnis-elsts/plugin-update-checker": "^5.1"
}
}
69 changes: 69 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "invision_community_single_logout",
"version": "0.0.1",
"version": "0.1.1",
"description": "This plugin logs a user out from Invision Community when they visit a specified URL, and then logs them out of WordPress. Helpful when using WordPress as an Oauth Server since Invision Community does not allow for a custom logout URL.",
"main": "plugin.php",
"repository": "[email protected]:pie/invision-community-single-logout.git",
Expand Down
8 changes: 8 additions & 0 deletions update.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name" : "Invision Community Single Logout",
"version" : "0.1.1",
"download_url" : "https://example.com/plugin-name-2.0.zip",
"sections" : {
"description" : "This plugin logs a user out from Invision Community when they visit a specified URL, and then logs them out of WordPress. Helpful when using WordPress as an Oauth Server since Invision Community does not allow for a custom logout URL."
}
}

0 comments on commit 9b4dde9

Please sign in to comment.