Skip to content

Commit f82f249

Browse files
committed
更正编码转换列表为空时,删除崩溃的bug
1 parent 9d1bbbe commit f82f249

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

changlog/autoUpdate.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<item>
3-
<version>1.0.4.0</version>
3+
<version>1.0.4.1</version>
44
<url>https://llcom.papapoi.com/llcom.zip</url>
55
<changelog>https://llcom.papapoi.com/changelog.html</changelog>
66
<mandatory mode="1">true</mandatory>

changlog/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,19 @@
1111

1212
> 欢迎加入交流群:`931546484`
1313

14+
## LLCOM 1.0.4.1
15+
16+
- 更正编码转换列表为空时,删除崩溃的bug
17+
18+
---
19+
1420
## LLCOM 1.0.4.0
1521

1622
- 增加字符编码转换小工具
1723
- 把tcp工具整合到`小工具`选项卡
1824

1925
---
26+
2027
## LLCOM 1.0.3.9
2128

2229
- 增加禁止锁定当前数据位置按钮,防止来新数据被拉下去

llcom/Pages/ConvertPage.xaml.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ private void RawTextBox_TextChanged(object sender, TextChangedEventArgs e)
5858

5959
private void ConvertClearButton_Click(object sender, RoutedEventArgs e)
6060
{
61+
if (ConvertJobsListBox.Items.Count == 0)
62+
return;
6163
ConvertJobsListBox.Items.RemoveAt(ConvertJobsListBox.Items.Count - 1);
6264
DoConvert();
6365
}

llcom/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
5252
//通过使用 "*",如下所示:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.0.4.0")]
55-
[assembly: AssemblyFileVersion("1.0.4.0")]
54+
[assembly: AssemblyVersion("1.0.4.1")]
55+
[assembly: AssemblyFileVersion("1.0.4.1")]
5656
[assembly: NeutralResourcesLanguage("zh-CN")]
5757

0 commit comments

Comments
 (0)