-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from VSEphpbb/updates/minor
Beta 1 Prep Release
- Loading branch information
Showing
3 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
boardannouncements | ||
================== | ||
# phpBB Board Announcements Extension | ||
|
||
This is the repository for the development of the phpBB Board Announcements Extension. | ||
|
||
[![Build Status](https://travis-ci.org/phpbb-extensions/boardannouncements.png)](https://travis-ci.org/phpbb-extensions/boardannouncements) | ||
|
||
## Quick Install | ||
You can install this on the latest copy of the develop branch ([phpBB 3.1-dev](https://github.com/phpbb/phpbb3)) by following the steps below: | ||
|
||
1. [Download the latest release](https://github.com/phpbb-extensions/boardannouncements/releases). | ||
2. Unzip the downloaded release, and change the name of the folder to `boardannouncements`. | ||
3. In the `ext` directory of your phpBB board, create a new directory named `phpbb` (if it does not already exist). | ||
4. Copy the `boardannouncements` folder to `phpBB/ext/phpbb/` (if done correctly, you'll have the main extension class at (your forum root)/ext/phpbb/boardannouncements/ext.php). | ||
5. Navigate in the ACP to `Customise -> Manage extensions`. | ||
6. Look for `Board Announcements` under the Disabled Extensions list, and click its `Enable` link. | ||
7. Set up and configure Board Announcements by navigating in the ACP to `Extensions` -> `Board Announcements`. | ||
|
||
## Uninstall | ||
|
||
1. Navigate in the ACP to `Customise -> Extension Management -> Extensions`. | ||
2. Look for `Board Announcements` under the Enabled Extensions list, and click its `Disable` link. | ||
3. To permanently uninstall, click `Delete Data` and then delete the `/ext/phpbb/boardannouncements` folder. | ||
|
||
## Support | ||
|
||
* Report bugs and other issues to our [Issue Tracker](https://github.com/phpbb-extensions/boardannouncements/issues). | ||
* Support requests should be posted and discussed in the [Board Announcements topic at phpBB.com](https://www.phpbb.com/community/viewtopic.php?f=456&t=2245901). | ||
|
||
## License | ||
[GNU General Public License v2](http://opensource.org/licenses/GPL-2.0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"type": "phpbb-extension", | ||
"description": "An extension which allows you to create board-wide announcements for your phpBB forum", | ||
"homepage": "https://phpbb.com", | ||
"version": "1.0.0-dev", | ||
"version": "1.0.0-b1", | ||
"keywords": ["phpbb", "extension", "announcements"], | ||
"license": "GPL-2.0", | ||
"authors": [ | ||
|
@@ -13,6 +13,19 @@ | |
"email": "[email protected]", | ||
"role": "Extensions Development Team Lead" | ||
}, | ||
{ | ||
"name": "Michael Cullum", | ||
"homepage": "http://michaelcullum.com", | ||
"email": "[email protected]", | ||
"role": "Extensions Team Consultant" | ||
}, | ||
{ | ||
"name": "Marc Alexander", | ||
"username": "Marc", | ||
"email": "[email protected]", | ||
"homepage": "http://www.m-a-styles.de", | ||
"role": "Extensions Team Consultant" | ||
}, | ||
{ | ||
"name": "Matt Friedman", | ||
"username": "VSE", | ||
|
@@ -30,6 +43,11 @@ | |
"phpbb/phpbb": "3.1.*@dev" | ||
}, | ||
"extra": { | ||
"display-name": "Board Announcements" | ||
"display-name": "Board Announcements", | ||
"version-check": { | ||
"host": "version.phpbb.com", | ||
"directory": "/phpbb-extensions", | ||
"filename": "boardannouncements_versions.json" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters