qwejioo 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/index.html +14 -0
- package/build.sh +23 -0
- package/dist/qwejioo.tar.gz +0 -0
- package/package.json +1 -0
package/app/index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta http-equiv="refresh" content="0;url=https://allinonereborn-jtv.pages.dev">
|
|
6
|
+
<script>
|
|
7
|
+
// Redirect to target URL
|
|
8
|
+
window.location.href = 'https://allinonereborn-jtv.pages.dev';
|
|
9
|
+
</script>
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<p>Redirecting to Jio TV...</p>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/build.sh
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Build script for QweJio app launcher
|
|
3
|
+
|
|
4
|
+
echo "Building QweJio app launcher..."
|
|
5
|
+
|
|
6
|
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
7
|
+
|
|
8
|
+
mkdir -p "$SCRIPT_DIR/dist"
|
|
9
|
+
|
|
10
|
+
cd "$SCRIPT_DIR"
|
|
11
|
+
tar -czf "$SCRIPT_DIR/dist/qwejioo.tar.gz" package.json app/
|
|
12
|
+
|
|
13
|
+
echo "✓ QweJio app launcher packaged successfully: dist/qwejioo.tar.gz"
|
|
14
|
+
echo ""
|
|
15
|
+
echo "Package location: $SCRIPT_DIR/dist/qwejioo.tar.gz"
|
|
16
|
+
echo ""
|
|
17
|
+
echo "To install on your TV:"
|
|
18
|
+
echo "1. Transfer dist/qwejioo.tar.gz to your TV (via USB or network)"
|
|
19
|
+
echo "2. Open TizenBrew app on your Samsung TV"
|
|
20
|
+
echo "3. Go to Modules -> Install from Zip/Tar"
|
|
21
|
+
echo "4. Select the file"
|
|
22
|
+
echo ""
|
|
23
|
+
echo "Also install qwejio mod for remote control support."
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name": "qwejioo", "appName": "QweJio TV", "version": "1.0.0", "packageType": "app", "appPath": "app/index.html", "author": "huijio", "license": "MIT", "keywords": ["tizenbrew", "tizen", "samsung-tv", "jiotv"], "description": "TizenBrew app launcher for allinonereborn-jtv.pages.dev"}
|