Skip to content

Commit

Permalink
Release version 1.0.8
Browse files Browse the repository at this point in the history
Create update files and update installer for 1.0.8
  • Loading branch information
samerton committed Apr 25, 2016
1 parent 6395cc3 commit f7f3125
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NamelessMC - version 1.0.7
# NamelessMC - version 1.0.8

NamelessMC is a free, easy to use & powerful website software for your Minecraft server, which includes a large range of features.

Version 1.0.7 features:
Version 1.0.8 features:

- Template and theme system
- Languages
Expand Down
17 changes: 16 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,19 @@
- Display custom avatars in Members list
- Allow functionality if cache is not present
- Fix Paper theme Jumbotron font colour
- Update profile system
- Update profile system

1.0.8
- Add missing icons to navbar
- Update friend/follower avatars on profile page
- Add thumbs up icon to likes on profile page
- Add permission check to latest profile posts
- Fix profile issue for unregistered users
- Add custom DB class
- Add Infractions addon
- Allow deleting all server query errors
- Remove requirement for location and birthday
- Separate user likes on profile pages
- Prevent modifying root user
- Add support for Discord widget
- Fix infinite loop on profile pages
23 changes: 23 additions & 0 deletions core/includes/updates/107.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php
// 1.0.7 -> 1.0.8 updater

// Database changes:
$queries->create('settings', array(
'name' => 'discord',
'value' => '0'
));

// Update version number
$version_number_id = $queries->getWhere('settings', array('name', '=', 'version'));
$version_number_id = $version_number_id[0]->id;

$queries->update('settings', $version_number_id, array(
'value' => '1.0.8'
));

$version_update_id = $queries->getWhere('settings', array('name', '=', 'version_update'));
$version_update_id = $version_update_id[0]->id;

$queries->update('settings', $version_update_id, array(
'value' => 'false'
));
4 changes: 2 additions & 2 deletions pages/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@
// Version update
$version_id = $queries->getWhere('settings', array('name', '=', 'version'));
$queries->update('settings', $version_id[0]->id, array(
'value' => '1.0.7'
'value' => '1.0.8'
));


Expand Down Expand Up @@ -997,7 +997,7 @@
),
28 => array(
'name' => 'version',
'value' => '1.0.7'
'value' => '1.0.8'
),
29 => array(
'name' => 'version_checked',
Expand Down

0 comments on commit f7f3125

Please sign in to comment.