+-------+ |Changes| +-------+ local cockpit = folder.."../../../Cockpit/Scripts/" dofile(cockpit.."devices.lua") dofile(cockpit.."command_defs.lua") +-------+ |Changes| +-------+ Markable changes on command lines: Old: name = 'Toggle Console', category = 'Debug' New: name = _('Toggle Console'), category = _('Debug') +-------+ |Removed| +-------+ {combos = {{key = 'R', reformers = {'RWin'}}}, down = iCommandReloadTables, name = 'Reload Cockpit', category = 'Debug'}, +-------+ |Updated| +-------+ {combos = {{key = 'Delete'}}, down = device_commands.Button_6, cockpit_device_id = devices.ENGINE_CONTROL_PANEL, value_down = 1.0, name = _('Fuel Booster'), category = _('Engine Control Panel')}, {combos = {{key = 'Delete', reformers = {'LShift'}}}, down = device_commands.Button_12, cockpit_device_id = devices.ENGINE_CONTROL_PANEL, value_down = 1.0, name = _('Fuel Booster ON'), category = _('Engine Control Panel')}, {combos = {{key = 'Delete', reformers = {'LCtrl'}}}, down = device_commands.Button_12, cockpit_device_id = devices.ENGINE_CONTROL_PANEL, value_down = 0.0, name = _('Fuel Booster OFF'), category = _('Engine Control Panel')},