Skip to content

Commit

Permalink
Update pre-built plugin [ListSerial](https://github.com/QuardCRT-plat…
Browse files Browse the repository at this point in the history
…form/plugin-ListSerial) to V0.0.5

Signed-off-by: xiaoming <[email protected]>
  • Loading branch information
QQxiaoming committed Sep 19, 2024
1 parent 18054ed commit a4f7723
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/plugin_list.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
{
"name": "plugin-ListSerial",
"url": "https://github.com/QuardCRT-platform/plugin-ListSerial/releases/download/V0.0.4",
"url": "https://github.com/QuardCRT-platform/plugin-ListSerial/releases/download/V0.0.5",
"filetagname": "listserial",
"platform": ["linux_x86_64", "windows_x86_64_mingw", "windows_x86_64_msvc", "macos_x86_64", "macos_arm64"]
},
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ en-US:
- Improve the default path of recording logs, etc. to the last saved path
- Improve the appearance of the session tabs
- Fix the small probability memory leak problem
- Update pre-built plugin [ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial) to V0.0.5

zh-CN:

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

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

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

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

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

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

Expand Down
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- Improve the default path of recording logs, etc. to the last saved path
- Improve the appearance of the session tabs
- Fix the small probability memory leak problem
- Update pre-built plugin [ListSerial](https://github.com/QuardCRT-platform/plugin-ListSerial) to V0.0.5

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

Expand Down
3 changes: 2 additions & 1 deletion src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1926,6 +1926,7 @@ void CentralWidget::menuAndToolBarRetranslateUi(void) {

void CentralWidget::menuAndToolBarInit(bool disable_plugin) {
GlobalSetting settings;
int size = 0;

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

0 comments on commit a4f7723

Please sign in to comment.