Skip to content

Commit ee46ae5

Browse files
author
Adriano
committed
version 0.1
1 parent d85dd9f commit ee46ae5

16 files changed

Lines changed: 41 additions & 100 deletions

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
// Buildnummer
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("0.0.6.0")]
33-
[assembly: AssemblyFileVersion("0.0.6.0")]
32+
[assembly: AssemblyVersion("0.1.0.0")]
33+
[assembly: AssemblyFileVersion("0.1.0.0")]

esp_tools_gui.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
<ApplicationIcon>src\ESP32.ico</ApplicationIcon>
5555
</PropertyGroup>
5656
<ItemGroup>
57+
<None Include="exes\cxfreeze.zip">
58+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
59+
</None>
5760
<None Include="src\App.config" />
5861
<None Include="Properties\Settings.settings">
5962
<Generator>SettingsSingleFileGenerator</Generator>
@@ -64,6 +67,7 @@
6467
<Reference Include="System" />
6568
<Reference Include="System.Data" />
6669
<Reference Include="System.Drawing" />
70+
<Reference Include="System.IO.Compression.FileSystem" />
6771
<Reference Include="System.Management" />
6872
<Reference Include="System.Windows.Forms" />
6973
<Reference Include="System.Windows.Forms.DataVisualization" />
@@ -154,9 +158,6 @@
154158
<None Include="exes\parttool.exe">
155159
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
156160
</None>
157-
<None Include="exes\python37.dll">
158-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
159-
</None>
160161
<Content Include="src\ESP32.ico" />
161162
<Content Include="images\esp32.jpg" />
162163
</ItemGroup>

exes/cxfreeze.zip

4.8 MB
Binary file not shown.

exes/espefuse.exe

-4.76 MB
Binary file not shown.

exes/espsecure.exe

-4.8 MB
Binary file not shown.

exes/esptool.exe

-4.73 MB
Binary file not shown.

exes/gen_esp32part.exe

-3.13 MB
Binary file not shown.

exes/parttool.exe

-4.57 MB
Binary file not shown.

exes/python37.dll

-3.47 MB
Binary file not shown.

exes/setup_esp.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
from cx_Freeze import setup, Executable
2+
3+
executables = [
4+
Executable("espefuse.py", base="Console", icon="ESP32py.ico"),
5+
Executable("espsecure.py", base="Console", icon="ESP32py.ico"),
6+
Executable("esptool.py", base="Console", icon="ESP32py.ico"),
7+
Executable("gen_esp32part.py", base="Console", icon="ESP32py.ico"),
8+
Executable("parttool.py", base="Console", icon="ESP32py.ico")
9+
]
10+
11+
packages = ["idna", "encodings"]
12+
options = {
13+
'build_exe': {
14+
'packages':packages,
15+
'include_files': ['ESP32py.ico']
16+
},
17+
}
18+
19+
setup(
20+
name = "Esp32 Tool",
21+
options = options,
22+
version = "1.0",
23+
description = 'Espressif ESP32 tool',
24+
executables = executables
25+
)

0 commit comments

Comments
 (0)