-
-
Notifications
You must be signed in to change notification settings - Fork 1
feat(): Support 1920x1200 and 2048x1536 #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,5 +17,5 @@ fi | |||||||||||||||
|
|
||||||||||||||||
| export ZAPAROO_CORE_ENDPOINT="ws://192.168.1.176:7497/api/v0.1" | ||||||||||||||||
| export ZAPAROO_CRT_PREVIEW_SCALE=3 | ||||||||||||||||
| exec "${FRONTEND}" --crt | ||||||||||||||||
| exec "${FRONTEND}" | ||||||||||||||||
| # exec "${FRONTEND}" --crt | ||||||||||||||||
|
Comment on lines
19
to
21
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On Line 20, removing Suggested fix export ZAPAROO_CORE_ENDPOINT="ws://192.168.1.176:7497/api/v0.1"
export ZAPAROO_CRT_PREVIEW_SCALE=3
-exec "${FRONTEND}"
+exec "${FRONTEND}" --crt
# exec "${FRONTEND}" --crt📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid committing a machine-specific core endpoint in the shared runner script.
Line 18 hardcodes a private LAN IP, which will fail for most environments. Make it overrideable with a default so the script works out-of-the-box and still supports local customization.
Suggested fix
📝 Committable suggestion
🤖 Prompt for AI Agents