Changed name from V_EditorPro to smolEdit and updated the icon

This commit is contained in:
abrendan 2024-11-08 23:48:32 +01:00
parent 10e9f738c2
commit 6fe6819733
27 changed files with 6059 additions and 3729 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

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.1\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.1\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,
@ -115,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,7 +4,7 @@ using System.IO;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace V_EditorPro
namespace smolEdit
{
public partial class MainForm : Form
{
@ -88,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

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using V_EditorPro;
using smolEdit;
namespace V_EditorPro
namespace smolEdit
{
internal static class Program
{

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.1")]
[assembly: AssemblyFileVersion("1.1")]
[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,13 +21,13 @@
}
"Entry"
{
"MsmKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
"MsmKey" = "8:_55282630BA3C4950BA7D532C11E1F3AD"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
"MsmKey" = "8:_D89D93AB9EAB41DA9DF11044540DCF65"
"MsmKey" = "8:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
@ -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"
@ -68,6 +68,14 @@
"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"
@ -92,6 +100,14 @@
"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"
}
}
}
}
}
@ -153,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:"
@ -239,26 +255,26 @@
"Product"
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:V_EditorPro"
"ProductCode" = "8:{64E2E37D-4A9B-437E-9157-AABB371475C4}"
"PackageCode" = "8:{FDC36702-BC29-4516-8565-8D0652AC8033}"
"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.1"
"ProductVersion" = "8:1.2"
"Manufacturer" = "8:abrendan"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:https://www.abrendan.dev"
"Title" = "8:V_EditorPro Setup"
"Title" = "8:smolEdit Setup"
"Subject" = "8:"
"ARPCONTACT" = "8:abrendan"
"Keywords" = "8:"
"ARPCOMMENTS" = "8:Simple Editor Application"
"ARPURLINFOABOUT" = "8:https://www.abrendan.dev"
"ARPPRODUCTICON" = "8:_D89D93AB9EAB41DA9DF11044540DCF65"
"ARPPRODUCTICON" = "8:_55282630BA3C4950BA7D532C11E1F3AD"
"ARPIconIndex" = "3:0"
"SearchPath" = "8:"
"UseSystemSearchPath" = "11:TRUE"
@ -361,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:"
}
}
@ -388,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"
@ -419,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"
@ -463,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"
@ -513,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"
@ -557,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"
@ -579,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"
@ -627,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"
@ -658,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"
@ -693,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"
@ -741,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"
@ -776,7 +792,7 @@
{
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A75A53BE905D4A018ADE2B8AC1A2FDC6"
{
"SourcePath" = "8:..\\V_EditorPro\\obj\\Release\\V_EditorPro.exe"
"SourcePath" = "8:..\\smolEdit\\obj\\Release\\smolEdit.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_5C85C7D260D04E449FC9F8A71E91C827"