Skip to content

Commit 37e99c0

Browse files
committed
Merge branch 'Dev'
2 parents da74db8 + 9a59cc1 commit 37e99c0

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ All notable changes to the Adobe Script Runner extension will be documented in t
66

77
## Released
88

9+
## [0.2.1] 2019-01-05
10+
11+
- Updates default Windows paths to CC2019 version.
12+
- Updates descriptions for `Run Untitled`, `Save Dirty`, and `Temp File` in extensions Settings window.
13+
914
## [0.2.0] 2018-03-29
1015

1116
- Fixed bug when settings were not registered until app restart.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "adobe-script-runner",
33
"displayName": "Adobe Script Runner",
44
"description": "Run Adobe scripts from VSCode",
5-
"version": "0.2.0",
5+
"version": "0.2.1",
66
"publisher": "renderTom",
77
"icon": "resources/icon.png",
88
"galleryBanner": {
@@ -59,17 +59,17 @@
5959
"adobeScriptRunner.saveDirty": {
6060
"type": "boolean",
6161
"default": true,
62-
"description": "Save dirty files before evaluating."
62+
"description": "Save dirty document before evaluating."
6363
},
6464
"adobeScriptRunner.runUntitled": {
6565
"type": "boolean",
6666
"default": true,
67-
"description": "Save untitled file before evaluating. Set file destination in 'tempFile' option."
67+
"description": "Evaluates untitled document.\nNote: document has to be saved prior to evaluating, therefore check 'Temp File' option to set temporary file path."
6868
},
6969
"adobeScriptRunner.tempFile": {
7070
"type": "string",
7171
"default": "~/.vscode/Snippet.js",
72-
"description": "Saves untitled document to temporary file. Used only when 'saveUndefined' is set to 'true'."
72+
"description": "Path to temporary file where untitled documents are being saved prior to evaluating. Used only when 'Run Untitled' is set to 'true'."
7373
},
7474
"adobeScriptRunner.winEstkExe": {
7575
"type": "string",
@@ -78,17 +78,17 @@
7878
},
7979
"adobeScriptRunner.winAfterFxExe": {
8080
"type": "string",
81-
"default": "C:/Program Files/Adobe/Adobe After Effects CC 2018/Support Files/AfterFX.exe",
81+
"default": "C:/Program Files/Adobe/Adobe After Effects CC 2019/Support Files/AfterFX.exe",
8282
"description": "Windows only: Path to Adobe After Effects executable (AfterFX.exe)."
8383
},
8484
"adobeScriptRunner.winIllustratorExe": {
8585
"type": "string",
86-
"default": "C:/Program Files/Adobe/Adobe Illustrator CC 2018/Support Files/Contents/Windows/Illustrator.exe",
86+
"default": "C:/Program Files/Adobe/Adobe Illustrator CC 2019/Support Files/Contents/Windows/Illustrator.exe",
8787
"description": "Windows only: Path to Adobe Illustrator executable (Illustrator.exe)."
8888
},
8989
"adobeScriptRunner.winPhotoshopExe": {
9090
"type": "string",
91-
"default": "C:/Program Files/Adobe/Adobe Photoshop CC 2018/Photoshop.exe",
91+
"default": "C:/Program Files/Adobe/Adobe Photoshop CC 2019/Photoshop.exe",
9292
"description": "Windows only: Path to Adobe Photoshop executable (Photoshop.exe)."
9393
}
9494
}

0 commit comments

Comments
 (0)