Skip to content

Commit ad6fec3

Browse files
authored
Merge pull request #58 from phpbb-extensions/release-prep
Release prep
2 parents caea4c6 + 0509169 commit ad6fec3

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Changelog
2+
3+
## 1.0.2 - 2016-11-19
4+
5+
- Re-organized some of the "Extension packaging" fields with clearer names and ordering.
6+
- Shortened the name of the nav-bar link in the web interface to "Skeleton Extension".
7+
- Helpful tooltips have been added to each of the checkboxes in the "Components" section of the web interface.
8+
- Added a link to Skeleton Extension's Documentation in the web interface.
9+
- Added warnings when trying to use 'phpbb' or 'core' as vendor and extension names.
10+
- Added view online page sample code to the event listener for the controller component.
11+
- Added a missing migration file to generated UCP components.
12+
- Fixed an issue where the controller component did not generate a correct event listener.
13+
- Fixed an issue where the controller component did not generate a template event listener for the controller's nav-bar link.
14+
- Fixed an issue where the notifications component did not generate a valid ext.php (references to the notification services will now have the correct vendor and ext names instead of "dev.dev").
15+
- Use the correct Symfony syntax for non-shared services: `scope: prototype` in phpBB 3.1.x and `shared: false` in phpBB 3.2.
16+
17+
## 1.0.1 - 2016-10-13
18+
19+
- Fixed an issue where in phpBB 3.1 boards, the Command Line Interface would not work.
20+
- Skeleton files now have file docblocks uniquely named after the extension (was previously based on phpBB's own docblock). The current date and primary author name are also automatically added to the docblock's @copyright.
21+
- Skeleton ACP PHP files have correct visibility declarations for methods and properties now.
22+
- Skeleton config service files correctly encapsulate all strings in quotes that begin with @ and % per Symfony specifications.
23+
- Skeleton PHP files have all their docblocks updated to be consistent with PSR-5 recommendations.
24+
- Skeleton event class methods that do not use the $event variable do not have them defined as an argument (this is done to demonstrate that the $event argument is only needed if actually used in an event listener method).
25+
- Internal docblocks have been updated.
26+
27+
## 1.0.0 - 2016-08-04
28+
29+
- First release

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "A phpBB Extension for creating extension skeletons",
55
"homepage": "https://www.phpbb.com/customise/db/official_tool/ext_skeleton/",
6-
"version": "1.0.2-dev",
7-
"time": "2016-10-13",
6+
"version": "1.0.2",
7+
"time": "2016-11-19",
88
"license": "GPL-2.0",
99
"authors": [
1010
{

0 commit comments

Comments
 (0)