This commit is contained in:
Roman Kelesidis 2024-01-03 16:04:22 +07:00
parent dff2f81f64
commit e52ce52a32
2 changed files with 8 additions and 5 deletions

View File

@ -1,9 +1,9 @@
# 📖 Change Log # 📖 Change Log
## [v2.1.5-2024.01 [Final v2]](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2024.01) (2023-12-22) ## [v2.1.5-2024.02 [Final v2]](https://github.com/torrentpier/torrentpier-lts/tree/v2.1.5-2024.01) (2024-01-03)
[Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.10-HotFix...v2.1.5-2024.01) [Full Changelog](https://github.com/torrentpier/torrentpier-lts/compare/v2.1.5-2023.10-HotFix...v2.1.5-2024.02)
- Release v2.1.5-2024.01 🎉 - Release v2.1.5-2024.02 🎉
- Some improvements in default template - Some improvements in default template
- Fixed void function result used - Fixed void function result used
- Feature to ban specific torrent clients - Feature to ban specific torrent clients
@ -13,6 +13,9 @@
- Fixed broken captcha check on login.php - Fixed broken captcha check on login.php
- Fixed broken sorting in group.php - Fixed broken sorting in group.php
- Fixed extensions issue - Fixed extensions issue
- Restored unused functionality "Block torrent editing with certain status"
- Some fixes for Thumbnails functionality
- Some fixes for Ban functionality
- Some enhancements for dl.php - Some enhancements for dl.php
- Some other changes / improvements - Some other changes / improvements
- Some reported bugfixes - Some reported bugfixes

View File

@ -15,8 +15,8 @@ $domain_name = (!empty($_SERVER['SERVER_NAME'])) ? idn_to_utf8($_SERVER['SERVER_
$domain_ssl = false; // используется ли SSL сертификат (HTTPS) на сайте $domain_ssl = false; // используется ли SSL сертификат (HTTPS) на сайте
// Version info // Version info
$bb_cfg['tp_version'] = '2.1.5-2024.01 [Final v2]'; $bb_cfg['tp_version'] = '2.1.5-2024.02 [Final v2]';
$bb_cfg['tp_release_date'] = '22-12-2023'; $bb_cfg['tp_release_date'] = '03-01-2024';
$bb_cfg['tp_release_state'] = 'LTS'; $bb_cfg['tp_release_state'] = 'LTS';
$bb_cfg['tp_zf_version'] = '2.4.13'; $bb_cfg['tp_zf_version'] = '2.4.13';