Skip to content

Commit

Permalink
Merge pull request #59 from Jewest/feat/txt_naming
Browse files Browse the repository at this point in the history
Adding the txt for \r and \r
  • Loading branch information
Jewest authored May 22, 2023
2 parents 5f235b9 + a1ab8e3 commit c0cab41
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
58 changes: 29 additions & 29 deletions YAT/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions YAT/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ private void Form1_Shown(Object sender, EventArgs e)
object[] list =
{
new ComboBoxItem<string>("None", ""),
new ComboBoxItem<string>("CR", "\n"),
new ComboBoxItem<string>("CR (0xA)", "\n"),
new ComboBoxItem<string>("CR + LF", "\r\n"),
new ComboBoxItem<string>("LF", "\r"),
new ComboBoxItem<string>("LF (0xD)", "\r"),
};

cboCommandTerminator.Items.AddRange(list);
Expand Down
4 changes: 2 additions & 2 deletions YAT/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.8.1.0")]
[assembly: AssemblyFileVersion("0.8.1")]
[assembly: AssemblyVersion("0.8.2.0")]
[assembly: AssemblyFileVersion("0.8.2")]

0 comments on commit c0cab41

Please sign in to comment.