Skip to content

Commit 1d4ca4b

Browse files
authored
Merge pull request #10 from SPRESENSE/release-v1.2.1
Merge release-v1.2.1 into master for v1.2.1 release
2 parents b3f1060 + 2c0b71e commit 1d4ca4b

File tree

5 files changed

+42
-3
lines changed

5 files changed

+42
-3
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Change Log
22

3+
# v1.2.1
4+
5+
(日本語の説明文は英語の後に記載しています。)
6+
7+
## Summary
8+
9+
* Feature enhancements are available.
10+
11+
* This release has a new [bootloader which have to be loaded](https://developer.sony.com/develop/spresense/docs/sdk_set_up_ide_en.html#_installing_the_boot_loader) before use.
12+
13+
## Improved features
14+
15+
* [Configuration] Fixed an issue in the configuration function using the "SDK Config".
16+
17+
* [Build System] Fixed build failure for older SDK versions (v1.x series) on macOS.
18+
19+
------------------------
20+
21+
(Below is in Japanese)
22+
23+
## 概要
24+
25+
* 機能拡張および機能改善を行いました。
26+
27+
* 今回のリリースにより [ブートローダーの更新](https://developer.sony.com/develop/spresense/docs/sdk_set_up_ide_ja.html#_ブートローダのインストール) が必要になります。
28+
29+
## 改善された機能
30+
31+
* [Configuration] 「SDKコンフィグ」を利用したコンフィグレーション機能の不具合を改善しました。
32+
33+
* [Build System] macOS環境で古いSDK バージョン(v1.x系)のビルドが失敗する事象を改善しました。
34+
335
## v1.2.0
436

537
(日本語の説明文は英語の後に記載しています。)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "sony-spresense",
44
"displayName": "Spresense VSCode IDE",
55
"description": "Spresense Extension for VSCode",
6-
"version": "1.2.0",
6+
"version": "1.2.1",
77
"license": "MIT",
88
"author": {
99
"name": "Sony Semiconductor Solutions"

resources/config/main.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,13 @@ class TristateWidget extends BaseWidget {
698698
return;
699699
}
700700

701+
if (this.value == undefined) {
702+
this.value = this.getDefault();
703+
if (this.value == undefined) {
704+
this.value = 'n';
705+
}
706+
}
707+
701708
switch (this.value) {
702709
case "n":
703710
if (MODULES.value == "y") {

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# SDK Version check
4-
SDK_VERSION_STR=`grep -oP "(?<=^SDK_VERSION=\"SDK).*(?=\")" ${SDK_PATH}/sdk/tools/mkversion.sh`
4+
SDK_VERSION_STR=`grep "^SDK_VERSION=" ${SDK_PATH}/sdk/tools/mkversion.sh | cut -d "\"" -f 2 | sed s/SDK//g`
55
SDK_VERSION_MAJ=`echo ${SDK_VERSION_STR} | cut -d "." -f 1`
66

77
# Location of .config

0 commit comments

Comments
 (0)