Compare commits

...

6 Commits

Author SHA1 Message Date
f9c72448d9 Merge pull request #2 from litruv/copilot/fix-1
Fix costume key assignment regression - resolves "awaiting input" hang
2025-07-20 02:31:13 +10:00
copilot-swe-agent[bot]
135e63ef52 Fix costume key assignment regression by handling mouse click cancellation
Co-authored-by: litruv <3798007+litruv@users.noreply.github.com>
2025-07-19 16:25:12 +00:00
copilot-swe-agent[bot]
c86e68d383 Initial plan 2025-07-19 16:17:53 +00:00
d345e700fc Merge branch 'master' of https://github.com/litruv/PNGTuber-Plus 2025-07-20 00:03:50 +10:00
bc187cff09 Improve GitHub Actions workflow versioning and release formatting
- Add automated release info generation with date-based versioning
- Generate semantic version tags (v2025.MM.DD-buildNUMBER format)
- Implement dynamic build numbering based on commit count
- Streamline release name format to 'PNGTuber+ vDATE Build NUMBER'
- Update release body with proper credits and installation instructions
- Remove hardcoded release descriptions in favor of standardized format
2025-07-20 00:03:23 +10:00
fc4cacdc9f Update release name format in build workflow 2025-07-19 23:58:28 +10:00
2 changed files with 7 additions and 19 deletions

View File

@@ -119,7 +119,7 @@ jobs:
# Create version-like tag and release name
$tag = "v$date-build$buildNumber"
$releaseName = "PNGTuber Plus v$date Build $buildNumber"
$releaseName = "PNGTuber+ v$date Build $buildNumber"
Write-Host "Generated tag: $tag"
Write-Host "Generated release name: $releaseName"
@@ -145,20 +145,7 @@ jobs:
release_name: ${{ steps.release_info.outputs.release_name }}
body: |
Automated build of PNGTuber Plus
**Build Information:**
- Build Number: ${{ steps.release_info.outputs.build_number }}
- Commit: ${{ steps.release_info.outputs.short_sha }}
- Built: ${{ github.event.head_commit.timestamp }}
## Recent Updates by Litruv
- **Microphone Improvements**: Audio delay fix & experimental loudness detection
- **Sprite Masking System**: Advanced masking with opacity controls and file selection
- **StreamDeck Integration**: Add buttons to enable the streamdeck plugin that was built in
- **Rotation Wobble**: New sprite rotation effects with frequency and amplitude controls
- **Enhanced Modifier Keys**: Support for complex key combinations (Ctrl+Shift+Alt+Cmd)
- **Godot 4.4.1 Support**: Updated for latest Godot stable release
## Installation
1. Download PNGTuber-Plus.exe from the assets below
2. Run the executable - no installation required!

View File

@@ -674,10 +674,11 @@ func _on_background_input_capture_bg_key_pressed(node, keys_pressed):
if settingsMenu.awaitingCostumeInput >= 0:
if keyStrings[0] == "Keycode1":
if !settingsMenu.hasMouse:
emit_signal("pressedKey")
return
# Cancel key assignment if user clicks outside the settings menu
if keyStrings[0] == "Keycode1" and !settingsMenu.hasMouse:
# Don't assign the key, just complete the flow
emit_signal("pressedKey")
return
var currentButton = costumeKeys[settingsMenu.awaitingCostumeInput]
costumeKeys[settingsMenu.awaitingCostumeInput] = keyStrings[0]