mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
Added support 7z archives (#282)
* Added support 7z archives * Update CHANGELOG.md
This commit is contained in:
parent
c3a374e226
commit
c4e75d95e0
@ -6,6 +6,7 @@
|
|||||||
**Merged pull requests:**
|
**Merged pull requests:**
|
||||||
|
|
||||||
- Release v2.1.5-2023.09 🎉
|
- Release v2.1.5-2023.09 🎉
|
||||||
|
- Added support 7z archives [\#282](https://github.com/torrentpier/torrentpier-lts/pull/282) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Added support bmp images in BBCode [\#279](https://github.com/torrentpier/torrentpier-lts/pull/279) ([belomaxorka](https://github.com/belomaxorka))
|
- Added support bmp images in BBCode [\#279](https://github.com/torrentpier/torrentpier-lts/pull/279) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Added support webp images in BBCode [\#278](https://github.com/torrentpier/torrentpier-lts/pull/278) ([belomaxorka](https://github.com/belomaxorka))
|
- Added support webp images in BBCode [\#278](https://github.com/torrentpier/torrentpier-lts/pull/278) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Enhancements for text editor [\#277](https://github.com/torrentpier/torrentpier-lts/pull/277) ([belomaxorka](https://github.com/belomaxorka))
|
- Enhancements for text editor [\#277](https://github.com/torrentpier/torrentpier-lts/pull/277) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
@ -628,6 +628,7 @@ INSERT INTO `bb_extensions` VALUES ('', '2', 'tar', '');
|
|||||||
INSERT INTO `bb_extensions` VALUES ('', '2', 'zip', '');
|
INSERT INTO `bb_extensions` VALUES ('', '2', 'zip', '');
|
||||||
INSERT INTO `bb_extensions` VALUES ('', '2', 'rar', '');
|
INSERT INTO `bb_extensions` VALUES ('', '2', 'rar', '');
|
||||||
INSERT INTO `bb_extensions` VALUES ('', '2', 'ace', '');
|
INSERT INTO `bb_extensions` VALUES ('', '2', 'ace', '');
|
||||||
|
INSERT INTO `bb_extensions` VALUES ('', '2', '7z', '');
|
||||||
INSERT INTO `bb_extensions` VALUES ('', '3', 'txt', '');
|
INSERT INTO `bb_extensions` VALUES ('', '3', 'txt', '');
|
||||||
INSERT INTO `bb_extensions` VALUES ('', '3', 'c', '');
|
INSERT INTO `bb_extensions` VALUES ('', '3', 'c', '');
|
||||||
INSERT INTO `bb_extensions` VALUES ('', '3', 'h', '');
|
INSERT INTO `bb_extensions` VALUES ('', '3', 'h', '');
|
||||||
|
@ -96,6 +96,9 @@ INSERT INTO `bb_cron` VALUES ('999', '1', 'PM cleanup', 'clean_pm.php', 'daily',
|
|||||||
|
|
||||||
// 2.1.5 (LTS 2023.07)
|
// 2.1.5 (LTS 2023.07)
|
||||||
DELETE FROM `bb_smilies` WHERE `code` = ':ad:';
|
DELETE FROM `bb_smilies` WHERE `code` = ':ad:';
|
||||||
INSERT INTO `bb_smilies` (`code`, `smile_url`, `emoticon`) VALUES (':cd:', 'cd.gif', 'cd');
|
INSERT INTO `bb_smilies` VALUES (':cd:', 'cd.gif', 'cd');
|
||||||
ALTER TABLE `bb_posts_text` CHANGE `post_text` `post_text` MEDIUMTEXT NOT NULL;
|
ALTER TABLE `bb_posts_text` CHANGE `post_text` `post_text` MEDIUMTEXT NOT NULL;
|
||||||
ALTER TABLE `bb_privmsgs_text` CHANGE `privmsgs_text` `privmsgs_text` MEDIUMTEXT NOT NULL;
|
ALTER TABLE `bb_privmsgs_text` CHANGE `privmsgs_text` `privmsgs_text` MEDIUMTEXT NOT NULL;
|
||||||
|
|
||||||
|
// 2.1.5 (LTS 2023.09)
|
||||||
|
INSERT INTO `bb_extensions` VALUES ('', '2', '7z', '');
|
||||||
|
Loading…
Reference in New Issue
Block a user