Skip to content

Commit

Permalink
API spelling and version number bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlblom committed Jan 18, 2024
1 parent efc610d commit e0fb744
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Install server in ```Scripts``` folder and add entry to Export.lua.
* 1 : GetDevice(device_id):get_argument_value(argument_id)
* 2 : GetDevice(device_id):set_argument_value(argument_id, new_value)
* 3 : GetDevice(device_id):performClickableAction(command_id, argument_id)
* 4 : GetDevice(device_id):SetCommandAPI(command_id, new_value)
* 4 : GetDevice(device_id):SetCommand(command_id, new_value)
* 5 : GetDevice(device_id):get_frequency()
* 6 : GetDevice(device_id):set_frequency(new_value)
* 7 : GetDevice(device_id):update_arguments()
Expand Down
2 changes: 1 addition & 1 deletion src/client/DCSInsight/DCSInsight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<UseWPF>true</UseWPF>
<AssemblyName>dcs-insight</AssemblyName>
<Version>1.0.0</Version>
<AssemblyVersion>1.8.4</AssemblyVersion>
<AssemblyVersion>1.8.5</AssemblyVersion>
<ApplicationIcon>Images\Magnifier_icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ local SetCommandAPI = APIBase:new()
--- @param apiId integer API ID, must be unique
--- @return APIBase
function SetCommandAPI:new(o, apiId)
o = o or APIBase:new(o, apiId, false, "GetDevice(device_id):SetCommandAPI(command_id, new_value)", 3)
o = o or APIBase:new(o, apiId, false, "GetDevice(device_id):SetCommand(command_id, new_value)", 3)

o:add_param_def(0, ParamName.device_id, ParamType.number)
o:add_param_def(1, ParamName.command_id, ParamType.number)
Expand Down

0 comments on commit e0fb744

Please sign in to comment.