Skip to content

Commit 26c486e

Browse files
committed
Tagging Znote AAC as version 1.6
1 parent ddd54a9 commit 26c486e

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ We use github to distribute our versions, stable are tagged as releases, while d
1313
* [Stable](https://github.com/Znote/ZnoteAAC/releases)
1414
* [Development](https://github.com/Znote/ZnoteAAC/archive/master.zip)
1515

16-
**NOTE:** Development version supports TFS 1.3, but you can expect bugs to occur.
17-
1816
### Compatible OT distributions
1917
Znote AAC primarily aims to be compatible with [Forgotten Server](https://github.com/otland/forgottenserver)
2018
Forgotten Server is commonly known as TFS (The Forgotten Server) and Znote AAC supports these versions:

api/api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22
// Verify the PHP version, gives tutorial if fail.
3-
if (version_compare(phpversion(), '5.3.3', '<')) die('PHP 5.3.3 or higher is required');
3+
if (version_compare(phpversion(), '5.6', '<')) die('PHP version 5.6 or higher is required.');
44
if (!isset($filepath)) $filepath = '../';
55

6-
$version = '1.5_SVN';
6+
$version = '1.6';
77
session_start();
88
ob_start();
99
require_once $filepath.'config.php';

engine/database/connect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
$time = time();
3-
if (!isset($version)) $version = '1.5_SVN';
3+
if (!isset($version)) $version = '1.6';
44

55
if (!function_exists("elapsedTime")) {
66
function elapsedTime($l_start = false, $l_time = false) {

engine/database/znote_schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- Start of Znote AAC database schema
22

3-
SET @znote_version = '1.5_SVN';
3+
SET @znote_version = '1.6';
44

55
CREATE TABLE IF NOT EXISTS `znote` (
66
`id` int NOT NULL AUTO_INCREMENT,

engine/init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function elapsedTime($l_start = false, $l_time = false) {
1515
}
1616

1717
$time = time();
18-
$version = '1.5_SVN';
18+
$version = '1.6';
1919

2020
$aacQueries = 0;
2121
$accQueriesData = array();

0 commit comments

Comments
 (0)