├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── new_issue.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE.txt ├── Makefile ├── README.md ├── get_iplayer ├── get_iplayer.1 └── get_iplayer.cgi /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/new_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/.github/workflows/new_issue.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/README.md -------------------------------------------------------------------------------- /get_iplayer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/get_iplayer -------------------------------------------------------------------------------- /get_iplayer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/get_iplayer.1 -------------------------------------------------------------------------------- /get_iplayer.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/get-iplayer/get_iplayer/HEAD/get_iplayer.cgi --------------------------------------------------------------------------------