mirror of
https://github.com/litruv/PNGTuber-Plus.git
synced 2026-07-25 02:56:02 +10:00
Compare commits
6 Commits
v2025.07.1
...
v2025.07.2
| Author | SHA1 | Date | |
|---|---|---|---|
| f9c72448d9 | |||
|
|
135e63ef52 | ||
|
|
c86e68d383 | ||
| d345e700fc | |||
| bc187cff09 | |||
| fc4cacdc9f |
17
.github/workflows/build-windows.yml
vendored
17
.github/workflows/build-windows.yml
vendored
@@ -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!
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user