Changeset 466:7c66a233f9f3
- Timestamp:
- 03/15/13 08:40:37 (12 years ago)
- Branch:
- default
- Parents:
-
458:8e90acfe08f2 (diff), 464:2e0ef8c7ca9a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/const.py
r451 r466 11 11 12 12 ## The version of the program 13 VERSION="0.17 "13 VERSION="0.17.1" 14 14 15 15 #------------------------------------------------------------------------------- -
src/mlx/const.py
r459 r466 11 11 12 12 ## The version of the program 13 VERSION="0.1 5.1"13 VERSION="0.17.1" 14 14 15 15 #------------------------------------------------------------------------------- … … 95 95 ## Aircraft type: Yakovlev Yak-40 96 96 AIRCRAFT_YK40 = 15 97 98 ## Aircraft type: British Aerospace BAe-146 99 AIRCRAFT_B462 = 17 97 100 98 101 #------------------------------------------------------------------------------- … … 108 111 AIRCRAFT_B733, AIRCRAFT_B734, AIRCRAFT_B735, 109 112 AIRCRAFT_T154, AIRCRAFT_T134, 110 AIRCRAFT_YK40, AIRCRAFT_DC3] 113 AIRCRAFT_YK40, AIRCRAFT_DC3, 114 AIRCRAFT_B462] 111 115 112 116 #------------------------------------------------------------------------------- … … 129 133 AIRCRAFT_T134 : "T134", 130 134 AIRCRAFT_T154 : "T154", 131 AIRCRAFT_YK40 : "YK40" } 135 AIRCRAFT_YK40 : "YK40", 136 AIRCRAFT_B462 : "B462" } 132 137 133 138 #------------------------------------------------------------------------------- … … 237 242 #------------------------------------------------------------------------------- 238 243 239 ## Delay code: loading problems240 DELAYCODE_LOADING = 0241 242 ## Delay code: VATSIM problem243 DELAYCODE_VATSIM = 1244 245 ## Delay code: network problems246 DELAYCODE_NETWORK = 2247 248 ## Delay code: controller's fault249 DELAYCODE_CONTROLLER = 3250 251 ## Delay code: system crash or freeze252 DELAYCODE_SYSTEM = 4253 254 ## Delay code: navigation problem255 DELAYCODE_NAVIGATION = 5256 257 ## Delay code: traffic problems258 DELAYCODE_TRAFFIC = 6259 260 ## Delay code: apron navigation261 DELAYCODE_APRON = 7262 263 ## Delay code: weather problems264 DELAYCODE_WEATHER = 8265 266 ## Delay code: personal reasons267 DELAYCODE_PERSONAL = 9268 269 #-------------------------------------------------------------------------------270 271 244 ## Message type: logger error 272 245 # FIXME: cannot set the hotkey
Note:
See TracChangeset
for help on using the changeset viewer.