Update changelog

This commit is contained in:
Starbeamrainbowlabs 2018-09-30 14:16:56 +01:00
parent a45a3aa087
commit 1a11c84e1d
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
# Changelog # Changelog
This file holds the changelog for Pepperminty Wiki. This is the master list of things that have changed (second only to the commit history!) - though the information for any particular release can also be found in the description of it's page for every release made on GitHub too. This file holds the changelog for Pepperminty Wiki. This is the master list of things that have changed (second only to the commit history!) - though the information for any particular release can also be found in the description of it's page for every release made on GitHub too.
## v0.17-dev ## v0.17-beta1
### Added ### Added
- [Module API] Added `save_settings()` convenience method - [Module API] Added `save_settings()` convenience method
@ -37,7 +37,7 @@ This file holds the changelog for Pepperminty Wiki. This is the master list of t
- Semicolons are no longer automatically included in greedy internal links. - Semicolons are no longer automatically included in greedy internal links.
- Pressing enter in the tag box now correctly previews instead of performing a smart restore - Pressing enter in the tag box now correctly previews instead of performing a smart restore
## Changed ### Changed
- Password hashing has been overhauled! A totally new-and-different system is being used now, so you'll need to rehash all your passwords. - Password hashing has been overhauled! A totally new-and-different system is being used now, so you'll need to rehash all your passwords.
- The `hash` action supports the new password hashing scheme. - The `hash` action supports the new password hashing scheme.
- Added `password_cost`, `password_cost_time`, and `password_cost_time_interval` settings - Added `password_cost`, `password_cost_time`, and `password_cost_time_interval` settings

View File

@ -406,8 +406,8 @@ if($settings->sessionprefix == "auto")
////// Do not edit below this line unless you know what you are doing! ////// ////// Do not edit below this line unless you know what you are doing! //////
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
/** The version of Pepperminty Wiki currently running. */ /** The version of Pepperminty Wiki currently running. */
$version = "v0.17-dev"; $version = "v0.17-beta1";
$commit = "c7d7de3d7e2adda1a41ae3484ac2d899b1221d44"; $commit = "a45a3aa087752b4f26af0a02785efc8b08436ce2";
/// Environment /// /// Environment ///
/** Holds information about the current request environment. */ /** Holds information about the current request environment. */
$env = new stdClass(); $env = new stdClass();
@ -1446,7 +1446,7 @@ class page_renderer
<meta charset='utf-8' /> <meta charset='utf-8' />
<title>{title}</title> <title>{title}</title>
<meta name='viewport' content='width=device-width, initial-scale=1' /> <meta name='viewport' content='width=device-width, initial-scale=1' />
<meta name='generator' content='Pepperminty Wiki v0.17-dev' /> <meta name='generator' content='Pepperminty Wiki v0.17-beta1' />
<link rel='shortcut-icon' href='{favicon-url}' /> <link rel='shortcut-icon' href='{favicon-url}' />
<link rel='icon' href='{favicon-url}' /> <link rel='icon' href='{favicon-url}' />
{header-html} {header-html}
@ -1470,7 +1470,7 @@ class page_renderer
{extra} {extra}
<footer> <footer>
<p>{footer-message}</p> <p>{footer-message}</p>
<p>Powered by Pepperminty Wiki v0.17-dev, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or <a href='//github.com/sbrl/Pepperminty-Wiki' title='Github Issue Tracker'>open an issue</a>.</p> <p>Powered by Pepperminty Wiki v0.17-beta1, which was built by <a href='//starbeamrainbowlabs.com/'>Starbeamrainbowlabs</a>. Send bugs to 'bugs at starbeamrainbowlabs dot com' or <a href='//github.com/sbrl/Pepperminty-Wiki' title='Github Issue Tracker'>open an issue</a>.</p>
<p>Your local friendly moderators are {admins-name-list}.</p> <p>Your local friendly moderators are {admins-name-list}.</p>
<p>This wiki is managed by <a href='mailto:{admin-details-email}'>{admin-details-name}</a>.</p> <p>This wiki is managed by <a href='mailto:{admin-details-email}'>{admin-details-name}</a>.</p>
</footer> </footer>
@ -1488,7 +1488,7 @@ class page_renderer
<p><em>From {sitename}, which is managed by {admin-details-name}.</em></p> <p><em>From {sitename}, which is managed by {admin-details-name}.</em></p>
<p>{footer-message}</p> <p>{footer-message}</p>
<p><em>Timed at {generation-date}</em></p> <p><em>Timed at {generation-date}</em></p>
<p><em>Powered by Pepperminty Wiki v0.17-dev.</em></p> <p><em>Powered by Pepperminty Wiki v0.17-beta1.</em></p>
</footer>"; </footer>";
/** /**
@ -1577,7 +1577,7 @@ class page_renderer
"{body}" => $body_template, "{body}" => $body_template,
"{sitename}" => $logo_html, "{sitename}" => $logo_html,
"v0.17-dev" => $version, "v0.17-beta1" => $version,
"{favicon-url}" => $settings->favicon, "{favicon-url}" => $settings->favicon,
"{header-html}" => self::get_header_html(), "{header-html}" => self::get_header_html(),

View File

@ -1 +1 @@
v0.17-dev v0.17-beta1