diff --git a/README.md b/README.md index 52842d5..7e973a1 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,10 @@ - **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 +- **Microphone Improvements**: Audio delay fix & more *from [k0ffinz/PNGTuber-Plus](https://github.com/k0ffinz/PNGTuber-Plus)* ## 🙏 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) -- **Enhanced Features**: Max Litruv Boonzaayer -- **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) +- **Microphone Improvements**: k0ffinz - Experimental mic loudness detection, improved audio initialization, and audio delay fixes from [k0ffinz/PNGTuber-Plus](https://github.com/k0ffinz/PNGTuber-Plus) \ No newline at end of file diff --git a/main_scenes/main.gd b/main_scenes/main.gd index c4297f0..d61e0cd 100644 --- a/main_scenes/main.gd +++ b/main_scenes/main.gd @@ -480,9 +480,9 @@ func _on_kofi_pressed(): Global.pushUpdate("Support me on ko-fi!") -func _on_twitter_pressed(): - OS.shell_open("https://twitter.com/kaiakairos") - Global.pushUpdate("Follow me on twitter!") +func _on_bluesky_pressed(): + OS.shell_open("https://bsky.app/profile/kaiakairos.net") + Global.pushUpdate("Follow me on bluesky!") func _on_replace_button_pressed(): diff --git a/main_scenes/main.tscn b/main_scenes/main.tscn index 44b9bc3..5c83c79 100644 --- a/main_scenes/main.tscn +++ b/main_scenes/main.tscn @@ -14341,7 +14341,7 @@ offset_bottom = 27.0 theme = SubResource("Theme_rv56a") flat = true -[node name="twitter" type="Button" parent="ControlPanel/Links"] +[node name="bluesky" type="Button" parent="ControlPanel/Links"] offset_left = -5.0 offset_top = -29.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/Edit/Button" to="." method="swapMode"] [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/Link/linkButton" to="." method="_on_link_button_pressed"] [connection signal="pressed" from="EditControls/Exit/Button2" to="." method="swapMode"] diff --git a/ui_scenes/button sprites/links.png b/ui_scenes/button sprites/links.png index 20cbb47..9388710 100644 Binary files a/ui_scenes/button sprites/links.png and b/ui_scenes/button sprites/links.png differ