mirror of
https://github.com/litruv/PNGTuber-Plus.git
synced 2026-07-26 03:26:01 +10:00
Compare commits
5 Commits
build-7a05
...
v2025.07.2
| Author | SHA1 | Date | |
|---|---|---|---|
| d345e700fc | |||
| bc187cff09 | |||
| fc4cacdc9f | |||
| 848361d19b | |||
| 711865c6a4 |
44
.github/workflows/build-windows.yml
vendored
44
.github/workflows/build-windows.yml
vendored
@@ -99,6 +99,36 @@ jobs:
|
|||||||
runs-on: self-hosted
|
runs-on: self-hosted
|
||||||
if: github.ref == 'refs/heads/master' && github.event_name == 'push' && success()
|
if: github.ref == 'refs/heads/master' && github.event_name == 'push' && success()
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Generate Release Info
|
||||||
|
id: release_info
|
||||||
|
run: |
|
||||||
|
# Get current date and time
|
||||||
|
$date = Get-Date -Format "yyyy.MM.dd"
|
||||||
|
$time = Get-Date -Format "HHmm"
|
||||||
|
|
||||||
|
# Get short commit hash (first 7 characters)
|
||||||
|
$shortSha = "${{ github.sha }}".Substring(0, 7)
|
||||||
|
|
||||||
|
# Get commit count since last tag (for build number)
|
||||||
|
$buildNumber = & git rev-list --count HEAD
|
||||||
|
|
||||||
|
# Create version-like tag and release name
|
||||||
|
$tag = "v$date-build$buildNumber"
|
||||||
|
$releaseName = "PNGTuber+ v$date Build $buildNumber"
|
||||||
|
|
||||||
|
Write-Host "Generated tag: $tag"
|
||||||
|
Write-Host "Generated release name: $releaseName"
|
||||||
|
|
||||||
|
# Set outputs for use in next steps
|
||||||
|
echo "tag=$tag" >> $env:GITHUB_OUTPUT
|
||||||
|
echo "release_name=$releaseName" >> $env:GITHUB_OUTPUT
|
||||||
|
echo "short_sha=$shortSha" >> $env:GITHUB_OUTPUT
|
||||||
|
echo "build_number=$buildNumber" >> $env:GITHUB_OUTPUT
|
||||||
- name: Download Windows Build
|
- name: Download Windows Build
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
@@ -111,21 +141,19 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
tag_name: build-${{ github.sha }}
|
tag_name: ${{ steps.release_info.outputs.tag }}
|
||||||
release_name: PNGTuber Plus Build ${{ github.sha }}
|
release_name: ${{ steps.release_info.outputs.release_name }}
|
||||||
body: |
|
body: |
|
||||||
Automated build of PNGTuber Plus
|
Automated build of PNGTuber Plus
|
||||||
|
|
||||||
## Recent Updates by Litruv
|
|
||||||
- **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
|
## Installation
|
||||||
1. Download PNGTuber-Plus.exe from the assets below
|
1. Download PNGTuber-Plus.exe from the assets below
|
||||||
2. Run the executable - no installation required!
|
2. Run the executable - no installation required!
|
||||||
3. For StreamDeck integration, download the plugin from [here](https://github.com/BoyneGames/streamdeck-godot-plugin/releases/tag/1.0.0)
|
3. For StreamDeck integration, download the plugin from [here](https://github.com/BoyneGames/streamdeck-godot-plugin/releases/tag/1.0.0)
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
- Original project by [kaiakairos](https://github.com/kaiakairos/PNGTuber-Plus)
|
||||||
|
- Microphone improvements by [k0ffinz](https://github.com/k0ffinz/PNGTuber-Plus)
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,10 @@
|
|||||||
- **Rotation Wobble**: New sprite rotation effects with frequency and amplitude controls
|
- **Rotation Wobble**: New sprite rotation effects with frequency and amplitude controls
|
||||||
- **Enhanced Modifier Keys**: Support for complex key combinations (Ctrl+Shift+Alt+Cmd)
|
- **Enhanced Modifier Keys**: Support for complex key combinations (Ctrl+Shift+Alt+Cmd)
|
||||||
- **Godot 4.4.1 Support**: Updated for latest Godot stable release
|
- **Godot 4.4.1 Support**: Updated for latest Godot stable release
|
||||||
|
- **Microphone Improvements**: Audio delay fix & more *from [k0ffinz/PNGTuber-Plus](https://github.com/k0ffinz/PNGTuber-Plus)*
|
||||||
|
|
||||||
## 🙏 Credits
|
## 🙏 Credits
|
||||||
|
|
||||||
- **Original Project**: PNGTuber Plus base application
|
- **Original Project**: [PNGTuber Plus by kaiakairos](https://github.com/kaiakairos/PNGTuber-Plus)
|
||||||
- **StreamDeck Plugin**: Based on [BoyneGames StreamDeck Godot Plugin](https://github.com/BoyneGames/streamdeck-godot-plugin)
|
- **StreamDeck Plugin**: Based on [BoyneGames StreamDeck Godot Plugin](https://github.com/BoyneGames/streamdeck-godot-plugin)
|
||||||
- **Enhanced Features**: Max Litruv Boonzaayer
|
- **Microphone Improvements**: k0ffinz - Experimental mic loudness detection, improved audio initialization, and audio delay fixes from [k0ffinz/PNGTuber-Plus](https://github.com/k0ffinz/PNGTuber-Plus)
|
||||||
- **Microphone Improvements**: k0ffinz/Ralsi - Experimental mic loudness detection, improved audio initialization, and audio delay fixes from [k0ffinz/PNGTuber-Plus](https://github.com/k0ffinz/PNGTuber-Plus)
|
|
||||||
@@ -480,9 +480,9 @@ func _on_kofi_pressed():
|
|||||||
Global.pushUpdate("Support me on ko-fi!")
|
Global.pushUpdate("Support me on ko-fi!")
|
||||||
|
|
||||||
|
|
||||||
func _on_twitter_pressed():
|
func _on_bluesky_pressed():
|
||||||
OS.shell_open("https://twitter.com/kaiakairos")
|
OS.shell_open("https://bsky.app/profile/kaiakairos.net")
|
||||||
Global.pushUpdate("Follow me on twitter!")
|
Global.pushUpdate("Follow me on bluesky!")
|
||||||
|
|
||||||
|
|
||||||
func _on_replace_button_pressed():
|
func _on_replace_button_pressed():
|
||||||
|
|||||||
@@ -14341,7 +14341,7 @@ offset_bottom = 27.0
|
|||||||
theme = SubResource("Theme_rv56a")
|
theme = SubResource("Theme_rv56a")
|
||||||
flat = true
|
flat = true
|
||||||
|
|
||||||
[node name="twitter" type="Button" parent="ControlPanel/Links"]
|
[node name="bluesky" type="Button" parent="ControlPanel/Links"]
|
||||||
offset_left = -5.0
|
offset_left = -5.0
|
||||||
offset_top = -29.0
|
offset_top = -29.0
|
||||||
offset_right = 61.0
|
offset_right = 61.0
|
||||||
@@ -14730,7 +14730,7 @@ z_index = -4096
|
|||||||
[connection signal="pressed" from="ControlPanel/SettingsButton/settingsButtons" to="." method="_on_settings_buttons_pressed"]
|
[connection signal="pressed" from="ControlPanel/SettingsButton/settingsButtons" to="." method="_on_settings_buttons_pressed"]
|
||||||
[connection signal="pressed" from="ControlPanel/Edit/Button" to="." method="swapMode"]
|
[connection signal="pressed" from="ControlPanel/Edit/Button" to="." method="swapMode"]
|
||||||
[connection signal="pressed" from="ControlPanel/Links/kofi" to="." method="_on_kofi_pressed"]
|
[connection signal="pressed" from="ControlPanel/Links/kofi" to="." method="_on_kofi_pressed"]
|
||||||
[connection signal="pressed" from="ControlPanel/Links/twitter" to="." method="_on_twitter_pressed"]
|
[connection signal="pressed" from="ControlPanel/Links/bluesky" to="." method="_on_bluesky_pressed"]
|
||||||
[connection signal="pressed" from="EditControls/Add/addButton" to="." method="_on_add_button_pressed"]
|
[connection signal="pressed" from="EditControls/Add/addButton" to="." method="_on_add_button_pressed"]
|
||||||
[connection signal="pressed" from="EditControls/Link/linkButton" to="." method="_on_link_button_pressed"]
|
[connection signal="pressed" from="EditControls/Link/linkButton" to="." method="_on_link_button_pressed"]
|
||||||
[connection signal="pressed" from="EditControls/Exit/Button2" to="." method="swapMode"]
|
[connection signal="pressed" from="EditControls/Exit/Button2" to="." method="swapMode"]
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 14 KiB |
Reference in New Issue
Block a user