Skip to content

Commit

Permalink
Fix Alphabet
Browse files Browse the repository at this point in the history
  • Loading branch information
ActualMandM committed Jun 27, 2024
1 parent 26ac3d2 commit 7903951
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System.Drawing.Imaging;
using System.Drawing;
using System.IO;
using System.Text.RegularExpressions;
using System.Xml;
using System;

Expand Down Expand Up @@ -46,7 +47,7 @@ public static void DirSearch(string dir)
public static void ProcessImage(string file)
{
XmlDocument doc = new XmlDocument();
doc.Load(file + ".xml");
doc.LoadXml(Regex.Replace(File.ReadAllText(file + ".xml"), " name=\".*?\"", ""));

int padding = Int32.MaxValue;
int maxX = Int32.MinValue;
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// すべての値を指定するか、次を使用してビルド番号とリビジョン番号を既定に設定できます
// 既定値にすることができます:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]

0 comments on commit 7903951

Please sign in to comment.