├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── LICENSECOMMONSCLAUSE ├── README.md ├── _Release ├── 2021 │ └── Fetch.dll ├── 2022 │ └── Fetch.dll ├── 2023 │ └── Fetch.dll ├── 2024 │ └── Fetch.dll └── Fetch.addin ├── _documentation ├── FetchLogo.png ├── FetchLogo.svg ├── labIcon.svg └── labIcon2.svg ├── installers ├── Fetch.iss └── Output │ └── Fetch.exe └── src ├── Fetch.2021 ├── Fetch.2021.csproj └── Fetch.addin ├── Fetch.2022 ├── Fetch.2022.csproj └── Fetch.addin ├── Fetch.2023 ├── Fetch.2023.csproj └── Fetch.addin ├── Fetch.2024 ├── Fetch.2024.csproj └── Fetch.addin ├── Fetch.SharedProject ├── App.cs ├── AssemblyInfo.cs ├── Classes │ └── FetchIniFile.cs ├── Commands │ └── Commands.cs ├── Fetch-debug.addin ├── Fetch.SharedProject.projitems ├── Fetch.SharedProject.shproj ├── FileDownloader.cs ├── Globals.cs └── Utilities │ └── Utilities.cs └── Fetch.sln /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSECOMMONSCLAUSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/LICENSECOMMONSCLAUSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/README.md -------------------------------------------------------------------------------- /_Release/2021/Fetch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_Release/2021/Fetch.dll -------------------------------------------------------------------------------- /_Release/2022/Fetch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_Release/2022/Fetch.dll -------------------------------------------------------------------------------- /_Release/2023/Fetch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_Release/2023/Fetch.dll -------------------------------------------------------------------------------- /_Release/2024/Fetch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_Release/2024/Fetch.dll -------------------------------------------------------------------------------- /_Release/Fetch.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_Release/Fetch.addin -------------------------------------------------------------------------------- /_documentation/FetchLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_documentation/FetchLogo.png -------------------------------------------------------------------------------- /_documentation/FetchLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_documentation/FetchLogo.svg -------------------------------------------------------------------------------- /_documentation/labIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_documentation/labIcon.svg -------------------------------------------------------------------------------- /_documentation/labIcon2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/_documentation/labIcon2.svg -------------------------------------------------------------------------------- /installers/Fetch.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/installers/Fetch.iss -------------------------------------------------------------------------------- /installers/Output/Fetch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/installers/Output/Fetch.exe -------------------------------------------------------------------------------- /src/Fetch.2021/Fetch.2021.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2021/Fetch.2021.csproj -------------------------------------------------------------------------------- /src/Fetch.2021/Fetch.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2021/Fetch.addin -------------------------------------------------------------------------------- /src/Fetch.2022/Fetch.2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2022/Fetch.2022.csproj -------------------------------------------------------------------------------- /src/Fetch.2022/Fetch.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2022/Fetch.addin -------------------------------------------------------------------------------- /src/Fetch.2023/Fetch.2023.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2023/Fetch.2023.csproj -------------------------------------------------------------------------------- /src/Fetch.2023/Fetch.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2023/Fetch.addin -------------------------------------------------------------------------------- /src/Fetch.2024/Fetch.2024.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2024/Fetch.2024.csproj -------------------------------------------------------------------------------- /src/Fetch.2024/Fetch.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.2024/Fetch.addin -------------------------------------------------------------------------------- /src/Fetch.SharedProject/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/App.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Classes/FetchIniFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Classes/FetchIniFile.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Commands/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Commands/Commands.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Fetch-debug.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Fetch-debug.addin -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Fetch.SharedProject.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Fetch.SharedProject.projitems -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Fetch.SharedProject.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Fetch.SharedProject.shproj -------------------------------------------------------------------------------- /src/Fetch.SharedProject/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/FileDownloader.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Globals.cs -------------------------------------------------------------------------------- /src/Fetch.SharedProject/Utilities/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.SharedProject/Utilities/Utilities.cs -------------------------------------------------------------------------------- /src/Fetch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpierson/FETCH/HEAD/src/Fetch.sln --------------------------------------------------------------------------------