Skip to content

Commit d6135de

Browse files
committed
feat: some update in readme
1 parent 2a24f00 commit d6135de

3 files changed

Lines changed: 15 additions & 4 deletions

File tree

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,11 @@ Requirements: `cx_Freeze`, `imagemagick` (`convert`), `curl`
8585

8686
This will produce a `PyMacroRecord-x86_64.AppImage` (or the current arch) in the project root.
8787

88-
> **Note:** The AppImage runs in X11 mode only. Wayland is not supported because the mouse can't leave the current window.
88+
> **Note:** The AppImage runs in X11 mode only. Wayland is not supported.
8989
9090
## Windows
9191

92+
### Folder
9293
Requirements: `cx_Freeze`
9394

9495
```bash
@@ -97,15 +98,24 @@ python setup_cx.py build
9798

9899
The output will be in the `build/` directory.
99100

101+
### Portable
102+
Requirements: `PyInstaller`
103+
104+
Run
105+
```bash
106+
build.bat
107+
```
108+
109+
The output will be in the `dist/` directory.
110+
100111
# Support
101112
Developing a software is not an easy task. If you really like this project, please consider making a small donation, it really helps and means a lot! <3
102113
\
103114
\
104115
By making a donation, your name will appear in the "Donors" section of the PyMacroRecord software and among the last 5 donors on the [PyMacroRecord](https://www.pymacrorecord.com) website as a thank you!
105116
\
106117
\
107-
<a href='https://ko-fi.com/loudo' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
108-
118+
<a href='https://ko-fi.com/C0C41PJM6B' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi5.png?v=6' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
109119
# License
110120

111121
This program is under [GNU General Public License v3.0](https://github.com/LOUDO56/PyMacroRecord/blob/main/LICENSE.md)

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ requests==2.33.1
44
pystray==0.19.5
55
win10toast==0.9; sys_platform == 'win32'
66
pyinstaller==6.19.0; sys_platform == 'win32'
7+
cx-Freeze==8.6.3

setup_cx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
target = Executable(
5050
script="src/main.py",
51-
base="Win32GUI" if sys.platform == "win32" else None,
51+
base="gui" if sys.platform == "win32" else None,
5252
target_name="PyMacroRecord",
5353
icon="src/assets/logo.ico",
5454
)

0 commit comments

Comments
 (0)