Skip to content

Commit

Permalink
Update to 1.11a - See Readme for changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgomez177 committed Sep 25, 2024
1 parent b628afa commit 66c8f27
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Plex for Channels

Current version: **1.11**
Current version: **1.11a**

# About
This takes Plex Live TV Channels and generates an M3U playlist and EPG XMLTV file.

# Changes
- Version 1.11a
- Added to correction to groups to title instead of identifier
- Version 1.11
- Added genre group data in playlists
- Added optimizations
Expand Down
2 changes: 1 addition & 1 deletion plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def channels(self, country_code = "local"):
for genre in genres.keys():
resp, error = self.api(country_code, f"lineups/plex/channels?genre={genre}")
if error: return None, token, error
self.generate_channels(resp, genre)
self.generate_channels(resp, genres.get(genre))

if len(self.stations) == 0:
print("No channels match genres")
Expand Down
2 changes: 1 addition & 1 deletion pywsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from gevent import monkey
monkey.patch_all()

version = "1.11"
version = "1.11a"
updated_date = "Sept. 25, 2024"

# Retrieve the port number from env variables
Expand Down

0 comments on commit 66c8f27

Please sign in to comment.