-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from locaal-ai/roy.uno_api_integration
UNO api and UI/UX improvements
- Loading branch information
Showing
19 changed files
with
1,907 additions
and
1,152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
# Python | ||
*.pyc | ||
__pycache__/ | ||
*.pyo | ||
*.pyd | ||
*.pyw | ||
*.pyz | ||
*.pyzw | ||
*.pycachefile | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
|
||
# macOS | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
__MACOSX/ | ||
|
||
.env | ||
output/ | ||
.vscode | ||
# Python | ||
*.pyc | ||
__pycache__/ | ||
*.pyo | ||
*.pyd | ||
*.pyw | ||
*.pyz | ||
*.pyzw | ||
*.pycachefile | ||
*.egg-info/ | ||
dist/ | ||
build/ | ||
|
||
# macOS | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
__MACOSX/ | ||
|
||
.env | ||
output/ | ||
.vscode | ||
.aider* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# Directory containing the .ui files | ||
UI_DIR="$(dirname "$0")/../src" | ||
# Directory to output the compiled .py files | ||
OUTPUT_DIR=$UI_DIR | ||
|
||
# Ensure the output directory exists | ||
mkdir -p "$OUTPUT_DIR" | ||
|
||
# Compile each .ui file in the UI_DIR | ||
for ui_file in "$UI_DIR"/*.ui; do | ||
# Get the base name of the file (without extension) | ||
base_name=$(basename "$ui_file" .ui) | ||
echo "Compiling $ui_file to $OUTPUT_DIR/ui_${base_name}.py" | ||
# Compile the .ui file to a .py file | ||
pyside6-uic "$ui_file" -o "$OUTPUT_DIR/ui_${base_name}.py" | ||
done | ||
|
||
echo "UI files compiled successfully." |
Oops, something went wrong.