Skip to content

Commit

Permalink
v.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisgoddard committed Aug 18, 2015
1 parent 6b33a3c commit 7bf3681
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
16 changes: 12 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Phoenix Changelog

## v.1.4 - 18/08/2015 - Totalitarian
* BUGFIX: Fixes scrape counts of torrents by encoding hashes in their binary format.
* BUGFIX: Fixes issue where cleaning was never logged.
* IMPROVES: Git ignores hooks or custom files.
* IMPROVES: Adds verbose option to torrent scraping for better display of bencoded content.
* FEATURE: Add downloads totals ([#10](https://github.com/eustasy/phoenix/issues/10)).
* FEATURE: Add preliminary support for IPv6 ([#3](https://github.com/eustasy/phoenix/issues/3)).

## v.1.3 - 16/02/2015 - Hexa
* BUGFIX: Fixes issue with escaping binary data by storing it all as Hexadecimal.

Expand All @@ -9,10 +17,10 @@
## v.1.1 - 31/12/2014 - Scraping By
* BUGFIX: Fix broken scraping when requesting a torrent as a binary value.
* BUGFIX: Set correct default charset.
* FEATURE: Adds JSON and XML output to scrapes and stats.
* FEATURE: Adds HEX info_hash support to announce.
* IMPROVES: Stop double-submissions on admin page.
* IMPROVES: Improves configuration defaults.
* FEATURE: Adds JSON and XML output to scrapes and stats.
* FEATURE: Adds HEX info_hash support to announce.

## v.1.0 - 28/12/2014 - No longer PeerTracker.
* A procedural re-write of PeerTracker in a modern format.
Expand All @@ -31,11 +39,11 @@

## v0.1.1 - 10/31/2009
* IMPROVES: Implemented support for full scrapes.
* IMPROVES: More efficient table rows.
* FEATURE: Tracker Statistics (peers, seeders, leechers, torrents) output via html, xml & json.
* FEATURE: Database Prefixes, allows multiple trackers to be ran from a single database.
* FEATURE: Support for persistent connections (via mysql or mysqli (php >= 5.3)).
* IMPROVES: More efficient table rows.


## v0.1.0 - 10/24/2009
* FEATURE: Completed /announce and partial /scrape support.
* FEATURE: Completed /announce and partial /scrape support.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Phoenix v1.3
# Phoenix v.1.4
A modern fork of [PeerTracker](https://github.com/JonnyJD/peertracker), a lightweight PHP/SQL BitTorrent Tracker.
It is not backwards compatible in most ways, and drops SQLite support.

Expand All @@ -9,11 +9,6 @@ It is not backwards compatible in most ways, and drops SQLite support.
* [A supported version of PHP](http://php.net/supported-versions.php)
* MySQL >= 4.1 OR MariaDB

### Recommended
* Nginx (latest Stable)
* PHP 5.6
* MariaDB

## Install Guide
1. Copy `settings.default.php` to `settings.custom.php`
2. Edit the variables in `settings.custom.php`
Expand Down
2 changes: 1 addition & 1 deletion admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@

echo '
<h1>Compatibility Check</h1>
<p class="text-center color-9">Phoenix v.1.3</p>';
<p class="text-center color-9">Phoenix v.1.4</p>';

// PHP Version
$php_version = PHP_VERSION;
Expand Down
2 changes: 1 addition & 1 deletion function.tracker.stats.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function tracker_stats() {
tracker_error('Unable to get stats.');
} else {

$phoenix_version = 'Phoenix Procedural 1.3 2015-02-16 20:44:00Z eustasy';
$phoenix_version = 'Phoenix Procedural v.1.4 2015-08-18 22:48:00Z eustasy';

$stats['seeders'] = intval($stats['seeders']);
$stats['leechers'] = intval($stats['leechers']);
Expand Down

0 comments on commit 7bf3681

Please sign in to comment.