Skip to content

Commit caea6c7

Browse files
committed
optimize ram/rom layout webview
1 parent cc566ad commit caea6c7

2 files changed

Lines changed: 19 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
***
66

77
### [v2.13.0_RC1]
8+
- 优化:切换不同的烧录器时,保留旧的烧录配置
9+
- 优化:为 STLink,JLink 烧录器增加**附加命令行**选项,用于为烧录程序附加额外的命令行
810
- 修复:打开 RAM/ROM Layout 偶尔出现内容为空的问题,适应 vscode 主题色
911
***
1012

res/html/StorageLayoutView/index.html

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<title>RAM ROM Layout</title>
6+
<title>Memory Layout</title>
77

88
<link href="${bootstrap-css}" rel="stylesheet">
99
<link href="${checkbox-css}" rel="stylesheet">
@@ -54,7 +54,6 @@
5454
.panel-info,
5555
.panel-warning {
5656
color: var(--vscode-editor-foreground) !important;
57-
background-color: var(--vscode-editor-background) !important;
5857
border-radius: .25rem !important;
5958
}
6059

@@ -287,7 +286,7 @@ <h4 class="modal-title" id="dialog-label"></h4>
287286
<div class="panel-heading">
288287
<h4 class="panel-title">
289288
<li data-parent="#body">
290-
RAM Layout
289+
Ram Layout
291290
</li>
292291
</h4>
293292
</div>
@@ -297,9 +296,9 @@ <h4 class="panel-title">
297296
<caption>On-Chip</caption>
298297
<thead>
299298
<tr>
300-
<th>default</th>
301-
<th>start address</th>
302-
<th>size</th>
299+
<th>Default</th>
300+
<th>Start Address</th>
301+
<th>Size</th>
303302
<th>NoInit</th>
304303
</tr>
305304
</thead>
@@ -391,9 +390,9 @@ <h4 class="panel-title">
391390
<caption>Off-Chip</caption>
392391
<thead>
393392
<tr>
394-
<th>default</th>
395-
<th>start address</th>
396-
<th>size</th>
393+
<th>Default</th>
394+
<th>Start Address</th>
395+
<th>Size</th>
397396
<th>NoInit</th>
398397
</tr>
399398
</thead>
@@ -528,7 +527,7 @@ <h4 class="panel-title">
528527
<div class="panel-heading">
529528
<h4 class="panel-title">
530529
<li data-parent="#body">
531-
ROM Layout
530+
Rom Layout
532531
</li>
533532
</h4>
534533
</div>
@@ -538,10 +537,10 @@ <h4 class="panel-title">
538537
<caption>On-Chip</caption>
539538
<thead>
540539
<tr>
541-
<th>default</th>
542-
<th>start address</th>
543-
<th>size</th>
544-
<th>startup</th>
540+
<th>Default</th>
541+
<th>Start Address</th>
542+
<th>Size</th>
543+
<th>Startup</th>
545544
</tr>
546545
</thead>
547546
<tbody>
@@ -620,10 +619,10 @@ <h4 class="panel-title">
620619
<caption>Off-Chip</caption>
621620
<thead>
622621
<tr>
623-
<th>default</th>
624-
<th>start address</th>
625-
<th>size</th>
626-
<th>startup</th>
622+
<th>Default</th>
623+
<th>Start Address</th>
624+
<th>Size</th>
625+
<th>Startup</th>
627626
</tr>
628627
</thead>
629628
<tbody>

0 commit comments

Comments
 (0)