Compare commits

...

9 Commits
1.0 ... master

Author SHA1 Message Date
Brendan
03b5dcef94
Update README.md 2024-11-09 00:00:57 +01:00
abrendan
6fe6819733 Changed name from V_EditorPro to smolEdit and updated the icon 2024-11-08 23:48:32 +01:00
Brendan
10e9f738c2
Update README.md 2024-11-08 15:23:36 +01:00
Brendan
04c0cdc019
Update README.md 2024-11-08 15:22:45 +01:00
Brendan
4b601d0f95
Update README.md 2024-11-07 13:55:10 +01:00
Brendan
572f4e79fc
Update README.md 2024-05-31 22:50:02 +02:00
Brendan
cef11079ff
Update README.md 2024-05-31 22:35:26 +02:00
Brendan
4c52a98373 removed the border around the text box and fixed the "Open With" function 2024-05-31 22:32:59 +02:00
Brendan
e16091be31 Removed text box boarder 2024-05-27 23:26:14 +02:00
29 changed files with 6139 additions and 3764 deletions

View File

@ -1,6 +1,10 @@
# V_EditorPro
# smolEdit
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
@ -13,8 +17,7 @@ This is a simple 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.
![grafik](https://github.com/abrendan/V_EditorPro/assets/94894839/fc101bbe-5a99-411b-95c1-5d9389a9a48c)
![grafik](https://github.com/user-attachments/assets/17aa32a4-6c7f-4816-bf91-650e58413490)
## To be done

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,23 +0,0 @@
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());
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

View File

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

View File

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

View File

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

1975
smolEdit/AboutForm.resx Normal file

File diff suppressed because it is too large Load Diff

View File

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

View File

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

1978
smolEdit/MainForm.resx Normal file

File diff suppressed because it is too large Load Diff

36
smolEdit/Program.cs Normal file
View File

@ -0,0 +1,36 @@
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());
}
}
}
}

View File

@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// Allgemeine Informationen über eine Assembly werden über die folgenden
// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
// die einer Assembly zugeordnet sind.
[assembly: AssemblyTitle("V_EditorPro")]
[assembly: AssemblyTitle("smolEdit")]
[assembly: AssemblyDescription("A simple Editor application made in .NET 4.8")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("abrendan")]
[assembly: AssemblyProduct("V_EditorPro")]
[assembly: AssemblyProduct("smolEdit")]
[assembly: AssemblyCopyright("Copyright © 2024 abrendan")]
[assembly: AssemblyTrademark("")]
[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,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0")]
[assembly: AssemblyFileVersion("1.0")]
[assembly: AssemblyVersion("1.2")]
[assembly: AssemblyFileVersion("1.2")]

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

View File

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

File diff suppressed because it is too large Load Diff

View File

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

BIN
smolEdit/smolediticon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

View File

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