Skip to content

Commit

Permalink
Remove async for Tools component since it doesn't need it. Changed wo…
Browse files Browse the repository at this point in the history
…rding for tooltip. Simplified Dockerfile
Your Name committed Jan 28, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 05e14e4 commit 3efef1c
Showing 6 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -11,9 +11,7 @@ WORKDIR /app

COPY . .

RUN \
cd /app && \
npm ci
RUN npm ci

RUN chmod +x entrypoint.sh

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<img src="https://i.imgur.com/FIGZdR3.png">
</p>

Current version: **4.1.8**
Current version: **4.1.9**

# About
This takes ESPN+, ESPN, FOX Sports, CBS Sports, Paramount+, Gotham Sports, NFL, B1G+, NESN, Mountain West, FloSports, 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).
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.1.8",
"version": "4.1.9",
"description": "",
"scripts": {
"start": "ts-node -r tsconfig-paths/register index.tsx",
6 changes: 3 additions & 3 deletions views/Options.tsx
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ export const Options: FC = async () => {
Starting Channel #{' '}
<span
class="warning-red"
data-tooltip="Will break scheduled recording in your DVR software!"
data-tooltip="Making changes will break/invalidate existing scheduled recordings"
data-placement="right"
>
**
@@ -47,7 +47,7 @@ export const Options: FC = async () => {
# of Channels{' '}
<span
class="warning-red"
data-tooltip="Will break scheduled recording in your DVR software!"
data-tooltip="Making changes will break/invalidate existing scheduled recordings"
data-placement="right"
>
**
@@ -90,7 +90,7 @@ export const Options: FC = async () => {
Dedicated Linear Channels?{' '}
<span
class="warning-red"
data-tooltip="Will break scheduled recording in your DVR software!"
data-tooltip="Making changes will break/invalidate existing scheduled recordings"
data-placement="right"
>
**
2 changes: 1 addition & 1 deletion views/Tools.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type {FC} from 'hono/jsx';


export const Tools: FC = async () => (
export const Tools: FC = () => (
<section hx-swap="outerHTML" hx-target="this">
<h3>Tools</h3>
<div class="grid">

0 comments on commit 3efef1c

Please sign in to comment.