- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/const.py
r466 r459 11 11 12 12 ## The version of the program 13 VERSION="0.1 7.1"13 VERSION="0.15.1" 14 14 15 15 #------------------------------------------------------------------------------- … … 95 95 ## Aircraft type: Yakovlev Yak-40 96 96 AIRCRAFT_YK40 = 15 97 98 ## Aircraft type: British Aerospace BAe-14699 AIRCRAFT_B462 = 17100 97 101 98 #------------------------------------------------------------------------------- … … 111 108 AIRCRAFT_B733, AIRCRAFT_B734, AIRCRAFT_B735, 112 109 AIRCRAFT_T154, AIRCRAFT_T134, 113 AIRCRAFT_YK40, AIRCRAFT_DC3, 114 AIRCRAFT_B462] 110 AIRCRAFT_YK40, AIRCRAFT_DC3] 115 111 116 112 #------------------------------------------------------------------------------- … … 133 129 AIRCRAFT_T134 : "T134", 134 130 AIRCRAFT_T154 : "T154", 135 AIRCRAFT_YK40 : "YK40", 136 AIRCRAFT_B462 : "B462" } 131 AIRCRAFT_YK40 : "YK40" } 137 132 138 133 #------------------------------------------------------------------------------- … … 242 237 #------------------------------------------------------------------------------- 243 238 239 ## Delay code: loading problems 240 DELAYCODE_LOADING = 0 241 242 ## Delay code: VATSIM problem 243 DELAYCODE_VATSIM = 1 244 245 ## Delay code: network problems 246 DELAYCODE_NETWORK = 2 247 248 ## Delay code: controller's fault 249 DELAYCODE_CONTROLLER = 3 250 251 ## Delay code: system crash or freeze 252 DELAYCODE_SYSTEM = 4 253 254 ## Delay code: navigation problem 255 DELAYCODE_NAVIGATION = 5 256 257 ## Delay code: traffic problems 258 DELAYCODE_TRAFFIC = 6 259 260 ## Delay code: apron navigation 261 DELAYCODE_APRON = 7 262 263 ## Delay code: weather problems 264 DELAYCODE_WEATHER = 8 265 266 ## Delay code: personal reasons 267 DELAYCODE_PERSONAL = 9 268 269 #------------------------------------------------------------------------------- 270 244 271 ## Message type: logger error 245 272 # FIXME: cannot set the hotkey
Note:
See TracChangeset
for help on using the changeset viewer.