├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── files ├── README └── app_icon.psd ├── lib ├── jackson-annotations-2.1.4.jar ├── jackson-core-2.1.4.jar ├── jackson-databind-2.1.4.jar ├── jmdns-3.4.2-20120628.171933-9-sources.jar └── jmdns-3.4.2-20120628.171933-9.jar ├── lint.xml ├── project.properties ├── res ├── drawable-hdpi │ ├── app_icon.png │ ├── badge_hd.png │ ├── badge_new.png │ ├── blank.png │ ├── check.png │ ├── content_banner.png │ ├── folder.png │ ├── folder_downloading.png │ ├── folder_recording.png │ ├── folder_wishlist.png │ ├── icmpmove.png │ ├── icon_cog.png │ ├── icon_devices.png │ ├── icon_help.png │ ├── icon_info.png │ ├── icon_people.png │ ├── icon_remote.png │ ├── icon_remote_32h.png │ ├── icon_search.png │ ├── icon_seasonpass.png │ ├── icon_similar.png │ ├── icon_todo.png │ ├── icon_tv.png │ ├── icon_tv32.png │ ├── keyboard.png │ ├── person.png │ ├── recording.png │ ├── recording_deleted.png │ ├── recording_downloading.png │ ├── recording_expired.png │ ├── recording_expiressoon.png │ ├── recording_keep.png │ ├── recording_recording.png │ ├── recording_suggestion.png │ ├── recording_wishlist.png │ ├── remote_button_advance.png │ ├── remote_button_replay.png │ ├── remote_full.png │ ├── remote_play_controls.png │ ├── scrub_left.png │ ├── scrub_mid.png │ ├── scrub_right.png │ ├── scrub_thumb.png │ ├── todo_seasonpass.png │ ├── todo_single_offer.png │ └── todo_wishlist.png ├── drawable-ldpi │ └── app_icon.png ├── drawable-mdpi │ └── app_icon.png ├── drawable-xhdpi │ └── app_icon.png ├── layout-land │ └── now_showing.xml ├── layout │ ├── about.xml │ ├── connect.xml │ ├── device_custom.xml │ ├── explore.xml │ ├── explore_tabs.xml │ ├── help.xml │ ├── ids.xml │ ├── item_credits.xml │ ├── item_discover.xml │ ├── item_my_shows.xml │ ├── item_person_credits.xml │ ├── item_season_pass.xml │ ├── item_show.xml │ ├── item_sub_base.xml │ ├── item_sub_wont.xml │ ├── item_upcoming.xml │ ├── list.xml │ ├── list_discover.xml │ ├── list_empty.xml │ ├── list_explore.xml │ ├── list_my_shows.xml │ ├── list_person.xml │ ├── list_season_pass.xml │ ├── list_todo.xml │ ├── no_results.xml │ ├── now_showing.xml │ ├── now_showing_detail.xml │ ├── now_showing_remote.xml │ ├── progress.xml │ ├── remote.xml │ ├── search.xml │ ├── subscribe_base.xml │ ├── subscribe_collection.xml │ ├── subscribe_conflicts.xml │ └── subscribe_offer.xml ├── raw │ └── .keep ├── values │ ├── ids.xml │ └── strings.xml └── xml │ └── preferences.xml └── src └── com └── arantius └── tivocommander ├── About.java ├── Connect.java ├── Credits.java ├── Database.java ├── Device.java ├── Discover.java ├── DownloadImageTask.java ├── Explore.java ├── ExploreCommon.java ├── ExploreTabs.java ├── Help.java ├── MyShows.java ├── NowShowing.java ├── Person.java ├── Remote.java ├── Search.java ├── SeasonPass.java ├── Settings.java ├── ShowList.java ├── SubscribeBase.java ├── SubscribeCollection.java ├── SubscribeOffer.java ├── SubscriptionType.java ├── Suggestions.java ├── ToDo.java ├── Upcoming.java ├── Utils.java ├── rpc ├── MindRpc.java ├── MindRpcInput.java ├── MindRpcOutput.java ├── request │ ├── BaseSearch.java │ ├── BodyAuthenticate.java │ ├── BodyConfigSearch.java │ ├── CancelRpc.java │ ├── CollectionSearch.java │ ├── ContentSearch.java │ ├── CreditsSearch.java │ ├── KeyEventSend.java │ ├── MindRpcRequest.java │ ├── OfferSearch.java │ ├── PersonCreditsSearch.java │ ├── PersonSearch.java │ ├── RecordingFolderItemEmpty.java │ ├── RecordingFolderItemSearch.java │ ├── RecordingSearch.java │ ├── RecordingUpdate.java │ ├── Subscribe.java │ ├── SubscriptionSearch.java │ ├── SubscriptionsReprioritize.java │ ├── SuggestionsSearch.java │ ├── TodoRecordingSearch.java │ ├── TodoSearch.java │ ├── TunerStateEventRegister.java │ ├── UiNavigate.java │ ├── UnifiedItemSearch.java │ ├── Unsubscribe.java │ ├── UpcomingSearch.java │ ├── VideoPlaybackInfoEventRegister.java │ └── WhatsOnSearch.java └── response │ ├── MindRpcResponse.java │ ├── MindRpcResponseFactory.java │ └── MindRpcResponseListener.java └── views ├── LinearListView.java └── TivoScrubBar.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/README.md -------------------------------------------------------------------------------- /files/README: -------------------------------------------------------------------------------- 1 | General files that should not be part of the build. 2 | -------------------------------------------------------------------------------- /files/app_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/files/app_icon.psd -------------------------------------------------------------------------------- /lib/jackson-annotations-2.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lib/jackson-annotations-2.1.4.jar -------------------------------------------------------------------------------- /lib/jackson-core-2.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lib/jackson-core-2.1.4.jar -------------------------------------------------------------------------------- /lib/jackson-databind-2.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lib/jackson-databind-2.1.4.jar -------------------------------------------------------------------------------- /lib/jmdns-3.4.2-20120628.171933-9-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lib/jmdns-3.4.2-20120628.171933-9-sources.jar -------------------------------------------------------------------------------- /lib/jmdns-3.4.2-20120628.171933-9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lib/jmdns-3.4.2-20120628.171933-9.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/lint.xml -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/badge_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/badge_hd.png -------------------------------------------------------------------------------- /res/drawable-hdpi/badge_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/badge_new.png -------------------------------------------------------------------------------- /res/drawable-hdpi/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/blank.png -------------------------------------------------------------------------------- /res/drawable-hdpi/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/check.png -------------------------------------------------------------------------------- /res/drawable-hdpi/content_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/content_banner.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/folder_downloading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/folder_recording.png -------------------------------------------------------------------------------- /res/drawable-hdpi/folder_wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/folder_wishlist.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icmpmove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icmpmove.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_cog.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_devices.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_help.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_info.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_people.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_remote.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_remote_32h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_remote_32h.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_seasonpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_seasonpass.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_similar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_similar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_todo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_tv.png -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_tv32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/icon_tv32.png -------------------------------------------------------------------------------- /res/drawable-hdpi/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/keyboard.png -------------------------------------------------------------------------------- /res/drawable-hdpi/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/person.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_deleted.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_downloading.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_expired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_expired.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_expiressoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_expiressoon.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_keep.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_recording.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_suggestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_suggestion.png -------------------------------------------------------------------------------- /res/drawable-hdpi/recording_wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/recording_wishlist.png -------------------------------------------------------------------------------- /res/drawable-hdpi/remote_button_advance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/remote_button_advance.png -------------------------------------------------------------------------------- /res/drawable-hdpi/remote_button_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/remote_button_replay.png -------------------------------------------------------------------------------- /res/drawable-hdpi/remote_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/remote_full.png -------------------------------------------------------------------------------- /res/drawable-hdpi/remote_play_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/remote_play_controls.png -------------------------------------------------------------------------------- /res/drawable-hdpi/scrub_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/scrub_left.png -------------------------------------------------------------------------------- /res/drawable-hdpi/scrub_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/scrub_mid.png -------------------------------------------------------------------------------- /res/drawable-hdpi/scrub_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/scrub_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi/scrub_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/scrub_thumb.png -------------------------------------------------------------------------------- /res/drawable-hdpi/todo_seasonpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/todo_seasonpass.png -------------------------------------------------------------------------------- /res/drawable-hdpi/todo_single_offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/todo_single_offer.png -------------------------------------------------------------------------------- /res/drawable-hdpi/todo_wishlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-hdpi/todo_wishlist.png -------------------------------------------------------------------------------- /res/drawable-ldpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-ldpi/app_icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-mdpi/app_icon.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/drawable-xhdpi/app_icon.png -------------------------------------------------------------------------------- /res/layout-land/now_showing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout-land/now_showing.xml -------------------------------------------------------------------------------- /res/layout/about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/about.xml -------------------------------------------------------------------------------- /res/layout/connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/connect.xml -------------------------------------------------------------------------------- /res/layout/device_custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/device_custom.xml -------------------------------------------------------------------------------- /res/layout/explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/explore.xml -------------------------------------------------------------------------------- /res/layout/explore_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/explore_tabs.xml -------------------------------------------------------------------------------- /res/layout/help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/help.xml -------------------------------------------------------------------------------- /res/layout/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/ids.xml -------------------------------------------------------------------------------- /res/layout/item_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_credits.xml -------------------------------------------------------------------------------- /res/layout/item_discover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_discover.xml -------------------------------------------------------------------------------- /res/layout/item_my_shows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_my_shows.xml -------------------------------------------------------------------------------- /res/layout/item_person_credits.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_person_credits.xml -------------------------------------------------------------------------------- /res/layout/item_season_pass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_season_pass.xml -------------------------------------------------------------------------------- /res/layout/item_show.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_show.xml -------------------------------------------------------------------------------- /res/layout/item_sub_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_sub_base.xml -------------------------------------------------------------------------------- /res/layout/item_sub_wont.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_sub_wont.xml -------------------------------------------------------------------------------- /res/layout/item_upcoming.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/item_upcoming.xml -------------------------------------------------------------------------------- /res/layout/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list.xml -------------------------------------------------------------------------------- /res/layout/list_discover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_discover.xml -------------------------------------------------------------------------------- /res/layout/list_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_empty.xml -------------------------------------------------------------------------------- /res/layout/list_explore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_explore.xml -------------------------------------------------------------------------------- /res/layout/list_my_shows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_my_shows.xml -------------------------------------------------------------------------------- /res/layout/list_person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_person.xml -------------------------------------------------------------------------------- /res/layout/list_season_pass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_season_pass.xml -------------------------------------------------------------------------------- /res/layout/list_todo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/list_todo.xml -------------------------------------------------------------------------------- /res/layout/no_results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/no_results.xml -------------------------------------------------------------------------------- /res/layout/now_showing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/now_showing.xml -------------------------------------------------------------------------------- /res/layout/now_showing_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/now_showing_detail.xml -------------------------------------------------------------------------------- /res/layout/now_showing_remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/now_showing_remote.xml -------------------------------------------------------------------------------- /res/layout/progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/progress.xml -------------------------------------------------------------------------------- /res/layout/remote.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/remote.xml -------------------------------------------------------------------------------- /res/layout/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/search.xml -------------------------------------------------------------------------------- /res/layout/subscribe_base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/subscribe_base.xml -------------------------------------------------------------------------------- /res/layout/subscribe_collection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/subscribe_collection.xml -------------------------------------------------------------------------------- /res/layout/subscribe_conflicts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/subscribe_conflicts.xml -------------------------------------------------------------------------------- /res/layout/subscribe_offer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/layout/subscribe_offer.xml -------------------------------------------------------------------------------- /res/raw/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/values/ids.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/res/xml/preferences.xml -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/About.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/About.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Connect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Connect.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Credits.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Credits.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Database.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Database.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Device.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Device.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Discover.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Discover.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/DownloadImageTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/DownloadImageTask.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Explore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Explore.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/ExploreCommon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/ExploreCommon.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/ExploreTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/ExploreTabs.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Help.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Help.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/MyShows.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/MyShows.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/NowShowing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/NowShowing.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Person.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Person.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Remote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Remote.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Search.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/SeasonPass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/SeasonPass.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Settings.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/ShowList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/ShowList.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/SubscribeBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/SubscribeBase.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/SubscribeCollection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/SubscribeCollection.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/SubscribeOffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/SubscribeOffer.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/SubscriptionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/SubscriptionType.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Suggestions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Suggestions.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/ToDo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/ToDo.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Upcoming.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Upcoming.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/Utils.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/MindRpc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/MindRpc.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/MindRpcInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/MindRpcInput.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/MindRpcOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/MindRpcOutput.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/BaseSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/BaseSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/BodyAuthenticate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/BodyAuthenticate.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/BodyConfigSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/BodyConfigSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/CancelRpc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/CancelRpc.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/CollectionSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/CollectionSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/ContentSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/ContentSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/CreditsSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/CreditsSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/KeyEventSend.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/KeyEventSend.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/MindRpcRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/MindRpcRequest.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/OfferSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/OfferSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/PersonCreditsSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/PersonCreditsSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/PersonSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/PersonSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/RecordingFolderItemEmpty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/RecordingFolderItemEmpty.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/RecordingFolderItemSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/RecordingFolderItemSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/RecordingSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/RecordingSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/RecordingUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/RecordingUpdate.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/Subscribe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/Subscribe.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/SubscriptionSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/SubscriptionSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/SubscriptionsReprioritize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/SubscriptionsReprioritize.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/SuggestionsSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/SuggestionsSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/TodoRecordingSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/TodoRecordingSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/TodoSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/TodoSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/TunerStateEventRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/TunerStateEventRegister.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/UiNavigate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/UiNavigate.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/UnifiedItemSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/UnifiedItemSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/Unsubscribe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/Unsubscribe.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/UpcomingSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/UpcomingSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/VideoPlaybackInfoEventRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/VideoPlaybackInfoEventRegister.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/request/WhatsOnSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/request/WhatsOnSearch.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/response/MindRpcResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/response/MindRpcResponse.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/response/MindRpcResponseFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/response/MindRpcResponseFactory.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/rpc/response/MindRpcResponseListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/rpc/response/MindRpcResponseListener.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/views/LinearListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/views/LinearListView.java -------------------------------------------------------------------------------- /src/com/arantius/tivocommander/views/TivoScrubBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arantius/TiVo-Commander/HEAD/src/com/arantius/tivocommander/views/TivoScrubBar.java --------------------------------------------------------------------------------