diff --git a/McBitFont/Form1.cs b/McBitFont/Form1.cs index bf9a0c2..47eb336 100644 --- a/McBitFont/Form1.cs +++ b/McBitFont/Form1.cs @@ -50,7 +50,7 @@ namespace McBitFont { public bool monospaced = false; bool modified = false; bool prjModified = false; - public const string version = "1.1"; + public const string version = "1.2"; public string prjName = "Untitled"; public int codepage = 1251; private FrameMiniature fbuf; @@ -630,7 +630,7 @@ namespace McBitFont { miniList.Items.Clear(); ilMiniatures.Images.Clear(); foreach (FrameMiniature ff in frames) { - var s = ff.code.ToString(); + var s = ff.code.ToString().PadLeft(3, '0'); ilMiniatures.Images.Add(s, (Image)getMiniPictue(ff)); miniList.Items.Add(s, s + ' ' + (char)ff.code, s); } diff --git a/McBitFont/McBitFont.csproj b/McBitFont/McBitFont.csproj index b54b70d..bd0e30d 100644 --- a/McBitFont/McBitFont.csproj +++ b/McBitFont/McBitFont.csproj @@ -12,6 +12,21 @@ 512 true true + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true AnyCPU @@ -177,5 +192,17 @@ + + + False + Microsoft .NET Framework 4.7.2 %28x86 и x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + \ No newline at end of file diff --git a/McBitFont/Properties/AssemblyInfo.cs b/McBitFont/Properties/AssemblyInfo.cs index 1f9680f..1210f57 100644 --- a/McBitFont/Properties/AssemblyInfo.cs +++ b/McBitFont/Properties/AssemblyInfo.cs @@ -10,7 +10,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("McBitFont")] -[assembly: AssemblyCopyright("Anton Mukhin © 2023")] +[assembly: AssemblyCopyright("© Anton Mukhin, 2023")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // Можно задать все значения или принять номера сборки и редакции по умолчанию // используя "*", как показано ниже: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.1.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.2.0.0")] +[assembly: AssemblyFileVersion("1.2.0.0")]