Extensions

This commit is contained in:
Gauvain Boiché
2020-04-04 23:28:30 +02:00
parent 3a964fe237
commit 155e626426
286 changed files with 10757 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
<Files *>
Order Allow,Deny
Deny from All
</Files>

View File

@@ -0,0 +1,35 @@
v2.1.2
- FIX Faulty regex returning null instead of the actual message.
- FIX Rolls' TAB not showing up on regular user accounts upon installation.
-
- The following to prevent cheats:
- ENHANCEMENT - User should not have permission to delete or modify existing rolls as default.
-
- The followings to keep consistency with the core code:
- ENHANCEMENT - Posts containing rolls can be safely soft-deleted and restored.
- ENHANCEMENT - Deleting rolls doesn't affect quoted ones.
- ENHANCEMENT - Editing rolls doesn't affect quoted ones.
- ENHANCEMENT - Deleting forum content doesn't affect rolls quoted elsewhere, ie.: other forums.
- ENHANCEMENT - Deleting topics doesn't affect rolls quoted elsewhere, ie.: other topics.
-
- Code housekeeping
v2.1.1
- Hardened user input about skins directory
- Provided related meaningful error report
- Code housekeeping
v2.1.0
- Change skins' dir to {phpbb_root}images/dice/
- Add migration to mirror the skins in the new images path
- Remove a configuration (dice version)
- Added Spanish formal
- Code housekeeping
v2.0.1
- FIX Quoted rolls aren't always rendered.
- Adjust migration
- Code housekeeping
v2.0.0-beta
- first public release

View File

@@ -0,0 +1,25 @@
/**
* Dice extension © Copyright phpBB Studio 2019
* https://www.phpbbstudio.com
*
* Dice is free extension for the phpBB Forum Software Package.
* You can redistribute it and/or modify it under the terms of
* the GNU General Public License, version 2 (GPL-2.0) as
* published by the Free Software Foundation.
*
* This extension is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* A copy of the license can be viewed in the license.txt file.
* The same can be viewed at <http://opensource.org/licenses/gpl-2.0.php>
*/
The Dice extension contains code (we ported to PHP) from the following applications:
rpg-dice-roller
- GreenImp
- https://github.com/GreenImp/rpg-dice-roller
- Copyright © 2015 - 2018 GreenImp ltd.
- MIT License <https://opensource.org/licenses/mit>

View File

@@ -0,0 +1,19 @@
/**
* Dice extension © Copyright phpBB Studio 2019
* https://www.phpbbstudio.com
*
* Dice is free extension for the phpBB Forum Software Package.
* You can redistribute it and/or modify it under the terms of
* the GNU General Public License, version 2 (GPL-2.0) as
* published by the Free Software Foundation.
*
* This extension is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* A copy of the license can be viewed in the license.txt file.
* The same can be viewed at <http://opensource.org/licenses/gpl-2.0.php>
*/
No events required while using at least 3.2.7 of phpBB

View File

@@ -0,0 +1,10 @@
# phpBB Studio - Dice
Are you a :scroll: RPG enthousiast? A role playing master :prince:?
Then we've got just the rolls for you!
We have created a comprehensive dice roller extension that is flawlessly integrated into phpBB's native system.
Your users can throw dice within your forums and let the story continue in new directions.
All this while you as an Administrator are in control.
We have taken all precautions to make sure users can not manipulate their dice rolls into the desired outcome.
A custom PHP class was created to make sure all calculations are done “behind the scenes”.
And an additional way to gain more control over the individual rolls is done by mimicing the native attachment system.

View File

@@ -0,0 +1,11 @@
# phpBB Studio - Dice
## Installation
Copy the extension to phpBB/ext/phpbbstudio/dice
Go to "ACP" > "Customise" > "Extensions" and enable the "phpBB Studio - Dice" extension.
## License
GPL-2.0-only (license.txt)

View File

@@ -0,0 +1,15 @@
<!doctype html>
<!--suppress HtmlDeprecatedAttribute -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Author" content="phpbbstudio.com">
<meta name="Keywords" content="extension for phpBB">
<meta name="Description" content="Dice">
<title></title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>