Skip to content

Commit f4fb3eb

Browse files
SajakiSajaki
Sajaki
authored and
Sajaki
committed
build 2.2.15
1 parent cd0df80 commit f4fb3eb

File tree

6 files changed

+12
-83
lines changed

6 files changed

+12
-83
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Extension for phpBB to display recent topics.
55
Based on NV Recent Topics for phpBB 3.0, by Joas Schilling ([nickvergessen](https://github.com/nickvergessen))
66

77
#### Version
8-
v2.2.14 (01/08/2020) [![Build Status](https://travis-ci.org/Sajaki/RecentTopics.svg?branch=develop32)](https://travis-ci.org/Sajaki/RecentTopics)
8+
v2.2.15 (05/04/2021)
99
[![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)
1010

1111
#### Support

composer.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "Recent topics Extension for phpBB3.2. Adds a list with a number of recent topics to the index.php",
55
"homepage": "https://github.com/sajaki/RecentTopics",
6-
"version": "2.3.0",
7-
"time": "2021-04-04",
6+
"version": "2.2.15",
7+
"time": "2021-04-05",
88
"license": "GPL-2.0-only",
99
"authors": [
1010
{
@@ -22,17 +22,13 @@
2222
}
2323
],
2424
"require": {
25-
"php": ">=5.4.7",
26-
"phpbb/phpbb": ">=3.2.0",
25+
"php": ">=7.3",
2726
"composer/installers": "~1.0"
2827
},
29-
"require-dev": {
30-
"phpbb/epv": "dev-master"
31-
},
3228
"extra": {
3329
"display-name": "Recent Topics",
3430
"soft-require": {
35-
"phpbb/phpbb": ">=3.2.0"
31+
"phpbb/phpbb": ">=3.2.6,<3.4.0@dev"
3632
},
3733
"version-check": {
3834
"host": "www.avathar.be",

contrib/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
### Changelog
2+
- 2.2.15 (05/04/2021)
3+
- [FIX] #142 Compatible with PHP 8
4+
25
- 2.2.14 (01/08/2020)
36
- [FIX] align prosilver display of Post Order to pbWow to display first post.
47
- [FIX] Add topic_posted table so the image of "_mine" displays.

contrib/README.md

-70
This file was deleted.

ext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ class ext extends \phpbb\extension\base
2727
*/
2828
public function is_enableable()
2929
{
30-
return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
30+
return phpbb_version_compare(PHPBB_VERSION, '3.2.6', '>=');
3131
}
3232
}

migrations/release_2_3_0.php migrations/release_2_2_15.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
namespace paybas\recenttopics\migrations;
1212

13-
class release_2_3_0 extends \phpbb\db\migration\migration
13+
class release_2_2_15 extends \phpbb\db\migration\migration
1414
{
1515

1616
public function effectively_installed()
1717
{
18-
return isset($this->config['rt_version']) && version_compare($this->config['rt_version'], '2.3', '>=');
18+
return isset($this->config['rt_version']) && version_compare($this->config['rt_version'], '2.2.15', '>=');
1919
}
2020

2121
static public function depends_on()
@@ -28,7 +28,7 @@ static public function depends_on()
2828
public function update_data()
2929
{
3030
return [
31-
['config.update', ['rt_version', '2.3']],
31+
['config.update', ['rt_version', '2.2.15']],
3232
//the default should be unread only
3333
];
3434
}

0 commit comments

Comments
 (0)