Skip to content

Commit

Permalink
商店版串口监听功能关了
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxuuu committed Jul 8, 2021
1 parent 3fd684f commit f96f805
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WapProj/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Identity
Name="800948F61A16.llcom"
Publisher="CN=33E7C5B3-A6A5-4489-B89F-4038AA5CC34B"
Version="1.0.60.0" />
Version="1.0.65.0" />

<Properties>
<DisplayName>llcom</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion changlog/autoUpdate.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.0.6.3</version>
<version>1.0.6.5</version>
<url>https://llcom.papapoi.com/llcom.zip</url>
<changelog>https://llcom.papapoi.com/changelog.html</changelog>
<mandatory mode="1">true</mandatory>
Expand Down
6 changes: 6 additions & 0 deletions changlog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

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

## LLCOM 1.0.6.5

- 商店版的串口监听功能关掉

---

## LLCOM 1.0.6.3

- 微调串口监听页面
Expand Down
5 changes: 5 additions & 0 deletions llcom/Pages/SerialMonitorPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,11 @@ private void RefreshButton_Click(object sender, RoutedEventArgs e)
private bool connected = false;
private void MonitorButton_Click(object sender, RoutedEventArgs e)
{
if(Tools.Global.IsMSIX())
{
MessageBox.Show("商店版本不支持此功能,请打开llcom.papapoi.com,下载exe免安装版本");
return;
}
if(!connected)
{
if (PidComboBox.SelectedItem == null ||
Expand Down
4 changes: 2 additions & 2 deletions llcom/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.6.3")]
[assembly: AssemblyFileVersion("1.0.6.3")]
[assembly: AssemblyVersion("1.0.6.5")]
[assembly: AssemblyFileVersion("1.0.6.5")]
[assembly: NeutralResourcesLanguage("zh-CN")]

0 comments on commit f96f805

Please sign in to comment.