Skip to content

Commit

Permalink
Release version 1.0.19
Browse files Browse the repository at this point in the history
Add update files and update installer for v1.0.19
  • Loading branch information
samerton committed Nov 22, 2017
1 parent b9f9940 commit 2e91e5b
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#### Example:
**What kind of issue is it (Question, Bug, etc.)?** Bug.
**In which version of NamelessMC did it occur (1.x.x)?** Release 1.0.18.
**In which version of NamelessMC did it occur (1.x.x)?** Release 1.0.19.
**How would you describe the issue?** The index does not load up at all.
**Do you have (relevant) resources about this issue (Logs, pictures, etc.)?** Yes, I have the a screenshot of it. [Click here](http://i.imgur.com/QqkXhVx.png)
**Do you have an idea how or where the issue occurs?** I think it has to do with the "index.php" file but not sure.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

Nameless version 2.0.0 is currently in development and the source can be viewed on the v2 branch. Until it's ready for production use, any pre-releases can be found here: https://github.com/NamelessMC/Nameless/releases.

## Version 1.0.18
## Version 1.0.19

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

Version 1.0.18 features:
Version 1.0.19 features:

- Template and theme system
- Languages
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -514,3 +514,8 @@ The notes for each release
- Ensure route is =lowercase
- Ensure UUID is never null
- Update secondary groups

1.0.19
- Fix invalid API keys
- Fix text overflow on donate package descriptions
- Add htaccess files to core directory
20 changes: 20 additions & 0 deletions core/includes/updates/1018.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php
// 1.0.18 -> 1.0.19 updater
ini_set('display_startup_errors',1);
ini_set('display_errors',1);
error_reporting(-1);

// 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.19'
));

$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 @@ -662,7 +662,7 @@
// Version update
$version_id = $queries->getWhere('settings', array('name', '=', 'version'));
$queries->update('settings', $version_id[0]->id, array(
'value' => '1.0.18'
'value' => '1.0.19'
));


Expand Down Expand Up @@ -1043,7 +1043,7 @@
),
28 => array(
'name' => 'version',
'value' => '1.0.18'
'value' => '1.0.19'
),
29 => array(
'name' => 'version_checked',
Expand Down

0 comments on commit 2e91e5b

Please sign in to comment.