Skip to content

Commit

Permalink
バージョンの変更、Error.logファイルの削除機能を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
puk06 committed Apr 22, 2024
1 parent c748262 commit e712fc3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>True|2024-04-22T07:19:14.2173730Z;True|2024-04-21T02:03:33.8117302+09:00;True|2024-04-21T02:00:36.8085487+09:00;True|2024-04-17T02:58:10.0359290+09:00;True|2024-04-16T16:45:20.8928720+09:00;True|2024-04-16T10:27:21.3395995+09:00;True|2024-04-16T10:02:21.9972043+09:00;True|2024-04-16T05:38:46.7320474+09:00;True|2024-04-16T05:37:18.2648194+09:00;True|2024-04-16T01:49:04.3493811+09:00;True|2024-04-15T03:36:17.0915653+09:00;True|2024-04-15T03:14:20.6028285+09:00;True|2024-04-15T03:11:43.2658193+09:00;True|2024-04-15T03:09:50.1246465+09:00;True|2024-04-15T03:08:28.3956698+09:00;True|2024-04-15T01:01:18.0948290+09:00;True|2024-04-15T01:00:57.6262747+09:00;True|2024-04-15T00:59:48.4706567+09:00;</History>
<History>True|2024-04-22T07:47:38.1724315Z;True|2024-04-22T16:19:14.2173730+09:00;True|2024-04-21T02:03:33.8117302+09:00;True|2024-04-21T02:00:36.8085487+09:00;True|2024-04-17T02:58:10.0359290+09:00;True|2024-04-16T16:45:20.8928720+09:00;True|2024-04-16T10:27:21.3395995+09:00;True|2024-04-16T10:02:21.9972043+09:00;True|2024-04-16T05:38:46.7320474+09:00;True|2024-04-16T05:37:18.2648194+09:00;True|2024-04-16T01:49:04.3493811+09:00;True|2024-04-15T03:36:17.0915653+09:00;True|2024-04-15T03:14:20.6028285+09:00;True|2024-04-15T03:11:43.2658193+09:00;True|2024-04-15T03:09:50.1246465+09:00;True|2024-04-15T03:08:28.3956698+09:00;True|2024-04-15T01:01:18.0948290+09:00;True|2024-04-15T01:00:57.6262747+09:00;True|2024-04-15T00:59:48.4706567+09:00;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>
4 changes: 3 additions & 1 deletion RealtimePPUR/RealtimePPUR.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace RealtimePPUR
{
public sealed partial class RealtimePpur : Form
{
private const string CurrentVersion = "v1.0.2-beta.1";
private const string CurrentVersion = "v1.0.2-beta.2";

private System.Windows.Forms.Label _currentPp, _sr, _sspp, _good, _ok, _miss, _avgoffset, _ur, _avgoffsethelp;

Expand Down Expand Up @@ -117,6 +117,8 @@ public RealtimePpur()
_fontCollection.AddFontFile("./src/Fonts/Nexa Light.otf");
InitializeComponent();

if (File.Exists("Error.log")) File.Delete("Error.log");

if (!File.Exists("Config.cfg"))
{
MessageBox.Show("Config.cfgがフォルダ内に存在しないため、すべての項目がOffとして設定されます。アップデートチェックのみ行われます。", "情報", MessageBoxButtons.OK, MessageBoxIcon.Information);
Expand Down
2 changes: 1 addition & 1 deletion RealtimePPUR/RealtimePPUR.csproj.user
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>C:\Users\yuuki\source\repos\RealtimePPUR-Github\RealtimePPUR\Properties\PublishProfiles\RealtimePPUR x86.pubxml</_LastSelectedProfileId>
<_LastSelectedProfileId>C:\Users\yuuki\source\repos\RealtimePPUR-Github\RealtimePPUR\Properties\PublishProfiles\RealtimePPUR x64.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="changePriorityForm.cs">
Expand Down

0 comments on commit e712fc3

Please sign in to comment.