Skip to content

Commit

Permalink
Tagging Znote AAC as version 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Znote committed Jul 22, 2021
1 parent ddd54a9 commit 26c486e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
* [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
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:
Expand Down
4 changes: 2 additions & 2 deletions api/api.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php
// 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 = '../';

$version = '1.5_SVN';
$version = '1.6';
session_start();
ob_start();
require_once $filepath.'config.php';
Expand Down
2 changes: 1 addition & 1 deletion engine/database/connect.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
$time = time();
if (!isset($version)) $version = '1.5_SVN';
if (!isset($version)) $version = '1.6';

if (!function_exists("elapsedTime")) {
function elapsedTime($l_start = false, $l_time = false) {
Expand Down
2 changes: 1 addition & 1 deletion engine/database/znote_schema.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Start of Znote AAC database schema

SET @znote_version = '1.5_SVN';
SET @znote_version = '1.6';

CREATE TABLE IF NOT EXISTS `znote` (
`id` int NOT NULL AUTO_INCREMENT,
Expand Down
2 changes: 1 addition & 1 deletion engine/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function elapsedTime($l_start = false, $l_time = false) {
}

$time = time();
$version = '1.5_SVN';
$version = '1.6';

$aacQueries = 0;
$accQueriesData = array();
Expand Down

0 comments on commit 26c486e

Please sign in to comment.