Skip to content

Commit

Permalink
Fix some language errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Oct 22, 2024
1 parent 695938b commit 1813ece
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="https://i.imgur.com/FIGZdR3.png">
</p>

Current version: **4.0.2**
Current version: **4.0.3**

# About
This takes ESPN/ESPN+, FOX Sports, Paramount+, MSG+, NFL+, B1G+, NESN, Mountain West, FloSports, CBS Sports, or MLB.tv programming and transforms it into a "live TV" experience with virtual linear channels. It will discover what is on, and generate a schedule of channels that will give you M3U and XMLTV files that you can import into something like [Jellyfin](https://jellyfin.org) or [Channels](https://getchannels.com).
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eplustv",
"version": "4.0.2",
"version": "4.0.3",
"description": "",
"scripts": {
"start": "ts-node -r tsconfig-paths/register index.tsx",
Expand Down
3 changes: 0 additions & 3 deletions services/espn-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -507,9 +507,6 @@ class EspnHandler {
}
}

if (useEspnPlus) {
console.log('Using ESPNPLUS variable is no longer needed. Please use the UI going forward');
}
if (useEspnPpv) {
console.log('Using ESPN_PPV variable is no longer needed. Please use the UI going forward');
}
Expand Down
8 changes: 4 additions & 4 deletions views/Links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
<tbody>
<tr>
<td>Normal</td>
<td>Insert into Source section</td>
<td>Insert into XMLTV Guide Data section</td>
<td>
<a href={xmltvUrl} class="secondary" target="_blank">
{xmltvUrl}
Expand All @@ -39,7 +39,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
</tr>
<tr>
<td>Normal</td>
<td>Insert into XMLTV Guide Data section</td>
<td>Insert into Source section</td>
<td>
<a href={channelsUrl} class="secondary" target="_blank">
{channelsUrl}
Expand All @@ -50,7 +50,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
<>
<tr>
<td>Linear</td>
<td>Insert into Source section</td>
<td>Insert into XMLTV Guide Data section</td>
<td>
<a href={linearXmltvUrl} class="secondary" target="_blank">
{linearXmltvUrl}
Expand All @@ -59,7 +59,7 @@ export const Links: FC<ILinksProps> = async ({baseUrl}) => {
</tr>
<tr>
<td>Linear</td>
<td>Insert into XMLTV Guide Data section</td>
<td>Insert into Source section</td>
<td>
<a href={linearChannelsUrl} class="secondary" target="_blank">
{linearChannelsUrl}
Expand Down

0 comments on commit 1813ece

Please sign in to comment.