Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
93014b1
Fix boolean return
crokita Oct 18, 2021
1e6c2c0
Make detaching listener happen all the time in finishOperation
crokita Oct 18, 2021
8b692df
Fix MenuReplaceOperations being added and run synchronously
renonick87 Oct 19, 2021
fbb3f8f
Fix MenuReplaceOperation onExecute not being async, and update method…
renonick87 Oct 20, 2021
973a448
Fix return values of _setMenuCells
renonick87 Oct 20, 2021
26eb4be
Move fix to below LCM null check
crokita Oct 20, 2021
1f17de4
Merge pull request #496 from smartdevicelink/bugfix/preload-artworks-…
crokita Oct 20, 2021
65e2bf8
Initialize button ID sets on connection
renonick87 Oct 20, 2021
9cff773
Fix some tasks having an onExecute method that is not async
renonick87 Oct 21, 2021
8d578cf
Merge pull request #498 from smartdevicelink/bugfix/keyboard-listener…
crokita Oct 21, 2021
fb08253
Merge pull request #502 from smartdevicelink/bugfix/initialize-button…
renonick87 Oct 22, 2021
4dfe8a9
Merge pull request #500 from smartdevicelink/bugfix/menu-replace-runn…
renonick87 Oct 22, 2021
98c1eb4
Update build dependencies to remove vulnerabilities
renonick87 Oct 22, 2021
85bdb97
Revert package update that would have required higher node/npm version
renonick87 Oct 22, 2021
0b18a02
Log warning when trying to set voice commands for a SubMenu cell
renonick87 Oct 25, 2021
0ea3941
Merge pull request #503 from smartdevicelink/bugfix/vulnerabilities-1…
renonick87 Oct 25, 2021
60be7ac
Handle case where voice commands are set to an empty array
renonick87 Oct 25, 2021
c641afd
Fix alert view cancel listener not being set when presenting
renonick87 Oct 26, 2021
9173b0a
Merge pull request #505 from smartdevicelink/bugfix/submenu-voice-com…
renonick87 Oct 26, 2021
3eaf029
Fix alert CancelInteraction to use setters and add return statements …
renonick87 Oct 26, 2021
ec0e4df
Fix console log
renonick87 Oct 26, 2021
27ca179
Merge pull request #510 from smartdevicelink/bugfix/alert-view-cancel…
renonick87 Oct 26, 2021
57bed19
Update rpc spec
crokita Oct 27, 2021
c34b900
Merge pull request #511 from smartdevicelink/feature/update-spec-8.0
crokita Oct 27, 2021
f371912
Merge pull request #512 from smartdevicelink/release/1.5.0_RC
crokita Oct 27, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update rpc spec
  • Loading branch information
crokita committed Oct 27, 2021
commit 57bed190ed60e22247a739c5a6129aa7a622aac6
2 changes: 1 addition & 1 deletion lib/js/src/rpc/structs/AudioControlCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class AudioControlCapabilities extends RpcStruct {

/**
* Set the ModuleName
* @param {String} name - The short friendly name of the light control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* @param {String} name - The short friendly name of the audio control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* {'string_min_length': 1, 'string_max_length': 100}
* @returns {AudioControlCapabilities} - The class instance for method chaining.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/js/src/rpc/structs/RadioControlCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class RadioControlCapabilities extends RpcStruct {

/**
* Set the ModuleName
* @param {String} name - The short friendly name of the climate control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* @param {String} name - The short friendly name of the radio control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* {'string_min_length': 1, 'string_max_length': 100}
* @returns {RadioControlCapabilities} - The class instance for method chaining.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/js/src/rpc/structs/SeatControlCapabilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SeatControlCapabilities extends RpcStruct {

/**
* Set the ModuleName
* @param {String} name - The short friendly name of the light control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* @param {String} name - The short friendly name of the seat control module. It should not be used to identify a module by mobile application. - The desired ModuleName.
* {'string_min_length': 1, 'string_max_length': 100}
* @returns {SeatControlCapabilities} - The class instance for method chaining.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/rpc_spec
Submodule rpc_spec updated 3 files
+32 −11 MOBILE_API.xml
+11 −11 README.md
+41 −0 RpcParser/README.md