|
| 1 | +# X-Plane Gateway Downloader |
| 2 | + |
| 3 | +With this console application you can download airport updates from the X-Plane Gateway directly into your CustomScenery folder. |
| 4 | + |
| 5 | +## Commands |
| 6 | +``` |
| 7 | +$ xplane-gateway-downloader --help |
| 8 | +NAME: |
| 9 | + X-Plane Gateway Downloader - Download airports from X-Plane Gateway with ease |
| 10 | +
|
| 11 | +USAGE: |
| 12 | + xplane-gateway-downloader [global options] command [command options] [arguments...] |
| 13 | +
|
| 14 | +DESCRIPTION: |
| 15 | + Update airport sceneries from the X-Plane Gateway |
| 16 | +
|
| 17 | +COMMANDS: |
| 18 | + install Install a new airport scenery pack |
| 19 | + update Update all installed airport scenery packs |
| 20 | + uninstall Uninstall an installed airport scenery pack |
| 21 | + config Configure the application |
| 22 | + help, h Shows a list of commands or help for one command |
| 23 | +
|
| 24 | +GLOBAL OPTIONS: |
| 25 | + --help, -h show help (default: false) |
| 26 | +``` |
| 27 | + |
| 28 | +### Configuration |
| 29 | + |
| 30 | +Before you can manage new airports you have to set up the application. |
| 31 | + |
| 32 | +``` |
| 33 | +$ xplane-gateway-downloader config --help |
| 34 | +NAME: |
| 35 | + xplane-gateway-downloader config - Configure the application |
| 36 | +
|
| 37 | +USAGE: |
| 38 | + xplane-gateway-downloader config [command options] [arguments...] |
| 39 | +
|
| 40 | +OPTIONS: |
| 41 | + --custom-scenery-folder path, --csf path The path to CustomScenery folder of x-plane |
| 42 | + --x-plane-version version, -v version Set the current version of x-plane |
| 43 | +``` |
| 44 | + |
| 45 | +Run the following commands and replace the placeholder. |
| 46 | + |
| 47 | +- Set the path to the CustomScenery folder in the x-plane game folder. The path must contain the ending slashes! |
| 48 | + - **Windows:** (use double backslash due to character escaping) |
| 49 | + ``` |
| 50 | + xplane-gateway-downloader config --custom-scenery-folder C:\\path\\to\\X-Plane 11\\Custom Scenery\\ |
| 51 | + ``` |
| 52 | + - **Linux:** |
| 53 | + ``` |
| 54 | + xplane-gateway-downloader config --custom-scenery-folder /path/to/Custom Scenery/ |
| 55 | + ``` |
| 56 | +
|
| 57 | +- Set your X-Plane game version. This will allow the application to not download airports if there is no newer version available and therefore save disk space. |
| 58 | + Most of you will be at the newest version which currently is 11.55. If not, change the version in the command below. |
| 59 | + ``` |
| 60 | + xplane-gateway-downloader config --x-plane-version 11.55 |
| 61 | + ``` |
| 62 | +
|
| 63 | +### Install an airport |
| 64 | +
|
| 65 | +``` |
| 66 | +$ xplane-gateway-downloader install --help |
| 67 | +NAME: |
| 68 | + xplane-gateway-downloader install - Install a new airport scenery pack |
| 69 | + |
| 70 | +USAGE: |
| 71 | + xplane-gateway-downloader install [command options] [arguments...] |
| 72 | + |
| 73 | +OPTIONS: |
| 74 | + --icao ICAO, -i ICAO Install an airport by ICAO code |
| 75 | +``` |
| 76 | +
|
| 77 | +Example: ``xplane-gateway-downloader install --icao EDDF`` |
| 78 | +
|
| 79 | +### Update all installed airports |
| 80 | +
|
| 81 | +``` |
| 82 | +$ xplane-gateway-downloader update --help |
| 83 | +NAME: |
| 84 | + xplane-gateway-downloader update - Update all installed airport scenery packs |
| 85 | + |
| 86 | +USAGE: |
| 87 | + xplane-gateway-downloader update [command options] [arguments...] |
| 88 | + |
| 89 | +OPTIONS: |
| 90 | + --help, -h show help (default: false) |
| 91 | +``` |
| 92 | +
|
| 93 | +Example: ``xplane-gateway-downloader update`` |
| 94 | +
|
| 95 | +### Uninstall an installed airport |
| 96 | +
|
| 97 | +``` |
| 98 | +$ xplane-gateway-downloader uninstall --help |
| 99 | +NAME: |
| 100 | + xplane-gateway-downloader uninstall - Uninstall an installed airport scenery pack |
| 101 | + |
| 102 | +USAGE: |
| 103 | + xplane-gateway-downloader uninstall [command options] [arguments...] |
| 104 | + |
| 105 | +OPTIONS: |
| 106 | + --icao ICAO, -i ICAO Uninstall an airport by ICAO code |
| 107 | +``` |
| 108 | +
|
| 109 | +Example: ``xplane-gateway-downloader uninstall --icao EDDF`` |
0 commit comments