Changeset 466:7c66a233f9f3


Ignore:
Timestamp:
03/15/13 08:40:37 (11 years ago)
Author:
István Váradi <ivaradi@…>
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
Message:

Imported user's manual updates from 0.15.1

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/const.py

    r451 r466  
    1111
    1212## The version of the program
    13 VERSION="0.17"
     13VERSION="0.17.1"
    1414
    1515#-------------------------------------------------------------------------------
  • src/mlx/const.py

    r459 r466  
    1111
    1212## The version of the program
    13 VERSION="0.15.1"
     13VERSION="0.17.1"
    1414
    1515#-------------------------------------------------------------------------------
     
    9595## Aircraft type: Yakovlev Yak-40
    9696AIRCRAFT_YK40 = 15
     97
     98## Aircraft type: British Aerospace BAe-146
     99AIRCRAFT_B462 = 17
    97100
    98101#-------------------------------------------------------------------------------
     
    108111                 AIRCRAFT_B733, AIRCRAFT_B734, AIRCRAFT_B735,
    109112                 AIRCRAFT_T154, AIRCRAFT_T134,
    110                  AIRCRAFT_YK40, AIRCRAFT_DC3]
     113                 AIRCRAFT_YK40, AIRCRAFT_DC3,
     114                 AIRCRAFT_B462]
    111115
    112116#-------------------------------------------------------------------------------
     
    129133              AIRCRAFT_T134  : "T134",
    130134              AIRCRAFT_T154  : "T154",
    131               AIRCRAFT_YK40  : "YK40" }
     135              AIRCRAFT_YK40  : "YK40",
     136              AIRCRAFT_B462  : "B462" }
    132137
    133138#-------------------------------------------------------------------------------
     
    237242#-------------------------------------------------------------------------------
    238243
    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 
    271244## Message type: logger error
    272245# FIXME: cannot set the hotkey
Note: See TracChangeset for help on using the changeset viewer.