mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-29 10:49:23 +02:00
Tagging Znote AAC as version 1.6
This commit is contained in:
parent
ddd54a932e
commit
26c486ef27
@ -13,8 +13,6 @@ We use github to distribute our versions, stable are tagged as releases, while d
|
|||||||
* [Stable](https://github.com/Znote/ZnoteAAC/releases)
|
* [Stable](https://github.com/Znote/ZnoteAAC/releases)
|
||||||
* [Development](https://github.com/Znote/ZnoteAAC/archive/master.zip)
|
* [Development](https://github.com/Znote/ZnoteAAC/archive/master.zip)
|
||||||
|
|
||||||
**NOTE:** Development version supports TFS 1.3, but you can expect bugs to occur.
|
|
||||||
|
|
||||||
### Compatible OT distributions
|
### Compatible OT distributions
|
||||||
Znote AAC primarily aims to be compatible with [Forgotten Server](https://github.com/otland/forgottenserver)
|
Znote AAC primarily aims to be compatible with [Forgotten Server](https://github.com/otland/forgottenserver)
|
||||||
Forgotten Server is commonly known as TFS (The Forgotten Server) and Znote AAC supports these versions:
|
Forgotten Server is commonly known as TFS (The Forgotten Server) and Znote AAC supports these versions:
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
<?php
|
<?php
|
||||||
// Verify the PHP version, gives tutorial if fail.
|
// Verify the PHP version, gives tutorial if fail.
|
||||||
if (version_compare(phpversion(), '5.3.3', '<')) die('PHP 5.3.3 or higher is required');
|
if (version_compare(phpversion(), '5.6', '<')) die('PHP version 5.6 or higher is required.');
|
||||||
if (!isset($filepath)) $filepath = '../';
|
if (!isset($filepath)) $filepath = '../';
|
||||||
|
|
||||||
$version = '1.5_SVN';
|
$version = '1.6';
|
||||||
session_start();
|
session_start();
|
||||||
ob_start();
|
ob_start();
|
||||||
require_once $filepath.'config.php';
|
require_once $filepath.'config.php';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
$time = time();
|
$time = time();
|
||||||
if (!isset($version)) $version = '1.5_SVN';
|
if (!isset($version)) $version = '1.6';
|
||||||
|
|
||||||
if (!function_exists("elapsedTime")) {
|
if (!function_exists("elapsedTime")) {
|
||||||
function elapsedTime($l_start = false, $l_time = false) {
|
function elapsedTime($l_start = false, $l_time = false) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
-- Start of Znote AAC database schema
|
-- Start of Znote AAC database schema
|
||||||
|
|
||||||
SET @znote_version = '1.5_SVN';
|
SET @znote_version = '1.6';
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS `znote` (
|
CREATE TABLE IF NOT EXISTS `znote` (
|
||||||
`id` int NOT NULL AUTO_INCREMENT,
|
`id` int NOT NULL AUTO_INCREMENT,
|
||||||
|
@ -15,7 +15,7 @@ function elapsedTime($l_start = false, $l_time = false) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$time = time();
|
$time = time();
|
||||||
$version = '1.5_SVN';
|
$version = '1.6';
|
||||||
|
|
||||||
$aacQueries = 0;
|
$aacQueries = 0;
|
||||||
$accQueriesData = array();
|
$accQueriesData = array();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user