mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-22 14:23:57 -07:00
Fixed $bb_cfg['file_id_ext'] ordering (#1134)
* Fixed $bb_cfg['file_id_ext'] ordering * Fixed $bb_cfg['file_id_ext'] ordering
This commit is contained in:
parent
20957a3d1b
commit
85cc06a093
2 changed files with 11 additions and 12 deletions
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
**Merged pull requests:**
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Fixed $bb_cfg['file_id_ext'] ordering [\#1134](https://github.com/torrentpier/torrentpier/pull/1134) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Normalizing announce-list [\#1133](https://github.com/torrentpier/torrentpier/pull/1133) ([belomaxorka](https://github.com/belomaxorka))
|
- Normalizing announce-list [\#1133](https://github.com/torrentpier/torrentpier/pull/1133) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Fixed announcer-list issue [\#1129](https://github.com/torrentpier/torrentpier/pull/1129), [\#1130](https://github.com/torrentpier/torrentpier/pull/1130), [\#1131](https://github.com/torrentpier/torrentpier/pull/1131), [\#1132](https://github.com/torrentpier/torrentpier/pull/1132) ([belomaxorka](https://github.com/belomaxorka))
|
- Fixed announcer-list issue [\#1129](https://github.com/torrentpier/torrentpier/pull/1129), [\#1130](https://github.com/torrentpier/torrentpier/pull/1130), [\#1131](https://github.com/torrentpier/torrentpier/pull/1131), [\#1132](https://github.com/torrentpier/torrentpier/pull/1132) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
- Removed client column from bb_bt_tracker table [\#1128](https://github.com/torrentpier/torrentpier/pull/1128) ([belomaxorka](https://github.com/belomaxorka))
|
- Removed client column from bb_bt_tracker table [\#1128](https://github.com/torrentpier/torrentpier/pull/1128) ([belomaxorka](https://github.com/belomaxorka))
|
||||||
|
|
|
@ -543,20 +543,18 @@ $bb_cfg['sitemap_sending'] = [
|
||||||
|
|
||||||
// Extensions
|
// Extensions
|
||||||
$bb_cfg['file_id_ext'] = [
|
$bb_cfg['file_id_ext'] = [
|
||||||
// Images
|
|
||||||
1 => 'gif',
|
1 => 'gif',
|
||||||
2 => 'jpg',
|
2 => 'gz',
|
||||||
3 => 'png',
|
3 => 'jpg',
|
||||||
4 => 'bmp',
|
4 => 'png',
|
||||||
5 => 'webp',
|
5 => 'rar',
|
||||||
// Archives
|
6 => 'tar',
|
||||||
6 => 'gz',
|
7 => 'tiff',
|
||||||
7 => '7z',
|
8 => 'torrent',
|
||||||
8 => 'rar',
|
|
||||||
9 => 'zip',
|
9 => 'zip',
|
||||||
10 => 'tar',
|
10 => '7z',
|
||||||
// Other
|
11 => 'bmp',
|
||||||
11 => 'torrent',
|
12 => 'webp'
|
||||||
];
|
];
|
||||||
|
|
||||||
// Attachments
|
// Attachments
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue