├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── cicd_macos.yaml │ ├── cicd_ubuntu.yaml │ ├── cicd_windows.yaml │ └── snap.yml ├── .gitignore ├── .gitmodules ├── MIT_License.txt ├── README.md ├── SourceCodeBuild.txt ├── enduser ├── add_trackers.txt ├── readme.txt ├── remove_trackers.txt └── version.txt ├── metainfo ├── io.github.gerryferdinandus.bittorrent-tracker-editor.desktop ├── io.github.gerryferdinandus.bittorrent-tracker-editor.metainfo.xml └── io.github.gerryferdinandus.bittorrent-tracker-editor.png ├── snap └── snapcraft.yaml ├── source ├── code │ ├── bencode.pas │ ├── controler_trackerlist_online.pas │ ├── controler_treeview_torrent_data.pas │ ├── controlergridtorrentdata.pas │ ├── decodetorrent.pas │ ├── main.lfm │ ├── main.pas │ ├── newtrackon.pas │ ├── ngosang_trackerslist.pas │ ├── torrent_miscellaneous.pas │ └── trackerlist_online.pas ├── project │ ├── .gitignore │ ├── tracker_editor │ │ ├── trackereditor.ico │ │ ├── trackereditor.lpi │ │ ├── trackereditor.lpr │ │ └── trackereditor.res │ └── unit_test │ │ ├── tracker_editor_test.lpi │ │ └── tracker_editor_test.lpr └── test │ ├── test_miscellaneous.pas │ ├── test_newtrackon.pas │ ├── test_ngosang_trackers_list.pas │ └── test_start_up_parameter.pas └── test_torrent ├── Sintel.2010.2K.SURROUND.x264-VODO.torrent ├── Sintel.2010.2K.Theora.Ogv-VODO.torrent ├── Sintel.2010.720p.SURROUND.x264-VODO.torrent ├── bittorrent-v2-hybrid-test.torrent └── bittorrent-v2-test.torrent /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cicd_macos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/workflows/cicd_macos.yaml -------------------------------------------------------------------------------- /.github/workflows/cicd_ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/workflows/cicd_ubuntu.yaml -------------------------------------------------------------------------------- /.github/workflows/cicd_windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/workflows/cicd_windows.yaml -------------------------------------------------------------------------------- /.github/workflows/snap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.github/workflows/snap.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /MIT_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/MIT_License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/README.md -------------------------------------------------------------------------------- /SourceCodeBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/SourceCodeBuild.txt -------------------------------------------------------------------------------- /enduser/add_trackers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/enduser/add_trackers.txt -------------------------------------------------------------------------------- /enduser/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/enduser/readme.txt -------------------------------------------------------------------------------- /enduser/remove_trackers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/enduser/remove_trackers.txt -------------------------------------------------------------------------------- /enduser/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/enduser/version.txt -------------------------------------------------------------------------------- /metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.desktop -------------------------------------------------------------------------------- /metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.metainfo.xml -------------------------------------------------------------------------------- /metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.png -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /source/code/bencode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/bencode.pas -------------------------------------------------------------------------------- /source/code/controler_trackerlist_online.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/controler_trackerlist_online.pas -------------------------------------------------------------------------------- /source/code/controler_treeview_torrent_data.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/controler_treeview_torrent_data.pas -------------------------------------------------------------------------------- /source/code/controlergridtorrentdata.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/controlergridtorrentdata.pas -------------------------------------------------------------------------------- /source/code/decodetorrent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/decodetorrent.pas -------------------------------------------------------------------------------- /source/code/main.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/main.lfm -------------------------------------------------------------------------------- /source/code/main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/main.pas -------------------------------------------------------------------------------- /source/code/newtrackon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/newtrackon.pas -------------------------------------------------------------------------------- /source/code/ngosang_trackerslist.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/ngosang_trackerslist.pas -------------------------------------------------------------------------------- /source/code/torrent_miscellaneous.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/torrent_miscellaneous.pas -------------------------------------------------------------------------------- /source/code/trackerlist_online.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/code/trackerlist_online.pas -------------------------------------------------------------------------------- /source/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/.gitignore -------------------------------------------------------------------------------- /source/project/tracker_editor/trackereditor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/tracker_editor/trackereditor.ico -------------------------------------------------------------------------------- /source/project/tracker_editor/trackereditor.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/tracker_editor/trackereditor.lpi -------------------------------------------------------------------------------- /source/project/tracker_editor/trackereditor.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/tracker_editor/trackereditor.lpr -------------------------------------------------------------------------------- /source/project/tracker_editor/trackereditor.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/tracker_editor/trackereditor.res -------------------------------------------------------------------------------- /source/project/unit_test/tracker_editor_test.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/unit_test/tracker_editor_test.lpi -------------------------------------------------------------------------------- /source/project/unit_test/tracker_editor_test.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/project/unit_test/tracker_editor_test.lpr -------------------------------------------------------------------------------- /source/test/test_miscellaneous.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/test/test_miscellaneous.pas -------------------------------------------------------------------------------- /source/test/test_newtrackon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/test/test_newtrackon.pas -------------------------------------------------------------------------------- /source/test/test_ngosang_trackers_list.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/test/test_ngosang_trackers_list.pas -------------------------------------------------------------------------------- /source/test/test_start_up_parameter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/source/test/test_start_up_parameter.pas -------------------------------------------------------------------------------- /test_torrent/Sintel.2010.2K.SURROUND.x264-VODO.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/test_torrent/Sintel.2010.2K.SURROUND.x264-VODO.torrent -------------------------------------------------------------------------------- /test_torrent/Sintel.2010.2K.Theora.Ogv-VODO.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/test_torrent/Sintel.2010.2K.Theora.Ogv-VODO.torrent -------------------------------------------------------------------------------- /test_torrent/Sintel.2010.720p.SURROUND.x264-VODO.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/test_torrent/Sintel.2010.720p.SURROUND.x264-VODO.torrent -------------------------------------------------------------------------------- /test_torrent/bittorrent-v2-hybrid-test.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/test_torrent/bittorrent-v2-hybrid-test.torrent -------------------------------------------------------------------------------- /test_torrent/bittorrent-v2-test.torrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GerryFerdinandus/bittorrent-tracker-editor/HEAD/test_torrent/bittorrent-v2-test.torrent --------------------------------------------------------------------------------