-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from mybbgroup/v3.0.0release
v3.0.0 release
- Loading branch information
Showing
3 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
<?php | ||
/** | ||
* Thank You/Like system - plugin for MyBB 1.8.x forum software | ||
* | ||
* @package MyBB Plugin | ||
* @author MyBB Group - Eldenroot & SvePu & lairdshaw - <[email protected]> | ||
* @copyright 2018 MyBB Group <http://mybb.group> | ||
* @link <https://github.com/mybbgroup/MyBB_Thank-you-like-plugin> | ||
* @version 3.0.0 | ||
* @license GPL-3.0 | ||
* | ||
*/ | ||
|
||
/** | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -54,7 +66,6 @@ | |
$plugins->add_hook('task_promotions', 'thankyoulike_promotion_task'); | ||
} | ||
|
||
|
||
function thankyoulike_info() | ||
{ | ||
global $plugins_cache, $db, $lang, $admin_session; | ||
|
@@ -69,18 +80,18 @@ function thankyoulike_info() | |
$url_E = '<a href="https://community.mybb.com/user-84065.html" target="_blank">Eldenroot</a>'; | ||
$url_DN = '<a href="https://community.mybb.com/user-51493.html" target="_blank">Whiteneo</a>'; | ||
$url_L = '<a href="https://community.mybb.com/user-116662.html" target="_blank">Laird</a>'; | ||
$url_S = '<a href="https://github.com/Eldenroot/MyBB_Thank-you-like-plugin" target="_blank">GitHub</a>'; | ||
$url_S = '<a href="https://github.com/mybbgroup/MyBB_Thank-you-like-plugin" target="_blank">GitHub</a>'; | ||
|
||
$info = array( | ||
"name" => htmlspecialchars_uni($lang->tyl_info_title), | ||
"description" => htmlspecialchars_uni($lang->tyl_info_desc) . $lang->sprintf($lang->tyl_info_desc_url,$url_AT,$url_SP,$url_E,$url_DN,$url_L,$url_S), | ||
"website" => "https://community.mybb.com/thread-169382.html", | ||
"author" => "- G33K -, ATofighi, Eldenroot, SvePu, Whiteneo, Laird", | ||
"authorsite" => "https://community.mybb.com/thread-169382.html", | ||
"version" => "2.4.0", | ||
"version" => "3.0.0", | ||
// Constructed by converting each digit of "version" above into two digits (zero-padded if necessary), | ||
// then concatenating them, then removing any leading zero to avoid the value being interpreted as octal. | ||
"version_code" => 20400, | ||
"version_code" => 30000, | ||
"codename" => "thankyoulikesystem", | ||
"compatibility" => "18*" | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
<?php | ||
/** | ||
* Thank You/Like system - plugin for MyBB 1.8.x forum software | ||
* | ||
* @package MyBB Plugin | ||
* @author MyBB Group - Eldenroot & SvePu & lairdshaw - <[email protected]> | ||
* @copyright 2018 MyBB Group <http://mybb.group> | ||
* @link <https://github.com/mybbgroup/MyBB_Thank-you-like-plugin> | ||
* @version 3.0.0 | ||
* @license GPL-3.0 | ||
* | ||
*/ | ||
|
||
/** | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|