mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
parent
08440a0d03
commit
8a71c1ba89
@ -20,6 +20,7 @@
|
|||||||
- Enhanced https check [\#131](https://github.com/torrentpier/torrentpier-lts/pull/131), [\#132](https://github.com/torrentpier/torrentpier-lts/pull/132) ([belomaxorka](https://github.com/belomaxorka))
|
- Enhanced https check [\#131](https://github.com/torrentpier/torrentpier-lts/pull/131), [\#132](https://github.com/torrentpier/torrentpier-lts/pull/132) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Added ability to configure sphinx debug [\#137](https://github.com/torrentpier/torrentpier-lts/pull/137) ([belomaxorka](https://github.com/belomaxorka))
|
- Added ability to configure sphinx debug [\#137](https://github.com/torrentpier/torrentpier-lts/pull/137) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Redundant pagination, mysql 5.7+ issue [\#140](https://github.com/torrentpier/torrentpier-lts/pull/140) ([belomaxorka](https://github.com/belomaxorka))
|
- Redundant pagination, mysql 5.7+ issue [\#140](https://github.com/torrentpier/torrentpier-lts/pull/140) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
- Added Freeleech [\#143](https://github.com/torrentpier/torrentpier-lts/pull/143) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Minor fixes [\#124](https://github.com/torrentpier/torrentpier-lts/pull/124), [\#133](https://github.com/torrentpier/torrentpier-lts/pull/133), [\#135](https://github.com/torrentpier/torrentpier-lts/pull/135), [\#136](https://github.com/torrentpier/torrentpier-lts/pull/136), [\#139](https://github.com/torrentpier/torrentpier-lts/pull/139), [\#142](https://github.com/torrentpier/torrentpier-lts/pull/142) ([belomaxorka](https://github.com/belomaxorka))
|
- Minor fixes [\#124](https://github.com/torrentpier/torrentpier-lts/pull/124), [\#133](https://github.com/torrentpier/torrentpier-lts/pull/133), [\#135](https://github.com/torrentpier/torrentpier-lts/pull/135), [\#136](https://github.com/torrentpier/torrentpier-lts/pull/136), [\#139](https://github.com/torrentpier/torrentpier-lts/pull/139), [\#142](https://github.com/torrentpier/torrentpier-lts/pull/142) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
|
||||||
## [v2.1.5-2023.03](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.03) (2023-04-04)
|
## [v2.1.5-2023.03](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2023.03) (2023-04-04)
|
||||||
|
@ -363,6 +363,12 @@ if ($tr_cfg['gold_silver_enabled'] && $down_add)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Freeleech
|
||||||
|
if ($tr_cfg['freeleech'] && $down_add)
|
||||||
|
{
|
||||||
|
$down_add = 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Insert/update peer info
|
// Insert/update peer info
|
||||||
$peer_info_updated = false;
|
$peer_info_updated = false;
|
||||||
$update_time = ($stopped) ? 0 : TIMENOW;
|
$update_time = ($stopped) ? 0 : TIMENOW;
|
||||||
|
@ -196,9 +196,10 @@ $tr_cfg = array(
|
|||||||
'limit_seed_ips' => 0,
|
'limit_seed_ips' => 0,
|
||||||
'limit_leech_ips' => 0,
|
'limit_leech_ips' => 0,
|
||||||
'tor_topic_up' => true,
|
'tor_topic_up' => true,
|
||||||
'gold_silver_enabled' => true,
|
'gold_silver_enabled' => true, // при включенном gold_silver_enabled нужно отключить freeleech.
|
||||||
'retracker' => true,
|
'retracker' => true,
|
||||||
'retracker_host' => 'http://retracker.local/announce',
|
'retracker_host' => 'http://retracker.local/announce',
|
||||||
|
'freeleech' => false, // при включенном freeleech нужно отключить gold_silver_enabled.
|
||||||
);
|
);
|
||||||
|
|
||||||
$bb_cfg['show_dl_status_in_search'] = true;
|
$bb_cfg['show_dl_status_in_search'] = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user