Skip to content

Commit c913b2c

Browse files
committed
Update changelog. Add new keybinding.
1 parent bffe92c commit c913b2c

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.3] - 2019-02-08
9+
10+
### Changed
11+
12+
- Publishing to VS Code Marketplace under a new publisher name, `nsupload-org`. This will make it appear as a different extension than the old one. Going to remove the old extension from the VS Code Marketplace.
13+
- Added keybinding for upload. Ctrl+n,Ctrl+u. This complements the download keybinding, Ctrl+n,Ctrl+d.
14+
- Improved some Settings descriptions.
15+
816
## [1.0.2] - 2019-02-07
917

1018
### Fixed

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@
4040
"properties": {
4141
"netSuiteUpload.authentication": {
4242
"type": "string",
43-
"description": "Authentication header. For use with traditional NLAuth-style authentication. You may leave this unset and instead use OAuth."
43+
"description": "NLAuth-style authentication header. To use OAuth instead, leave this unset."
4444
},
4545
"netSuiteUpload.restlet": {
4646
"type": "string",
47-
"description": "Restlet URL"
47+
"description": "Restlet URL. After you deploy the vscodeExtensionRestlet.js, set this to the Script Deployment External URL."
4848
},
4949
"netSuiteUpload.tempFolder": {
5050
"type": "string",
51-
"description": "Temporary folder (e.g. C:\\temp or /tmp)."
51+
"description": "Temporary folder (e.g. C:\\temp or /tmp). Used during diff comparisons between local and remote files."
5252
},
5353
"netSuiteUpload.netSuiteKey": {
5454
"type": "string",
@@ -68,11 +68,11 @@
6868
},
6969
"netSuiteUpload.realm": {
7070
"type": "string",
71-
"description": "OAuth Netsuite account number (aka realm)"
71+
"description": "Your NetSuite numeric account number (used for OAuth 'realm' parameter)"
7272
},
7373
"netSuiteUpload.rootDirectory": {
7474
"type": "string",
75-
"description": "NetSuite root directory path to upload to. Defaults to SuiteScripts if not set."
75+
"description": "NetSuite File Cabinet SuiteScripts sub-folder path to upload to. Defaults to 'SuiteScripts' if not set."
7676
}
7777
}
7878
},
@@ -151,6 +151,10 @@
151151
{
152152
"command": "netsuite-upload.downloadFile",
153153
"key": "ctrl+n ctrl+d"
154+
},
155+
{
156+
"command": "netsuite-upload.uploadFile",
157+
"key": "ctrl+n ctrl+u"
154158
}
155159
],
156160
"snippets": [

0 commit comments

Comments
 (0)