Skip to content

Commit ae9b174

Browse files
committed
Merge branch 'main' of https://github.com/Open-CMSIS-Pack/vscode-cmsis-solution into feature/components-keep-or-save-on-dispose
2 parents ebabf53 + bf34def commit ae9b174

536 files changed

Lines changed: 1251 additions & 751 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ The full license text of applicable licenses is provided below.
209209
you may not use this file except in compliance with the License.
210210
You may obtain a copy of the License at
211211

212-
http://www.apache.org/licenses/LICENSE-2.0
212+
https://www.apache.org/licenses/LICENSE-2.0
213213

214214
Unless required by applicable law or agreed to in writing, software
215215
distributed under the License is distributed on an "AS IS" BASIS,

LICENSE-Apache-2.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
you may not use this file except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

197197
Unless required by applicable law or agreed to in writing, software
198198
distributed under the License is distributed on an "AS IS" BASIS,

__mocks__/static-assets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

__mocks__/vscode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

api/csolution-api-v1.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

api/csolution-api-v2.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

api/csolution.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
77
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
8+
* https://www.apache.org/licenses/LICENSE-2.0
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,

package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,11 @@
777777
"command": "cmsis-csolution.getCbuildRunFile",
778778
"title": "Path to cbuild-run.yml File of Active Target"
779779
},
780+
{
781+
"category": "CMSIS",
782+
"command": "cmsis-csolution.getInfoPath",
783+
"title": "Path to output directory of active clangd information"
784+
},
780785
{
781786
"command": "cmsis-csolution.list.find",
782787
"title": "Search"
@@ -891,6 +896,10 @@
891896
"command": "cmsis-csolution.copyHeaderFile",
892897
"when": "false"
893898
},
899+
{
900+
"command": "cmsis-csolution.getInfoPath",
901+
"when": "false"
902+
},
894903
{
895904
"command": "cmsis-csolution.createSolution"
896905
},

scripts/copyright-manager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -37,7 +37,7 @@ const COPYRIGHT_TEXT = `/**
3737
* you may not use this file except in compliance with the License.
3838
* You may obtain a copy of the License at
3939
*
40-
* http://www.apache.org/licenses/LICENSE-2.0
40+
* https://www.apache.org/licenses/LICENSE-2.0
4141
*
4242
* Unless required by applicable law or agreed to in writing, software
4343
* distributed under the License is distributed on an "AS IS" BASIS,

scripts/download-tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* you may not use this file except in compliance with the License.
88
* You may obtain a copy of the License at
99
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
10+
* https://www.apache.org/licenses/LICENSE-2.0
1111
*
1212
* Unless required by applicable law or agreed to in writing, software
1313
* distributed under the License is distributed on an "AS IS" BASIS,

0 commit comments

Comments
 (0)