Skip to content

Commit

Permalink
Pre-release 8
Browse files Browse the repository at this point in the history
  • Loading branch information
samerton committed Dec 25, 2020
1 parent acf8121 commit 0a0bc15
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# NamelessMC - v2 pre-release 7
# NamelessMC - v2 pre-release 8
NamelessMC is a free, easy to use & powerful website software for your Minecraft server, which includes a large range of features.

NamelessMC version 2.0.0 is still a pre-release, and is not yet recommended for production use. Keep up to date with development in our [Spigot thread](https://www.spigotmc.org/threads/nameless-minecraft-website-software.34810) and our [Discord server](https://discord.gg/k8J97xf).

The official project website, providing support and additional downloads such as modules and templates, can be found at [https://namelessmc.com/](https://namelessmc.com/).

## Features
The following list is a brief summary of the features available in v2 pre-release 7.
The following list is a brief summary of the features available in v2 pre-release 8.
- API - if used in conjunction with the [Nameless Plugin for v2](https://www.spigotmc.org/resources/nameless-plugin-for-v2.59032/), integration with your Minecraft server can be provided
- Custom page system - create your own HTML pages and even restrict access to them depending on rank
- Forum system
Expand Down
38 changes: 37 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -504,4 +504,40 @@ NamelessMC version 2 Changelog
- Add per-user template support
- Prevent fatal error with insufficient forum permissions
- Allow changing group username colour from text input
- Add login link to maintenance mode page
- Add login link to maintenance mode page

2.0.0 pr-8
- Many bugfixes
- Add Discord rank sync
- Add Chinese (Simplified), French, Russian, Spanish (ES) and Turkish translations
- Update existing translations
- New user/group systems - mostly backend changes
- API rework - modules can now register custom endpoints
- New widget location - can choose between left + right hand side
- Remove legacy v1 API
- Add basic custom page feature - no navbar/footer
- Add ability to open custom page in new tab
- Remove old Default template
- Fix same-site redirect forums showing redirect warning
- Add "topics following" page
- Add email content editor
- Add mass emailing
- Add ability to receive emails for followed topic updates
- Add required custom profile fields to registration page
- Add announcement system
- New installer
- Update StaffCP users list table to be async
- Add ability to specify rel, as, onload attributes for CSS and defer, async attributes for JS
- Discord topic webhook improvements
- Remove dropdowns from DefaultRevamp template mobile sidebar
- Start PHP 8 compatibility - still a work in progress
- Fix MCAssoc integration
- Add server status widget
- Add latest profile post widget
- Add ability to change "More" dropdown message
- Add force 2FA option
- Multiple webhook support
- Add highlighting to profile post links
- Add ability to add CSS to group usernames
- Allow specifying "Can view other users' topics" forum permission for guests
- Add hCaptcha
2 changes: 1 addition & 1 deletion core/installation/views/includes/site_initialize.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@

$queries->create('settings', array(
'name' => 'nameless_version',
'value' => '2.0.0-pr7'
'value' => '2.0.0-pr8'
));

$queries->create('settings', array(
Expand Down
4 changes: 2 additions & 2 deletions core/installation/views/includes/upgrade_perform.php
Original file line number Diff line number Diff line change
Expand Up @@ -844,12 +844,12 @@
if (count($version)) {
$queries->update('settings', $version[0]->id, array(
'name' => 'nameless_version',
'value' => '2.0.0-pr7'
'value' => '2.0.0-pr8'
));
} else {
$queries->create('settings', array(
'name' => 'nameless_version',
'value' => '2.0.0-pr7'
'value' => '2.0.0-pr8'
));
}

Expand Down
2 changes: 1 addition & 1 deletion custom/templates/DefaultRevamp/template.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
* Made by Samerton | Revamped by Xemah
* https://github.com/NamelessMC/Nameless/
* NamelessMC version 2.0.0-pr7
* NamelessMC version 2.0.0-pr8
*
* License: MIT
*
Expand Down
1 change: 0 additions & 1 deletion modules/Core/pages/panel/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
die();
}

$queries = new Queries();
$cache = new Cache(array('name' => 'nameless', 'extension' => '.cache', 'path' => ROOT_PATH . '/cache/'));

// Get the current version
Expand Down

0 comments on commit 0a0bc15

Please sign in to comment.