Skip to content
This repository has been archived by the owner on Apr 17, 2024. It is now read-only.

Commit

Permalink
update: version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
darkalchemy committed Oct 28, 2018
1 parent bf102bc commit 4a0ef28
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
28 Oct, 2018
update: version to 0.5
update: database files
fix: installer updating removed table
fix: installer remove checks for settings depecrated by MariaDB 10.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pu-239 v0.4
# Pu-239 v0.5

## Goals:
1. Updated to PHP 7.2 - default settings - Done
Expand Down
2 changes: 1 addition & 1 deletion include/bittorrent.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class curuser
require_once INCL_DIR . 'database.php';

if (!$site_config['in_production']) {
$pu239_version = new SebastianBergmann\Version('0.4', ROOT_DIR);
$pu239_version = new SebastianBergmann\Version('0.5', ROOT_DIR);
$site_config['version'] = $pu239_version->getVersion();
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Pu-239",
"version": "0.4.0",
"version": "0.5.0",
"description": "A torrent tracker",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion public/install/extra/ann_config.phpsample.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
$site_config['pic_baseurl'] = $site_config['baseurl'] . DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR;
require_once CACHE_DIR . 'class_config.php';

const REQUIRED_PHP = 70100, REQUIRED_PHP_VERSION = '7.1.0';
const REQUIRED_PHP = 70200, REQUIRED_PHP_VERSION = '7.2.0';
if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '>=')) {
date_default_timezone_set('UTC');
}
Expand All @@ -36,6 +36,7 @@
$site_config['expires']['torrent_announce'] = 86400;
$site_config['expires']['torrent_details'] = 2591999;
$site_config['expires']['user_cache'] = 2591999;
$site_config['minvotes'] = 1;
$site_config['query_limit'] = 65536; // mysql placeholder limit

require_once INCL_DIR . 'database.php';
Expand Down

0 comments on commit 4a0ef28

Please sign in to comment.