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
f54a7ca
Checkpoint
crokita Oct 26, 2021
56f83de
Merge pull request #513 from smartdevicelink/master
crokita Oct 27, 2021
0a6e0a6
Library alignment
crokita Nov 12, 2021
bd98f41
Alignment and bug fixes
crokita Nov 15, 2021
55aabbd
Remove unused parameter in menu utility method
crokita Nov 17, 2021
6fb5664
Check for null before attempting to call a method
crokita Nov 18, 2021
ebe1360
Merge pull request #514 from smartdevicelink/bugfix/menu-manager-vers…
crokita Nov 19, 2021
deb5732
Handle language and hmi display language separately on registration
renonick87 Dec 13, 2021
8f4310c
Merge pull request #517 from smartdevicelink/feature/set_language_sep…
renonick87 Dec 14, 2021
fdea868
Explicitly add the null check condition
crokita Dec 15, 2021
62bf611
Merge pull request #516 from smartdevicelink/bugfix/null-access-softb…
crokita Jan 5, 2022
c2ec280
Fix Issue 520
theresalech Feb 15, 2022
525bb61
Merge pull request #521 from smartdevicelink/bugfix/issue-520-typos
theresalech Feb 22, 2022
4a0af4a
update rpc file copyright years to 2022
renonick87 Mar 14, 2022
47eed97
Merge pull request #522 from smartdevicelink/update-copyright-2022
renonick87 Mar 14, 2022
d2f9e40
Update vulnerable packages and fix lint issues
crokita Mar 15, 2022
5972529
Merge pull request #523 from smartdevicelink/bugfix/security-vulnerab…
crokita Mar 15, 2022
c88631c
1.6.0
renonick87 Mar 28, 2022
615b3f4
Merge pull request #525 from smartdevicelink/bugfix/version-1.6
renonick87 Mar 29, 2022
add5cc6
Bump minimist from 1.2.5 to 1.2.6
dependabot[bot] Mar 29, 2022
0bf5cdb
Merge pull request #524 from smartdevicelink/dependabot/npm_and_yarn/…
crokita Mar 29, 2022
9c76ff5
Fix null access error
crokita Mar 30, 2022
89f3a88
Add warnings for invalid voice command strings
crokita Mar 30, 2022
5382a90
Merge pull request #530 from smartdevicelink/bugfix/invalid-voice-com…
crokita Apr 1, 2022
f541e2f
Merge pull request #528 from smartdevicelink/bugfix/present-alert-op-…
crokita Apr 8, 2022
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
Fix Issue 520
  • Loading branch information
theresalech committed Feb 15, 2022
commit c2ec280fedb9da91209e200c8ab661af008e1dc9
4 changes: 2 additions & 2 deletions lib/js/src/manager/LifecycleConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ class LifecycleConfig {
}

/**
* Get the desired langauge of the application.
* Get the desired language of the application.
* @returns {Language} - A Language enum value.
*/
getLanguageDesired () {
Expand All @@ -237,7 +237,7 @@ class LifecycleConfig {

/**
* Get the desired HMI Display Language.
* @returns {Language} - A Langauge enum value.
* @returns {Language} - A Language enum value.
*/
getHmiDisplayLanguageDesired () {
return this._hmiDisplayLanguageDesired;
Expand Down
2 changes: 1 addition & 1 deletion lib/js/src/manager/SdlManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ class SdlManager extends _SdlManagerBase {
}

/**
* Retreives the RAI response from the _LifecycleManager
* Retrieves the RAI response from the _LifecycleManager
* @returns {RegisterAppInterfaceResponse|null} - A RegisterAppInterfaceResponse.
*/
getRegisterAppInterfaceResponse () {
Expand Down
6 changes: 3 additions & 3 deletions lib/js/src/manager/file/filetypes/SdlFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class SdlFile {

/**
* Sets the location of the file
* @param {String} filePath - a String value representing the the location of the file
* @param {String} filePath - a String value representing the location of the file
* @returns {SdlFile} - A reference to this instance to support method chaining.
*/
setFilePath (filePath) {
Expand Down Expand Up @@ -143,7 +143,7 @@ class SdlFile {
}

/**
* Sets the the name of the static file. Static files comes pre-shipped with the head unit
* Sets the name of the static file. Static files comes pre-shipped with the head unit
* @param {Boolean} staticIcon - a StaticIconName enum value representing the name of a static file that comes pre-shipped with the head unit
* @returns {SdlFile} - A reference to this instance to support method chaining.
*/
Expand All @@ -153,7 +153,7 @@ class SdlFile {
}

/**
* Gets the the name of the static file. Static files comes pre-shipped with the head unit
* Gets the name of the static file. Static files comes pre-shipped with the head unit
* @returns {Boolean} - a StaticIconName enum value representing the name of a static file that comes pre-shipped with the head unit
*/
isStaticIcon () {
Expand Down
4 changes: 2 additions & 2 deletions lib/js/src/manager/permission/PermissionElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ class PermissionElement {
}

/**
* Retreives the RPC ID
* Retrieves the RPC ID
* @returns {Number} - A numeric FunctionID
*/
getRpcId () {
return this._rpcId;
}

/**
* Retreives the permission parameters the developer wishes to track
* Retrieves the permission parameters the developer wishes to track
* @returns {String[]} - An array of parameter strings
*/
getParameters () {
Expand Down