Skip to content

Commit 98b1376

Browse files
committed
0.33.1
1 parent b62e4a7 commit 98b1376

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

BetterGenshinImpact/Core/Config/Global.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace BetterGenshinImpact.Core.Config;
55

66
public class Global
77
{
8-
public static string Version { get; } = "0.33.0";
8+
public static string Version { get; } = "0.33.1";
99

1010
public static string StartUpPath { get; set; } = AppContext.BaseDirectory;
1111

BetterGenshinImpact/View/Pages/KeyMouseRecordPage.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<ui:TextBlock Grid.Row="0"
3737
Margin="0,0,0,8"
3838
FontTypography="BodyStrong"
39-
Text="键鼠录制回放功能(实验性功能" />
39+
Text="键鼠录制回放功能(实验功能" />
4040
<ui:TextBlock Grid.Row="1"
4141
Margin="0,0,0,8"
4242
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"

BetterGenshinImpact/View/Pages/ScriptControlPage.xaml

+5-7
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@
9696
<StackPanel>
9797
<ui:TextBlock Margin="0,0,0,8"
9898
FontTypography="BodyStrong"
99-
Text="实验中功能)请在左侧栏选择或新增配置组" />
99+
Text="实验功能)请在左侧栏选择或新增配置组" />
100100
<ui:TextBlock Margin="0,0,0,8"
101101
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
102102
TextWrapping="Wrap">
103-
左侧配置组栏目右键可以新增配置组,然后可以添加并配置软件内的脚本,并进行连续执行。脚本语言为 Javascript,<Hyperlink Command="{Binding GoToScriptGroupUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
104-
点击查看配置组使用教程
103+
左侧配置组栏目右键可以新增配置组,然后可以添加并配置软件内的 Javascript 脚本、键鼠脚本等,并能够控制执行次数、顺序等,<Hyperlink Command="{Binding GoToScriptGroupUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
104+
点击查看调度器使用教程
105105
</Hyperlink>
106106
</ui:TextBlock>
107107
<!-- 示例配置组 -->
@@ -151,7 +151,7 @@
151151
<StackPanel Grid.Row="0" Orientation="Horizontal">
152152
<ui:TextBlock Margin="0,0,0,8"
153153
FontTypography="BodyStrong"
154-
Text="实验中功能)配置组 - " />
154+
Text="实验功能)配置组 - " />
155155
<ui:TextBlock Margin="0,0,0,8"
156156
FontTypography="BodyStrong"
157157
Text="{Binding SelectedScriptGroup.Name}" />
@@ -161,9 +161,7 @@
161161
Margin="0,0,0,8"
162162
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
163163
TextWrapping="Wrap">
164-
在下方列表中右键可以添加配置,拖拽可以调整执行顺序,支持 BetterGI 内的 Javascript 脚本、键鼠录制脚本等<Hyperlink Command="{Binding GoToScriptProjectUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
165-
点击查看使用教程
166-
</Hyperlink>
164+
在下方列表中右键可以添加配置,拖拽可以调整执行顺序。支持 BetterGI 内的 Javascript 脚本、键鼠录制脚本等,通过调度器可以设置脚本执行次数、顺序等。
167165
</ui:TextBlock>
168166

169167

BetterGenshinImpact/ViewModel/Pages/ScriptControlViewModel.cs

-6
Original file line numberDiff line numberDiff line change
@@ -357,12 +357,6 @@ public void OnGoToScriptGroupUrl()
357357
Process.Start(new ProcessStartInfo("https://bgi.huiyadan.com/") { UseShellExecute = true });
358358
}
359359

360-
[RelayCommand]
361-
public void OnGoToScriptProjectUrl()
362-
{
363-
Process.Start(new ProcessStartInfo("https://bgi.huiyadan.com/") { UseShellExecute = true });
364-
}
365-
366360
[RelayCommand]
367361
public void OnImportScriptGroup(string scriptGroupExample)
368362
{

0 commit comments

Comments
 (0)