Skip to content

Commit 8ab7be9

Browse files
committedOct 20, 2017
* update to 0.6.2
1 parent 762fa31 commit 8ab7be9

File tree

115 files changed

+148
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+148
-115
lines changed
 

‎CHANGELOG

+33
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
[0.6.2 - 20.10.2017]
2+
- added forums for guilds and groups
3+
- added nice looking menu for my account page in default template
4+
- new command line tool: install_plugin.php - can be used to install plugins from command line. Usage: "php install_plugin.php path_to_file"
5+
- added new tooltip to view characters equipment item name and monster loot
6+
- added items.xml loader class and weapons.xml loader class
7+
- minimum PHP version to install AAC is now 5.3.0 cause of Anonymous functions used by Twig
8+
- Added 'Are you sure?' popup when uninstalling plugin
9+
- added some warnings when plugin json file is incomplete
10+
- fixed showing in characters ban expires when is unlimited
11+
- fixed displaying monster loot when item.name in loot is used instead of item.id
12+
- load also runes into spells table
13+
- display plugin uninstall option only if its possible
14+
- after changing template you will be redirected to latest viewed page
15+
- display gallery add image form only on main gallery page
16+
- (internal) moved most of guilds html-in-php code to twig
17+
- (internal) moved spells page to twig template
18+
- (internal) removed useless spells.spell column that was duplicate of spells.words
19+
- (internal) save monster loot in database in json format instead loading it every time from xml file
20+
- (internal) store monster voices and immunities in json format
21+
- (internal) moved buttons to separate template
22+
- (internal) moved online search form to twig
23+
- (internal) added new function getItemNameById($id)
24+
- (internal) Moved plugin install logic to a new class: Plugins
25+
- (internal) changed spells.vocations database field to store json data instead of comma separated
26+
- (internal) removed $hook_types array, using defined() and constant() functions now
27+
- (internal) removed useless monsters.gfx_name field from database
28+
- (internal) renamed database field monsters.hide_creature to hidden
29+
- (internal) renamed existing Items class to Items_Images
30+
- (internal) optimized Spells class
31+
- (internal) new function: OTS_Guild::hasMember(OTS_Player $player)
32+
- (internal) new function: Forum::hasAccess($board_id)
33+
134
[0.6.1 - 17.10.2017]
235
- fixed signatures loading
336
- new configurable: session_prefix, to allow more websites on one machine (must be unique for every website on your dedicated server!)

‎common.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
* @package MyAAC
2222
* @author Slawkens <slawkens@gmail.com>
2323
* @copyright 2017 MyAAC
24-
* @version 0.6.1
24+
* @version 0.6.2
2525
* @link http://my-aac.org
2626
*/
2727
session_start();
2828

2929
define('MYAAC', true);
30-
define('MYAAC_VERSION', '0.6.1');
30+
define('MYAAC_VERSION', '0.6.2');
3131
define('DATABASE_VERSION', 15);
3232
define('TABLE_PREFIX', 'myaac_');
3333
define('START_TIME', microtime(true));

0 commit comments

Comments
 (0)
Please sign in to comment.