diff --git a/README.md b/README.md index 1698382..b42127a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ NeterraProxy builds on my previous Neterra Playlist Generator project and is ins NeterraProxy is an on-demand m3u8 playlist/playback daemon for Neterra.tv, running on Android. (4.0+). ## Why? -Have the freedom to watch on your desired IPTV player or TV (Perfect Player, GSE Smart IPTV Player, etc). Play links issued by Neterra expire after 12 hours to prevent abuse. Traditional playlist generators need to be run again in order to generate new links. This is not the case for NeterraProxy. +Have the freedom to watch on your desired IPTV player or TV (Perfect Player, Android Live Channels, GSE Smart IPTV Player, etc). Play links issued by Neterra expire after 12 hours to prevent abuse. Traditional playlist generators need to be run again in order to generate new links. This is not the case for NeterraProxy. ## How? NeterraProxy generates a specialized playlist that points to itself rather than Neterra. When NeterraProxy receives a playback request it determines the context of the request and responds with a 301 redirect to a valid corresponding Neterra play link. It automatically reauthenticates if the session has expired. @@ -22,6 +22,8 @@ NeterraProxy generates a specialized playlist that points to itself rather than 4) Back out of NeterraProxy (or press Home) to leave it running. **Exit** will terminate NeterraProxy. 5) Use the following URL to connect NeterraProxy with your favorite IPTV player: * Playlist URL: http://localhost:8888/playlist.m3u8 + * EPG URL: http://localhost:8888/epg.xml -## ToDo -* Add EPG +## Acknowledgments +* SmoothProxy +* KodiBG.org for providing the EPG diff --git a/app/build.gradle b/app/build.gradle index 1a9d4e0..3797971 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 14 targetSdkVersion 20 versionCode 1 - versionName "1.0.0" + versionName "1.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index 2a99c9b..d130021 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -81,7 +81,7 @@ android:id="@+id/versionTextView" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="1.0.0" + android:text="1.1.0" android:layout_marginRight="16dp" app:layout_constraintRight_toRightOf="parent" app:layout_constraintBottom_toBottomOf="parent"