From 0de9ca20044ced84c12fbcf3b6de90ac193025e4 Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Sat, 6 Apr 2024 10:47:43 +0200 Subject: Add Installation Guide for Windows Improve Contributors list in Readme --- windows/docker-compose.yml | 19 +++++++++++++++++++ windows/icon.ico | Bin 0 -> 4286 bytes windows/main.py | 22 ++++++++++++++++++++++ windows/main.spec | 46 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 87 insertions(+) create mode 100644 windows/docker-compose.yml create mode 100644 windows/icon.ico create mode 100644 windows/main.py create mode 100644 windows/main.spec (limited to 'windows') diff --git a/windows/docker-compose.yml b/windows/docker-compose.yml new file mode 100644 index 00000000..1aa59caf --- /dev/null +++ b/windows/docker-compose.yml @@ -0,0 +1,19 @@ +version: "3" +services: + windows: + image: dockurr/windows + container_name: windows + environment: + VERSION: "win11" + devices: + - /dev/kvm + cap_add: + - NET_ADMIN + ports: + - 8006:8006 + - 3389:3389/tcp + - 3389:3389/udp + stop_grace_period: 2m + restart: on-failure + volumes: + - /var/win:/storage \ No newline at end of file diff --git a/windows/icon.ico b/windows/icon.ico new file mode 100644 index 00000000..56ee955e Binary files /dev/null and b/windows/icon.ico differ diff --git a/windows/main.py b/windows/main.py new file mode 100644 index 00000000..11a3f902 --- /dev/null +++ b/windows/main.py @@ -0,0 +1,22 @@ +import ssl +import certifi +from functools import partial + +ssl.default_ca_certs = certifi.where() +ssl.create_default_context = partial( + ssl.create_default_context, + cafile=certifi.where() +) + +from g4f.gui.webview import run_webview +from g4f.gui.run import gui_parser +import g4f.debug +g4f.debug.version_check = False +g4f.debug.version = "0.2.8.0" + +if __name__ == "__main__": + parser = gui_parser() + args = parser.parse_args() + if args.debug: + g4f.debug.logging = True + run_webview(args.debug) \ No newline at end of file diff --git a/windows/main.spec b/windows/main.spec new file mode 100644 index 00000000..9dd1d098 --- /dev/null +++ b/windows/main.spec @@ -0,0 +1,46 @@ +# -*- mode: python ; coding: utf-8 -*- + + +block_cipher = None + + +a = Analysis( + ['main.py'], + pathex=[], + binaries=[], + datas=[], + hiddenimports=['plyer.platforms.linux.filechooser', 'plyer.platforms.win.filechooser'], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False, +) +pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher) + +exe = EXE( + pyz, + a.scripts, + a.binaries, + Tree('C:/Users/Docker/AppData/Local/Packages/PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0/LocalCache/local-packages/Python311/site-packages/g4f/gui/client', prefix='client'), + a.zipfiles, + a.datas, + [], + name='g4f', + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=True, + upx_exclude=[], + runtime_tmpdir=None, + console=False, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, + icon='icon.ico', +) -- cgit v1.2.3