├── .gitignore ├── readme.md ├── readme_de.md ├── readme_pl.md ├── readme_tr-TR.md └── source ├── .gitignore ├── ChanSort.Api ├── ChanSort.Api.csproj ├── ChanSort.Api.csproj.DotSettings ├── Controller │ ├── CsvRefListSerializer.cs │ ├── Editor.cs │ ├── ISerializerPlugin.cs │ ├── RefListSerializerPlugin.cs │ ├── SerializerBase.cs │ └── TxtRefListSerializer.cs ├── LoaderException.cs ├── Lookup.csv ├── Model │ ├── ChannelInfo.cs │ ├── ChannelList.cs │ ├── DataRoot.cs │ ├── Enums.cs │ ├── LnbConfig.cs │ ├── LookupData.cs │ ├── NetworkInfo.cs │ ├── Satellite.cs │ └── Transponder.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.cs.resx ├── Resources.de.Designer.cs ├── Resources.de.resx ├── Resources.es.resx ├── Resources.hu.resx ├── Resources.it.resx ├── Resources.pl.resx ├── Resources.pt.resx ├── Resources.resx ├── Resources.ro.resx ├── Resources.ru.resx ├── Resources.tr.resx ├── Utils │ ├── BrowserHelper.cs │ ├── ChannelMappingBase.cs │ ├── Crc16.cs │ ├── Crc32.cs │ ├── CsvFile.cs │ ├── DataMapping.cs │ ├── DelegateComparer.cs │ ├── DvbStringDecoder.cs │ ├── FileAssociation.cs │ ├── IniFile.cs │ ├── ListDictionary.cs │ ├── MappingPool.cs │ └── Tools.cs └── View │ └── View.cs ├── ChanSort.Loader.Amdb ├── AmdbPlugin.cs ├── AmdbSerializer.cs └── ChanSort.Loader.Amdb.csproj ├── ChanSort.Loader.Android ├── AldenSerializer.cs ├── AndroidPlugin.cs ├── ChanSort.Loader.Android.csproj └── Properties │ └── AssemblyInfo.cs ├── ChanSort.Loader.CmdbBin ├── ChanSort.Loader.CmdbBin.csproj ├── ChanSort.Loader.CmdbBin.ini ├── CmdbFileSerializer.cs ├── CmdbPlugin.cs ├── DvbsDataLayout.cs └── Properties │ └── AssemblyInfo.cs ├── ChanSort.Loader.DBM ├── ChanSort.Loader.DBM.csproj ├── ChanSort.Loader.DBM.ini ├── DbmPlugin.cs └── DbmSerializer.cs ├── ChanSort.Loader.Enigma2 ├── ChanSort.Loader.Enigma2.csproj ├── Channel.cs ├── Enigma2Plugin.cs ├── Properties │ └── AssemblyInfo.cs └── Serializer.cs ├── ChanSort.Loader.Grundig ├── ChanSort.Loader.Grundig.csproj ├── Channel.cs ├── GrundigPlugin.cs ├── Properties │ └── AssemblyInfo.cs └── Serializer.cs ├── ChanSort.Loader.Hisense ├── ChanSort.Loader.Hisense.csproj ├── ChanSort.Loader.Hisense.ini ├── ChannelDb │ ├── Channel.cs │ └── ChannelDbSerializer.cs ├── HisBin │ ├── HisDvbBinSerializer.cs │ └── HisSvlBinSerializer.cs ├── HisensePlugin.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.cs.resx ├── Resources.de.resx ├── Resources.es.resx ├── Resources.hu.resx ├── Resources.it.resx ├── Resources.pl.resx ├── Resources.pt.resx ├── Resources.resx ├── Resources.ro.resx ├── Resources.ru.resx ├── Resources.tr.resx └── ServicelistDb │ ├── DbSchema.cs │ └── ServicelistDbSerializer.cs ├── ChanSort.Loader.LG.UI ├── ChanSort.Loader.LG.UI.csproj ├── LgUserInterfaceFactory.cs ├── PresetProgramNrDialog.Designer.cs ├── PresetProgramNrDialog.cs ├── PresetProgramNrDialog.cs.resx ├── PresetProgramNrDialog.de.resx ├── PresetProgramNrDialog.es.resx ├── PresetProgramNrDialog.hu.resx ├── PresetProgramNrDialog.it.resx ├── PresetProgramNrDialog.pl.resx ├── PresetProgramNrDialog.pt.resx ├── PresetProgramNrDialog.resx ├── PresetProgramNrDialog.ro.resx ├── PresetProgramNrDialog.ru.resx ├── PresetProgramNrDialog.tr.resx ├── Properties │ └── AssemblyInfo.cs ├── TvSettingsForm.Designer.cs ├── TvSettingsForm.cs ├── TvSettingsForm.cs.resx ├── TvSettingsForm.de.resx ├── TvSettingsForm.es.resx ├── TvSettingsForm.hu.resx ├── TvSettingsForm.it.resx ├── TvSettingsForm.pl.resx ├── TvSettingsForm.pt.resx ├── TvSettingsForm.resx ├── TvSettingsForm.ro.resx ├── TvSettingsForm.ru.resx └── TvSettingsForm.tr.resx ├── ChanSort.Loader.LG ├── Binary │ ├── AnalogChannel.cs │ ├── DtvChannel.cs │ ├── DvbsDataLayout.cs │ ├── FirmwareData.cs │ ├── LnbConfig.cs │ ├── SatChannel.cs │ ├── SatChannelListHeader.cs │ ├── SatTransponder.cs │ ├── TllChannelBase.cs │ ├── TllFileSerializer.cs │ └── TllFileSerializer.sql.cs ├── ChanSort.Loader.LG.csproj ├── ChanSort.Loader.LG.ini ├── GlobalClone │ ├── GcChannel.cs │ ├── GcJsonSerializer.cs │ └── GcXmlSerializer.cs ├── ILgUserInterfaceFactory.cs ├── LgPlugin.cs ├── Properties │ └── AssemblyInfo.cs ├── Resource.Designer.cs ├── Resource.cs.resx ├── Resource.de.resx ├── Resource.es.resx ├── Resource.hu.resx ├── Resource.it.resx ├── Resource.pl.resx ├── Resource.pt.resx ├── Resource.resx ├── Resource.ro.resx ├── Resource.ru.resx └── Resource.tr.resx ├── ChanSort.Loader.Loewe ├── ChanSort.Loader.Loewe.csproj ├── Channel.cs ├── LoewePlugin.cs ├── Properties │ └── AssemblyInfo.cs └── Serializer.cs ├── ChanSort.Loader.M3u ├── ChanSort.Loader.M3u.csproj ├── Channel.cs ├── M3uPlugin.cs ├── Properties │ └── AssemblyInfo.cs └── Serializer.cs ├── ChanSort.Loader.MediaTek ├── ChanSort.Loader.MediaTek.csproj ├── Channel.cs ├── MediatekPlugin.cs ├── Properties │ └── AssemblyInfo.cs └── Serializer.cs ├── ChanSort.Loader.Medion ├── ChanSort.Loader.Medion.csproj ├── MedionPlugin.cs └── MedionSerializer.cs ├── ChanSort.Loader.Panasonic ├── ChanSort.Loader.Panasonic.csproj ├── ChanSort.Loader.Panasonic.ini ├── DbChannel.cs ├── IdtvChannelSerializer.cs ├── PanasonicPlugin.cs ├── Properties │ └── AssemblyInfo.cs ├── SvlSerializer.cs └── XmlSerializer.cs ├── ChanSort.Loader.Philips ├── BinarySerializer.cs ├── ChanLstBin.cs ├── ChanSort.Loader.Philips.csproj ├── ChanSort.Loader.Philips.ini ├── Channel.cs ├── CustomXmlWriter.cs ├── DbSerializer.cs ├── DllClient.cs ├── PhilipsPlugin.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.cs.resx ├── Resources.de.resx ├── Resources.es.resx ├── Resources.hu.resx ├── Resources.it.resx ├── Resources.pl.resx ├── Resources.pt.resx ├── Resources.resx ├── Resources.ro.resx ├── Resources.ru.resx ├── Resources.tr.resx └── XmlSerializer.cs ├── ChanSort.Loader.RefList ├── ChanSort.Loader.RefList.csproj └── Properties │ └── AssemblyInfo.cs ├── ChanSort.Loader.Samsung ├── ChanSort.Loader.Samsung.csproj ├── ChanSort.Loader.Samsung.ini ├── Properties │ └── AssemblyInfo.cs ├── SamsungPlugin.cs ├── Scm │ ├── AnalogChannel.cs │ ├── DigitalChannel.cs │ ├── ModelConstants.cs │ ├── SatChannel.cs │ ├── SatelliteMapping.cs │ ├── ScmChannelBase.cs │ └── ScmSerializer.cs └── Zip │ ├── DbChannel.cs │ ├── DbSerializer.cs │ └── Utf16InsideUtf8EnvelopeEncoding.cs ├── ChanSort.Loader.SatcoDX ├── ChanSort.Loader.SatcoDX.csproj ├── Channel.cs ├── Properties │ └── AssemblyInfo.cs ├── SatcoDxPlugin.cs └── Serializer.cs ├── ChanSort.Loader.Sharp ├── ChanSort.Loader.Sharp.csproj ├── Properties │ └── AssemblyInfo.cs ├── SharpPlugin.cs └── SharpSerializer.cs ├── ChanSort.Loader.Sony ├── ChanSort.Loader.Sony.csproj ├── ChanSort.Loader.Sony.ini ├── Channel.cs ├── CustomXmlWriter.cs ├── Properties │ └── AssemblyInfo.cs ├── Serializer.cs └── SonyPlugin.cs ├── ChanSort.Loader.TCL ├── ChanSort.Loader.TCL.csproj ├── DtvDataSerializer.cs ├── GnuTar.cs └── TclPlugin.cs ├── ChanSort.Loader.TechniSat ├── ChanSort.Loader.TechniSat.csproj ├── Properties │ └── AssemblyInfo.cs ├── TechniSatCrypt.cs ├── TechniSatPlugin.cs └── TechniSatSerializer.cs ├── ChanSort.Loader.Toshiba ├── ChanSort.Loader.Toshiba.csproj ├── ChmgtDbSerializer.cs ├── DbChannel.cs ├── Properties │ └── AssemblyInfo.cs ├── SettingsDbSerializer.cs └── ToshibaPlugin.cs ├── ChanSort.Loader.Unsupported ├── ChanSort.Loader.Unsupported.csproj ├── Properties │ └── AssemblyInfo.cs └── UnsupportedPlugin.cs ├── ChanSort.Loader.VDR ├── ChanSort.Loader.VDR.csproj ├── Channels.cs ├── Properties │ └── AssemblyInfo.cs ├── Serializer.cs └── VdrPlugin.cs ├── ChanSort.Loader.VisionEdge4K ├── ChanSort.Loader.VisionEdge4K.csproj ├── VisionEdge4KDbSerializer.cs └── VisionEdge4KPlugin.cs ├── ChanSort.sln ├── ChanSort ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.cs.resx ├── AboutForm.de.resx ├── AboutForm.es.resx ├── AboutForm.hu.resx ├── AboutForm.it.resx ├── AboutForm.pl.resx ├── AboutForm.pt.resx ├── AboutForm.resx ├── AboutForm.ro.resx ├── AboutForm.ru.resx ├── AboutForm.tr.resx ├── ActionBox.Designer.cs ├── ActionBox.cs ├── ActionBox.cs.resx ├── ActionBox.de.resx ├── ActionBox.es.resx ├── ActionBox.hu.resx ├── ActionBox.it.resx ├── ActionBox.pl.resx ├── ActionBox.pt.resx ├── ActionBox.resx ├── ActionBox.ro.resx ├── ActionBox.ru.resx ├── ActionBox.tr.resx ├── ActionImages.resx ├── BrowserHelper.cs ├── ChanSort.csproj ├── ChanSort.csproj.DotSettings ├── ChanSort.ico ├── CharsetForm.Designer.cs ├── CharsetForm.cs ├── CharsetForm.cs.resx ├── CharsetForm.de.resx ├── CharsetForm.es.resx ├── CharsetForm.hu.resx ├── CharsetForm.it.resx ├── CharsetForm.pl.resx ├── CharsetForm.pt.resx ├── CharsetForm.resx ├── CharsetForm.ro.resx ├── CharsetForm.ru.resx ├── CharsetForm.tr.resx ├── Config.cs ├── GlobalImageCollection.cs ├── GlobalImageCollection.resx ├── InfoBox.Designer.cs ├── InfoBox.cs ├── InfoBox.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.cs.resx ├── MainForm.de.resx ├── MainForm.es.resx ├── MainForm.hu.resx ├── MainForm.it.resx ├── MainForm.pl.resx ├── MainForm.pt.resx ├── MainForm.resx ├── MainForm.ro.resx ├── MainForm.ru.resx ├── MainForm.tr.resx ├── Printing │ ├── ChannelListReport.Designer.cs │ ├── ChannelListReport.cs │ ├── ChannelListReport.resx │ ├── ReportOptionsDialog.Designer.cs │ ├── ReportOptionsDialog.cs │ ├── ReportOptionsDialog.cs.resx │ ├── ReportOptionsDialog.de.resx │ ├── ReportOptionsDialog.es.resx │ ├── ReportOptionsDialog.hu.resx │ ├── ReportOptionsDialog.it.resx │ ├── ReportOptionsDialog.pl.resx │ ├── ReportOptionsDialog.pt.resx │ ├── ReportOptionsDialog.resx │ ├── ReportOptionsDialog.ro.resx │ ├── ReportOptionsDialog.ru.resx │ ├── ReportOptionsDialog.tr.resx │ └── ReportStyles.repss ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── ChanSort.Api.ChannelList.datasource │ │ ├── ChannelInfo.datasource │ │ └── System.Text.EncodingInfo.datasource │ ├── Resources.Designer.cs │ ├── Resources.cs.resx │ ├── Resources.de.Designer.cs │ ├── Resources.de.resx │ ├── Resources.es.resx │ ├── Resources.hu.resx │ ├── Resources.it.resx │ ├── Resources.pl.resx │ ├── Resources.pt.Designer.cs │ ├── Resources.pt.resx │ ├── Resources.resx │ ├── Resources.ro.resx │ ├── Resources.ru.resx │ ├── Resources.tr.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── licenses.licx ├── ReferenceListForm.Designer.cs ├── ReferenceListForm.cs ├── ReferenceListForm.cs.resx ├── ReferenceListForm.de.resx ├── ReferenceListForm.es.resx ├── ReferenceListForm.hu.resx ├── ReferenceListForm.it.resx ├── ReferenceListForm.pl.resx ├── ReferenceListForm.pt.resx ├── ReferenceListForm.resx ├── ReferenceListForm.ro.resx ├── ReferenceListForm.ru.resx ├── ReferenceListForm.tr.resx ├── ReferenceLists │ ├── BE_Telenet_CI+_Module.txt │ ├── at_astra192E_orf-freehd.txt │ ├── at_liwest.txt │ ├── ch_astra192E_hotbird130E_freehd.txt │ ├── ch_astra192E_hotbird130E_hdplus.txt │ ├── de_astra192E_hisense_freehd.txt │ ├── de_astra192E_hisense_hdplus.txt │ ├── de_astra192E_manuell_freehd.txt │ ├── de_unitymedia_nrw.txt │ ├── de_vodafone_KabelTV_Berlin.txt │ ├── gb_astra282E_freesat.txt │ ├── gb_astra282E_freesat_EastAnglia_StartAt1.txt │ ├── gb_astra282E_sky.txt │ ├── it_hotbird130E_tivusat_EasyHD_&_FTA.txt │ ├── pt_meo.txt │ └── ru_eutelsat36E_tricolor.txt ├── Resources │ ├── Donate.bmp │ ├── btn_donateCC_LG.png │ ├── btn_donateCC_LG_de.png │ └── paypal-button.txt ├── Settings.cs ├── SkinPickerForm.Designer.cs ├── SkinPickerForm.cs ├── SkinPickerForm.cs.resx ├── SkinPickerForm.de.resx ├── SkinPickerForm.es.resx ├── SkinPickerForm.hu.resx ├── SkinPickerForm.it.resx ├── SkinPickerForm.pl.resx ├── SkinPickerForm.pt.resx ├── SkinPickerForm.resx ├── SkinPickerForm.ro.resx ├── SkinPickerForm.ru.resx ├── SkinPickerForm.tr.resx ├── TextInputForm.Designer.cs ├── TextInputForm.cs ├── TextInputForm.resx ├── UpdateCheck.cs ├── WaitForm1.Designer.cs ├── WaitForm1.cs ├── WaitForm1.cs.resx ├── WaitForm1.de.resx ├── WaitForm1.es.resx ├── WaitForm1.hu.resx ├── WaitForm1.it.resx ├── WaitForm1.pl.resx ├── WaitForm1.pt.resx ├── WaitForm1.resx ├── WaitForm1.ro.resx ├── WaitForm1.ru.resx ├── WaitForm1.tr.resx ├── Win32.cs ├── XGrid │ ├── XGridControl.cs │ ├── XGridView.LayoutPersister.cs │ └── XGridView.cs ├── app.config ├── app.ico ├── app.manifest └── icons │ ├── flag_austria.png │ ├── flag_germany.png │ └── flag_great_britain.png ├── ChanSortProject.props ├── DLL ├── Newtonsoft.Json.dll └── nunit.framework.dll ├── Images ├── Actions bookmark new list Icon - Oxygen Iconset - Oxygen Team.url ├── Oxygen-Icons.org-Oxygen-Actions-bookmark-new-list.ico ├── Places favorites Icon - Oxygen Iconset - Oxygen Team.url ├── actions │ ├── 0000.png │ ├── 0001.png │ ├── 0002.png │ ├── 0003.png │ ├── 0004.png │ ├── 0005.png │ ├── 0006.png │ └── 0007.png ├── donate │ ├── btn_donateCC_LG.gif │ ├── btn_donateCC_LG.png │ ├── btn_donateCC_LG_de.gif │ └── btn_donateCC_LG_de.png └── imagelist │ ├── 0000.png │ ├── 0001.png │ ├── 0002.png │ ├── 0003.png │ ├── 0004.png │ ├── 0005.png │ ├── 0006.png │ ├── 0007.png │ ├── 0008.png │ ├── 0009.png │ ├── 0010.png │ ├── 0011.png │ ├── 0012.png │ ├── 0013.png │ ├── 0014.png │ ├── 0015.png │ ├── 0016.png │ ├── 0017.png │ ├── 0018.png │ ├── 0019.png │ ├── 0020.png │ ├── 0021.png │ ├── 0022.png │ ├── 0023.png │ ├── 0024.png │ ├── 0025.png │ ├── 0026.png │ ├── 0027.png │ ├── 0028.png │ ├── 0029.png │ ├── 0030.png │ ├── 0031.png │ ├── 0032.png │ ├── 0033.png │ ├── 0034.png │ ├── 0035.png │ ├── 0036.png │ ├── 0037.png │ ├── 0038.png │ ├── 0039.png │ ├── 0040.png │ ├── 0041.png │ ├── 0042.png │ ├── 0043.png │ ├── 0044.png │ ├── 0045.png │ ├── 0046.png │ ├── 0047.png │ ├── 0048.png │ ├── 0049.png │ ├── 0050.png │ └── 0051.png ├── Information ├── DVB Specifications │ ├── ChannelNameEncoding_and_ServiceTypes.docx │ ├── DVB-S2_ETSI_EN_302307v010201p.pdf │ ├── DVB_ETSI_EN_302583v010100v.pdf │ ├── NorDig-Unified_ver_2.4.pdf │ ├── en_300468v010501p.pdf │ ├── en_300468v011101p.pdf │ └── etr_162e01p.pdf ├── FileStructures_for_HHD_Hex_Editor_Neo │ ├── LaSat_lst.h │ ├── chansort.h │ ├── cvt_database-dat.h │ ├── dbm.h │ ├── dtv-cmdb-3.h │ ├── dtv-cmdb.h │ ├── dtv_cmdb_1-bin.h │ ├── dtv_cmdb_2-bin.h │ ├── get_doc_size.js │ ├── his-dvb-8byte-header.h │ ├── his-dvb.h │ ├── his-svl.h │ ├── panasonic_idtvChannelBin.h │ ├── philips_SatelliteDb-bin.h │ ├── philips_chanLst-bin.h │ ├── philips_dat.h │ ├── philips_mgr_472.h │ ├── philips_mgr_476.h │ ├── philips_mgr_480.h │ ├── scm-SatDataBase.h │ ├── scm-TransponderDataBase.h │ ├── scm-map-Analog.h │ ├── scm-map-Digital.h │ ├── scm-map-Satellite.h │ ├── tll-084-LP.h │ ├── tll-164_LH3000.h │ ├── tll-164_LH_LU_LF.h │ ├── tll-176-LD_LE_LK_LX_LW45_LW54.h │ ├── tll-180-PT.h │ ├── tll-184-LH250C.h │ ├── tll-184-LV_LW_LK950S.h │ ├── tll-188-LM611S.h │ ├── tll-192-LM_LS.h │ ├── tll-212-LT.h │ ├── tll-212-PN.h │ ├── tll-224-LN.h │ ├── tll-244-LB550U.h │ ├── tll-252-LF.h │ ├── tll-256-LA.h │ ├── tll-256-LH.h │ ├── tll-256-LY.h │ ├── tll-260-LA.h │ ├── tll-280-LB580.h │ ├── tll-common.h │ └── tll-satellite.h ├── LG+Samsung Model Info.xlsx ├── LG_OldDocsFromPDAUser │ ├── Vergleich.xls │ └── Vergleich_TLL.xls └── Links │ ├── Astra19.2E_Channel List.url │ └── DVB - NorDig Unified Requirements 2.4.url ├── Solution.props ├── Spike.LgWebOs5 ├── ChecksumFinder.cs ├── MediaTekStatsCollector.cs ├── PhilipsXmlStatsCollector.cs ├── Properties │ └── AssemblyInfo.cs ├── Spikes.csproj ├── TechnisatDecrypt.cs └── WebOs5StatsCollector.cs ├── Test.Api ├── EditorTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ReferenceListTest.cs ├── Test.Api.csproj └── TestFiles │ ├── xxLA691S-ZA00004.TLL.in │ └── xxLA691S-ZA00004.csv.in ├── Test.Loader.CmdbBin ├── CmdbBinTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.CmdbBin.csproj └── TestFiles │ ├── ChangHongDvbS │ ├── atv_cmdb_cable.bin │ └── dtv_cmdb_2.bin │ └── GrundigAnalogCable │ └── atv_cmdb_cable.bin ├── Test.Loader.Enigma2 ├── Enigma2Test.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.Enigma2.csproj └── TestFiles │ ├── bouquets.radio │ ├── bouquets.tv │ ├── lamedb │ └── userbouquet.horst.mix ├── Test.Loader.Grundig ├── GrundigTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.Grundig.csproj └── TestFiles │ ├── dvbc_config.xml │ ├── dvbs_config.xml │ └── dvbt_config.xml ├── Test.Loader.Hisense ├── ChannelDb │ ├── HisenseChannelDbTest.cs │ └── TestFiles │ │ └── channel.db ├── Properties │ └── AssemblyInfo.cs ├── ServicelistDb │ ├── HisenseServicelistDb2017Test.cs │ ├── HisenseServicelistDb2021Test.cs │ └── TestFiles │ │ ├── servicelist_2017.db │ │ └── servicelist_2021.db └── Test.Loader.Hisense.csproj ├── Test.Loader.LG ├── Binary │ ├── CS │ │ ├── TestCS.cs │ │ ├── xxCS460S-ZA00001.TLL.in │ │ ├── xxCS460S-ZA00001.TLL.out │ │ └── xxCS460S-ZA00001.csv.in │ ├── DM │ │ ├── TestDM.cs │ │ ├── xx2350D-PZM00001.TLL.in │ │ ├── xx2350D-PZM00001.TLL.out │ │ └── xx2350D-PZM00001.csv.in │ ├── DvbsCleanup │ │ ├── TestDvbsCleanup.cs │ │ ├── xxLM620S-ZE00001.TLL.in │ │ ├── xxLM620S-ZE00001.TLL.out │ │ ├── xxLM620S-ZE00001.csv.in │ │ ├── xxLM640T-ZA00000.TLL.in │ │ ├── xxLM640T-ZA00000.TLL.out │ │ ├── xxLM640T-ZA00000.csv.in │ │ ├── xxLM860V-ZB99998.TLL.in │ │ ├── xxLM860V-ZB99998.TLL.out │ │ └── xxLM860V-ZB99998.csv.in │ ├── LA │ │ ├── TestLA.cs │ │ ├── xxLA691S-ZA00004.TLL.in │ │ ├── xxLA691S-ZA00004.TLL.out │ │ ├── xxLA691S-ZA00004.csv.in │ │ ├── xxLA7408-ZB00001.TLL.in │ │ ├── xxLA7408-ZB00001.TLL.out │ │ ├── xxLA7408-ZB00001.csv.in │ │ ├── xxLA7408-ZB00002.TLL.in │ │ ├── xxLA7408-ZB00002.TLL.out │ │ └── xxLA7408-ZB00002.csv.in │ ├── LD │ │ ├── TestLD.cs │ │ ├── xxLD750-ZA00001.TLL.in │ │ ├── xxLD750-ZA00001.TLL.out │ │ └── xxLD750-ZA00001.csv.in │ ├── LE │ │ ├── TestLE.cs │ │ ├── xxLE5500-ZA00002.TLL.in │ │ ├── xxLE5500-ZA00002.TLL.out │ │ └── xxLE5500-ZA00002.csv.in │ ├── LH │ │ ├── TestLH.cs │ │ ├── xxLH3000-ZA00002.TLL.in │ │ ├── xxLH3000-ZA00002.TLL.out │ │ ├── xxLH3000-ZA00002.csv.in │ │ ├── xxLH5000-ZB00002.TLL.in │ │ ├── xxLH5000-ZB00002.TLL.out │ │ └── xxLH5000-ZB00002.csv.in │ ├── LK │ │ ├── TestLK.cs │ │ ├── xxLK450-ZB00001.TLL.in │ │ ├── xxLK450-ZB00001.TLL.out │ │ ├── xxLK450-ZB00001.csv.in │ │ ├── xxLK950S-ZA00001.TLL.in │ │ ├── xxLK950S-ZA00001.TLL.out │ │ └── xxLK950S-ZA00001.csv.in │ ├── LM │ │ ├── TestLM.cs │ │ ├── xxLM340S-ZA00001.TLL.in │ │ ├── xxLM340S-ZA00001.TLL.out │ │ ├── xxLM340S-ZA00001.csv.in │ │ ├── xxLM611S-ZA00001.TLL.in │ │ ├── xxLM611S-ZA00001.TLL.out │ │ ├── xxLM611S-ZA00001.csv.in │ │ ├── xxLM620S-ZE00001.TLL.in │ │ ├── xxLM620S-ZE00001.TLL.out │ │ ├── xxLM620S-ZE00001.csv.in │ │ ├── xxLM760S-ZB00001.TLL.in │ │ ├── xxLM860V-ZB99998.TLL.in │ │ ├── xxLM860V-ZB99998.TLL.out │ │ └── xxLM860V-ZB99998.csv.in │ ├── LN │ │ ├── TestLN.cs │ │ ├── xxLN5406-ZA99999.TLL.in │ │ ├── xxLN5406-ZA99999.TLL.out │ │ ├── xxLN5406-ZA99999.csv.in │ │ ├── xxLN5758-ZE99999.TLL.in │ │ ├── xxLN5758-ZE99999.TLL.out │ │ └── xxLN5758-ZE99999.csv.in │ ├── LP │ │ ├── TestLP.cs │ │ ├── xxLP632H-ZA00001.TLL.in │ │ ├── xxLP632H-ZA00001.TLL.out │ │ └── xxLP632H-ZA00001.csv.in │ ├── LS │ │ ├── TestLS.cs │ │ ├── xxLS560S-ZC00010.TLL.in │ │ ├── xxLS560S-ZC00010.TLL.out │ │ ├── xxLS560S-ZC00010.csv.in │ │ ├── xxLS570S-ZB00001.TLL.in │ │ ├── xxLS570S-ZB00001.TLL.out │ │ └── xxLS570S-ZB00001.csv.in │ ├── LT │ │ ├── TestLT.cs │ │ ├── xxLT380H-ZA00001.TLL.in │ │ ├── xxLT380H-ZA00001.TLL.out │ │ └── xxLT380H-ZA00001.csv.in │ ├── LV │ │ ├── TestLV.cs │ │ ├── xxLV375S-ZC00001.TLL.in │ │ ├── xxLV375S-ZC00001.TLL.out │ │ ├── xxLV375S-ZC00001.csv.in │ │ ├── xxLV470S-ZC00001.TLL.in │ │ ├── xxLV470S-ZC00001.TLL.out │ │ ├── xxLV470S-ZC00001.csv.in │ │ ├── xxLV579S-ZB00001.TLL.in │ │ ├── xxLV579S-ZB00001.TLL.out │ │ └── xxLV579S-ZB00001.csv.in │ ├── LW │ │ ├── TestLW.cs │ │ ├── xxLW4500-ZB00001.TLL.in │ │ ├── xxLW4500-ZB00001.TLL.out │ │ ├── xxLW4500-ZB00001.csv.in │ │ ├── xxLW659S-ZC00001.TLL.in │ │ ├── xxLW659S-ZC00001.TLL.out │ │ └── xxLW659S-ZC00001.csv.in │ ├── LX │ │ ├── TestLX.cs │ │ ├── xxLX9500-ZA00001.TLL.in │ │ ├── xxLX9500-ZA00001.TLL.out │ │ └── xxLX9500-ZA00001.csv.in │ ├── PM │ │ ├── TestPM.cs │ │ ├── xxPM670S-ZA00001.TLL.in │ │ ├── xxPM670S-ZA00001.TLL.out │ │ ├── xxPM670S-ZA00001.csv.in │ │ ├── xxPM970S-ZA99999.TLL.in │ │ ├── xxPM970S-ZA99999.TLL.out │ │ └── xxPM970S-ZA99999.csv.in │ ├── PN │ │ ├── TestPN.cs │ │ ├── xxPN6500-ZB00001.TLL.in │ │ ├── xxPN6500-ZB00001.TLL.out │ │ └── xxPN6500-ZB00001.csv.in │ ├── PT │ │ ├── TestPT.cs │ │ ├── xxPT353-ZA00001.TLL.in │ │ ├── xxPT353-ZA00001.TLL.out │ │ └── xxPT353-ZA00001.csv.in │ └── TestBase.cs ├── GlobalClone.xml ├── GlobalClone │ ├── GlobalClone00001.TLL │ ├── GlobalClone00002.TLL │ ├── GlobalClone00003.TLL │ ├── GlobalClone00201.TLL │ ├── GlobalClone200-inner.json │ └── LgGlobalCloneTest.cs ├── Properties │ └── AssemblyInfo.cs └── Test.Loader.LG.csproj ├── Test.Loader.M3u ├── M3uTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.M3u.csproj └── TestFiles │ ├── example-ref.txt │ ├── example.m3u │ └── extinftags.m3u ├── Test.Loader.Panasonic ├── PanasonicSvlTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.Panasonic.csproj └── TestFiles │ ├── svl-cable.db │ └── svl-sat.db ├── Test.Loader.Philips ├── PhilipsBinChannellibTest.cs ├── PhilipsBinS2channellibTest.cs ├── PhilipsXmlTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.Philips.csproj ├── TestFiles │ ├── ChannelMap_100 │ │ └── ChannelList │ │ │ ├── Favorite.xml │ │ │ ├── chanLst.bin │ │ │ ├── channellib │ │ │ ├── DVBC.xml │ │ │ └── DVBT.xml │ │ │ └── s2channellib │ │ │ ├── DVBS.xml │ │ │ └── DVBSall.xml │ └── Repair │ │ ├── CM_T923E_LA_CK.xml │ │ └── CM_TPM1013E_LA_CK.xml ├── TestFiles1 │ └── Repair │ │ └── ChannelList │ │ ├── chanLst.bin │ │ ├── channellib │ │ ├── AntennaAnalogTable │ │ ├── AntennaDigSrvTable │ │ ├── AntennaDigTSTable │ │ ├── AntennaFrqMapTable │ │ ├── AntennaPresetTable │ │ ├── CableAnalogTable │ │ ├── CableDigSrvTable │ │ ├── CableDigTSTable │ │ ├── CableFrqMapTable │ │ └── CablePresetTable │ │ └── s2channellib │ │ ├── adk_user_pref.dat │ │ ├── adk_user_pref_backup.dat │ │ ├── db_file_info.dat │ │ ├── db_file_info_backup.dat │ │ ├── favorite.dat │ │ ├── favorite_backup.dat │ │ ├── lnb.dat │ │ ├── lnb_backup.dat │ │ ├── satellite.dat │ │ ├── satellite_backup.dat │ │ ├── service.dat │ │ ├── service_backup.dat │ │ ├── tuneinfo.dat │ │ ├── tuneinfo_backup.dat │ │ ├── user_pref.dat │ │ └── user_pref_backup.dat └── TestFiles2 │ └── Repair │ └── ChannelList │ ├── chanLst.bin │ ├── channellib │ ├── AntennaAnalogTable │ ├── AntennaDigSrvTable │ ├── AntennaDigTSTable │ ├── AntennaFrqMapTable │ ├── AntennaPresetTable │ ├── CableAnalogTable │ ├── CableDigSrvTable │ ├── CableDigTSTable │ ├── CableFrqMapTable │ └── CablePresetTable │ └── s2channellib │ ├── adk_user_pref.dat │ ├── adk_user_pref_backup.dat │ ├── db_file_info.dat │ ├── db_file_info_backup.dat │ ├── favorite.dat │ ├── favorite_backup.dat │ ├── lnb.dat │ ├── lnb_backup.dat │ ├── satellite.dat │ ├── satellite_backup.dat │ ├── service.dat │ ├── service_backup.dat │ ├── tuneinfo.dat │ ├── tuneinfo_backup.dat │ ├── user_pref.dat │ └── user_pref_backup.dat ├── Test.Loader.Samsung ├── Properties │ └── AssemblyInfo.cs ├── Scm │ ├── FileFormatDetectionTest.cs │ ├── SamsungScmTest.cs │ └── TestFiles │ │ ├── Channel_list_T_J_ohne_smart_12.scm │ │ ├── E_format_with_B_model_name.scm │ │ ├── E_format_with_C_model_name.scm │ │ ├── Samsung_upcmini_EF_12.scm │ │ ├── channel_list_UE32J5170_1201_orig.scm │ │ ├── channel_list_UE55H6470_1201-Suchlauf-2015-04-26.scm │ │ └── channel_list_UE55H6470_1201.scm ├── Test.Loader.Samsung.csproj └── Zip │ ├── SamsungZipTest.cs │ └── TestFiles │ ├── Channel_list_T-KTMDEUC-1132.6.zip │ ├── Channel_list_T-KTSUDEUC-1007.1.zip │ ├── Channel_list_T-KTSUDEUC-1007.2.zip │ └── Channel_list_T-KTSUDEUC-1007.3.zip ├── Test.Loader.SatcoDX ├── Properties │ └── AssemblyInfo.cs ├── SdxTest.cs ├── Test.Loader.SatcoDX.csproj └── TestFiles │ ├── silva_schneider.sdx │ └── telefunken105.sdx ├── Test.Loader.Sharp ├── Properties │ └── AssemblyInfo.cs ├── SharpTest.cs ├── Test.Loader.Sharp.csproj ├── Test.Loader.Sharp.csproj.DotSettings └── TestFiles │ ├── DVBS_CHANNEL_TABLE.csv │ ├── DVBS_Program3.csv │ ├── DVBS_Program5.csv │ ├── DVBS_Program6.csv │ └── MS6486_DVBS_CHANNEL_TABLE.csv ├── Test.Loader.Sony ├── Properties │ └── AssemblyInfo.cs ├── SonyXmlTest.cs ├── Test.Loader.Sony.csproj └── TestFiles │ ├── android_sdb-antenna.xml │ ├── android_sdb-cable.xml │ ├── android_sdb-sat.xml │ ├── kdl_sdb-cable-sat.xml │ ├── mediatek-sdb.xml │ └── mediatek_sdb-cable.xml ├── Test.Loader.Toshiba ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.Toshiba.csproj ├── TestFiles │ ├── Toshiba-SL863G.zip │ └── settingsDB.db ├── ToshibaChmgtDbTest.cs └── ToshibasSettingsDbTest.cs ├── Test.Loader.VDR ├── LinuxVdrTest.cs ├── Properties │ └── AssemblyInfo.cs ├── Test.Loader.VDR.csproj └── TestFiles │ └── channels.conf ├── Test.Loader ├── LgTest.cs ├── LoaderTestBase.cs ├── Properties │ └── AssemblyInfo.cs ├── RoundtripTest.cs ├── Test.Loader.csproj ├── TestUtils.cs └── packages.config ├── Translation (IT).xlsx ├── Translation.xlsx ├── app.config ├── build.md ├── changelog.md ├── deployLibs.cmd ├── fileformats.md ├── fileformats_de.md └── makeDistribZip.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/.gitignore -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/readme.md -------------------------------------------------------------------------------- /readme_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/readme_de.md -------------------------------------------------------------------------------- /readme_pl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/readme_pl.md -------------------------------------------------------------------------------- /readme_tr-TR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/readme_tr-TR.md -------------------------------------------------------------------------------- /source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/.gitignore -------------------------------------------------------------------------------- /source/ChanSort.Api/ChanSort.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/ChanSort.Api.csproj -------------------------------------------------------------------------------- /source/ChanSort.Api/ChanSort.Api.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/ChanSort.Api.csproj.DotSettings -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/CsvRefListSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/CsvRefListSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/Editor.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/ISerializerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/ISerializerPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/RefListSerializerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/RefListSerializerPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/SerializerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/SerializerBase.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Controller/TxtRefListSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Controller/TxtRefListSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/LoaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/LoaderException.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Lookup.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Lookup.csv -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/ChannelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/ChannelInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/ChannelList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/ChannelList.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/DataRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/DataRoot.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/Enums.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/LnbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/LnbConfig.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/LookupData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/LookupData.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/NetworkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/NetworkInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/Satellite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/Satellite.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Model/Transponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Model/Transponder.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Resources.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/BrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/BrowserHelper.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/ChannelMappingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/ChannelMappingBase.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/Crc16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/Crc16.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/Crc32.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/CsvFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/CsvFile.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/DataMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/DataMapping.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/DelegateComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/DelegateComparer.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/DvbStringDecoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/DvbStringDecoder.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/FileAssociation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/FileAssociation.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/IniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/IniFile.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/ListDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/ListDictionary.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/MappingPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/MappingPool.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/Utils/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/Utils/Tools.cs -------------------------------------------------------------------------------- /source/ChanSort.Api/View/View.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Api/View/View.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Amdb/AmdbPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Amdb/AmdbPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Amdb/AmdbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Amdb/AmdbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Amdb/ChanSort.Loader.Amdb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Amdb/ChanSort.Loader.Amdb.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Android/AldenSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Android/AldenSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Android/AndroidPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Android/AndroidPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Android/ChanSort.Loader.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Android/ChanSort.Loader.Android.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/ChanSort.Loader.CmdbBin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/ChanSort.Loader.CmdbBin.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/ChanSort.Loader.CmdbBin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/ChanSort.Loader.CmdbBin.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/CmdbFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/CmdbFileSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/CmdbPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/CmdbPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/DvbsDataLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/DvbsDataLayout.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.CmdbBin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.CmdbBin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.DBM/ChanSort.Loader.DBM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.DBM/ChanSort.Loader.DBM.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.DBM/ChanSort.Loader.DBM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.DBM/ChanSort.Loader.DBM.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.DBM/DbmPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.DBM/DbmPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.DBM/DbmSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.DBM/DbmSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Enigma2/ChanSort.Loader.Enigma2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Enigma2/ChanSort.Loader.Enigma2.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Enigma2/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Enigma2/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Enigma2/Enigma2Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Enigma2/Enigma2Plugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Enigma2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Enigma2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Enigma2/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Enigma2/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Grundig/ChanSort.Loader.Grundig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Grundig/ChanSort.Loader.Grundig.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Grundig/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Grundig/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Grundig/GrundigPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Grundig/GrundigPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Grundig/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Grundig/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Grundig/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Grundig/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ChanSort.Loader.Hisense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ChanSort.Loader.Hisense.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ChanSort.Loader.Hisense.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ChanSort.Loader.Hisense.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ChannelDb/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ChannelDb/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ChannelDb/ChannelDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ChannelDb/ChannelDbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/HisBin/HisDvbBinSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/HisBin/HisDvbBinSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/HisBin/HisSvlBinSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/HisBin/HisSvlBinSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/HisensePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/HisensePlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/Resources.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ServicelistDb/DbSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ServicelistDb/DbSchema.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Hisense/ServicelistDb/ServicelistDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Hisense/ServicelistDb/ServicelistDbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/ChanSort.Loader.LG.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/ChanSort.Loader.LG.UI.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/LgUserInterfaceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/LgUserInterfaceFactory.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/PresetProgramNrDialog.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG.UI/TvSettingsForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG.UI/TvSettingsForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/AnalogChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/AnalogChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/DtvChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/DtvChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/DvbsDataLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/DvbsDataLayout.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/FirmwareData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/FirmwareData.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/LnbConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/LnbConfig.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/SatChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/SatChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/SatChannelListHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/SatChannelListHeader.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/SatTransponder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/SatTransponder.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/TllChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/TllChannelBase.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/TllFileSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/TllFileSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Binary/TllFileSerializer.sql.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Binary/TllFileSerializer.sql.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/ChanSort.Loader.LG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/ChanSort.Loader.LG.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/ChanSort.Loader.LG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/ChanSort.Loader.LG.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/GlobalClone/GcChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/GlobalClone/GcChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/GlobalClone/GcJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/GlobalClone/GcJsonSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/GlobalClone/GcXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/GlobalClone/GcXmlSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/ILgUserInterfaceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/ILgUserInterfaceFactory.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/LgPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/LgPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.LG/Resource.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.LG/Resource.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Loewe/ChanSort.Loader.Loewe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Loewe/ChanSort.Loader.Loewe.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Loewe/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Loewe/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Loewe/LoewePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Loewe/LoewePlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Loewe/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Loewe/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Loewe/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Loewe/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.M3u/ChanSort.Loader.M3u.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.M3u/ChanSort.Loader.M3u.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.M3u/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.M3u/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.M3u/M3uPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.M3u/M3uPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.M3u/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.M3u/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.M3u/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.M3u/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.MediaTek/ChanSort.Loader.MediaTek.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.MediaTek/ChanSort.Loader.MediaTek.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.MediaTek/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.MediaTek/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.MediaTek/MediatekPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.MediaTek/MediatekPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.MediaTek/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.MediaTek/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.MediaTek/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.MediaTek/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Medion/ChanSort.Loader.Medion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Medion/ChanSort.Loader.Medion.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Medion/MedionPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Medion/MedionPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Medion/MedionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Medion/MedionSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/ChanSort.Loader.Panasonic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/ChanSort.Loader.Panasonic.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/ChanSort.Loader.Panasonic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/ChanSort.Loader.Panasonic.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/DbChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/DbChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/IdtvChannelSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/IdtvChannelSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/PanasonicPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/PanasonicPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/SvlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/SvlSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Panasonic/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Panasonic/XmlSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/BinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/BinarySerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/ChanLstBin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/ChanLstBin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/ChanSort.Loader.Philips.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/ChanSort.Loader.Philips.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/ChanSort.Loader.Philips.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/ChanSort.Loader.Philips.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/CustomXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/CustomXmlWriter.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/DbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/DbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/DllClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/DllClient.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/PhilipsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/PhilipsPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.cs.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.de.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.es.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.hu.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.it.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.pl.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.pt.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.ro.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.ru.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/Resources.tr.resx -------------------------------------------------------------------------------- /source/ChanSort.Loader.Philips/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Philips/XmlSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.RefList/ChanSort.Loader.RefList.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.RefList/ChanSort.Loader.RefList.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.RefList/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.RefList/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/ChanSort.Loader.Samsung.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/ChanSort.Loader.Samsung.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/ChanSort.Loader.Samsung.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/ChanSort.Loader.Samsung.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/SamsungPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/SamsungPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/AnalogChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/AnalogChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/DigitalChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/DigitalChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/ModelConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/ModelConstants.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/SatChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/SatChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/SatelliteMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/SatelliteMapping.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/ScmChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/ScmChannelBase.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Scm/ScmSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Scm/ScmSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Zip/DbChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Zip/DbChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Zip/DbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Zip/DbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Samsung/Zip/Utf16InsideUtf8EnvelopeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Samsung/Zip/Utf16InsideUtf8EnvelopeEncoding.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.SatcoDX/ChanSort.Loader.SatcoDX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.SatcoDX/ChanSort.Loader.SatcoDX.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.SatcoDX/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.SatcoDX/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.SatcoDX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.SatcoDX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.SatcoDX/SatcoDxPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.SatcoDX/SatcoDxPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.SatcoDX/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.SatcoDX/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sharp/ChanSort.Loader.Sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sharp/ChanSort.Loader.Sharp.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sharp/SharpPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sharp/SharpPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sharp/SharpSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sharp/SharpSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/ChanSort.Loader.Sony.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/ChanSort.Loader.Sony.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/ChanSort.Loader.Sony.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/ChanSort.Loader.Sony.ini -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/Channel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/CustomXmlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/CustomXmlWriter.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Sony/SonyPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Sony/SonyPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TCL/ChanSort.Loader.TCL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TCL/ChanSort.Loader.TCL.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.TCL/DtvDataSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TCL/DtvDataSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TCL/GnuTar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TCL/GnuTar.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TCL/TclPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TCL/TclPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TechniSat/ChanSort.Loader.TechniSat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TechniSat/ChanSort.Loader.TechniSat.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.TechniSat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TechniSat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TechniSat/TechniSatCrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TechniSat/TechniSatCrypt.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TechniSat/TechniSatPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TechniSat/TechniSatPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.TechniSat/TechniSatSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.TechniSat/TechniSatSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/ChanSort.Loader.Toshiba.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/ChanSort.Loader.Toshiba.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/ChmgtDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/ChmgtDbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/DbChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/DbChannel.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/SettingsDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/SettingsDbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Toshiba/ToshibaPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Toshiba/ToshibaPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Unsupported/ChanSort.Loader.Unsupported.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Unsupported/ChanSort.Loader.Unsupported.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.Unsupported/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Unsupported/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.Unsupported/UnsupportedPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.Unsupported/UnsupportedPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VDR/ChanSort.Loader.VDR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VDR/ChanSort.Loader.VDR.csproj -------------------------------------------------------------------------------- /source/ChanSort.Loader.VDR/Channels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VDR/Channels.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VDR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VDR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VDR/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VDR/Serializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VDR/VdrPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VDR/VdrPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VisionEdge4K/VisionEdge4KDbSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VisionEdge4K/VisionEdge4KDbSerializer.cs -------------------------------------------------------------------------------- /source/ChanSort.Loader.VisionEdge4K/VisionEdge4KPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.Loader.VisionEdge4K/VisionEdge4KPlugin.cs -------------------------------------------------------------------------------- /source/ChanSort.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort.sln -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.cs -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/AboutForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/AboutForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.cs -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.de.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.es.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.it.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionBox.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionBox.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/ActionImages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ActionImages.resx -------------------------------------------------------------------------------- /source/ChanSort/BrowserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/BrowserHelper.cs -------------------------------------------------------------------------------- /source/ChanSort/ChanSort.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ChanSort.csproj -------------------------------------------------------------------------------- /source/ChanSort/ChanSort.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ChanSort.csproj.DotSettings -------------------------------------------------------------------------------- /source/ChanSort/ChanSort.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ChanSort.ico -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.cs -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/CharsetForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/CharsetForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Config.cs -------------------------------------------------------------------------------- /source/ChanSort/GlobalImageCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/GlobalImageCollection.cs -------------------------------------------------------------------------------- /source/ChanSort/GlobalImageCollection.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/GlobalImageCollection.resx -------------------------------------------------------------------------------- /source/ChanSort/InfoBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/InfoBox.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/InfoBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/InfoBox.cs -------------------------------------------------------------------------------- /source/ChanSort/InfoBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/InfoBox.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.cs -------------------------------------------------------------------------------- /source/ChanSort/MainForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/MainForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/MainForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ChannelListReport.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ChannelListReport.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/Printing/ChannelListReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ChannelListReport.cs -------------------------------------------------------------------------------- /source/ChanSort/Printing/ChannelListReport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ChannelListReport.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.cs -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.de.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.es.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.it.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportOptionsDialog.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportOptionsDialog.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/Printing/ReportStyles.repss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Printing/ReportStyles.repss -------------------------------------------------------------------------------- /source/ChanSort/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Program.cs -------------------------------------------------------------------------------- /source/ChanSort/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/ChanSort/Properties/DataSources/ChannelInfo.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/DataSources/ChannelInfo.datasource -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.de.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.es.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.it.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.pt.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/Settings.settings -------------------------------------------------------------------------------- /source/ChanSort/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Properties/licenses.licx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.cs -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceListForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceListForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/BE_Telenet_CI+_Module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/BE_Telenet_CI+_Module.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/at_astra192E_orf-freehd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/at_astra192E_orf-freehd.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/at_liwest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/at_liwest.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/ch_astra192E_hotbird130E_freehd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/ch_astra192E_hotbird130E_freehd.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/ch_astra192E_hotbird130E_hdplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/ch_astra192E_hotbird130E_hdplus.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/de_astra192E_hisense_freehd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/de_astra192E_hisense_freehd.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/de_astra192E_hisense_hdplus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/de_astra192E_hisense_hdplus.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/de_astra192E_manuell_freehd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/de_astra192E_manuell_freehd.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/de_unitymedia_nrw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/de_unitymedia_nrw.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/de_vodafone_KabelTV_Berlin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/de_vodafone_KabelTV_Berlin.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/gb_astra282E_freesat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/gb_astra282E_freesat.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/gb_astra282E_sky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/gb_astra282E_sky.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/pt_meo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/pt_meo.txt -------------------------------------------------------------------------------- /source/ChanSort/ReferenceLists/ru_eutelsat36E_tricolor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/ReferenceLists/ru_eutelsat36E_tricolor.txt -------------------------------------------------------------------------------- /source/ChanSort/Resources/Donate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Resources/Donate.bmp -------------------------------------------------------------------------------- /source/ChanSort/Resources/btn_donateCC_LG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Resources/btn_donateCC_LG.png -------------------------------------------------------------------------------- /source/ChanSort/Resources/btn_donateCC_LG_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Resources/btn_donateCC_LG_de.png -------------------------------------------------------------------------------- /source/ChanSort/Resources/paypal-button.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Resources/paypal-button.txt -------------------------------------------------------------------------------- /source/ChanSort/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Settings.cs -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.cs -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.de.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.es.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.it.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/SkinPickerForm.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/SkinPickerForm.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/TextInputForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/TextInputForm.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/TextInputForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/TextInputForm.cs -------------------------------------------------------------------------------- /source/ChanSort/TextInputForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/TextInputForm.resx -------------------------------------------------------------------------------- /source/ChanSort/UpdateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/UpdateCheck.cs -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.Designer.cs -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.cs -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.cs.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.de.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.es.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.hu.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.it.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.pl.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.pt.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.ro.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.ru.resx -------------------------------------------------------------------------------- /source/ChanSort/WaitForm1.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/WaitForm1.tr.resx -------------------------------------------------------------------------------- /source/ChanSort/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/Win32.cs -------------------------------------------------------------------------------- /source/ChanSort/XGrid/XGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/XGrid/XGridControl.cs -------------------------------------------------------------------------------- /source/ChanSort/XGrid/XGridView.LayoutPersister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/XGrid/XGridView.LayoutPersister.cs -------------------------------------------------------------------------------- /source/ChanSort/XGrid/XGridView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/XGrid/XGridView.cs -------------------------------------------------------------------------------- /source/ChanSort/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/app.config -------------------------------------------------------------------------------- /source/ChanSort/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/app.ico -------------------------------------------------------------------------------- /source/ChanSort/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/app.manifest -------------------------------------------------------------------------------- /source/ChanSort/icons/flag_austria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/icons/flag_austria.png -------------------------------------------------------------------------------- /source/ChanSort/icons/flag_germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/icons/flag_germany.png -------------------------------------------------------------------------------- /source/ChanSort/icons/flag_great_britain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSort/icons/flag_great_britain.png -------------------------------------------------------------------------------- /source/ChanSortProject.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/ChanSortProject.props -------------------------------------------------------------------------------- /source/DLL/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/DLL/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /source/DLL/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/DLL/nunit.framework.dll -------------------------------------------------------------------------------- /source/Images/Oxygen-Icons.org-Oxygen-Actions-bookmark-new-list.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/Oxygen-Icons.org-Oxygen-Actions-bookmark-new-list.ico -------------------------------------------------------------------------------- /source/Images/actions/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0000.png -------------------------------------------------------------------------------- /source/Images/actions/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0001.png -------------------------------------------------------------------------------- /source/Images/actions/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0002.png -------------------------------------------------------------------------------- /source/Images/actions/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0003.png -------------------------------------------------------------------------------- /source/Images/actions/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0004.png -------------------------------------------------------------------------------- /source/Images/actions/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0005.png -------------------------------------------------------------------------------- /source/Images/actions/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0006.png -------------------------------------------------------------------------------- /source/Images/actions/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/actions/0007.png -------------------------------------------------------------------------------- /source/Images/donate/btn_donateCC_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/donate/btn_donateCC_LG.gif -------------------------------------------------------------------------------- /source/Images/donate/btn_donateCC_LG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/donate/btn_donateCC_LG.png -------------------------------------------------------------------------------- /source/Images/donate/btn_donateCC_LG_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/donate/btn_donateCC_LG_de.gif -------------------------------------------------------------------------------- /source/Images/donate/btn_donateCC_LG_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/donate/btn_donateCC_LG_de.png -------------------------------------------------------------------------------- /source/Images/imagelist/0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0000.png -------------------------------------------------------------------------------- /source/Images/imagelist/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0001.png -------------------------------------------------------------------------------- /source/Images/imagelist/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0002.png -------------------------------------------------------------------------------- /source/Images/imagelist/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0003.png -------------------------------------------------------------------------------- /source/Images/imagelist/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0004.png -------------------------------------------------------------------------------- /source/Images/imagelist/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0005.png -------------------------------------------------------------------------------- /source/Images/imagelist/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0006.png -------------------------------------------------------------------------------- /source/Images/imagelist/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0007.png -------------------------------------------------------------------------------- /source/Images/imagelist/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0008.png -------------------------------------------------------------------------------- /source/Images/imagelist/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0009.png -------------------------------------------------------------------------------- /source/Images/imagelist/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0010.png -------------------------------------------------------------------------------- /source/Images/imagelist/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0011.png -------------------------------------------------------------------------------- /source/Images/imagelist/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0012.png -------------------------------------------------------------------------------- /source/Images/imagelist/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0013.png -------------------------------------------------------------------------------- /source/Images/imagelist/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0014.png -------------------------------------------------------------------------------- /source/Images/imagelist/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0015.png -------------------------------------------------------------------------------- /source/Images/imagelist/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0016.png -------------------------------------------------------------------------------- /source/Images/imagelist/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0017.png -------------------------------------------------------------------------------- /source/Images/imagelist/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0018.png -------------------------------------------------------------------------------- /source/Images/imagelist/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0019.png -------------------------------------------------------------------------------- /source/Images/imagelist/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0020.png -------------------------------------------------------------------------------- /source/Images/imagelist/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0021.png -------------------------------------------------------------------------------- /source/Images/imagelist/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0022.png -------------------------------------------------------------------------------- /source/Images/imagelist/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0023.png -------------------------------------------------------------------------------- /source/Images/imagelist/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0024.png -------------------------------------------------------------------------------- /source/Images/imagelist/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0025.png -------------------------------------------------------------------------------- /source/Images/imagelist/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0026.png -------------------------------------------------------------------------------- /source/Images/imagelist/0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0027.png -------------------------------------------------------------------------------- /source/Images/imagelist/0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0028.png -------------------------------------------------------------------------------- /source/Images/imagelist/0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0029.png -------------------------------------------------------------------------------- /source/Images/imagelist/0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0030.png -------------------------------------------------------------------------------- /source/Images/imagelist/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0031.png -------------------------------------------------------------------------------- /source/Images/imagelist/0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0032.png -------------------------------------------------------------------------------- /source/Images/imagelist/0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0033.png -------------------------------------------------------------------------------- /source/Images/imagelist/0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0034.png -------------------------------------------------------------------------------- /source/Images/imagelist/0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0035.png -------------------------------------------------------------------------------- /source/Images/imagelist/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0036.png -------------------------------------------------------------------------------- /source/Images/imagelist/0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0037.png -------------------------------------------------------------------------------- /source/Images/imagelist/0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0038.png -------------------------------------------------------------------------------- /source/Images/imagelist/0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0039.png -------------------------------------------------------------------------------- /source/Images/imagelist/0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0040.png -------------------------------------------------------------------------------- /source/Images/imagelist/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0041.png -------------------------------------------------------------------------------- /source/Images/imagelist/0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0042.png -------------------------------------------------------------------------------- /source/Images/imagelist/0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0043.png -------------------------------------------------------------------------------- /source/Images/imagelist/0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0044.png -------------------------------------------------------------------------------- /source/Images/imagelist/0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0045.png -------------------------------------------------------------------------------- /source/Images/imagelist/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0046.png -------------------------------------------------------------------------------- /source/Images/imagelist/0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0047.png -------------------------------------------------------------------------------- /source/Images/imagelist/0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0048.png -------------------------------------------------------------------------------- /source/Images/imagelist/0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0049.png -------------------------------------------------------------------------------- /source/Images/imagelist/0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0050.png -------------------------------------------------------------------------------- /source/Images/imagelist/0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Images/imagelist/0051.png -------------------------------------------------------------------------------- /source/Information/DVB Specifications/DVB_ETSI_EN_302583v010100v.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/DVB Specifications/DVB_ETSI_EN_302583v010100v.pdf -------------------------------------------------------------------------------- /source/Information/DVB Specifications/NorDig-Unified_ver_2.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/DVB Specifications/NorDig-Unified_ver_2.4.pdf -------------------------------------------------------------------------------- /source/Information/DVB Specifications/en_300468v010501p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/DVB Specifications/en_300468v010501p.pdf -------------------------------------------------------------------------------- /source/Information/DVB Specifications/en_300468v011101p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/DVB Specifications/en_300468v011101p.pdf -------------------------------------------------------------------------------- /source/Information/DVB Specifications/etr_162e01p.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/DVB Specifications/etr_162e01p.pdf -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/LaSat_lst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/LaSat_lst.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/chansort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/chansort.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dbm.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dtv-cmdb-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dtv-cmdb-3.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dtv-cmdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dtv-cmdb.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/dtv_cmdb_1-bin.h: -------------------------------------------------------------------------------- 1 | #include "chansort.h" 2 | 3 | -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/his-dvb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/his-dvb.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/his-svl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/his-svl.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-084-LP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-084-LP.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-180-PT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-180-PT.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-212-LT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-212-LT.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-212-PN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-212-PN.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-224-LN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-224-LN.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-252-LF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-252-LF.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LA.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LH.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-256-LY.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-260-LA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-260-LA.h -------------------------------------------------------------------------------- /source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/FileStructures_for_HHD_Hex_Editor_Neo/tll-common.h -------------------------------------------------------------------------------- /source/Information/LG+Samsung Model Info.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/LG+Samsung Model Info.xlsx -------------------------------------------------------------------------------- /source/Information/LG_OldDocsFromPDAUser/Vergleich.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/LG_OldDocsFromPDAUser/Vergleich.xls -------------------------------------------------------------------------------- /source/Information/LG_OldDocsFromPDAUser/Vergleich_TLL.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/LG_OldDocsFromPDAUser/Vergleich_TLL.xls -------------------------------------------------------------------------------- /source/Information/Links/Astra19.2E_Channel List.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/Links/Astra19.2E_Channel List.url -------------------------------------------------------------------------------- /source/Information/Links/DVB - NorDig Unified Requirements 2.4.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Information/Links/DVB - NorDig Unified Requirements 2.4.url -------------------------------------------------------------------------------- /source/Solution.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Solution.props -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/ChecksumFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/ChecksumFinder.cs -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/MediaTekStatsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/MediaTekStatsCollector.cs -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/PhilipsXmlStatsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/PhilipsXmlStatsCollector.cs -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/Spikes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/Spikes.csproj -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/TechnisatDecrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/TechnisatDecrypt.cs -------------------------------------------------------------------------------- /source/Spike.LgWebOs5/WebOs5StatsCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Spike.LgWebOs5/WebOs5StatsCollector.cs -------------------------------------------------------------------------------- /source/Test.Api/EditorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/EditorTest.cs -------------------------------------------------------------------------------- /source/Test.Api/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Api/ReferenceListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/ReferenceListTest.cs -------------------------------------------------------------------------------- /source/Test.Api/Test.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/Test.Api.csproj -------------------------------------------------------------------------------- /source/Test.Api/TestFiles/xxLA691S-ZA00004.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/TestFiles/xxLA691S-ZA00004.TLL.in -------------------------------------------------------------------------------- /source/Test.Api/TestFiles/xxLA691S-ZA00004.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Api/TestFiles/xxLA691S-ZA00004.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.CmdbBin/CmdbBinTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.CmdbBin/CmdbBinTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.CmdbBin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.CmdbBin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.CmdbBin/Test.Loader.CmdbBin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.CmdbBin/Test.Loader.CmdbBin.csproj -------------------------------------------------------------------------------- /source/Test.Loader.CmdbBin/TestFiles/ChangHongDvbS/atv_cmdb_cable.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.CmdbBin/TestFiles/ChangHongDvbS/atv_cmdb_cable.bin -------------------------------------------------------------------------------- /source/Test.Loader.CmdbBin/TestFiles/ChangHongDvbS/dtv_cmdb_2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.CmdbBin/TestFiles/ChangHongDvbS/dtv_cmdb_2.bin -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/Enigma2Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/Enigma2Test.cs -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/Test.Loader.Enigma2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/Test.Loader.Enigma2.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/TestFiles/bouquets.radio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/TestFiles/bouquets.radio -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/TestFiles/bouquets.tv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/TestFiles/bouquets.tv -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/TestFiles/lamedb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/TestFiles/lamedb -------------------------------------------------------------------------------- /source/Test.Loader.Enigma2/TestFiles/userbouquet.horst.mix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Enigma2/TestFiles/userbouquet.horst.mix -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/GrundigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/GrundigTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/Test.Loader.Grundig.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/Test.Loader.Grundig.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/TestFiles/dvbc_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/TestFiles/dvbc_config.xml -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/TestFiles/dvbs_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/TestFiles/dvbs_config.xml -------------------------------------------------------------------------------- /source/Test.Loader.Grundig/TestFiles/dvbt_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Grundig/TestFiles/dvbt_config.xml -------------------------------------------------------------------------------- /source/Test.Loader.Hisense/ChannelDb/HisenseChannelDbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Hisense/ChannelDb/HisenseChannelDbTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Hisense/ChannelDb/TestFiles/channel.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Hisense/ChannelDb/TestFiles/channel.db -------------------------------------------------------------------------------- /source/Test.Loader.Hisense/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Hisense/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Hisense/Test.Loader.Hisense.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Hisense/Test.Loader.Hisense.csproj -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/CS/TestCS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/CS/TestCS.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/CS/xxCS460S-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DM/TestDM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DM/TestDM.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DM/xx2350D-PZM00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/TestDvbsCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/TestDvbsCleanup.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM620S-ZE00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM640T-ZA00000.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/DvbsCleanup/xxLM860V-ZB99998.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/TestLA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/TestLA.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA691S-ZA00004.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LA/xxLA7408-ZB00002.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LD/TestLD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LD/TestLD.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LD/xxLD750-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LE/TestLE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LE/TestLE.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LE/xxLE5500-ZA00002.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/TestLH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/TestLH.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH3000-ZA00002.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LH/xxLH5000-ZB00002.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/TestLK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/TestLK.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK450-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LK/xxLK950S-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/TestLM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/TestLM.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM340S-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM611S-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM620S-ZE00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM760S-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM760S-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LM/xxLM860V-ZB99998.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/TestLN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/TestLN.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5406-ZA99999.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LN/xxLN5758-ZE99999.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LP/TestLP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LP/TestLP.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LP/xxLP632H-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/TestLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/TestLS.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS560S-ZC00010.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LS/xxLS570S-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LT/TestLT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LT/TestLT.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LT/xxLT380H-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/TestLV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/TestLV.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV375S-ZC00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV470S-ZC00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LV/xxLV579S-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/TestLW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/TestLW.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW4500-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LW/xxLW659S-ZC00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LX/TestLX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LX/TestLX.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/LX/xxLX9500-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/TestPM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/TestPM.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM670S-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PM/xxPM970S-ZA99999.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PN/TestPN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PN/TestPN.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PN/xxPN6500-ZB00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PT/TestPT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PT/TestPT.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.TLL.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.TLL.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.TLL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.TLL.out -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.csv.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/PT/xxPT353-ZA00001.csv.in -------------------------------------------------------------------------------- /source/Test.Loader.LG/Binary/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Binary/TestBase.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone.xml -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/GlobalClone00001.TLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/GlobalClone00001.TLL -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/GlobalClone00002.TLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/GlobalClone00002.TLL -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/GlobalClone00003.TLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/GlobalClone00003.TLL -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/GlobalClone00201.TLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/GlobalClone00201.TLL -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/GlobalClone200-inner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/GlobalClone200-inner.json -------------------------------------------------------------------------------- /source/Test.Loader.LG/GlobalClone/LgGlobalCloneTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/GlobalClone/LgGlobalCloneTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.LG/Test.Loader.LG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.LG/Test.Loader.LG.csproj -------------------------------------------------------------------------------- /source/Test.Loader.M3u/M3uTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/M3uTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.M3u/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.M3u/Test.Loader.M3u.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/Test.Loader.M3u.csproj -------------------------------------------------------------------------------- /source/Test.Loader.M3u/TestFiles/example-ref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/TestFiles/example-ref.txt -------------------------------------------------------------------------------- /source/Test.Loader.M3u/TestFiles/example.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/TestFiles/example.m3u -------------------------------------------------------------------------------- /source/Test.Loader.M3u/TestFiles/extinftags.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.M3u/TestFiles/extinftags.m3u -------------------------------------------------------------------------------- /source/Test.Loader.Panasonic/PanasonicSvlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Panasonic/PanasonicSvlTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Panasonic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Panasonic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Panasonic/Test.Loader.Panasonic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Panasonic/Test.Loader.Panasonic.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Panasonic/TestFiles/svl-cable.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Panasonic/TestFiles/svl-cable.db -------------------------------------------------------------------------------- /source/Test.Loader.Panasonic/TestFiles/svl-sat.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Panasonic/TestFiles/svl-sat.db -------------------------------------------------------------------------------- /source/Test.Loader.Philips/PhilipsBinChannellibTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/PhilipsBinChannellibTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Philips/PhilipsBinS2channellibTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/PhilipsBinS2channellibTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Philips/PhilipsXmlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/PhilipsXmlTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Philips/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Philips/Test.Loader.Philips.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/Test.Loader.Philips.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Philips/TestFiles/Repair/CM_T923E_LA_CK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/TestFiles/Repair/CM_T923E_LA_CK.xml -------------------------------------------------------------------------------- /source/Test.Loader.Philips/TestFiles/Repair/CM_TPM1013E_LA_CK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/TestFiles/Repair/CM_TPM1013E_LA_CK.xml -------------------------------------------------------------------------------- /source/Test.Loader.Philips/TestFiles1/Repair/ChannelList/chanLst.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/TestFiles1/Repair/ChannelList/chanLst.bin -------------------------------------------------------------------------------- /source/Test.Loader.Philips/TestFiles2/Repair/ChannelList/chanLst.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Philips/TestFiles2/Repair/ChannelList/chanLst.bin -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Scm/FileFormatDetectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Scm/FileFormatDetectionTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Scm/SamsungScmTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Scm/SamsungScmTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Scm/TestFiles/Samsung_upcmini_EF_12.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Scm/TestFiles/Samsung_upcmini_EF_12.scm -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Test.Loader.Samsung.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Test.Loader.Samsung.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Samsung/Zip/SamsungZipTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Samsung/Zip/SamsungZipTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.SatcoDX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.SatcoDX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.SatcoDX/SdxTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.SatcoDX/SdxTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.SatcoDX/Test.Loader.SatcoDX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.SatcoDX/Test.Loader.SatcoDX.csproj -------------------------------------------------------------------------------- /source/Test.Loader.SatcoDX/TestFiles/silva_schneider.sdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.SatcoDX/TestFiles/silva_schneider.sdx -------------------------------------------------------------------------------- /source/Test.Loader.SatcoDX/TestFiles/telefunken105.sdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.SatcoDX/TestFiles/telefunken105.sdx -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/SharpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/SharpTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/Test.Loader.Sharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/Test.Loader.Sharp.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/Test.Loader.Sharp.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/Test.Loader.Sharp.csproj.DotSettings -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/TestFiles/DVBS_CHANNEL_TABLE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/TestFiles/DVBS_CHANNEL_TABLE.csv -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/TestFiles/DVBS_Program3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/TestFiles/DVBS_Program3.csv -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/TestFiles/DVBS_Program5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/TestFiles/DVBS_Program5.csv -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/TestFiles/DVBS_Program6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/TestFiles/DVBS_Program6.csv -------------------------------------------------------------------------------- /source/Test.Loader.Sharp/TestFiles/MS6486_DVBS_CHANNEL_TABLE.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sharp/TestFiles/MS6486_DVBS_CHANNEL_TABLE.csv -------------------------------------------------------------------------------- /source/Test.Loader.Sony/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Sony/SonyXmlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/SonyXmlTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Sony/Test.Loader.Sony.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/Test.Loader.Sony.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/android_sdb-antenna.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/android_sdb-antenna.xml -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/android_sdb-cable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/android_sdb-cable.xml -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/android_sdb-sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/android_sdb-sat.xml -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/kdl_sdb-cable-sat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/kdl_sdb-cable-sat.xml -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/mediatek-sdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/mediatek-sdb.xml -------------------------------------------------------------------------------- /source/Test.Loader.Sony/TestFiles/mediatek_sdb-cable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Sony/TestFiles/mediatek_sdb-cable.xml -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/Test.Loader.Toshiba.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/Test.Loader.Toshiba.csproj -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/TestFiles/Toshiba-SL863G.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/TestFiles/Toshiba-SL863G.zip -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/TestFiles/settingsDB.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/TestFiles/settingsDB.db -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/ToshibaChmgtDbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/ToshibaChmgtDbTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.Toshiba/ToshibasSettingsDbTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.Toshiba/ToshibasSettingsDbTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.VDR/LinuxVdrTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.VDR/LinuxVdrTest.cs -------------------------------------------------------------------------------- /source/Test.Loader.VDR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.VDR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader.VDR/Test.Loader.VDR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.VDR/Test.Loader.VDR.csproj -------------------------------------------------------------------------------- /source/Test.Loader.VDR/TestFiles/channels.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader.VDR/TestFiles/channels.conf -------------------------------------------------------------------------------- /source/Test.Loader/LgTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/LgTest.cs -------------------------------------------------------------------------------- /source/Test.Loader/LoaderTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/LoaderTestBase.cs -------------------------------------------------------------------------------- /source/Test.Loader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Test.Loader/RoundtripTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/RoundtripTest.cs -------------------------------------------------------------------------------- /source/Test.Loader/Test.Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/Test.Loader.csproj -------------------------------------------------------------------------------- /source/Test.Loader/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/TestUtils.cs -------------------------------------------------------------------------------- /source/Test.Loader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Test.Loader/packages.config -------------------------------------------------------------------------------- /source/Translation (IT).xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Translation (IT).xlsx -------------------------------------------------------------------------------- /source/Translation.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/Translation.xlsx -------------------------------------------------------------------------------- /source/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/app.config -------------------------------------------------------------------------------- /source/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/build.md -------------------------------------------------------------------------------- /source/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/changelog.md -------------------------------------------------------------------------------- /source/deployLibs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/deployLibs.cmd -------------------------------------------------------------------------------- /source/fileformats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/fileformats.md -------------------------------------------------------------------------------- /source/fileformats_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/fileformats_de.md -------------------------------------------------------------------------------- /source/makeDistribZip.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PredatH0r/ChanSort/HEAD/source/makeDistribZip.cmd --------------------------------------------------------------------------------