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
1. Download OFS from https://github.com/OpenFunscripter/OFS/releases.
6
+
2. Install OFS if you prefer the installer version (`exe`) else extract the OFS archive.
7
+
3. Start OFS at least one and close it again.
8
+
4. Download the MTFG OFS Extension Installer from https://github.com/michael-mueller-git/Python-Funscript-Editor/releases
9
+
5. Run Install
10
+
6. Open OFS and activate the extension.
11
+
7. Add global key binding for the extension in OFS
12
+
13
+
## Build Installer from Source
14
+
15
+
I recommend to download the installer from [release page](https://github.com/michael-mueller-git/Python-Funscript-Editor/releases) in the assets section.
16
+
17
+
If you want to build this installer from source use miniconda environment to build the executable.
18
+
19
+
First download and install miniconda (If you have already anaconda installed on your computer you can skip this step). Then run the following commands in the project root directory:
20
+
21
+
```
22
+
conda env create -f environment_windows.yaml
23
+
conda activate build-installer
24
+
build.bat
25
+
```
26
+
27
+
This create the Windows executable in `./dist`.
28
+
29
+
Finally you can remove the build environment with `conda env remove -n build-installer`
0 commit comments