Skip to content

Commit

Permalink
refacto: use new gui module
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Mar 20, 2024
1 parent 6ddfccc commit 472b3cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion builder/pyinstaller_build_ubuntu_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
# "--onedir",
"--onefile",
"--windowed",
str(package_folder / "dicogis.py"),
str(package_folder.joinpath("ui/main.py")),
]
)
2 changes: 1 addition & 1 deletion builder/pyinstaller_build_windows_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
"--onefile",
"--version-file={}".format("version_info.txt"),
"--windowed",
str(package_folder / "dicogis.py"),
str(package_folder.joinpath("ui/main.py")),
]
)
4 changes: 3 additions & 1 deletion docs/development/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ dicogis-cli --help
GUI:

```sh
python dicogis/dicogis.py
dicogis-gui
# or
python dicogis/ui/main.py
```

## Install git hooks
Expand Down
4 changes: 3 additions & 1 deletion docs/development/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ dicogis-cli --help
GUI:

```sh
python dicogis/dicogis.py
dicogis-gui
# or
python dicogis/ui/main.py
```

## Install git hooks
Expand Down

0 comments on commit 472b3cc

Please sign in to comment.