Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MScholtes/PS2EXE.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMScholtes <markusscholtes@hotmail.com>2019-12-16 10:16:59 +0300
committerGitHub <noreply@github.com>2019-12-16 10:16:59 +0300
commit44fcde19751cfc89ad1a506baccbfed74f6080da (patch)
treed38fe18904b81e7335ae609dc52a343c9f81e040
parentcdf16ed1624962d2fb16c51362e5f98d07b07404 (diff)
Update to V1.0.1
-rw-r--r--Win-PS2EXE/README.md11
-rw-r--r--Win-PS2EXE/Win-PS2EXE.cs12
2 files changed, 14 insertions, 9 deletions
diff --git a/Win-PS2EXE/README.md b/Win-PS2EXE/README.md
index b134e8d..299857d 100644
--- a/Win-PS2EXE/README.md
+++ b/Win-PS2EXE/README.md
@@ -3,11 +3,11 @@ Graphical front end to the module version of the PS1-to-EXE-compiler PS2EXE
Author: Markus Scholtes
-Version: 1.0.0.2
+Version: 1.0.0.3
-Date: 2019-11-08
+Date: 2019-12-16
-With [PS2EXE](https://gallery.technet.microsoft.com/PS2EXE-GUI-Convert-e7cb69d5) originally created by Ingo Karstein you can compile Powershell scripts to real Windows executables. **Win-PS2EXE** is a small graphical front end to the script.
+With [PS2EXE](https://gallery.technet.microsoft.com/PS2EXE-GUI-Convert-e7cb69d5) originally created by Ingo Karstein you can compile Powershell scripts to real Windows executables. **Win-PS2EXE** is a small graphical front end to the script.
### Features and restrictions:
* **Win-PS2EXE** does not support all parameters of **PS2EXE**
@@ -27,3 +27,8 @@ Install module **PS2EXE**.
Start **Win-PS2EXE** by typing Win-PS2EXE in a powershell console and fill in the desired fields (only *Source file* is mandatory).
Click **Compile**, a powershell window opens and your powershell script will be compiled to an executable.
+
+### Changes:
+1.0.0.3: file fields no longer run out
+
+1.0.0.2: -noConfigFile is default now
diff --git a/Win-PS2EXE/Win-PS2EXE.cs b/Win-PS2EXE/Win-PS2EXE.cs
index b92a15d..8b53bba 100644
--- a/Win-PS2EXE/Win-PS2EXE.cs
+++ b/Win-PS2EXE/Win-PS2EXE.cs
@@ -1,4 +1,4 @@
-// Win-PS2EXE v1.0.0.1
+// Win-PS2EXE v1.0.0.3
// Front end to Powershell-Script-to-EXE-Compiler PS2EXE.ps1: https://gallery.technet.microsoft.com/PS2EXE-GUI-Convert-e7cb69d5
// Markus Scholtes, 2019
//
@@ -27,8 +27,8 @@ using System.Reflection;
[assembly:AssemblyCopyright("© Markus Scholtes 2019")]
[assembly:AssemblyTrademark("")]
[assembly:AssemblyCulture("")]
-[assembly:AssemblyVersion("1.0.0.2")]
-[assembly:AssemblyFileVersion("1.0.0.2")]
+[assembly:AssemblyVersion("1.0.0.3")]
+[assembly:AssemblyFileVersion("1.0.0.3")]
namespace WPFApplication
{
@@ -339,17 +339,17 @@ namespace WPFApplication
<TextBlock Height=""32"" Margin=""0,10,0,0"" FontSize=""16"" Grid.Row=""0"" Grid.Column=""1"" >Win-PS2EXE: Graphical front end to PS2EXE-GUI</TextBlock>
<Label Grid.Row=""1"" Grid.Column=""0"">Source file: </Label>
- <TextBox x:Name=""SourceFile"" Height=""18"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Path and name of the source file (the only mandatory field)"" Grid.Row=""1"" Grid.Column=""1""
+ <TextBox x:Name=""SourceFile"" Height=""18"" Width=""362"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Path and name of the source file (the only mandatory field)"" Grid.Row=""1"" Grid.Column=""1""
PreviewDragEnter=""TextBox_PreviewDragOver"" PreviewDragOver=""TextBox_PreviewDragOver"" PreviewDrop=""TextBox_PreviewDrop"" />
<Button x:Name=""SourceFilePicker"" Background=""#FFD0D0D0"" Height=""18"" Width=""24"" Content=""..."" ToolTip=""File picker for source file"" Grid.Row=""1"" Grid.Column=""2""
Click=""FilePicker_Click"" />
<Label Grid.Row=""2"" Grid.Column=""0"">Target file: </Label>
- <TextBox x:Name=""TargetFile"" Height=""18"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Optional: Name and possibly path of the target file"" Grid.Row=""2"" Grid.Column=""1""
+ <TextBox x:Name=""TargetFile"" Height=""18"" Width=""362"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Optional: Name and possibly path of the target file"" Grid.Row=""2"" Grid.Column=""1""
PreviewDragEnter=""TextBox_PreviewDragOver"" PreviewDragOver=""TextBox_PreviewDragOver"" PreviewDrop=""TextBox_PreviewDrop"" />
<Label Grid.Row=""3"" Grid.Column=""0"">Icon file: </Label>
- <TextBox x:Name=""IconFile"" Height=""18"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Optional: Name and possibly path of the icon file"" Grid.Row=""3"" Grid.Column=""1""
+ <TextBox x:Name=""IconFile"" Height=""18"" Width=""362"" Margin=""0,0,10,0"" AllowDrop=""True"" ToolTip=""Optional: Name and possibly path of the icon file"" Grid.Row=""3"" Grid.Column=""1""
PreviewDragEnter=""TextBox_PreviewDragOver"" PreviewDragOver=""TextBox_PreviewDragOver"" PreviewDrop=""TextBox_PreviewDrop"" />
<Button x:Name=""IconFilePicker"" Background=""#FFD0D0D0"" Height=""18"" Width=""24"" Content=""..."" ToolTip=""File picker for icon file"" Grid.Row=""3"" Grid.Column=""2""
Click=""FilePicker_Click"" />