Compare commits

..

No commits in common. "master" and "1.0" have entirely different histories.
master ... 1.0

29 changed files with 3764 additions and 6139 deletions

View File

@ -1,10 +1,6 @@
# smolEdit # V_EditorPro
This is a simple and *smol* pre-Windows 11 notepad clone written in .NET 4.8.
<img src="https://github.com/user-attachments/assets/bd957dd9-8fc4-41f5-aeaa-2bf011bb79df" width="250" height="250">
This is a simple pre-Windows 11 notepad clone written in .NET 4.8.
## Features ## Features
@ -17,7 +13,8 @@ This is a simple and *smol* pre-Windows 11 notepad clone written in .NET 4.8.
For now I only have tested Windows 11. Windows 10 - Windows 7 should be working fine too though. For now I only have tested Windows 11. Windows 10 - Windows 7 should be working fine too though.
![grafik](https://github.com/user-attachments/assets/17aa32a4-6c7f-4816-bf91-650e58413490) ![grafik](https://github.com/abrendan/V_EditorPro/assets/94894839/fc101bbe-5a99-411b-95c1-5d9389a9a48c)
## To be done ## To be done

View File

@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.9.34902.65 VisualStudioVersion = 17.9.34902.65
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "smolEdit", "smolEdit\smolEdit.csproj", "{640BD762-E2CC-4EFD-8748-80AE809CB5F3}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "V_EditorPro", "V_EditorPro\V_EditorPro.csproj", "{640BD762-E2CC-4EFD-8748-80AE809CB5F3}"
EndProject EndProject
Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "smolEditSetup", "smolEditSetup\smolEditSetup.vdproj", "{1FDAC0D0-BA1D-433A-8FE8-F83EB2BD21F1}" Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "V_EditorProSetup", "V_EditorProSetup\V_EditorProSetup.vdproj", "{3901B8F5-A3B7-4E59-847C-B05348053D27}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -17,10 +17,8 @@ Global
{640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Debug|Any CPU.Build.0 = Debug|Any CPU {640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Release|Any CPU.ActiveCfg = Release|Any CPU {640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Release|Any CPU.Build.0 = Release|Any CPU {640BD762-E2CC-4EFD-8748-80AE809CB5F3}.Release|Any CPU.Build.0 = Release|Any CPU
{1FDAC0D0-BA1D-433A-8FE8-F83EB2BD21F1}.Debug|Any CPU.ActiveCfg = Debug {3901B8F5-A3B7-4E59-847C-B05348053D27}.Debug|Any CPU.ActiveCfg = Debug
{1FDAC0D0-BA1D-433A-8FE8-F83EB2BD21F1}.Debug|Any CPU.Build.0 = Debug {3901B8F5-A3B7-4E59-847C-B05348053D27}.Release|Any CPU.ActiveCfg = Release
{1FDAC0D0-BA1D-433A-8FE8-F83EB2BD21F1}.Release|Any CPU.ActiveCfg = Release
{1FDAC0D0-BA1D-433A-8FE8-F83EB2BD21F1}.Release|Any CPU.Build.0 = Release
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE

View File

@ -1,4 +1,4 @@
namespace smolEdit namespace V_EditorPro
{ {
partial class AboutForm partial class AboutForm
{ {
@ -30,18 +30,18 @@
// label1 // label1
// //
this.label1.AutoSize = true; this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 201); this.label1.Location = new System.Drawing.Point(20, 150);
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(66, 39); this.label1.Size = new System.Drawing.Size(63, 39);
this.label1.TabIndex = 0; this.label1.TabIndex = 0;
this.label1.Text = "by abrendan\nVersion 1.2\nOS: "; this.label1.Text = "V_EditorPro\nVersion 1.0\nOS: ";
// //
// pictureBox1 // pictureBox1
// //
this.pictureBox1.Image = global::smolEdit.Properties.Resources.smolediticonborder; this.pictureBox1.Image = global::V_EditorPro.Properties.Resources.Veditorproicon;
this.pictureBox1.Location = new System.Drawing.Point(30, 12); this.pictureBox1.Location = new System.Drawing.Point(55, 12);
this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(150, 150); this.pictureBox1.Size = new System.Drawing.Size(100, 100);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 1; this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false; this.pictureBox1.TabStop = false;
@ -50,15 +50,15 @@
// label2 // label2
// //
this.label2.AutoSize = true; this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 175); this.label2.Location = new System.Drawing.Point(20, 130);
this.label2.Name = "label2"; this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(153, 13); this.label2.Size = new System.Drawing.Size(170, 13);
this.label2.TabIndex = 2; this.label2.TabIndex = 2;
this.label2.Text = "smolEdit is made with .NET 4.8"; this.label2.Text = "V_EditorPro is made with .NET 4.8";
// //
// closeButton // closeButton
// //
this.closeButton.Location = new System.Drawing.Point(68, 255); this.closeButton.Location = new System.Drawing.Point(65, 216);
this.closeButton.Name = "closeButton"; this.closeButton.Name = "closeButton";
this.closeButton.Size = new System.Drawing.Size(75, 23); this.closeButton.Size = new System.Drawing.Size(75, 23);
this.closeButton.TabIndex = 3; this.closeButton.TabIndex = 3;
@ -68,7 +68,7 @@
// //
// AboutForm // AboutForm
// //
this.ClientSize = new System.Drawing.Size(209, 301); this.ClientSize = new System.Drawing.Size(209, 271);
this.Controls.Add(this.closeButton); this.Controls.Add(this.closeButton);
this.Controls.Add(this.label2); this.Controls.Add(this.label2);
this.Controls.Add(this.pictureBox1); this.Controls.Add(this.pictureBox1);
@ -78,7 +78,7 @@
this.MaximizeBox = false; this.MaximizeBox = false;
this.MinimizeBox = false; this.MinimizeBox = false;
this.Name = "AboutForm"; this.Name = "AboutForm";
this.Text = "About smolEdit"; this.Text = "About V_EditorPro";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View File

@ -4,7 +4,7 @@ using System.Reflection.Emit;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows.Forms; using System.Windows.Forms;
namespace smolEdit namespace V_EditorPro
{ {
public partial class AboutForm : Form public partial class AboutForm : Form
{ {
@ -12,7 +12,7 @@ namespace smolEdit
{ {
InitializeComponent(); InitializeComponent();
label1.Text = $"by abrendan\nVersion 1.2\nOS: {RuntimeInformation.OSDescription}"; label1.Text = $"V_EditorPro\nVersion 1.0\nOS: {RuntimeInformation.OSDescription}";
} }
private void pictureBox1_Click(object sender, EventArgs e) private void pictureBox1_Click(object sender, EventArgs e)

1209
V_EditorPro/AboutForm.resx Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
namespace smolEdit namespace V_EditorPro
{ {
partial class MainForm partial class MainForm
{ {
@ -39,7 +39,6 @@
// //
// menuStrip1 // menuStrip1
// //
this.menuStrip1.BackColor = System.Drawing.SystemColors.Control;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem, this.fileToolStripMenuItem,
this.editToolStripMenuItem, this.editToolStripMenuItem,
@ -84,7 +83,7 @@
// searchReplaceToolStripMenuItem // searchReplaceToolStripMenuItem
// //
this.searchReplaceToolStripMenuItem.Name = "searchReplaceToolStripMenuItem"; this.searchReplaceToolStripMenuItem.Name = "searchReplaceToolStripMenuItem";
this.searchReplaceToolStripMenuItem.Size = new System.Drawing.Size(176, 22); this.searchReplaceToolStripMenuItem.Size = new System.Drawing.Size(153, 22);
this.searchReplaceToolStripMenuItem.Text = "Search and Replace"; this.searchReplaceToolStripMenuItem.Text = "Search and Replace";
this.searchReplaceToolStripMenuItem.Click += new System.EventHandler(this.searchReplaceToolStripMenuItem_Click); this.searchReplaceToolStripMenuItem.Click += new System.EventHandler(this.searchReplaceToolStripMenuItem_Click);
// //
@ -105,9 +104,7 @@
// //
// richTextBox1 // richTextBox1
// //
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
this.richTextBox1.Location = new System.Drawing.Point(0, 24); this.richTextBox1.Location = new System.Drawing.Point(0, 24);
this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(800, 426); this.richTextBox1.Size = new System.Drawing.Size(800, 426);
@ -116,15 +113,13 @@
// //
// MainForm // MainForm
// //
this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.ClientSize = new System.Drawing.Size(800, 450); this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.richTextBox1); this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.menuStrip1); this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStrip1; this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm"; this.Name = "MainForm";
this.Text = "smolEdit"; this.Text = "V_EditorPro";
this.Load += new System.EventHandler(this.MainForm_Load);
this.menuStrip1.ResumeLayout(false); this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout(); this.menuStrip1.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);

View File

@ -4,22 +4,16 @@ using System.IO;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows.Forms; using System.Windows.Forms;
namespace smolEdit namespace V_EditorPro
{ {
public partial class MainForm : Form public partial class MainForm : Form
{ {
public MainForm(string filePath = null) public MainForm()
{ {
InitializeComponent(); InitializeComponent();
this.KeyPreview = true; this.KeyPreview = true;
this.KeyDown += new KeyEventHandler(MainForm_KeyDown); this.KeyDown += new KeyEventHandler(MainForm_KeyDown);
if (!string.IsNullOrEmpty(filePath))
{
OpenFile(filePath);
} }
}
private void MainForm_KeyDown(object sender, KeyEventArgs e) private void MainForm_KeyDown(object sender, KeyEventArgs e)
{ {
@ -59,11 +53,6 @@ namespace smolEdit
} }
} }
private void OpenFile(string filePath)
{
richTextBox1.Text = File.ReadAllText(filePath);
}
private void OpenFile() private void OpenFile()
{ {
OpenFileDialog openFileDialog = new OpenFileDialog(); OpenFileDialog openFileDialog = new OpenFileDialog();
@ -71,7 +60,7 @@ namespace smolEdit
if (openFileDialog.ShowDialog() == DialogResult.OK) if (openFileDialog.ShowDialog() == DialogResult.OK)
{ {
OpenFile(openFileDialog.FileName); richTextBox1.Text = File.ReadAllText(openFileDialog.FileName);
} }
} }
@ -88,10 +77,5 @@ namespace smolEdit
File.WriteAllText(saveFileDialog.FileName, richTextBox1.Text); File.WriteAllText(saveFileDialog.FileName, richTextBox1.Text);
} }
} }
private void MainForm_Load(object sender, EventArgs e)
{
}
} }
} }

1212
V_EditorPro/MainForm.resx Normal file

File diff suppressed because it is too large Load Diff

23
V_EditorPro/Program.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using V_EditorPro;
namespace V_EditorPro
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}

View File

@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden // Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, // Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind. // die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("smolEdit")] [assembly: AssemblyTitle("V_EditorPro")]
[assembly: AssemblyDescription("A simple Editor application made in .NET 4.8")] [assembly: AssemblyDescription("A simple Editor application made in .NET 4.8")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("abrendan")] [assembly: AssemblyCompany("abrendan")]
[assembly: AssemblyProduct("smolEdit")] [assembly: AssemblyProduct("V_EditorPro")]
[assembly: AssemblyCopyright("Copyright © 2024 abrendan")] [assembly: AssemblyCopyright("Copyright © 2024 abrendan")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben: // indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2")] [assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.2")] [assembly: AssemblyFileVersion("1.0")]

View File

@ -1,24 +1,24 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // Dieser Code wurde von einem Tool generiert.
// Runtime Version:4.0.30319.42000 // Laufzeitversion:4.0.30319.42000
// //
// Changes to this file may cause incorrect behavior and will be lost if // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// the code is regenerated. // der Code erneut generiert wird.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace smolEdit.Properties { namespace V_EditorPro.Properties {
using System; using System;
/// <summary> /// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc. /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
/// </summary> /// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
// class via a tool like ResGen or Visual Studio. // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
// To add or remove a member, edit your .ResX file then rerun ResGen // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
// with the /str option, or rebuild your VS project. // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@ -33,13 +33,13 @@ namespace smolEdit.Properties {
} }
/// <summary> /// <summary>
/// Returns the cached ResourceManager instance used by this class. /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager { internal static global::System.Resources.ResourceManager ResourceManager {
get { get {
if (object.ReferenceEquals(resourceMan, null)) { if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("smolEdit.Properties.Resources", typeof(Resources).Assembly); global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("V_EditorPro.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp; resourceMan = temp;
} }
return resourceMan; return resourceMan;
@ -47,8 +47,8 @@ namespace smolEdit.Properties {
} }
/// <summary> /// <summary>
/// Overrides the current thread's CurrentUICulture property for all /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
/// resource lookups using this strongly typed resource class. /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
/// </summary> /// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture { internal static global::System.Globalization.CultureInfo Culture {
@ -61,21 +61,11 @@ namespace smolEdit.Properties {
} }
/// <summary> /// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap. /// Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
/// </summary> /// </summary>
internal static System.Drawing.Bitmap smolediticon { internal static System.Drawing.Bitmap Veditorproicon {
get { get {
object obj = ResourceManager.GetObject("smolediticon", resourceCulture); object obj = ResourceManager.GetObject("Veditorproicon", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap smolediticonborder {
get {
object obj = ResourceManager.GetObject("smolediticonborder", resourceCulture);
return ((System.Drawing.Bitmap)(obj)); return ((System.Drawing.Bitmap)(obj));
} }
} }

View File

@ -118,10 +118,10 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="smolediticon" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="Veditorproicon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\smolediticon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\Veditorproicon.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
<data name="smolediticonborder" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="Veditorproicon" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\smolediticonborder.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> <value>..\Resources\Veditorproicon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data> </data>
</root> </root>

View File

@ -8,17 +8,21 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace smolEdit.Properties { namespace V_EditorPro.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.11.0.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default { public static Settings Default
get { {
get
{
return defaultInstance; return defaultInstance;
} }
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Windows.Forms; using System.Windows.Forms;
namespace smolEdit namespace V_EditorPro
{ {
public partial class SearchReplaceDialog : Form public partial class SearchReplaceDialog : Form
{ {

File diff suppressed because it is too large Load Diff

View File

@ -6,13 +6,12 @@
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{640BD762-E2CC-4EFD-8748-80AE809CB5F3}</ProjectGuid> <ProjectGuid>{640BD762-E2CC-4EFD-8748-80AE809CB5F3}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>smolEdit</RootNamespace> <RootNamespace>V_EditorPro</RootNamespace>
<AssemblyName>smolEdit</AssemblyName> <AssemblyName>V_EditorPro</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion> <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl> <PublishUrl>publish\</PublishUrl>
<Install>true</Install> <Install>true</Install>
<InstallFrom>Disk</InstallFrom> <InstallFrom>Disk</InstallFrom>
@ -25,6 +24,7 @@
<MapFileExtensions>true</MapFileExtensions> <MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision> <ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion> <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust> <UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled> <BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup> </PropertyGroup>
@ -48,7 +48,7 @@
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<ApplicationIcon>smolediticon.ico</ApplicationIcon> <ApplicationIcon>Veditorproicon.ico</ApplicationIcon>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Reference Include="System" /> <Reference Include="System" />
@ -114,14 +114,14 @@
<None Include="App.config" /> <None Include="App.config" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<None Include="Resources\smolediticon.png" /> <None Include="Resources\Veditorproicon.png" />
<None Include="Resources\smolediticonborder.png" /> <None Include="Resources\Veditorproicon.ico" />
<Content Include="smolediticon.ico" /> <Content Include="Veditorproicon.ico" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.8"> <BootstrapperPackage Include=".NETFramework,Version=v4.8">
<Visible>False</Visible> <Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4.8 %28x86 and x64%29</ProductName> <ProductName>Microsoft .NET Framework 4.8 %28x86 und x64%29</ProductName>
<Install>true</Install> <Install>true</Install>
</BootstrapperPackage> </BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1"> <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

View File

@ -3,7 +3,7 @@
"VSVersion" = "3:800" "VSVersion" = "3:800"
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
"IsWebType" = "8:FALSE" "IsWebType" = "8:FALSE"
"ProjectName" = "8:smolEditSetup" "ProjectName" = "8:V_EditorProSetup"
"LanguageId" = "3:1033" "LanguageId" = "3:1033"
"CodePage" = "3:1252" "CodePage" = "3:1252"
"UILanguageId" = "3:1033" "UILanguageId" = "3:1033"
@ -21,20 +21,14 @@
} }
"Entry" "Entry"
{ {
"MsmKey" = "8:_55282630BA3C4950BA7D532C11E1F3AD"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6" "MsmKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
"OwnerKey" = "8:_UNDEFINED" "OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry" "Entry"
{ {
"MsmKey" = "8:_UNDEFINED" "MsmKey" = "8:_D89D93AB9EAB41DA9DF11044540DCF65"
"OwnerKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6" "OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry" "Entry"
@ -43,6 +37,12 @@
"OwnerKey" = "8:_1A77597F4F993247A0CA6D5211C05EBC" "OwnerKey" = "8:_1A77597F4F993247A0CA6D5211C05EBC"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry"
{
"MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
"MsmSig" = "8:_UNDEFINED"
}
} }
"Configurations" "Configurations"
{ {
@ -51,7 +51,7 @@
"DisplayName" = "8:Debug" "DisplayName" = "8:Debug"
"IsDebugOnly" = "11:TRUE" "IsDebugOnly" = "11:TRUE"
"IsReleaseOnly" = "11:FALSE" "IsReleaseOnly" = "11:FALSE"
"OutputFilename" = "8:Debug\\smolEditSetup.msi" "OutputFilename" = "8:Debug\\V_EditorProSetup.msi"
"PackageFilesAs" = "3:2" "PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648" "PackageFileSize" = "3:-2147483648"
"CabType" = "3:1" "CabType" = "3:1"
@ -61,22 +61,6 @@
"PrivateKeyFile" = "8:" "PrivateKeyFile" = "8:"
"TimeStampServer" = "8:" "TimeStampServer" = "8:"
"InstallerBootstrapper" = "3:2" "InstallerBootstrapper" = "3:2"
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
{
"Enabled" = "11:TRUE"
"PromptEnabled" = "11:TRUE"
"PrerequisitesLocation" = "2:1"
"Url" = "8:"
"ComponentsUrl" = "8:"
"Items"
{
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
{
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
}
}
}
} }
"Release" "Release"
{ {
@ -93,22 +77,6 @@
"PrivateKeyFile" = "8:" "PrivateKeyFile" = "8:"
"TimeStampServer" = "8:" "TimeStampServer" = "8:"
"InstallerBootstrapper" = "3:2" "InstallerBootstrapper" = "3:2"
"BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
{
"Enabled" = "11:TRUE"
"PromptEnabled" = "11:TRUE"
"PrerequisitesLocation" = "2:1"
"Url" = "8:"
"ComponentsUrl" = "8:"
"Items"
{
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
{
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
}
}
}
} }
} }
"Deployable" "Deployable"
@ -169,10 +137,10 @@
"IsDependency" = "11:TRUE" "IsDependency" = "11:TRUE"
"IsolateTo" = "8:" "IsolateTo" = "8:"
} }
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_55282630BA3C4950BA7D532C11E1F3AD" "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D89D93AB9EAB41DA9DF11044540DCF65"
{ {
"SourcePath" = "8:..\\..\\..\\..\\Downloads\\smolediticon.ico" "SourcePath" = "8:..\\V_EditorPro\\Veditorproicon.ico"
"TargetName" = "8:smolediticon.ico" "TargetName" = "8:Veditorproicon.ico"
"Tag" = "8:" "Tag" = "8:"
"Folder" = "8:_5C85C7D260D04E449FC9F8A71E91C827" "Folder" = "8:_5C85C7D260D04E449FC9F8A71E91C827"
"Condition" = "8:" "Condition" = "8:"
@ -255,26 +223,26 @@
"Product" "Product"
{ {
"Name" = "8:Microsoft Visual Studio" "Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:smolEdit" "ProductName" = "8:V_EditorPro"
"ProductCode" = "8:{C403AB75-7CEF-409A-92C8-1C23B62138FA}" "ProductCode" = "8:{9ABC1146-4460-4B64-8EA7-67A6C84ABD05}"
"PackageCode" = "8:{AD613874-4583-4970-B4B7-B76BE3E59F4C}" "PackageCode" = "8:{FA271E47-F355-4580-A852-7CCCB9758C8E}"
"UpgradeCode" = "8:{56851E53-0DA5-4A43-A552-A4F5B5FD39C5}" "UpgradeCode" = "8:{56851E53-0DA5-4A43-A552-A4F5B5FD39C5}"
"AspNetVersion" = "8:2.0.50727.0" "AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE" "RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE" "RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE" "InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.2" "ProductVersion" = "8:1.0"
"Manufacturer" = "8:abrendan" "Manufacturer" = "8:abrendan"
"ARPHELPTELEPHONE" = "8:" "ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://www.abrendan.dev" "ARPHELPLINK" = "8:"
"Title" = "8:smolEdit Setup" "Title" = "8:V_EditorPro Setup"
"Subject" = "8:" "Subject" = "8:"
"ARPCONTACT" = "8:abrendan" "ARPCONTACT" = "8:abrendan"
"Keywords" = "8:" "Keywords" = "8:"
"ARPCOMMENTS" = "8:Simple Editor Application" "ARPCOMMENTS" = "8:Simple Editor Application"
"ARPURLINFOABOUT" = "8:https://www.abrendan.dev" "ARPURLINFOABOUT" = "8:https://www.abrendan.dev"
"ARPPRODUCTICON" = "8:_55282630BA3C4950BA7D532C11E1F3AD" "ARPPRODUCTICON" = "8:"
"ARPIconIndex" = "3:0" "ARPIconIndex" = "3:0"
"SearchPath" = "8:" "SearchPath" = "8:"
"UseSystemSearchPath" = "11:TRUE" "UseSystemSearchPath" = "11:TRUE"
@ -377,18 +345,18 @@
} }
"Shortcut" "Shortcut"
{ {
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_DDF3D9301AB94AA385E514C8E2334B50" "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_34362E5DE3AF4E119737F6ECF97B34BD"
{ {
"Name" = "8:smolEdit" "Name" = "8:V_EditorPro"
"Arguments" = "8:" "Arguments" = "8:"
"Description" = "8:" "Description" = "8:"
"ShowCmd" = "3:1" "ShowCmd" = "3:1"
"IconIndex" = "3:32512" "IconIndex" = "3:0"
"Transitive" = "11:FALSE" "Transitive" = "11:FALSE"
"Target" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6" "Target" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
"Folder" = "8:_42A58AEB948749A2B7F8C7EC01609DB9" "Folder" = "8:_42A58AEB948749A2B7F8C7EC01609DB9"
"WorkingFolder" = "8:_5C85C7D260D04E449FC9F8A71E91C827" "WorkingFolder" = "8:_5C85C7D260D04E449FC9F8A71E91C827"
"Icon" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6" "Icon" = "8:_D89D93AB9EAB41DA9DF11044540DCF65"
"Feature" = "8:" "Feature" = "8:"
} }
} }
@ -404,7 +372,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1AC8DB22E66343D68CEC3191E7227B7B" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1AC8DB22E66343D68CEC3191E7227B7B"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Finished" "DisplayName" = "8:Fertig"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
@ -435,7 +403,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_21B7C97C7F98462AAE3AA3CC9D3B5FD9" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_21B7C97C7F98462AAE3AA3CC9D3B5FD9"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Progress" "DisplayName" = "8:Status"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
@ -479,7 +447,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F8AACA057B5B416582849D60E30094A2" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F8AACA057B5B416582849D60E30094A2"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Finished" "DisplayName" = "8:Fertig"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
@ -529,7 +497,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_705B4DE791DB40F39EDFC836868D4ED5" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_705B4DE791DB40F39EDFC836868D4ED5"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Progress" "DisplayName" = "8:Status"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
@ -573,7 +541,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B109494CD986438DA4BD454DB2E30AA1" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B109494CD986438DA4BD454DB2E30AA1"
{ {
"Sequence" = "3:200" "Sequence" = "3:200"
"DisplayName" = "8:Installation Folder" "DisplayName" = "8:Installationsordner"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
@ -595,7 +563,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DB0ECF6BD4CD40AFA0F58C4A419EE507" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DB0ECF6BD4CD40AFA0F58C4A419EE507"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Welcome" "DisplayName" = "8:Willkommen"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
@ -643,7 +611,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DFA0CCD3F3BB471A9F949067871E01A7" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DFA0CCD3F3BB471A9F949067871E01A7"
{ {
"Sequence" = "3:300" "Sequence" = "3:300"
"DisplayName" = "8:Confirm Installation" "DisplayName" = "8:Installation bestätigen"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
@ -674,7 +642,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5689383E4B5644B2BBB1DA06BB111220" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5689383E4B5644B2BBB1DA06BB111220"
{ {
"Sequence" = "3:200" "Sequence" = "3:200"
"DisplayName" = "8:Installation Folder" "DisplayName" = "8:Installationsordner"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
@ -709,7 +677,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F0E0DEA5ECDB49E08DBDFE7181D391C5" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F0E0DEA5ECDB49E08DBDFE7181D391C5"
{ {
"Sequence" = "3:100" "Sequence" = "3:100"
"DisplayName" = "8:Welcome" "DisplayName" = "8:Willkommen"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
@ -757,7 +725,7 @@
"{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F91201A8175749EAA082AC6FCDF67B70" "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F91201A8175749EAA082AC6FCDF67B70"
{ {
"Sequence" = "3:300" "Sequence" = "3:300"
"DisplayName" = "8:Confirm Installation" "DisplayName" = "8:Installation bestätigen"
"UseDynamicProperties" = "11:TRUE" "UseDynamicProperties" = "11:TRUE"
"IsDependency" = "11:FALSE" "IsDependency" = "11:FALSE"
"SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid" "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
@ -792,7 +760,7 @@
{ {
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A75A53BE905D4A018ADE2B8AC1A2FDC6" "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
{ {
"SourcePath" = "8:..\\smolEdit\\obj\\Release\\smolEdit.exe" "SourcePath" = "8:..\\V_EditorPro\\obj\\Debug\\V_EditorPro.exe"
"TargetName" = "8:" "TargetName" = "8:"
"Tag" = "8:" "Tag" = "8:"
"Folder" = "8:_5C85C7D260D04E449FC9F8A71E91C827" "Folder" = "8:_5C85C7D260D04E449FC9F8A71E91C827"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,36 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using smolEdit;
namespace smolEdit
{
internal static class Program
{
/// <summary>
/// Der Haupteinstiegspunkt für die Anwendung.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (args.Length > 0)
{
// A file was passed as an argument
string filePath = args[0];
// Create the main form and pass the file path to it
Application.Run(new MainForm(filePath));
}
else
{
// No file was passed as an argument
Application.Run(new MainForm());
}
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB