Renamed index.content.m3u to index.category.m3u
This commit is contained in:
parent
2bdd713888
commit
cb2fbc6962
@ -14,7 +14,7 @@ Also you can instead use one of these playlists:
|
|||||||
|
|
||||||
- `https://iptv-org.github.io/iptv/index.full.m3u` (grouped by country and content)
|
- `https://iptv-org.github.io/iptv/index.full.m3u` (grouped by country and content)
|
||||||
- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country)
|
- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country)
|
||||||
- `https://iptv-org.github.io/iptv/index.content.m3u` (grouped by content)
|
- `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category)
|
||||||
- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language)
|
- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language)
|
||||||
|
|
||||||
Or select one of the playlists from the list below.
|
Or select one of the playlists from the list below.
|
||||||
|
@ -14,7 +14,7 @@ Also you can instead use one of these playlists:
|
|||||||
|
|
||||||
- `https://iptv-org.github.io/iptv/index.full.m3u` (grouped by country and content)
|
- `https://iptv-org.github.io/iptv/index.full.m3u` (grouped by country and content)
|
||||||
- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country)
|
- `https://iptv-org.github.io/iptv/index.country.m3u` (grouped by country)
|
||||||
- `https://iptv-org.github.io/iptv/index.content.m3u` (grouped by content)
|
- `https://iptv-org.github.io/iptv/index.category.m3u` (grouped by category)
|
||||||
- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language)
|
- `https://iptv-org.github.io/iptv/index.language.m3u` (grouped by language)
|
||||||
|
|
||||||
Or select one of the playlists from the list below.
|
Or select one of the playlists from the list below.
|
||||||
|
@ -20,8 +20,8 @@ function main() {
|
|||||||
generateCountryIndex()
|
generateCountryIndex()
|
||||||
console.log('Generating index.language.m3u...')
|
console.log('Generating index.language.m3u...')
|
||||||
generateLanguageIndex()
|
generateLanguageIndex()
|
||||||
console.log('Generating index.content.m3u...')
|
console.log('Generating index.category.m3u...')
|
||||||
generateContentIndex()
|
generateCategoryIndex()
|
||||||
console.log('Generating index.full.m3u...')
|
console.log('Generating index.full.m3u...')
|
||||||
generateFullIndex()
|
generateFullIndex()
|
||||||
console.log('Generating /countries...')
|
console.log('Generating /countries...')
|
||||||
@ -137,8 +137,8 @@ function generateLanguageIndex() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateContentIndex() {
|
function generateCategoryIndex() {
|
||||||
const filename = `${ROOT_DIR}/index.content.m3u`
|
const filename = `${ROOT_DIR}/index.category.m3u`
|
||||||
helper.createFile(filename, '#EXTM3U\n')
|
helper.createFile(filename, '#EXTM3U\n')
|
||||||
|
|
||||||
const channels = list.all.sort((a, b) => {
|
const channels = list.all.sort((a, b) => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user