Skip to content

Commit

Permalink
0.33.1
Browse files Browse the repository at this point in the history
  • Loading branch information
huiyadanli committed Aug 19, 2024
1 parent b62e4a7 commit 98b1376
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
2 changes: 1 addition & 1 deletion BetterGenshinImpact/Core/Config/Global.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace BetterGenshinImpact.Core.Config;

public class Global
{
public static string Version { get; } = "0.33.0";
public static string Version { get; } = "0.33.1";

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

Expand Down
2 changes: 1 addition & 1 deletion BetterGenshinImpact/View/Pages/KeyMouseRecordPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<ui:TextBlock Grid.Row="0"
Margin="0,0,0,8"
FontTypography="BodyStrong"
Text="键鼠录制回放功能(实验性功能" />
Text="键鼠录制回放功能(实验功能" />
<ui:TextBlock Grid.Row="1"
Margin="0,0,0,8"
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
Expand Down
12 changes: 5 additions & 7 deletions BetterGenshinImpact/View/Pages/ScriptControlPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@
<StackPanel>
<ui:TextBlock Margin="0,0,0,8"
FontTypography="BodyStrong"
Text="实验中功能)请在左侧栏选择或新增配置组" />
Text="实验功能)请在左侧栏选择或新增配置组" />
<ui:TextBlock Margin="0,0,0,8"
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
TextWrapping="Wrap">
左侧配置组栏目右键可以新增配置组,然后可以添加并配置软件内的脚本,并进行连续执行。脚本语言为 Javascript,<Hyperlink Command="{Binding GoToScriptGroupUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
点击查看配置组使用教程
左侧配置组栏目右键可以新增配置组,然后可以添加并配置软件内的 Javascript 脚本、键鼠脚本等,并能够控制执行次数、顺序等,<Hyperlink Command="{Binding GoToScriptGroupUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
点击查看调度器使用教程
</Hyperlink>
</ui:TextBlock>
<!-- 示例配置组 -->
Expand Down Expand Up @@ -151,7 +151,7 @@
<StackPanel Grid.Row="0" Orientation="Horizontal">
<ui:TextBlock Margin="0,0,0,8"
FontTypography="BodyStrong"
Text="实验中功能)配置组 - " />
Text="实验功能)配置组 - " />
<ui:TextBlock Margin="0,0,0,8"
FontTypography="BodyStrong"
Text="{Binding SelectedScriptGroup.Name}" />
Expand All @@ -161,9 +161,7 @@
Margin="0,0,0,8"
Foreground="{ui:ThemeResource TextFillColorTertiaryBrush}"
TextWrapping="Wrap">
在下方列表中右键可以添加配置,拖拽可以调整执行顺序,支持 BetterGI 内的 Javascript 脚本、键鼠录制脚本等<Hyperlink Command="{Binding GoToScriptProjectUrlCommand}" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}">
点击查看使用教程
</Hyperlink>
在下方列表中右键可以添加配置,拖拽可以调整执行顺序。支持 BetterGI 内的 Javascript 脚本、键鼠录制脚本等,通过调度器可以设置脚本执行次数、顺序等。
</ui:TextBlock>


Expand Down
6 changes: 0 additions & 6 deletions BetterGenshinImpact/ViewModel/Pages/ScriptControlViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -357,12 +357,6 @@ public void OnGoToScriptGroupUrl()
Process.Start(new ProcessStartInfo("https://bgi.huiyadan.com/") { UseShellExecute = true });
}

[RelayCommand]
public void OnGoToScriptProjectUrl()
{
Process.Start(new ProcessStartInfo("https://bgi.huiyadan.com/") { UseShellExecute = true });
}

[RelayCommand]
public void OnImportScriptGroup(string scriptGroupExample)
{
Expand Down

0 comments on commit 98b1376

Please sign in to comment.