├── .gitignore ├── BonCtrl ├── BonCtrl.cpp ├── BonCtrl.h ├── BonCtrlDef.h ├── BonDriverUtil.cpp ├── BonDriverUtil.h ├── CATUtil.cpp ├── CATUtil.h ├── ChSetUtil.cpp ├── ChSetUtil.h ├── CreatePATPacket.cpp ├── CreatePATPacket.h ├── CreatePMTPacket.cpp ├── CreatePMTPacket.h ├── DropCount.cpp ├── DropCount.h ├── IB25Decoder.h ├── IBonDriver.h ├── IBonDriver2.h ├── OneServiceUtil.cpp ├── OneServiceUtil.h ├── PATUtil.cpp ├── PATUtil.h ├── PESHeadInfo.cpp ├── PESHeadInfo.h ├── PMTUtil.cpp ├── PMTUtil.h ├── PacketInit.cpp ├── PacketInit.h ├── ScrambleDecoderUtil.cpp ├── ScrambleDecoderUtil.h ├── ServiceFilter.cpp ├── ServiceFilter.h ├── TSOut.cpp ├── TSOut.h ├── WriteTSFile.cpp └── WriteTSFile.h ├── Common ├── Common.h ├── CommonDef.h ├── CommonResource.h ├── CtrlCmdDef.h ├── CtrlCmdUtil.cpp ├── CtrlCmdUtil.h ├── EpgDataCap3Def.h ├── EpgDataCap3Util.cpp ├── EpgDataCap3Util.h ├── EpgTimerUtil.cpp ├── EpgTimerUtil.h ├── ErrDef.h ├── IniUtil.cpp ├── IniUtil.h ├── InstanceManager.h ├── MessageManager.cpp ├── MessageManager.h ├── ParseText.h ├── ParseTextInstances.cpp ├── ParseTextInstances.h ├── PathUtil.cpp ├── PathUtil.h ├── PipeServer.cpp ├── PipeServer.h ├── ReNamePlugInUtil.cpp ├── ReNamePlugInUtil.h ├── SendCtrlCmd.cpp ├── SendCtrlCmd.h ├── SendTSTCPDllUtil.cpp ├── SendTSTCPDllUtil.h ├── ServiceUtil.cpp ├── ServiceUtil.h ├── StackTrace.cpp ├── StackTrace.h ├── StringUtil.cpp ├── StringUtil.h ├── StructDef.h ├── TCPServer.cpp ├── TCPServer.h ├── TSBuffUtil.cpp ├── TSBuffUtil.h ├── TSPacketUtil.cpp ├── TSPacketUtil.h ├── TVTestPlugin.h ├── ThreadUtil.h ├── TimeShiftUtil.cpp ├── TimeShiftUtil.h ├── TimeUtil.cpp ├── TimeUtil.h ├── WritePlugInUtil.cpp └── WritePlugInUtil.h ├── Document ├── EDCB_ALL.VS2015.sln ├── History.txt ├── HowToBuild.txt ├── MinGW │ ├── Makefile │ └── RunMake.bat ├── Patch │ ├── 120526_マージの際に上書きしたファイル「自動予約登録」の並び替えを改良してみた(その4).txt │ ├── 121014_(未適用)EPGデータ対策不正な文字コード_とりあえずMXだけ基本情報のみ取得するようにするとうまくいく 10.69用パッチ.txt │ ├── 121014_EPGデータ対策不正な文字コード.txt │ ├── 121014_EPGデータ対策不正な文字コード_BonCtrl.iniの設定変更.txt │ ├── 121014_EPGデータ対策不正な文字コード_J59KpGPU.diff │ ├── 121103_Win8での滲み対策.txt │ ├── 130202_「自動予約登録」の並び替えを改良してみた(その4)の検索結果の行間が一定にならない点を修正.txt │ ├── 130203_カスタム番組表設定のサービスをChSet5の順番にソートするボタン.txt │ ├── 130204_EPGTimerの検索機能を現時刻以降を対象にする(196氏版).txt │ ├── 130205_0.0(ウインドウの一番左上)の時、座標が記憶されず次回起動時にずれる点の対策.txt │ ├── 130206_ボタンの幅などを変更する場合の修正箇所.txt │ ├── 130210_スリープ抑止拡張(120704に公表)_edcb.patch │ ├── 130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化.txt │ ├── 130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_CqAWJGUB.txt │ ├── 130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_tLv3Mpzq.txt │ ├── テレビ番組雑誌風の番組表の設定方法.txt │ └── ボタンの幅などを変更する場合の修正箇所02.txt ├── Readme.txt ├── Readme_EpgDataCap_Bon.txt ├── Readme_EpgTimer.txt ├── Readme_Mod.txt └── Unix │ └── Makefile ├── EdcbPlugIn ├── EdcbPlugIn.sln └── EdcbPlugIn │ ├── EdcbPlugIn.cpp │ ├── EdcbPlugIn.def │ ├── EdcbPlugIn.h │ ├── EdcbPlugIn.ini │ ├── EdcbPlugIn.vcxproj │ ├── EdcbPlugIn.vcxproj.filters │ ├── EdcbPlugIn_Readme.txt │ ├── Makefile │ ├── ch2chset.vbs │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EpgDataCap3 ├── EpgDataCap3.sln └── EpgDataCap3 │ ├── ARIB8CharDecode.cpp │ ├── ARIB8CharDecode.h │ ├── AribDescriptor.cpp │ ├── AribDescriptor.h │ ├── DecodeUtil.cpp │ ├── DecodeUtil.h │ ├── Descriptor │ └── Readme.txt │ ├── EpgDBUtil.cpp │ ├── EpgDBUtil.h │ ├── EpgDataCap3.cpp │ ├── EpgDataCap3.def │ ├── EpgDataCap3.rc │ ├── EpgDataCap3.vcxproj │ ├── EpgDataCap3.vcxproj.filters │ ├── EpgDataCap3Main.cpp │ ├── EpgDataCap3Main.h │ ├── EpgDataCap3_Unicode.vcxproj │ ├── EpgDataCap3_Unicode.vcxproj.filters │ ├── Makefile │ ├── Table │ └── Readme.txt │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EpgDataCap_Bon ├── EpgDataCap_Bon.sln └── EpgDataCap_Bon │ ├── AppSetting.cpp │ ├── AppSetting.h │ ├── EpgDataCap_Bon.cpp │ ├── EpgDataCap_Bon.h │ ├── EpgDataCap_Bon.manifest │ ├── EpgDataCap_Bon.rc │ ├── EpgDataCap_Bon.vcxproj │ ├── EpgDataCap_Bon.vcxproj.filters │ ├── EpgDataCap_BonDef.h │ ├── EpgDataCap_BonDlg.cpp │ ├── EpgDataCap_BonDlg.h │ ├── EpgDataCap_BonMin.cpp │ ├── EpgDataCap_BonMin.h │ ├── Makefile │ ├── SetDlgApp.cpp │ ├── SetDlgApp.h │ ├── SetDlgAppBtn.cpp │ ├── SetDlgAppBtn.h │ ├── SetDlgBasic.cpp │ ├── SetDlgBasic.h │ ├── SetDlgEpg.cpp │ ├── SetDlgEpg.h │ ├── SetDlgNetwork.cpp │ ├── SetDlgNetwork.h │ ├── SetDlgService.cpp │ ├── SetDlgService.h │ ├── SettingDlg.cpp │ ├── SettingDlg.h │ ├── TaskbarList.cpp │ ├── TaskbarList.h │ ├── res │ ├── EpgDataCap_Bon.ico │ ├── EpgDataCap_Bon_Vista_blue_rev2.ico │ ├── EpgDataCap_Bon_Vista_gray_rev2.ico │ ├── EpgDataCap_Bon_Vista_green_rev2.ico │ ├── EpgDataCap_Bon_Vista_vio_rev2.ico │ ├── overlay_epg.ico │ ├── overlay_epg.png │ ├── overlay_rec.ico │ └── overlay_rec.png │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EpgTimer ├── EpgTimer.sln ├── EpgTimer │ ├── AddManualAutoAddWindow.xaml │ ├── AddManualAutoAddWindow.xaml.cs │ ├── AddReserveEpgWindow.xaml │ ├── AddReserveEpgWindow.xaml.cs │ ├── App.manifest │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppVersion.cs │ ├── AutoAddListView.xaml │ ├── AutoAddListView.xaml.cs │ ├── AutoAddView.xaml │ ├── AutoAddView.xaml.cs │ ├── ChgReserveWindow.xaml │ ├── ChgReserveWindow.xaml.cs │ ├── Common │ │ ├── BoxExchangeEditor.cs │ │ ├── ChSet5Class.cs │ │ ├── ColorDefClass.cs │ │ ├── CommonManagerClass.cs │ │ ├── CommonUtil.cs │ │ ├── CopyObj.cs │ │ ├── CtrlCmd.cs │ │ ├── CtrlCmdDef.cs │ │ ├── DBManagerClass.cs │ │ ├── DefineEnum.cs │ │ ├── GridViewSelector.cs │ │ ├── GridViewSorter.cs │ │ ├── IEPGFileClass.cs │ │ ├── ItemFontCache.cs │ │ ├── ListViewSelectedKeeper.cs │ │ ├── NWConnectClass.cs │ │ ├── PipeServer.cs │ │ ├── SettingClass.cs │ │ ├── StatusManager.cs │ │ ├── TVTestCtrlClass.cs │ │ ├── TaskTrayClass.cs │ │ └── ViewUtil.cs │ ├── ConnectWindow.xaml │ ├── ConnectWindow.xaml.cs │ ├── CtrlCmdDefEx │ │ ├── AutoAddDataEx.cs │ │ ├── CtrlCmdDefEx.cs │ │ ├── EpgContentDataEx.cs │ │ ├── EpgEventInfoEx.cs │ │ ├── RecFileInfoEx.cs │ │ ├── RecSettingDataEx.cs │ │ └── ReserveDataEx.cs │ ├── DefineClass │ │ ├── CustomEpgTabInfo.cs │ │ ├── DataListItemBase.cs │ │ ├── DateTime28.cs │ │ ├── EpgAutoDataItem.cs │ │ ├── GridViewSorterItem.cs │ │ ├── IEPGStationInfo.cs │ │ ├── InfoSearchItem.cs │ │ ├── InfoSearchSetting.cs │ │ ├── KernelObjectSecurity.cs │ │ ├── ListColumnInfo.cs │ │ ├── ListViewHorizontalMouseScroller.cs │ │ ├── ManualAutoAddDataItem.cs │ │ ├── NWPresetItem.cs │ │ ├── NotifySrvInfoItem.cs │ │ ├── PicUpTitle.cs │ │ ├── PresetItem.cs │ │ ├── ProgramViewItem.cs │ │ ├── RadioBtnSelect.cs │ │ ├── RecInfoItem.cs │ │ ├── RecSettingItem.cs │ │ ├── ReserveItem.cs │ │ ├── ReserveViewItem.cs │ │ ├── SearchItem.cs │ │ ├── SelectableItem.cs │ │ ├── SerializableDictionary.cs │ │ ├── ServiceViewItem.cs │ │ ├── StringItem.cs │ │ ├── TextBoxWithReadOnlyEffect.cs │ │ ├── TunerSelectInfo.cs │ │ ├── ValueConverter.cs │ │ └── WindowSettingData.cs │ ├── EpgDataView.xaml │ ├── EpgDataView.xaml.cs │ ├── EpgTimer.csproj │ ├── EpgView │ │ ├── DateView.xaml │ │ ├── DateView.xaml.cs │ │ ├── EpgListMainView.xaml │ │ ├── EpgListMainView.xaml.cs │ │ ├── EpgMainView.xaml │ │ ├── EpgMainView.xaml.cs │ │ ├── EpgMainViewBase.cs │ │ ├── EpgViewBase.cs │ │ ├── EpgViewPanel.cs │ │ ├── EpgWeekMainView.xaml │ │ ├── EpgWeekMainView.xaml.cs │ │ ├── ProgramView.xaml │ │ ├── ProgramView.xaml.cs │ │ ├── ServiceView.xaml │ │ ├── ServiceView.xaml.cs │ │ ├── TimeJumpView.xaml │ │ ├── TimeJumpView.xaml.cs │ │ ├── TimeMoveView.xaml │ │ ├── TimeMoveView.xaml.cs │ │ ├── TimeView.xaml │ │ ├── TimeView.xaml.cs │ │ ├── WeekDayView.xaml │ │ └── WeekDayView.xaml.cs │ ├── InfoSearchWindow.xaml │ ├── InfoSearchWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Menu │ │ ├── CmdExe.cs │ │ ├── CmdExeAutoAdd.cs │ │ ├── CmdExeRecinfo.cs │ │ ├── CmdExeReserve.cs │ │ ├── CmdHistory.cs │ │ ├── CtxmData.cs │ │ ├── EpgCmdsDef.cs │ │ ├── MenuBinds.cs │ │ ├── MenuCmds.cs │ │ ├── MenuManager.cs │ │ ├── MenuSettingData.cs │ │ ├── MenuUtil.cs │ │ ├── SetContextMenuWindow.xaml │ │ └── SetContextMenuWindow.xaml.cs │ ├── NotifyLogWindow.xaml │ ├── NotifyLogWindow.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RecInfoDescWindow.xaml │ ├── RecInfoDescWindow.xaml.cs │ ├── RecInfoView.xaml │ ├── RecInfoView.xaml.cs │ ├── ReserveView.xaml │ ├── ReserveView.xaml.cs │ ├── Resources │ │ ├── 109_AllAnnotations_Error_16x16_72.ico │ │ ├── 109_AllAnnotations_Warning_16x16_72.ico │ │ ├── EpgTimer_Bon_Vista_blue_rev2.ico │ │ ├── EpgTimer_Bon_Vista_gray_rev2.ico │ │ ├── EpgTimer_Bon_Vista_green_rev2.ico │ │ ├── EpgTimer_Bon_Vista_orange_rev2.ico │ │ ├── EpgTimer_Bon_Vista_red_rev2.ico │ │ ├── EpgTimer_Bon_Vista_yellow_rev2.ico │ │ ├── TaskIconBlue.ico │ │ ├── TaskIconGray.ico │ │ ├── TaskIconGreen.ico │ │ ├── TaskIconOrange.ico │ │ ├── TaskIconRed.ico │ │ ├── TaskIconYellow.ico │ │ ├── drag.cur │ │ ├── key.ico │ │ └── key_no.ico │ ├── SearchWindow.xaml │ ├── SearchWindow.xaml.cs │ ├── Setting │ │ ├── ColorSetWindow.xaml │ │ ├── ColorSetWindow.xaml.cs │ │ ├── EpgDataViewSettingWindow.xaml │ │ ├── EpgDataViewSettingWindow.xaml.cs │ │ ├── SetAppView.xaml │ │ ├── SetAppView.xaml.cs │ │ ├── SetBasicView.xaml │ │ ├── SetBasicView.xaml.cs │ │ ├── SetEpgView.xaml │ │ ├── SetEpgView.xaml.cs │ │ ├── SetOtherAppView.xaml │ │ ├── SetOtherAppView.xaml.cs │ │ ├── SetPicUpCustomWindow.xaml │ │ ├── SetPicUpCustomWindow.xaml.cs │ │ ├── SetPresetWindow.xaml │ │ ├── SetPresetWindow.xaml.cs │ │ ├── SettingWindow.xaml │ │ └── SettingWindow.xaml.cs │ ├── Style │ │ ├── DataListViewStyles.xaml │ │ ├── ReserveListViewStyles.xaml │ │ └── UiLayoutStyles.xaml │ ├── TunerReserveViewCtrl │ │ ├── TunerReserveMainView.xaml │ │ ├── TunerReserveMainView.xaml.cs │ │ ├── TunerReserveNameView.xaml │ │ ├── TunerReserveNameView.xaml.cs │ │ ├── TunerReservePanel.cs │ │ ├── TunerReserveView.xaml │ │ └── TunerReserveView.xaml.cs │ └── UserCtrlView │ │ ├── AddPresetWindow.xaml │ │ ├── AddPresetWindow.xaml.cs │ │ ├── AttendantWindow.cs │ │ ├── BlackoutWindow.xaml │ │ ├── BlackoutWindow.xaml.cs │ │ ├── DataViewBase.cs │ │ ├── ListBoxDragMoverView.xaml │ │ ├── ListBoxDragMoverView.xaml.cs │ │ ├── ListSearchView.xaml │ │ ├── ListSearchView.xaml.cs │ │ ├── ListViewController.cs │ │ ├── PanelViewBase.cs │ │ ├── PresetEditor.xaml │ │ ├── PresetEditor.xaml.cs │ │ ├── RecFolderWindow.xaml │ │ ├── RecFolderWindow.xaml.cs │ │ ├── RecSettingView.xaml │ │ ├── RecSettingView.xaml.cs │ │ ├── SearchKeyView.xaml │ │ ├── SearchKeyView.xaml.cs │ │ ├── StatusView.xaml │ │ ├── StatusView.xaml.cs │ │ ├── SuspendCheckWindow.xaml │ │ └── SuspendCheckWindow.xaml.cs ├── x64build.bat └── x86build.bat ├── EpgTimerAdminProxy ├── EpgTimerAdminProxy.sln └── EpgTimerAdminProxy │ ├── EpgTimerAdminProxy.cpp │ ├── EpgTimerAdminProxy.vcxproj │ ├── EpgTimerAdminProxy.vcxproj.filters │ └── Makefile ├── EpgTimerPlugIn ├── EpgTimerPlugIn.sln └── EpgTimerPlugIn │ ├── EpgTimerPlugIn.cpp │ ├── EpgTimerPlugIn.def │ ├── EpgTimerPlugIn.h │ ├── EpgTimerPlugIn.rc │ ├── EpgTimerPlugIn.vcxproj │ ├── EpgTimerPlugIn.vcxproj.filters │ ├── Makefile │ ├── StreamCtrlDlg.cpp │ ├── StreamCtrlDlg.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── EpgTimerSrv ├── EpgTimerSrv.sln └── EpgTimerSrv │ ├── BatManager.cpp │ ├── BatManager.h │ ├── EpgDBManager.cpp │ ├── EpgDBManager.h │ ├── EpgTimerSrv.cpp │ ├── EpgTimerSrv.manifest │ ├── EpgTimerSrv.rc │ ├── EpgTimerSrv.vcxproj │ ├── EpgTimerSrv.vcxproj.filters │ ├── EpgTimerSrvMain.cpp │ ├── EpgTimerSrvMain.h │ ├── EpgTimerSrvSetting.cpp │ ├── EpgTimerSrvSetting.h │ ├── EpgTimerTask.cpp │ ├── EpgTimerTask.h │ ├── HttpServer.cpp │ ├── HttpServer.h │ ├── Makefile │ ├── NotifyManager.cpp │ ├── NotifyManager.h │ ├── RegExp.cpp │ ├── RegExp.h │ ├── ReserveManager.cpp │ ├── ReserveManager.h │ ├── SyoboiCalUtil.cpp │ ├── SyoboiCalUtil.h │ ├── TaskIconBlue.ico │ ├── TaskIconGray.ico │ ├── TaskIconGreen.ico │ ├── TaskIconRed.ico │ ├── TaskIconSemi.ico │ ├── TunerBankCtrl.cpp │ ├── TunerBankCtrl.h │ ├── UpnpSsdpServer.cpp │ ├── UpnpSsdpServer.h │ ├── civetweb.c │ ├── civetweb.h │ ├── civetweb_lua.h │ ├── liblua52-mingw-lazy-i686-gcc15.a │ ├── liblua52-mingw-lazy-i686.a │ ├── liblua52-mingw-lazy-x86_64-gcc15.a │ ├── liblua52-mingw-lazy-x86_64.a │ ├── lua │ ├── lauxlib.h │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ └── lualib.h │ ├── lua52-x64.lib │ ├── lua52.lib │ ├── match.inl │ ├── md5.inl │ ├── mod_lua.inl │ ├── mod_lua_shared.inl │ ├── openssl_dl.inl │ ├── resource.h │ ├── response.inl │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── LICENSE-Civetweb.md ├── README.md ├── RecName_Macro ├── RecName_Macro.sln └── RecName_Macro │ ├── ConvertMacro2.cpp │ ├── ConvertMacro2.h │ ├── Makefile │ ├── RecName_Macro.cpp │ ├── RecName_Macro.rc │ ├── RecName_Macro.vcxproj │ ├── RecName_Macro.vcxproj.filters │ ├── RecName_PlugIn.def │ ├── SettingDlg.cpp │ ├── SettingDlg.h │ ├── dllmain.cpp │ ├── embed.txt │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── SendTSTCP ├── SendTSTCP.sln └── SendTSTCP │ ├── Makefile │ ├── SendTSTCP.cpp │ ├── SendTSTCP.def │ ├── SendTSTCP.rc │ ├── SendTSTCP.vcxproj │ ├── SendTSTCP.vcxproj.filters │ ├── SendTSTCPMain.cpp │ ├── SendTSTCPMain.h │ ├── dllmain.cpp │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Tools ├── IBonCast.sln ├── IBonCast │ ├── IBonCast.cpp │ ├── IBonCast.def │ └── IBonCast.vcxproj ├── asyncbuf.c ├── asyncbuf.vcxproj ├── misc.sln ├── relayread.c ├── relayread.vcxproj ├── tsidmove.sln ├── tsidmove │ ├── stdafx.cpp │ ├── stdafx.h │ ├── tsidmove.cpp │ ├── tsidmove.vcxproj │ └── tsidmove.vcxproj.filters ├── tsidmove_helper.bat ├── tspgtxt.sln └── tspgtxt │ ├── stdafx.cpp │ ├── stdafx.h │ ├── tspgtxt.cpp │ ├── tspgtxt.vcxproj │ └── tspgtxt.vcxproj.filters ├── Write_Default ├── Write_Default.sln └── Write_Default │ ├── Makefile │ ├── SettingDlg.cpp │ ├── SettingDlg.h │ ├── WriteMain.cpp │ ├── WriteMain.h │ ├── Write_Default.cpp │ ├── Write_Default.rc │ ├── Write_Default.vcxproj │ ├── Write_Default.vcxproj.filters │ ├── Write_PlugIn.def │ ├── dllmain.cpp │ ├── embed.txt │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Write_OneService ├── Write_OneService.sln └── Write_OneService │ ├── Makefile │ ├── WriteMain.cpp │ ├── WriteMain.h │ ├── Write_OneService.cpp │ ├── Write_OneService.vcxproj │ ├── Write_OneService.vcxproj.filters │ ├── Write_PlugIn.def │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── ini ├── Bitrate.ini ├── BonCtrl.ini ├── ContentTypeText.txt ├── EpgTimer.exe.rd.xaml ├── EpgTimerSrv_Install.bat ├── EpgTimerSrv_Remove.bat ├── EpgTimerSrv_Setting.bat ├── HttpPublic │ ├── dlna │ │ └── dms │ │ │ ├── cds │ │ │ ├── event.lua │ │ │ ├── sdd.xml │ │ │ └── soap.lua │ │ │ ├── cms │ │ │ ├── event.lua │ │ │ ├── sdd.xml │ │ │ └── soap.lua │ │ │ ├── ddd.xml │ │ │ ├── uuid.lua │ │ │ └── uuid4.lua │ ├── favicon.ico │ ├── index.html │ └── legacy │ │ ├── Kosugi-Regular.woff2 │ │ ├── KosugiMaru-Bold.woff2 │ │ ├── KosugiMaru-Regular.woff2 │ │ ├── about.html │ │ ├── aribb24.js │ │ ├── aribb24.js.v1.11.5.LICENSE.txt │ │ ├── autoaddepg.html │ │ ├── autoaddepginfo.html │ │ ├── autoaddmanual.html │ │ ├── autoaddmanualinfo.html │ │ ├── ccinfo_script.js │ │ ├── comment.lua │ │ ├── danmaku.js │ │ ├── danmaku.js.6c13364.LICENSE.txt │ │ ├── default.css │ │ ├── epg.html │ │ ├── epginfo.html │ │ ├── epglist.html │ │ ├── epgpastinfo.html │ │ ├── grabber.lua │ │ ├── hls.min.js │ │ ├── hls.min.js.map │ │ ├── hls.min.js.v1.5.20.LICENSE.txt │ │ ├── index.html │ │ ├── jkconst.lua │ │ ├── jklog.lua │ │ ├── library.html │ │ ├── loading.png │ │ ├── logo.lua │ │ ├── mp4init.lua │ │ ├── mux_to_ts.lua │ │ ├── nvram.html │ │ ├── pgtxt.lua │ │ ├── process.html │ │ ├── recinfo.html │ │ ├── recinfodesc.html │ │ ├── reserve.html │ │ ├── reserveinfo.html │ │ ├── script.js │ │ ├── segment.lua │ │ ├── setting.html │ │ ├── setting_app.html │ │ ├── setting_app_network.html │ │ ├── setting_basic.html │ │ ├── setting_bon.html │ │ ├── setting_del_chk.html │ │ ├── setting_del_ext.html │ │ ├── setting_epg.html │ │ ├── setting_epg_service.html │ │ ├── setting_epg_time.html │ │ ├── setting_no_suspend.html │ │ ├── setting_other.html │ │ ├── setting_plugin.html │ │ ├── setting_rec.html │ │ ├── setting_rec_folder.html │ │ ├── setting_rec_preset.html │ │ ├── setting_rec_preset_folder.html │ │ ├── setting_reserve.html │ │ ├── setting_view_bon.html │ │ ├── showlog.html │ │ ├── speedtest.htm │ │ ├── speedtest.js │ │ ├── speedtest.js.v5.2.5.LICENSE.txt │ │ ├── speedtest.lua │ │ ├── speedtest_worker.js │ │ ├── storage.html │ │ ├── thumb_script.js │ │ ├── ts-live-misc.js │ │ ├── ts-live-misc.wasm │ │ ├── ts-live-misc.wasm.map │ │ ├── ts-live.js │ │ ├── ts-live.js.4cad6c7.LICENSE.txt │ │ ├── ts-live.lua │ │ ├── ts-live.wasm │ │ ├── ts-live.wasm.map │ │ ├── util.lua │ │ ├── view.lua │ │ ├── vtt.lua │ │ ├── web_bml_play_ts.js │ │ ├── web_bml_play_ts.js.7348e3b.LICENSE.txt │ │ ├── web_bml_play_ts.js.map │ │ └── xcode.lua └── PostBatExamples │ ├── EdcbSchUploader.ps1 │ ├── EdcbSchUploader.py │ ├── PostNotify.bat │ ├── PostNotify.lua │ ├── PostNotify.sh │ └── PostRecEnd.lua ├── versionhash.sh ├── versionhashclean.bat └── versionhashgen.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/.gitignore -------------------------------------------------------------------------------- /BonCtrl/BonCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/BonCtrl.cpp -------------------------------------------------------------------------------- /BonCtrl/BonCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/BonCtrl.h -------------------------------------------------------------------------------- /BonCtrl/BonCtrlDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/BonCtrlDef.h -------------------------------------------------------------------------------- /BonCtrl/BonDriverUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/BonDriverUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/BonDriverUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/BonDriverUtil.h -------------------------------------------------------------------------------- /BonCtrl/CATUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CATUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/CATUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CATUtil.h -------------------------------------------------------------------------------- /BonCtrl/ChSetUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ChSetUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/ChSetUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ChSetUtil.h -------------------------------------------------------------------------------- /BonCtrl/CreatePATPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CreatePATPacket.cpp -------------------------------------------------------------------------------- /BonCtrl/CreatePATPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CreatePATPacket.h -------------------------------------------------------------------------------- /BonCtrl/CreatePMTPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CreatePMTPacket.cpp -------------------------------------------------------------------------------- /BonCtrl/CreatePMTPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/CreatePMTPacket.h -------------------------------------------------------------------------------- /BonCtrl/DropCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/DropCount.cpp -------------------------------------------------------------------------------- /BonCtrl/DropCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/DropCount.h -------------------------------------------------------------------------------- /BonCtrl/IB25Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/IB25Decoder.h -------------------------------------------------------------------------------- /BonCtrl/IBonDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/IBonDriver.h -------------------------------------------------------------------------------- /BonCtrl/IBonDriver2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/IBonDriver2.h -------------------------------------------------------------------------------- /BonCtrl/OneServiceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/OneServiceUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/OneServiceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/OneServiceUtil.h -------------------------------------------------------------------------------- /BonCtrl/PATUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PATUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/PATUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PATUtil.h -------------------------------------------------------------------------------- /BonCtrl/PESHeadInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PESHeadInfo.cpp -------------------------------------------------------------------------------- /BonCtrl/PESHeadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PESHeadInfo.h -------------------------------------------------------------------------------- /BonCtrl/PMTUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PMTUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/PMTUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PMTUtil.h -------------------------------------------------------------------------------- /BonCtrl/PacketInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PacketInit.cpp -------------------------------------------------------------------------------- /BonCtrl/PacketInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/PacketInit.h -------------------------------------------------------------------------------- /BonCtrl/ScrambleDecoderUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ScrambleDecoderUtil.cpp -------------------------------------------------------------------------------- /BonCtrl/ScrambleDecoderUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ScrambleDecoderUtil.h -------------------------------------------------------------------------------- /BonCtrl/ServiceFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ServiceFilter.cpp -------------------------------------------------------------------------------- /BonCtrl/ServiceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/ServiceFilter.h -------------------------------------------------------------------------------- /BonCtrl/TSOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/TSOut.cpp -------------------------------------------------------------------------------- /BonCtrl/TSOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/TSOut.h -------------------------------------------------------------------------------- /BonCtrl/WriteTSFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/WriteTSFile.cpp -------------------------------------------------------------------------------- /BonCtrl/WriteTSFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/BonCtrl/WriteTSFile.h -------------------------------------------------------------------------------- /Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/Common.h -------------------------------------------------------------------------------- /Common/CommonDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/CommonDef.h -------------------------------------------------------------------------------- /Common/CommonResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/CommonResource.h -------------------------------------------------------------------------------- /Common/CtrlCmdDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/CtrlCmdDef.h -------------------------------------------------------------------------------- /Common/CtrlCmdUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/CtrlCmdUtil.cpp -------------------------------------------------------------------------------- /Common/CtrlCmdUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/CtrlCmdUtil.h -------------------------------------------------------------------------------- /Common/EpgDataCap3Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/EpgDataCap3Def.h -------------------------------------------------------------------------------- /Common/EpgDataCap3Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/EpgDataCap3Util.cpp -------------------------------------------------------------------------------- /Common/EpgDataCap3Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/EpgDataCap3Util.h -------------------------------------------------------------------------------- /Common/EpgTimerUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/EpgTimerUtil.cpp -------------------------------------------------------------------------------- /Common/EpgTimerUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/EpgTimerUtil.h -------------------------------------------------------------------------------- /Common/ErrDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ErrDef.h -------------------------------------------------------------------------------- /Common/IniUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/IniUtil.cpp -------------------------------------------------------------------------------- /Common/IniUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/IniUtil.h -------------------------------------------------------------------------------- /Common/InstanceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/InstanceManager.h -------------------------------------------------------------------------------- /Common/MessageManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/MessageManager.cpp -------------------------------------------------------------------------------- /Common/MessageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/MessageManager.h -------------------------------------------------------------------------------- /Common/ParseText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ParseText.h -------------------------------------------------------------------------------- /Common/ParseTextInstances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ParseTextInstances.cpp -------------------------------------------------------------------------------- /Common/ParseTextInstances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ParseTextInstances.h -------------------------------------------------------------------------------- /Common/PathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/PathUtil.cpp -------------------------------------------------------------------------------- /Common/PathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/PathUtil.h -------------------------------------------------------------------------------- /Common/PipeServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/PipeServer.cpp -------------------------------------------------------------------------------- /Common/PipeServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/PipeServer.h -------------------------------------------------------------------------------- /Common/ReNamePlugInUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ReNamePlugInUtil.cpp -------------------------------------------------------------------------------- /Common/ReNamePlugInUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ReNamePlugInUtil.h -------------------------------------------------------------------------------- /Common/SendCtrlCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/SendCtrlCmd.cpp -------------------------------------------------------------------------------- /Common/SendCtrlCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/SendCtrlCmd.h -------------------------------------------------------------------------------- /Common/SendTSTCPDllUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/SendTSTCPDllUtil.cpp -------------------------------------------------------------------------------- /Common/SendTSTCPDllUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/SendTSTCPDllUtil.h -------------------------------------------------------------------------------- /Common/ServiceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ServiceUtil.cpp -------------------------------------------------------------------------------- /Common/ServiceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ServiceUtil.h -------------------------------------------------------------------------------- /Common/StackTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/StackTrace.cpp -------------------------------------------------------------------------------- /Common/StackTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/StackTrace.h -------------------------------------------------------------------------------- /Common/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/StringUtil.cpp -------------------------------------------------------------------------------- /Common/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/StringUtil.h -------------------------------------------------------------------------------- /Common/StructDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/StructDef.h -------------------------------------------------------------------------------- /Common/TCPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TCPServer.cpp -------------------------------------------------------------------------------- /Common/TCPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TCPServer.h -------------------------------------------------------------------------------- /Common/TSBuffUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TSBuffUtil.cpp -------------------------------------------------------------------------------- /Common/TSBuffUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TSBuffUtil.h -------------------------------------------------------------------------------- /Common/TSPacketUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TSPacketUtil.cpp -------------------------------------------------------------------------------- /Common/TSPacketUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TSPacketUtil.h -------------------------------------------------------------------------------- /Common/TVTestPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TVTestPlugin.h -------------------------------------------------------------------------------- /Common/ThreadUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/ThreadUtil.h -------------------------------------------------------------------------------- /Common/TimeShiftUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TimeShiftUtil.cpp -------------------------------------------------------------------------------- /Common/TimeShiftUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TimeShiftUtil.h -------------------------------------------------------------------------------- /Common/TimeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TimeUtil.cpp -------------------------------------------------------------------------------- /Common/TimeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/TimeUtil.h -------------------------------------------------------------------------------- /Common/WritePlugInUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/WritePlugInUtil.cpp -------------------------------------------------------------------------------- /Common/WritePlugInUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Common/WritePlugInUtil.h -------------------------------------------------------------------------------- /Document/EDCB_ALL.VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/EDCB_ALL.VS2015.sln -------------------------------------------------------------------------------- /Document/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/History.txt -------------------------------------------------------------------------------- /Document/HowToBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/HowToBuild.txt -------------------------------------------------------------------------------- /Document/MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/MinGW/Makefile -------------------------------------------------------------------------------- /Document/MinGW/RunMake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/MinGW/RunMake.bat -------------------------------------------------------------------------------- /Document/Patch/120526_マージの際に上書きしたファイル「自動予約登録」の並び替えを改良してみた(その4).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/120526_マージの際に上書きしたファイル「自動予約登録」の並び替えを改良してみた(その4).txt -------------------------------------------------------------------------------- /Document/Patch/121014_(未適用)EPGデータ対策不正な文字コード_とりあえずMXだけ基本情報のみ取得するようにするとうまくいく 10.69用パッチ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/121014_(未適用)EPGデータ対策不正な文字コード_とりあえずMXだけ基本情報のみ取得するようにするとうまくいく 10.69用パッチ.txt -------------------------------------------------------------------------------- /Document/Patch/121014_EPGデータ対策不正な文字コード.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/121014_EPGデータ対策不正な文字コード.txt -------------------------------------------------------------------------------- /Document/Patch/121014_EPGデータ対策不正な文字コード_BonCtrl.iniの設定変更.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/121014_EPGデータ対策不正な文字コード_BonCtrl.iniの設定変更.txt -------------------------------------------------------------------------------- /Document/Patch/121014_EPGデータ対策不正な文字コード_J59KpGPU.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/121014_EPGデータ対策不正な文字コード_J59KpGPU.diff -------------------------------------------------------------------------------- /Document/Patch/121103_Win8での滲み対策.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/121103_Win8での滲み対策.txt -------------------------------------------------------------------------------- /Document/Patch/130202_「自動予約登録」の並び替えを改良してみた(その4)の検索結果の行間が一定にならない点を修正.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130202_「自動予約登録」の並び替えを改良してみた(その4)の検索結果の行間が一定にならない点を修正.txt -------------------------------------------------------------------------------- /Document/Patch/130203_カスタム番組表設定のサービスをChSet5の順番にソートするボタン.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130203_カスタム番組表設定のサービスをChSet5の順番にソートするボタン.txt -------------------------------------------------------------------------------- /Document/Patch/130204_EPGTimerの検索機能を現時刻以降を対象にする(196氏版).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130204_EPGTimerの検索機能を現時刻以降を対象にする(196氏版).txt -------------------------------------------------------------------------------- /Document/Patch/130205_0.0(ウインドウの一番左上)の時、座標が記憶されず次回起動時にずれる点の対策.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130205_0.0(ウインドウの一番左上)の時、座標が記憶されず次回起動時にずれる点の対策.txt -------------------------------------------------------------------------------- /Document/Patch/130206_ボタンの幅などを変更する場合の修正箇所.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130206_ボタンの幅などを変更する場合の修正箇所.txt -------------------------------------------------------------------------------- /Document/Patch/130210_スリープ抑止拡張(120704に公表)_edcb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130210_スリープ抑止拡張(120704に公表)_edcb.patch -------------------------------------------------------------------------------- /Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化.txt -------------------------------------------------------------------------------- /Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_CqAWJGUB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_CqAWJGUB.txt -------------------------------------------------------------------------------- /Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_tLv3Mpzq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/130211_チャンネルスキャンファイル内の整列、自動予約登録編集時の処理を軽量化_tLv3Mpzq.txt -------------------------------------------------------------------------------- /Document/Patch/テレビ番組雑誌風の番組表の設定方法.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/テレビ番組雑誌風の番組表の設定方法.txt -------------------------------------------------------------------------------- /Document/Patch/ボタンの幅などを変更する場合の修正箇所02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Patch/ボタンの幅などを変更する場合の修正箇所02.txt -------------------------------------------------------------------------------- /Document/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Readme.txt -------------------------------------------------------------------------------- /Document/Readme_EpgDataCap_Bon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Readme_EpgDataCap_Bon.txt -------------------------------------------------------------------------------- /Document/Readme_EpgTimer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Readme_EpgTimer.txt -------------------------------------------------------------------------------- /Document/Readme_Mod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Readme_Mod.txt -------------------------------------------------------------------------------- /Document/Unix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Document/Unix/Makefile -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn.sln -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.cpp -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.def -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.h -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.ini -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.vcxproj -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn.vcxproj.filters -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/EdcbPlugIn_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/EdcbPlugIn_Readme.txt -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/Makefile -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/ch2chset.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/ch2chset.vbs -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/stdafx.cpp -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/stdafx.h -------------------------------------------------------------------------------- /EdcbPlugIn/EdcbPlugIn/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EdcbPlugIn/EdcbPlugIn/targetver.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3.sln -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/ARIB8CharDecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/ARIB8CharDecode.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/ARIB8CharDecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/ARIB8CharDecode.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/AribDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/AribDescriptor.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/AribDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/AribDescriptor.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/DecodeUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/DecodeUtil.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/DecodeUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/DecodeUtil.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/Descriptor/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/Descriptor/Readme.txt -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDBUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDBUtil.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDBUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDBUtil.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3.def -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3.rc -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3.vcxproj -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3.vcxproj.filters -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3Main.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3Main.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3_Unicode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3_Unicode.vcxproj -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/EpgDataCap3_Unicode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/EpgDataCap3_Unicode.vcxproj.filters -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/Makefile -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/Table/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/Table/Readme.txt -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/dllmain.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/resource.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/stdafx.cpp -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/stdafx.h -------------------------------------------------------------------------------- /EpgDataCap3/EpgDataCap3/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap3/EpgDataCap3/targetver.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon.sln -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/AppSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/AppSetting.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/AppSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/AppSetting.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.manifest -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.rc -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.vcxproj -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_Bon.vcxproj.filters -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDef.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDlg.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonDlg.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonMin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonMin.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/EpgDataCap_BonMin.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/Makefile -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgApp.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgApp.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgAppBtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgAppBtn.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgAppBtn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgAppBtn.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgBasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgBasic.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgBasic.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgEpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgEpg.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgEpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgEpg.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgNetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgNetwork.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgNetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgNetwork.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgService.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SetDlgService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SetDlgService.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SettingDlg.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/SettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/SettingDlg.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/TaskbarList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/TaskbarList.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/TaskbarList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/TaskbarList.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_blue_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_blue_rev2.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_gray_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_gray_rev2.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_green_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_green_rev2.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_vio_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/EpgDataCap_Bon_Vista_vio_rev2.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_epg.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_epg.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_epg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_epg.png -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_rec.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_rec.ico -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/res/overlay_rec.png -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/resource.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/stdafx.cpp -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/stdafx.h -------------------------------------------------------------------------------- /EpgDataCap_Bon/EpgDataCap_Bon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgDataCap_Bon/EpgDataCap_Bon/targetver.h -------------------------------------------------------------------------------- /EpgTimer/EpgTimer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer.sln -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AddManualAutoAddWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AddManualAutoAddWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AddManualAutoAddWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AddManualAutoAddWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AddReserveEpgWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AddReserveEpgWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AddReserveEpgWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AddReserveEpgWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/App.manifest -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/App.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/App.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AppVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AppVersion.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AutoAddListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AutoAddListView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AutoAddListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AutoAddListView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AutoAddView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AutoAddView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/AutoAddView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/AutoAddView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ChgReserveWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ChgReserveWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ChgReserveWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ChgReserveWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/BoxExchangeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/BoxExchangeEditor.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/ChSet5Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/ChSet5Class.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/ColorDefClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/ColorDefClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/CommonManagerClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/CommonManagerClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/CommonUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/CommonUtil.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/CopyObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/CopyObj.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/CtrlCmd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/CtrlCmd.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/CtrlCmdDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/CtrlCmdDef.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/DBManagerClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/DBManagerClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/DefineEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/DefineEnum.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/GridViewSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/GridViewSelector.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/GridViewSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/GridViewSorter.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/IEPGFileClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/IEPGFileClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/ItemFontCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/ItemFontCache.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/ListViewSelectedKeeper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/ListViewSelectedKeeper.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/NWConnectClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/NWConnectClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/PipeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/PipeServer.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/SettingClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/SettingClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/StatusManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/StatusManager.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/TVTestCtrlClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/TVTestCtrlClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/TaskTrayClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/TaskTrayClass.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Common/ViewUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Common/ViewUtil.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ConnectWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ConnectWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ConnectWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ConnectWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/AutoAddDataEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/AutoAddDataEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/CtrlCmdDefEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/CtrlCmdDefEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/EpgContentDataEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/EpgContentDataEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/EpgEventInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/EpgEventInfoEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/RecFileInfoEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/RecFileInfoEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/RecSettingDataEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/RecSettingDataEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/CtrlCmdDefEx/ReserveDataEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/CtrlCmdDefEx/ReserveDataEx.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/CustomEpgTabInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/CustomEpgTabInfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/DataListItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/DataListItemBase.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/DateTime28.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/DateTime28.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/EpgAutoDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/EpgAutoDataItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/GridViewSorterItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/GridViewSorterItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/IEPGStationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/IEPGStationInfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/InfoSearchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/InfoSearchItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/InfoSearchSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/InfoSearchSetting.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/KernelObjectSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/KernelObjectSecurity.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ListColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ListColumnInfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ListViewHorizontalMouseScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ListViewHorizontalMouseScroller.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ManualAutoAddDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ManualAutoAddDataItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/NWPresetItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/NWPresetItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/NotifySrvInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/NotifySrvInfoItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/PicUpTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/PicUpTitle.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/PresetItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/PresetItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ProgramViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ProgramViewItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/RadioBtnSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/RadioBtnSelect.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/RecInfoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/RecInfoItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/RecSettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/RecSettingItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ReserveItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ReserveItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ReserveViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ReserveViewItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/SearchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/SearchItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/SelectableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/SelectableItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/SerializableDictionary.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ServiceViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ServiceViewItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/StringItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/StringItem.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/TextBoxWithReadOnlyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/TextBoxWithReadOnlyEffect.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/TunerSelectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/TunerSelectInfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/ValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/ValueConverter.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/DefineClass/WindowSettingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/DefineClass/WindowSettingData.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgDataView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgDataView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgDataView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgDataView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgTimer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgTimer.csproj -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/DateView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/DateView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/DateView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/DateView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgListMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgListMainView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgListMainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgListMainView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgMainView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgMainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgMainView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgMainViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgMainViewBase.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgViewBase.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgViewPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgViewPanel.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgWeekMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgWeekMainView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/EpgWeekMainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/EpgWeekMainView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/ProgramView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/ProgramView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/ProgramView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/ProgramView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/ServiceView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/ServiceView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/ServiceView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/ServiceView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeJumpView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeJumpView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeJumpView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeJumpView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeMoveView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeMoveView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeMoveView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeMoveView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/TimeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/TimeView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/WeekDayView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/WeekDayView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/EpgView/WeekDayView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/EpgView/WeekDayView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/InfoSearchWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/InfoSearchWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/InfoSearchWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/InfoSearchWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/MainWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CmdExe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CmdExe.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CmdExeAutoAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CmdExeAutoAdd.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CmdExeRecinfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CmdExeRecinfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CmdExeReserve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CmdExeReserve.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CmdHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CmdHistory.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/CtxmData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/CtxmData.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/EpgCmdsDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/EpgCmdsDef.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/MenuBinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/MenuBinds.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/MenuCmds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/MenuCmds.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/MenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/MenuManager.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/MenuSettingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/MenuSettingData.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/MenuUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/MenuUtil.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/SetContextMenuWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/SetContextMenuWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Menu/SetContextMenuWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Menu/SetContextMenuWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/NotifyLogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/NotifyLogWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/NotifyLogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/NotifyLogWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/RecInfoDescWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/RecInfoDescWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/RecInfoDescWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/RecInfoDescWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/RecInfoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/RecInfoView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/RecInfoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/RecInfoView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ReserveView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ReserveView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/ReserveView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/ReserveView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/109_AllAnnotations_Error_16x16_72.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/109_AllAnnotations_Error_16x16_72.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/109_AllAnnotations_Warning_16x16_72.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/109_AllAnnotations_Warning_16x16_72.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_blue_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_blue_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_gray_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_gray_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_green_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_green_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_orange_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_orange_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_red_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_red_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_yellow_rev2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/EpgTimer_Bon_Vista_yellow_rev2.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconBlue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconBlue.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconGray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconGray.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconGreen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconGreen.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconOrange.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconOrange.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconRed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconRed.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/TaskIconYellow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/TaskIconYellow.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/drag.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/drag.cur -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/key.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/key.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Resources/key_no.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Resources/key_no.ico -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/SearchWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/SearchWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/SearchWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/SearchWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/ColorSetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/ColorSetWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/ColorSetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/ColorSetWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/EpgDataViewSettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/EpgDataViewSettingWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/EpgDataViewSettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/EpgDataViewSettingWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetAppView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetAppView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetAppView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetAppView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetBasicView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetBasicView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetBasicView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetBasicView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetEpgView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetEpgView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetEpgView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetEpgView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetOtherAppView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetOtherAppView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetOtherAppView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetOtherAppView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetPicUpCustomWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetPicUpCustomWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetPicUpCustomWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetPicUpCustomWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetPresetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetPresetWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SetPresetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SetPresetWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SettingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SettingWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Setting/SettingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Setting/SettingWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Style/DataListViewStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Style/DataListViewStyles.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Style/ReserveListViewStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Style/ReserveListViewStyles.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/Style/UiLayoutStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/Style/UiLayoutStyles.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveMainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveMainView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveMainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveMainView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveNameView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveNameView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveNameView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveNameView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReservePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReservePanel.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/TunerReserveViewCtrl/TunerReserveView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/AddPresetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/AddPresetWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/AddPresetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/AddPresetWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/AttendantWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/AttendantWindow.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/BlackoutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/BlackoutWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/BlackoutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/BlackoutWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/DataViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/DataViewBase.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/ListBoxDragMoverView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/ListBoxDragMoverView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/ListBoxDragMoverView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/ListBoxDragMoverView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/ListSearchView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/ListSearchView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/ListSearchView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/ListSearchView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/ListViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/ListViewController.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/PanelViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/PanelViewBase.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/PresetEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/PresetEditor.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/PresetEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/PresetEditor.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/RecFolderWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/RecFolderWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/RecFolderWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/RecFolderWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/RecSettingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/RecSettingView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/RecSettingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/RecSettingView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/SearchKeyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/SearchKeyView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/SearchKeyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/SearchKeyView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/StatusView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/StatusView.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/StatusView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/StatusView.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/SuspendCheckWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/SuspendCheckWindow.xaml -------------------------------------------------------------------------------- /EpgTimer/EpgTimer/UserCtrlView/SuspendCheckWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/EpgTimer/UserCtrlView/SuspendCheckWindow.xaml.cs -------------------------------------------------------------------------------- /EpgTimer/x64build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/x64build.bat -------------------------------------------------------------------------------- /EpgTimer/x86build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimer/x86build.bat -------------------------------------------------------------------------------- /EpgTimerAdminProxy/EpgTimerAdminProxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerAdminProxy/EpgTimerAdminProxy.sln -------------------------------------------------------------------------------- /EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.cpp -------------------------------------------------------------------------------- /EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.vcxproj -------------------------------------------------------------------------------- /EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerAdminProxy/EpgTimerAdminProxy/EpgTimerAdminProxy.vcxproj.filters -------------------------------------------------------------------------------- /EpgTimerAdminProxy/EpgTimerAdminProxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerAdminProxy/EpgTimerAdminProxy/Makefile -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn.sln -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.cpp -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.def -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.h -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.rc -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.vcxproj -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/EpgTimerPlugIn.vcxproj.filters -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/Makefile -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/StreamCtrlDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/StreamCtrlDlg.cpp -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/StreamCtrlDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/StreamCtrlDlg.h -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/resource.h -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/stdafx.cpp -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/stdafx.h -------------------------------------------------------------------------------- /EpgTimerPlugIn/EpgTimerPlugIn/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerPlugIn/EpgTimerPlugIn/targetver.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv.sln -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/BatManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/BatManager.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/BatManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/BatManager.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgDBManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgDBManager.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgDBManager.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.manifest -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.rc -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.vcxproj -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrv.vcxproj.filters -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrvMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrvMain.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrvMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrvMain.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrvSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrvSetting.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerSrvSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerSrvSetting.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerTask.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/EpgTimerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/EpgTimerTask.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/HttpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/HttpServer.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/HttpServer.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/Makefile -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/NotifyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/NotifyManager.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/NotifyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/NotifyManager.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/RegExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/RegExp.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/RegExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/RegExp.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/ReserveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/ReserveManager.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/ReserveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/ReserveManager.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/SyoboiCalUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/SyoboiCalUtil.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/SyoboiCalUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/SyoboiCalUtil.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TaskIconBlue.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TaskIconBlue.ico -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TaskIconGray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TaskIconGray.ico -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TaskIconGreen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TaskIconGreen.ico -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TaskIconRed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TaskIconRed.ico -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TaskIconSemi.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TaskIconSemi.ico -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TunerBankCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TunerBankCtrl.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/TunerBankCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/TunerBankCtrl.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/UpnpSsdpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/UpnpSsdpServer.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/UpnpSsdpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/UpnpSsdpServer.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/civetweb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/civetweb.c -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/civetweb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/civetweb.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/civetweb_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/civetweb_lua.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-i686-gcc15.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-i686-gcc15.a -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-i686.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-i686.a -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-x86_64-gcc15.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-x86_64-gcc15.a -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-x86_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/liblua52-mingw-lazy-x86_64.a -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua/lauxlib.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua/lua.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua/lua.hpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua/luaconf.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua/lualib.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua52-x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua52-x64.lib -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/lua52.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/lua52.lib -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/match.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/match.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/md5.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/md5.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/mod_lua.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/mod_lua.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/mod_lua_shared.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/mod_lua_shared.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/openssl_dl.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/openssl_dl.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/resource.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/response.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/response.inl -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/stdafx.cpp -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/stdafx.h -------------------------------------------------------------------------------- /EpgTimerSrv/EpgTimerSrv/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/EpgTimerSrv/EpgTimerSrv/targetver.h -------------------------------------------------------------------------------- /LICENSE-Civetweb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/LICENSE-Civetweb.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/README.md -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro.sln -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/ConvertMacro2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/ConvertMacro2.cpp -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/ConvertMacro2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/ConvertMacro2.h -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/Makefile -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/RecName_Macro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/RecName_Macro.cpp -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/RecName_Macro.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/RecName_Macro.rc -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/RecName_Macro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/RecName_Macro.vcxproj -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/RecName_Macro.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/RecName_Macro.vcxproj.filters -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/RecName_PlugIn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/RecName_PlugIn.def -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/SettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/SettingDlg.cpp -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/SettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/SettingDlg.h -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/dllmain.cpp -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/embed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/embed.txt -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/resource.h -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/stdafx.cpp -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/stdafx.h -------------------------------------------------------------------------------- /RecName_Macro/RecName_Macro/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/RecName_Macro/RecName_Macro/targetver.h -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP.sln -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/Makefile -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCP.cpp -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCP.def -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCP.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCP.rc -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCP.vcxproj -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCP.vcxproj.filters -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCPMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCPMain.cpp -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/SendTSTCPMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/SendTSTCPMain.h -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/dllmain.cpp -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/resource.h -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/stdafx.cpp -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/stdafx.h -------------------------------------------------------------------------------- /SendTSTCP/SendTSTCP/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/SendTSTCP/SendTSTCP/targetver.h -------------------------------------------------------------------------------- /Tools/IBonCast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/IBonCast.sln -------------------------------------------------------------------------------- /Tools/IBonCast/IBonCast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/IBonCast/IBonCast.cpp -------------------------------------------------------------------------------- /Tools/IBonCast/IBonCast.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Cast 3 | -------------------------------------------------------------------------------- /Tools/IBonCast/IBonCast.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/IBonCast/IBonCast.vcxproj -------------------------------------------------------------------------------- /Tools/asyncbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/asyncbuf.c -------------------------------------------------------------------------------- /Tools/asyncbuf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/asyncbuf.vcxproj -------------------------------------------------------------------------------- /Tools/misc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/misc.sln -------------------------------------------------------------------------------- /Tools/relayread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/relayread.c -------------------------------------------------------------------------------- /Tools/relayread.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/relayread.vcxproj -------------------------------------------------------------------------------- /Tools/tsidmove.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove.sln -------------------------------------------------------------------------------- /Tools/tsidmove/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Tools/tsidmove/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove/stdafx.h -------------------------------------------------------------------------------- /Tools/tsidmove/tsidmove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove/tsidmove.cpp -------------------------------------------------------------------------------- /Tools/tsidmove/tsidmove.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove/tsidmove.vcxproj -------------------------------------------------------------------------------- /Tools/tsidmove/tsidmove.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove/tsidmove.vcxproj.filters -------------------------------------------------------------------------------- /Tools/tsidmove_helper.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tsidmove_helper.bat -------------------------------------------------------------------------------- /Tools/tspgtxt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tspgtxt.sln -------------------------------------------------------------------------------- /Tools/tspgtxt/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /Tools/tspgtxt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tspgtxt/stdafx.h -------------------------------------------------------------------------------- /Tools/tspgtxt/tspgtxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tspgtxt/tspgtxt.cpp -------------------------------------------------------------------------------- /Tools/tspgtxt/tspgtxt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tspgtxt/tspgtxt.vcxproj -------------------------------------------------------------------------------- /Tools/tspgtxt/tspgtxt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Tools/tspgtxt/tspgtxt.vcxproj.filters -------------------------------------------------------------------------------- /Write_Default/Write_Default.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default.sln -------------------------------------------------------------------------------- /Write_Default/Write_Default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Makefile -------------------------------------------------------------------------------- /Write_Default/Write_Default/SettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/SettingDlg.cpp -------------------------------------------------------------------------------- /Write_Default/Write_Default/SettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/SettingDlg.h -------------------------------------------------------------------------------- /Write_Default/Write_Default/WriteMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/WriteMain.cpp -------------------------------------------------------------------------------- /Write_Default/Write_Default/WriteMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/WriteMain.h -------------------------------------------------------------------------------- /Write_Default/Write_Default/Write_Default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Write_Default.cpp -------------------------------------------------------------------------------- /Write_Default/Write_Default/Write_Default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Write_Default.rc -------------------------------------------------------------------------------- /Write_Default/Write_Default/Write_Default.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Write_Default.vcxproj -------------------------------------------------------------------------------- /Write_Default/Write_Default/Write_Default.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Write_Default.vcxproj.filters -------------------------------------------------------------------------------- /Write_Default/Write_Default/Write_PlugIn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/Write_PlugIn.def -------------------------------------------------------------------------------- /Write_Default/Write_Default/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/dllmain.cpp -------------------------------------------------------------------------------- /Write_Default/Write_Default/embed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/embed.txt -------------------------------------------------------------------------------- /Write_Default/Write_Default/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/resource.h -------------------------------------------------------------------------------- /Write_Default/Write_Default/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/stdafx.cpp -------------------------------------------------------------------------------- /Write_Default/Write_Default/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/stdafx.h -------------------------------------------------------------------------------- /Write_Default/Write_Default/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_Default/Write_Default/targetver.h -------------------------------------------------------------------------------- /Write_OneService/Write_OneService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService.sln -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/Makefile -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/WriteMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/WriteMain.cpp -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/WriteMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/WriteMain.h -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/Write_OneService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/Write_OneService.cpp -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/Write_OneService.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/Write_OneService.vcxproj -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/Write_OneService.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/Write_OneService.vcxproj.filters -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/Write_PlugIn.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/Write_PlugIn.def -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/dllmain.cpp -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/stdafx.cpp -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/stdafx.h -------------------------------------------------------------------------------- /Write_OneService/Write_OneService/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/Write_OneService/Write_OneService/targetver.h -------------------------------------------------------------------------------- /ini/Bitrate.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/Bitrate.ini -------------------------------------------------------------------------------- /ini/BonCtrl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/BonCtrl.ini -------------------------------------------------------------------------------- /ini/ContentTypeText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/ContentTypeText.txt -------------------------------------------------------------------------------- /ini/EpgTimer.exe.rd.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/EpgTimer.exe.rd.xaml -------------------------------------------------------------------------------- /ini/EpgTimerSrv_Install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/EpgTimerSrv_Install.bat -------------------------------------------------------------------------------- /ini/EpgTimerSrv_Remove.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/EpgTimerSrv_Remove.bat -------------------------------------------------------------------------------- /ini/EpgTimerSrv_Setting.bat: -------------------------------------------------------------------------------- 1 | start "" /b "%~dp0EpgTimerSrv.exe" /setting 2 | -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cds/event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cds/event.lua -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cds/sdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cds/sdd.xml -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cds/soap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cds/soap.lua -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cms/event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cms/event.lua -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cms/sdd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cms/sdd.xml -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/cms/soap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/cms/soap.lua -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/ddd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/ddd.xml -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/uuid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/uuid.lua -------------------------------------------------------------------------------- /ini/HttpPublic/dlna/dms/uuid4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/dlna/dms/uuid4.lua -------------------------------------------------------------------------------- /ini/HttpPublic/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/favicon.ico -------------------------------------------------------------------------------- /ini/HttpPublic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/index.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/Kosugi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/Kosugi-Regular.woff2 -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/KosugiMaru-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/KosugiMaru-Bold.woff2 -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/KosugiMaru-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/KosugiMaru-Regular.woff2 -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/about.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/aribb24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/aribb24.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/aribb24.js.v1.11.5.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/aribb24.js.v1.11.5.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/autoaddepg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/autoaddepg.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/autoaddepginfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/autoaddepginfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/autoaddmanual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/autoaddmanual.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/autoaddmanualinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/autoaddmanualinfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ccinfo_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ccinfo_script.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/comment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/comment.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/danmaku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/danmaku.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/danmaku.js.6c13364.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/danmaku.js.6c13364.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/default.css -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/epg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/epg.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/epginfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/epginfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/epglist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/epglist.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/epgpastinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/epgpastinfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/grabber.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/grabber.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/hls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/hls.min.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/hls.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/hls.min.js.map -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/hls.min.js.v1.5.20.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/hls.min.js.v1.5.20.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/index.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/jkconst.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/jkconst.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/jklog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/jklog.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/library.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/loading.png -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/logo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/logo.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/mp4init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/mp4init.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/mux_to_ts.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/mux_to_ts.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/nvram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/nvram.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/pgtxt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/pgtxt.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/process.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/recinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/recinfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/recinfodesc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/recinfodesc.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/reserve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/reserve.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/reserveinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/reserveinfo.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/script.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/segment.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/segment.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_app.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_app_network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_app_network.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_basic.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_bon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_bon.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_del_chk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_del_chk.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_del_ext.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_del_ext.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_epg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_epg.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_epg_service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_epg_service.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_epg_time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_epg_time.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_no_suspend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_no_suspend.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_other.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_plugin.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_rec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_rec.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_rec_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_rec_folder.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_rec_preset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_rec_preset.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_rec_preset_folder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_rec_preset_folder.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_reserve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_reserve.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/setting_view_bon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/setting_view_bon.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/showlog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/showlog.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/speedtest.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/speedtest.htm -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/speedtest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/speedtest.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/speedtest.js.v5.2.5.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/speedtest.js.v5.2.5.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/speedtest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/speedtest.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/speedtest_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/speedtest_worker.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/storage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/storage.html -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/thumb_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/thumb_script.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live-misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live-misc.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live-misc.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live-misc.wasm -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live-misc.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live-misc.wasm.map -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live.js.4cad6c7.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live.js.4cad6c7.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live.wasm -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/ts-live.wasm.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/ts-live.wasm.map -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/util.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/view.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/view.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/vtt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/vtt.lua -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/web_bml_play_ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/web_bml_play_ts.js -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/web_bml_play_ts.js.7348e3b.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/web_bml_play_ts.js.7348e3b.LICENSE.txt -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/web_bml_play_ts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/web_bml_play_ts.js.map -------------------------------------------------------------------------------- /ini/HttpPublic/legacy/xcode.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/HttpPublic/legacy/xcode.lua -------------------------------------------------------------------------------- /ini/PostBatExamples/EdcbSchUploader.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/EdcbSchUploader.ps1 -------------------------------------------------------------------------------- /ini/PostBatExamples/EdcbSchUploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/EdcbSchUploader.py -------------------------------------------------------------------------------- /ini/PostBatExamples/PostNotify.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/PostNotify.bat -------------------------------------------------------------------------------- /ini/PostBatExamples/PostNotify.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/PostNotify.lua -------------------------------------------------------------------------------- /ini/PostBatExamples/PostNotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/PostNotify.sh -------------------------------------------------------------------------------- /ini/PostBatExamples/PostRecEnd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/ini/PostBatExamples/PostRecEnd.lua -------------------------------------------------------------------------------- /versionhash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/versionhash.sh -------------------------------------------------------------------------------- /versionhashclean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/versionhashclean.bat -------------------------------------------------------------------------------- /versionhashgen.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkntrec/EDCB/HEAD/versionhashgen.bat --------------------------------------------------------------------------------