XC-Code
Small Update Script install XcPlugin Forever
wget https://raw.githubusercontent.com/MO...e/installer.sh -qO - | /bin/sh
XC-Code
Small Update Script install XcPlugin Forever
wget https://raw.githubusercontent.com/MO...e/installer.sh -qO - | /bin/sh
Update Channel
enigma2-plugin-extensions-epgimport_2.0-r219_all.deb
Code:
#!/bin/sh
##setup command=wget -q "--no-check-certificate" https://raw.githubusercontent.com/ziko-ZR1/Epg-plugin/master/Download/installer.sh -O - | /bin/sh
######### Only These two lines to edit with new version ######
version=20.4
description=What_is_NEW:\n'-Add Id For bein Xtra 1 & 2 (by MOHAMED19OS)\n-Add bein Xtra In bein .net (by MOHAMED19OS)\n-Add bein Max 1 & 2 And Add bein Xtra 1 & 2 in beinConnect (by MOHAMED19OS)'
##############################################################
TEMPATH=/tmp
PLUGINPATH=/usr/lib/enigma2/python/Plugins/Extensions/EPGGrabber
OLDPLUGINPATH=/usr/lib/enigma2/python/Plugins/Extensions/Epg_Plugin
ExtensionsPLUGINPATH=/usr/lib/enigma2/python/Plugins/Extensions
# remove old version
rm -rf $OLDPLUGINPATH
rm -rf $PLUGINPATH
# check depends packges
if [ -f /etc/apt/apt.conf ] ; then
STATUS='/var/lib/dpkg/status'
OS='DreamOS'
elif [ -f /etc/opkg/opkg.conf ] ; then
STATUS='/var/lib/opkg/status'
OS='Opensource'
fi
###############
if python --version 2>&1 | grep -q '^Python 3\.'; then
echo "You have Python3 image"
PYTHON='PY3'
PYTHONPACK='python3-requests'
else
echo "You have Python2 image"
PYTHON='PY2'
PYTHONPACK='python-requests'
fi
################
if grep -q $PYTHONPACK $STATUS; then
requests='Installed'
fi
################
if grep -q 'enigma2-plugin-extensions-epgimport' $STATUS; then
epgimport='Installed'
fi
################
if [ $requests = "Installed" -a $epgimport = "Installed" ]; then
echo ""
else
if grep -q $PYTHONPACK $STATUS; then
echo ""
else
if [ $OS = "DreamOS" ]; then
echo " Downloading $PYTHONPACK ......"
apt-get install python-requests -y
elif [ $PYTHON = "PY2" ]; then
echo " Downloading $PYTHONPACK ......"
opkg install python-requests
elif [ $PYTHON = "PY3" ]; then
echo " Downloading $PYTHONPACK ......"
opkg install python3-requests
fi
fi
if grep -q 'enigma2-plugin-extensions-epgimport' $STATUS; then
echo ""
else
if [ $OS = "DreamOS" ]; then
echo " Downloading/Insallling epgimport ......"
sleep 3
wget -q "--no-check-certificate" "https://github.com/ziko-ZR1/Epg-plugin/blob/master/Download/enigma2-plugin-extensions-epgimport_2.0-r219_all.deb?raw=true" -O "/tmp/enigma2-plugin-extensions-epgimport_2.0-r219_all.deb";
dpkg -i /tmp/*.deb;
apt-get install -f -y;
else
echo " Downloading/Insallling epgimport ......"
opkg install enigma2-plugin-extensions-epgimport
fi
fi
fi
############################
if grep -q $PYTHONPACK $STATUS; then
echo ""
else
echo "#########################################################"
echo "# Feed cannot download ($PYTHONPACK) #"
echo "# Epg_Plugin has not been works well #"
echo "#########################################################"
# exit 1
fi
############################
echo ""
# Download and install plugin
cd /tmp
set -e
echo " Downloading And Insallling Epg_Plugin plugin ......"
echo
# wget -q "--no-check-certificate" "https://raw.githubusercontent.com/ziko-ZR1/Epg-plugin/master/Download/Epg_Plugin-"$version".tar.gz"
# tar -xzf Epg_Plugin-"$version".tar.gz -C /
wget -O - --no-check-certificate https://github.com/ziko-ZR1/Epg-plugin/archive/master.tar.gz | tar xz "Epg-plugin-master/src/EPGGrabber"
mv Epg-plugin-master/src/EPGGrabber $ExtensionsPLUGINPATH
rm -r Epg-plugin-master
# rm -f Epg_Plugin-"$version".tar.gz
set +e
cd ..
sync
############################
echo "#########################################################"
echo "# Epg_Plugin INSTALLED SUCCESSFULLY #"
echo "# BY ZIKO - support on #"
echo "# https://www.tunisia-sat.com/forums/threads/4062301/ #"
echo "#########################################################"
echo "# your Device will RESTART Now #"
echo "#########################################################"
sleep 3 exit 0
killall -9 enigma2
enigma2-plugin-extensions-ansite_1.5_py2 & py3_all.ipk
installer.sh
Code:#!/bin/sh # ########################################### # SCRIPT : DOWNLOAD AND INSTALL ANSITE # ########################################### # # Command: wget https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Ansite/installer.sh -qO - | /bin/sh # # ########################################### ########################################### # Configure where we can find things here # VERSION='1.5' TMPDIR='/tmp' PACKAGE='enigma2-plugin-extensions-ansite' MY_URL='https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Ansite/' PYTHON_VERSION=$(python -c"import sys; print(sys.version_info.major)") #################### # Image Checking # if [ -f /etc/opkg/opkg.conf ]; then OSTYPE='Opensource' OPKG='opkg update' OPKGINSTAL='opkg install' OPKGLIST='opkg list-installed' OPKGREMOV='opkg remove --force-depends' fi if [ "$PYTHON_VERSION" -eq 3 ]; then echo ":You have Python3 image ..." sleep 1 clear else echo ":You have Python2 image ..." sleep 1 clear fi ################################## # Remove previous files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 if [ "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" = $VERSION ]; then echo " You are use the laste Version: $VERSION" exit 1 elif [ -z "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" ]; then echo clear else $OPKGREMOV $PACKAGE fi $OPKG >/dev/null 2>&1 ################### # Install Plugin # echo "Insallling Ansite plugin Please Wait ......" if [ "$PYTHON_VERSION" -eq 3 ]; then wget $MY_URL/${PACKAGE}_${VERSION}_py3_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_py3_all.ipk else wget $MY_URL/${PACKAGE}_${VERSION}_py2_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_py2_all.ipk fi ######################### # Remove files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 sleep 2 clear echo "" echo "***********************************************************************" echo "** *" echo "** Ansite : $VERSION *" echo "** Uploaded by: MOHAMED_OS *" echo "** Develop by : aime_jeux *" echo "** Support : https://www.tunisia-sat.com/forums/threads/4209147/ *" echo "** *" echo "***********************************************************************" echo "" killall -9 enigma2 exit 0
Oscam_Ncam/installer.sh
Code:#!/bin/sh # ########################################### # SCRIPT : DOWNLOAD AND INSTALL ANSITE # ########################################### # # Command: wget https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Ansite/installer.sh -qO - | /bin/sh # # ########################################### ########################################### # Configure where we can find things here # VERSION='1.5' TMPDIR='/tmp' PACKAGE='enigma2-plugin-extensions-ansite' MY_URL='https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Ansite/' PYTHON_VERSION=$(python -c"import sys; print(sys.version_info.major)") #################### # Image Checking # if [ -f /etc/opkg/opkg.conf ]; then OSTYPE='Opensource' OPKG='opkg update' OPKGINSTAL='opkg install' OPKGLIST='opkg list-installed' OPKGREMOV='opkg remove --force-depends' fi if [ "$PYTHON_VERSION" -eq 3 ]; then echo ":You have Python3 image ..." sleep 1 clear else echo ":You have Python2 image ..." sleep 1 clear fi ################################## # Remove previous files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 if [ "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" = $VERSION ]; then echo " You are use the laste Version: $VERSION" exit 1 elif [ -z "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" ]; then echo clear else $OPKGREMOV $PACKAGE fi $OPKG >/dev/null 2>&1 ################### # Install Plugin # echo "Insallling Ansite plugin Please Wait ......" if [ "$PYTHON_VERSION" -eq 3 ]; then wget $MY_URL/${PACKAGE}_${VERSION}_py3_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_py3_all.ipk else wget $MY_URL/${PACKAGE}_${VERSION}_py2_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_py2_all.ipk fi ######################### # Remove files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 sleep 2 clear echo "" echo "***********************************************************************" echo "** *" echo "** Ansite : $VERSION *" echo "** Uploaded by: MOHAMED_OS *" echo "** Develop by : aime_jeux *" echo "** Support : https://www.tunisia-sat.com/forums/threads/4209147/ *" echo "** *" echo "***********************************************************************" echo "" killall -9 enigma2 exit 0
Suptv / installer.sh
Code:#!/bin/sh # ########################################### # SCRIPT : DOWNLOAD AND INSTALL Suptv # ########################################### # # Command: wget https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Suptv/installer.sh -qO - | /bin/sh # # ########################################### ########################################### # Configure where we can find things here # TMPDIR='/tmp' PACKAGE='enigma2-plugin-extensions-suptv' MY_URL='https://raw.githubusercontent.com/MOHAMED19OS/Download/main/Suptv' PYTHON_VERSION=$(python -c"import sys; print(sys.version_info.major)") #################### # Image Checking # if [ -f /etc/opkg/opkg.conf ]; then OSTYPE='Opensource' OPKG='opkg update' OPKGINSTAL='opkg install' OPKGLIST='opkg list-installed' fi if [ "$PYTHON_VERSION" -eq 3 ]; then echo ":You have Python3 image ..." sleep 1 clear VERSION='3.1' else echo ":You have Python2 image ..." sleep 1 clear VERSION='2.1' fi ################################## # Remove previous files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 if [ "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" = $VERSION ]; then echo " You are use the laste Version: $VERSION" exit 1 elif [ -z "$($OPKGLIST $PACKAGE | awk '{ print $3 }')" ]; then echo clear else $OPKGREMOV $PACKAGE fi $OPKG >/dev/null 2>&1 ################### # Install Plugin # echo "Insallling Suptv plugin Please Wait ......" if [ "$PYTHON_VERSION" -eq 3 ]; then wget $MY_URL/${PACKAGE}_${VERSION}_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_all.ipk else wget $MY_URL/${PACKAGE}_${VERSION}_all.ipk -qP $TMPDIR $OPKGINSTAL $TMPDIR/${PACKAGE}_${VERSION}_all.ipk fi ################################## # Remove previous files (if any) # rm -rf $TMPDIR/"${PACKAGE:?}"* >/dev/null 2>&1 sleep 2 clear echo "" echo "***********************************************************************" echo "** *" echo "** Suptv : $VERSION *" echo "** Uploaded by: MOHAMED_OS *" echo "** Develop by : Suptv *" echo "** Support : https://script-enigma2.club/suptv/ *" echo "** *" echo "***********************************************************************" echo "" exit 0
aide enigma 2 pour t v box l
instalation et configura
tion
Youtube-Mod-RAED-DreamOS 963
pėrshkrim
-YouTubeVideoUrl: remove query in _download_webpage
(I don't see the point in using so much code to just specify a client key as a separate value.)
-YouTubeUi: fix unsubscribe from channel
-Add video download in tests
(Use setList un updateDownloadList.)
-Update Polish translation
(* Polish language fixes
Improved grammar, added gender neutral strings, added new translations.
* Minor fix)
-Remove fuzzy in Polish translation
(I hope that these phrases now been translated correctly.)
-Fix Polish translation, thx temp-byte
Internet Download Manager v6.40 build 1
Internet Download Manager pėrmban njė pėrshpejtues inteligjent
tė logjikės sė shkarkimit qė ofron segmentim inteligjent dinamik
tė skedarėve dhe teknologji tė sigurt shkarkimi
me shumė pjesė pėr tė shpejtuar shkarkimet tuaja.