Skip to content

Commit

Permalink
Merge pull request #9 from VSEphpbb/updates/minor
Browse files Browse the repository at this point in the history
Beta 1 Prep Release
  • Loading branch information
EXreaction committed Jun 25, 2014
2 parents 9669d76 + 676d0db commit 96f0569
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 6 deletions.
32 changes: 30 additions & 2 deletions README.md
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)
22 changes: 20 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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",
Expand All @@ -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"
}
}
}
2 changes: 0 additions & 2 deletions tests/functional/version_check_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ static protected function setup_extensions()
*/
public function test_version_check()
{
$this->markTestSkipped('Version info file is not available yet');

// Load our language files
$this->add_lang_ext('phpbb/boardannouncements', array('info_acp_board_announcements'));

Expand Down

0 comments on commit 96f0569

Please sign in to comment.