You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-24Lines changed: 18 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,6 @@ It's powered by the very awesome project [NWJS](https://github.com/nwjs) and PyS
26
26
27
27
If you have an idea for a feature, please create a new issue with a format like this: "Feature - My Awesome New Feature", along with a good description of what you'd like the feature to do.
28
28
29
-
If you got some value out of using my app, consider donating a dollar to keep me caffeinated :)
30
-
31
-
<ahref='https://pledgie.com/campaigns/26899'><imgalt='Click here to lend your support to: Web2Executable Donations and make a donation at pledgie.com !'src='https://pledgie.com/campaigns/26899.png?skin_name=chrome'border='0' ></a>
32
-
33
29
On the other hand, if you have any annoyances with the application and want to contribute to making it better for everyone, please file an issue with "Annoyance:" as the first part of the title. Sometimes it's hard to know what is annoying for people and input is much appreciated :)
34
30
35
31
What About Electron?
@@ -83,7 +79,7 @@ Planned New Features
83
79
Getting Started
84
80
---------------
85
81
86
-
###Using Prebuilt Binaries
82
+
###Using Prebuilt Binaries
87
83
88
84
When using the prebuilt binaries for Windows, Mac, or Ubuntu, there are NO dependencies or extra applications needed. Simply download Web2Exe for the platform of your choice, extract, and double click the app/exe/binary to start. This applies to both the command-line version and the GUI version.
89
85
@@ -94,10 +90,23 @@ Error: The application has failed to start because the side by side configuratio
94
90
```
95
91
96
92
97
-
### Run from Python Source
93
+
### Building from Source
98
94
99
95
Requires the PySide library and Python 3.4.3 or higher. If you want to replace the icon in the Windows Exe's, this will do it automatically with the latest code if you have PIL or Pillow installed.
100
-
####GUI
96
+
97
+
### Command line interface
98
+
99
+
Dependencies: configobj (install with pip) and Pillow if you want icon replacement (not necessary)
100
+
101
+
Run the command_line.py with the --help option to see a list of export options. Optionally, if you don't want to install python, there are builds for Mac and Windows in the command_line_builds folder of this repository.
102
+
103
+
Example usage (if using the prebuilt binary, replace `python3.4 command_line.py` with the exe name):
104
+
105
+
```
106
+
python3.4 command_line.py /var/www/html/CargoBlaster/ --main html/index.html --export-to linux-x64 windows mac --width 900 --height 700 --nw-version 0.10.5
107
+
```
108
+
109
+
### GUI
101
110
102
111
Install dependencies:
103
112
@@ -117,26 +126,11 @@ Run with:
117
126
python3.4 main.py
118
127
```
119
128
120
-
It's a pretty simple app. Just point it to the directory where your web application lives, customize the options (the two marked with a star are the only ones required) and then choose your export options. The app will export under YOUR_OUTPUT_DIR/YOUR_APP_NAME.
121
-
122
-
####Command line interface
123
-
124
-
Dependencies: configobj (install with pip) and Pillow if you want icon replacement (not necessary)
125
-
126
-
Run the command_line.py with the --help option to see a list of export options. Optionally, if you don't want to install python, there are builds for Mac and Windows in the command_line_builds folder of this repository.
127
-
128
-
Example usage (if using the prebuilt binary, replace `python3.4 command_line.py` with the exe name):
129
-
130
-
```
131
-
python3.4 command_line.py /var/www/html/CargoBlaster/ --main html/index.html --export-to linux-x64 windows mac --width 900 --height 700 --nw-version 0.10.5
132
-
```
133
-
134
-
###GUI Instructions
129
+
General Instructions for exporting:
135
130
136
-
To use Web2Exe:
137
131
1. Choose a project folder with at least one html or php file. The name of the export application will be autogenerated from the folder that you choose, so change it if you so desire.
138
132
2. Modify the options as needed.
139
-
3. Choose at least one export platform and then the Export button should enable (as long as the field names marked with a star are filled out and all files in the fields exist).
133
+
3. Choose at least one export platform and then the Export button should be enabled (as long as the field names marked with a star are filled out and all files in the fields exist).
140
134
4. Click the export button and once it's done, click the "Open Export Folder" button to go to the folder where your exported project will be.
0 commit comments