Skip to content

Commit 500c28d

Browse files
committed
Update to 2.0.0 for release
1 parent d5e493f commit 500c28d

3 files changed

Lines changed: 19 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
# Changelog
22

3-
## 1.0.5 - 2016-11-10
3+
## Vesion 2.x (for phpBB 3.2)
4+
5+
### 2.0.0 - 2017-01-16
6+
7+
- Updated for phpBB 3.2 (continue using the 1.x branch for phpBB 3.1.x)
8+
- New minimum requirements: phpBB 3.2.0 and PHP 5.4
9+
- New dynamic routing has allowed us to remove the `/page/` requirement from page URLs. This means your pages can be accessed directly: `forum.com/pagename` (the old method still works as well: `forum.com/page/pagename`)
10+
11+
## Version 1.x (for phpBB 3.1)
12+
13+
### 1.0.5 - 2016-11-10
414

515
- Fix the Brazilian Portuguese language (renamed from pt-br to pt_br)
616
- Fix posted images to fit within the page area and not overflow
717
- Minor code and HTML improvements
818
- Added German language pack
919

10-
## 1.0.4 - 2016-01-17
20+
### 1.0.4 - 2016-01-17
1121

1222
- Added a feature where route names are auto-suggested based on the page title
1323
- Fixed an issue that prevented pages from being updated on MSSQL systems
@@ -17,7 +27,7 @@
1727
- Added Mandarin Chinese (Simplified Script) language pack
1828
- Added Russian language pack
1929

20-
## 1.0.3 - 2015-06-14
30+
### 1.0.3 - 2015-06-14
2131

2232
- Inaccessible pages will corectly send 404 status codes
2333
- Removed edit time limitations when creating pages
@@ -32,12 +42,12 @@
3242
- Added Polish language pack
3343
- Require phpBB 3.1.3
3444

35-
## 1.0.2 - 2015-01-04
45+
### 1.0.2 - 2015-01-04
3646

3747
- Fixed some very minor coding issues
3848
- Switched to Titania hosted version checking
3949

40-
## 1.0.1 - 2014-11-28
50+
### 1.0.1 - 2014-11-28
4151

4252
- Make Page URL Route explanation easier to understand
4353
- Renamed Pages template events with vendor and extension names prefixes.
@@ -51,6 +61,6 @@
5161
- Added Spanish language pack
5262
- Added Swedish language pack
5363

54-
## 1.0.0 - 2014-10-23
64+
### 1.0.0 - 2014-10-23
5565

5666
- First release

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "phpbb-extension",
44
"description": "An extension which allows you to add static pages to your phpBB forum",
55
"homepage": "https://www.phpbb.com",
6-
"version": "2.0.0-dev",
6+
"version": "2.0.0",
77
"keywords": ["phpbb", "extension", "static", "pages"],
88
"license": "GPL-2.0",
99
"authors": [

ext.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ class ext extends \phpbb\extension\base
2525
* The current phpBB version should meet or exceed
2626
* the minimum version required by this extension:
2727
*
28-
* Requires phpBB 3.2.0-dev due to new dynamic route loader
28+
* Requires phpBB 3.2.0 due to new dynamic route loader
2929
*
3030
* @return bool
3131
* @access public
3232
*/
3333
public function is_enableable()
3434
{
35-
return phpbb_version_compare(PHPBB_VERSION, '3.2.0-dev', '>=');
35+
return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
3636
}
3737
}

0 commit comments

Comments
 (0)