Skip to content

Commit a4f7723

Browse files
committed
Update pre-built plugin [ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial) to V0.0.5
Signed-off-by: xiaoming <[email protected]>
1 parent 18054ed commit a4f7723

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/scripts/plugin_list.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"name": "plugin-ListSerial",
23-
"url": "https://github.com/QuardCRT-platform/plugin-ListSerial/releases/download/V0.0.4",
23+
"url": "https://github.com/QuardCRT-platform/plugin-ListSerial/releases/download/V0.0.5",
2424
"filetagname": "listserial",
2525
"platform": ["linux_x86_64", "windows_x86_64_mingw", "windows_x86_64_msvc", "macos_x86_64", "macos_arm64"]
2626
},

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ en-US:
1414
- Improve the default path of recording logs, etc. to the last saved path
1515
- Improve the appearance of the session tabs
1616
- Fix the small probability memory leak problem
17+
- Update pre-built plugin [ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial) to V0.0.5
1718

1819
zh-CN:
1920

@@ -27,6 +28,7 @@ zh-CN:
2728
- 改进记录日志等默认路径为上次保存路径
2829
- 改进会话标签外观
2930
- 修复可能存在的小概率内存泄漏问题
31+
- 更新预构建插件[ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial)到V0.0.5版本
3032

3133
## [[V0.5.0](https://github.com/QQxiaoming/quardCRT/releases/tag/V0.5.0)] - 2024-08-26
3234

@@ -62,7 +64,7 @@ zh-CN:
6264
- 修复锁定/解锁会话时目标会话对象不准确
6365
- 修复浮动窗口上下文菜单中部分功能无法使用的问题
6466
- 修复不同情况下新建会话名称不一致问题 [#45](https://github.com/QQxiaoming/quardCRT/issues/45)
65-
- 更新预构建插件[timestamp](https://github.com/QuardCRT-platform/plugin-timestamp)到V0.0.3版本,更新预构建插件CharacterCode到V0.0.4版本
67+
- 更新预构建插件[timestamp](https://github.com/QuardCRT-platform/plugin-timestamp)到V0.0.3版本
6668

6769
## [[V0.4.8](https://github.com/QQxiaoming/quardCRT/releases/tag/V0.4.8)] - 2024-07-26
6870

@@ -100,7 +102,7 @@ zh-CN:
100102
- 改进查找窗口在每次打开时自动填入当前选择的文本
101103
- 改进状态栏
102104
- 修复非英文环境下Telnet会话存储配置错误导致无法连接问题 [#IAADHZ](https://gitee.com/QQxiaoming/quardCRT/issues/IAADHZ)
103-
- 新增预构建插件[timestamp](https://github.com/QuardCRT-platform/plugin-timestamp),更新预构建插件[ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial)到V0.0.3版本,更新预构建插件CharacterCode到V0.0.4版本
105+
- 新增预构建插件[timestamp](https://github.com/QuardCRT-platform/plugin-timestamp),更新预构建插件[ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial)到V0.0.3版本,更新预构建插件[CharacterCode](https://github.com/QuardCRT-platform/plugin-CharacterCode)到V0.0.4版本
104106

105107
## [[V0.4.7](https://github.com/QQxiaoming/quardCRT/releases/tag/V0.4.7)] - 2024-06-26
106108

docs/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- Improve the default path of recording logs, etc. to the last saved path
1515
- Improve the appearance of the session tabs
1616
- Fix the small probability memory leak problem
17+
- Update pre-built plugin [ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial) to V0.0.5
1718

1819
## [[V0.5.0](https://github.com/QQxiaoming/quardCRT/releases/tag/V0.5.0)] - 2024-08-26
1920

src/mainwindow.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,6 +1926,7 @@ void CentralWidget::menuAndToolBarRetranslateUi(void) {
19261926

19271927
void CentralWidget::menuAndToolBarInit(bool disable_plugin) {
19281928
GlobalSetting settings;
1929+
int size = 0;
19291930

19301931
ui->toolBar->setIconSize(QSize(16,16));
19311932
ui->toolBar->setToolButtonStyle(Qt::ToolButtonIconOnly);
@@ -2215,7 +2216,7 @@ void CentralWidget::menuAndToolBarInit(bool disable_plugin) {
22152216
cleanAllRecentScriptAction = new QAction(this);
22162217
scriptMenu->addAction(cleanAllRecentScriptAction);
22172218
#ifdef ENABLE_PYTHON
2218-
int size = settings.beginReadArray("Global/RecentScript");
2219+
size = settings.beginReadArray("Global/RecentScript");
22192220
for(int i=0;i<size;i++) {
22202221
settings.setArrayIndex(i);
22212222
QString path = settings.value("path").toString();

0 commit comments

Comments
 (0)