From 978a2ce887c2f3784dd3976b3b3fe2412968bf41 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:30:52 +0530 Subject: [PATCH 01/23] Update README.md --- README.md | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8d1c8b6..04145fe 100644 --- a/README.md +++ b/README.md @@ -1 +1,47 @@ - +# Sparkle-TV2 + +This Android app serves as an opener for the IPTV player installed by the user after running a server on Termux. + +## Overview + +The app is designed to check if a server is running successfully on Termux at `localhost:5001`. If the server is running, the app opens the user's installed IPTV player. + +## Features + +- Checks for the running server on Termux. +- Opens the installed IPTV player if the server is running. +- Simplifies the process of launching the IPTV player after setting up the server on Termux. + +## How to Use + +1. Ensure you have [Termux](https://github.com/termux/termux-app) installed on your Android device. +2. Configure Termux autostart via `bash.bashrc`: + - Open Termux. + - Edit `bash.bashrc` using a text editor like nano: + + ```bash + nano $PREFIX/etc/bash.bashrc + ``` + - Add the command to start your JioTV server (e.g., `./jiotv_go.sh run ":5001"` - for JioTV GO server) at the end of the file. + - Server running at "localhost:5001" are supported. + - Save and exit. + +3. Select the installed IPTV player app on your device. + +4. Run the app. + +5. If the server is running successfully, the app will open the installed IPTV player. + +6. If you want to choose another app, clear the app data to reset. + + +## Dependencies + +- Termux (for running the server) +- Server configured with autostart + - JioTV GO server by [rabilrbl](https://github.com/rabilrbl/jiotv_go) ([recommended](https://rabilrbl.github.io/jiotv_go/Usage-Guide/#android-users-weve-got-you-covered)) + - J-TV self server NPM by [dhruv-2015](https://github.com/dhruv-2015/JIOTVServer) + - TS-JioTV server NPM by [mitthu786](https://github.com/mitthu786/TS-JioTV) + + + From a0e7c5a0ee8141cac58820317137fd0654d55f97 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:31:50 +0530 Subject: [PATCH 02/23] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1ef8b27 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Siddharth Kamble + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 8b739d510dc30e7dd29d7def74d32243a892c8bd Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:32:07 +0530 Subject: [PATCH 03/23] Rename LICENSE to LICENSE.md --- LICENSE => LICENSE.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENSE => LICENSE.md (100%) diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md From c0f27368088eb733b15ce1320bd2cd38399ba1a1 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:37:10 +0530 Subject: [PATCH 04/23] Update README.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04145fe..592e08e 100644 --- a/README.md +++ b/README.md @@ -43,5 +43,9 @@ The app is designed to check if a server is running successfully on Termux at `l - J-TV self server NPM by [dhruv-2015](https://github.com/dhruv-2015/JIOTVServer) - TS-JioTV server NPM by [mitthu786](https://github.com/mitthu786/TS-JioTV) +## Acknowledgements - +- [Termux](https://github.com/termux) +- [rabilrbl](https://github.com/rabilrbl) +- [dhruv-2015](https://github.com/dhruv-2015) +- [mitthu786](https://github.com/mitthu786) From 239335b7714bcca42ceb7acc346b391a047d986e Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:40:57 +0530 Subject: [PATCH 05/23] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 592e08e..1eebb82 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ The app is designed to check if a server is running successfully on Termux at `l - Checks for the running server on Termux. - Opens the installed IPTV player if the server is running. - Simplifies the process of launching the IPTV player after setting up the server on Termux. +- If the server is already running, it just opens the configured IPTV player. ## How to Use @@ -34,7 +35,6 @@ The app is designed to check if a server is running successfully on Termux at `l 6. If you want to choose another app, clear the app data to reset. - ## Dependencies - Termux (for running the server) @@ -42,6 +42,8 @@ The app is designed to check if a server is running successfully on Termux at `l - JioTV GO server by [rabilrbl](https://github.com/rabilrbl/jiotv_go) ([recommended](https://rabilrbl.github.io/jiotv_go/Usage-Guide/#android-users-weve-got-you-covered)) - J-TV self server NPM by [dhruv-2015](https://github.com/dhruv-2015/JIOTVServer) - TS-JioTV server NPM by [mitthu786](https://github.com/mitthu786/TS-JioTV) +- IPTV player with playlist [playstore](https://play.google.com/store/search?q=iptv+player&c=apps) + ## Acknowledgements From 75e23fea1235890f41a62ab16cb6eb39b92381de Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:44:41 +0530 Subject: [PATCH 06/23] Update README.md From d5327a221d452d2684549cddf2f1dec6451305d4 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:45:01 +0530 Subject: [PATCH 07/23] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1eebb82..f2ead45 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Sparkle-TV2 -This Android app serves as an opener for the IPTV player installed by the user after running a server on Termux. +This Android app serves as an opener for the IPTV player installed by the user after running Termux. ## Overview From b5c89556112538ce955604bb78963b6b56af9f99 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:48:40 +0530 Subject: [PATCH 08/23] Update README.md --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f2ead45..948e97f 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,20 @@ -# Sparkle-TV2 +# Sparkle-TV2 ✨📺 This Android app serves as an opener for the IPTV player installed by the user after running Termux. -## Overview +## Overview 🌐 The app is designed to check if a server is running successfully on Termux at `localhost:5001`. If the server is running, the app opens the user's installed IPTV player. -## Features +## Features 🚀 -- Checks for the running server on Termux. -- Opens the installed IPTV player if the server is running. -- Simplifies the process of launching the IPTV player after setting up the server on Termux. -- If the server is already running, it just opens the configured IPTV player. +- ✔️ Checks for the running server on Termux. +- ▶️ Opens the installed IPTV player if the server is running. +- 🚀 Simplifies the process of launching the IPTV player after setting up the server on Termux. +- ▶️ If the server is already running, it just opens the configured IPTV player. -## How to Use + +## How to Use 📲 1. Ensure you have [Termux](https://github.com/termux/termux-app) installed on your Android device. 2. Configure Termux autostart via `bash.bashrc`: @@ -35,7 +36,7 @@ The app is designed to check if a server is running successfully on Termux at `l 6. If you want to choose another app, clear the app data to reset. -## Dependencies +## Dependencies 🛠️ - Termux (for running the server) - Server configured with autostart @@ -45,7 +46,7 @@ The app is designed to check if a server is running successfully on Termux at `l - IPTV player with playlist [playstore](https://play.google.com/store/search?q=iptv+player&c=apps) -## Acknowledgements +## Acknowledgements 🙌 - [Termux](https://github.com/termux) - [rabilrbl](https://github.com/rabilrbl) From 41ccaf44c13e33e5ebea3fbdb7d23246ced40baa Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Fri, 15 Dec 2023 23:58:41 +0530 Subject: [PATCH 09/23] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 948e97f..92e0fc9 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,11 @@ The app is designed to check if a server is running successfully on Termux at `l 6. If you want to choose another app, clear the app data to reset. +## Download ⬇️ + +[](https://github.com/siddharthsky/SparkleTV2-auto-service/releases) + + ## Dependencies 🛠️ - Termux (for running the server) From 7d4e52e35a42d4eaa520d8f8804d868332dfdf57 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:15:16 +0530 Subject: [PATCH 10/23] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 92e0fc9..df2a54f 100644 --- a/README.md +++ b/README.md @@ -47,13 +47,16 @@ The app is designed to check if a server is running successfully on Termux at `l - Server configured with autostart - JioTV GO server by [rabilrbl](https://github.com/rabilrbl/jiotv_go) ([recommended](https://rabilrbl.github.io/jiotv_go/Usage-Guide/#android-users-weve-got-you-covered)) - J-TV self server NPM by [dhruv-2015](https://github.com/dhruv-2015/JIOTVServer) + ## Acknowledgements 🙌 - [Termux](https://github.com/termux) - [rabilrbl](https://github.com/rabilrbl) + From 210c99ee4fdce271c81934849b83936d2fc726a8 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:16:04 +0530 Subject: [PATCH 11/23] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df2a54f..f8540bc 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The app is designed to check if a server is running successfully on Termux at `l - [Termux](https://github.com/termux) - [rabilrbl](https://github.com/rabilrbl) - From 2dcaa572440ed24918596098158f81270d5c5416 Mon Sep 17 00:00:00 2001 From: Siddharth Kamble <96260439+siddharthsky@users.noreply.github.com> Date: Sat, 13 Jan 2024 17:39:51 +0530 Subject: [PATCH 12/23] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8540bc..b195ae3 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ The app is designed to check if a server is running successfully on Termux at `l ## Dependencies 🛠️ - Termux (for running the server) -- Server configured with autostart +- Server configured with autostart [any one] - JioTV GO server by [rabilrbl](https://github.com/rabilrbl/jiotv_go) ([recommended](https://rabilrbl.github.io/jiotv_go/Usage-Guide/#android-users-weve-got-you-covered)) - J-TV self server NPM by [dhruv-2015](https://github.com/dhruv-2015/JIOTVServer)