diff --git a/flatpak/io.github.brunoherbelin.Vimix.desktop b/flatpak/io.github.brunoherbelin.Vimix.desktop index 035bc54..37bd29f 100644 --- a/flatpak/io.github.brunoherbelin.Vimix.desktop +++ b/flatpak/io.github.brunoherbelin.Vimix.desktop @@ -3,6 +3,6 @@ Type=Application Name=vimix Comment=Live video mixing. Categories=AudioVideo;Video;Graphics;Utility; -Icon=io.github.brunoherbelin.Vimix +Icon=io.github.brunoherbelin.Vimix.svg Exec=vimix Terminal=false diff --git a/flatpak/io.github.brunoherbelin.Vimix.json b/flatpak/io.github.brunoherbelin.Vimix.json index 5a6a9c2..46cd82e 100644 --- a/flatpak/io.github.brunoherbelin.Vimix.json +++ b/flatpak/io.github.brunoherbelin.Vimix.json @@ -68,6 +68,7 @@ { "type": "git", "tag": "v1.5.1", + "commit": "0bc3b03202b3159fc9b085b3ae6d66ec071c25d6", "url": "https://github.com/Haivision/srt.git" } ] @@ -82,6 +83,7 @@ { "type": "git", "tag": "v1.8.0", + "commit": "c11beecfaad5c29350127515795295a13d53e956", "url": "https://github.com/dyne/frei0r.git" } ] @@ -128,6 +130,7 @@ { "type": "git", "tag": "1.3.72", + "commit": "96e044d1c6330e5fc9993cda2abc695a1dbc656e", "url": "https://gitlab.com/sat-mtl/tools/shmdata.git" } ] @@ -142,7 +145,7 @@ { "type": "git", "url": "https://github.com/brunoherbelin/vimix.git", - "tag": "0.7.2" + "tag": "0.7.3" } ] } diff --git a/flatpak/io.github.brunoherbelin.Vimix.appdata.xml b/flatpak/io.github.brunoherbelin.Vimix.metainfo.xml similarity index 94% rename from flatpak/io.github.brunoherbelin.Vimix.appdata.xml rename to flatpak/io.github.brunoherbelin.Vimix.metainfo.xml index 781d49f..ebe8079 100644 --- a/flatpak/io.github.brunoherbelin.Vimix.appdata.xml +++ b/flatpak/io.github.brunoherbelin.Vimix.metainfo.xml @@ -1,4 +1,5 @@ + io.github.brunoherbelin.Vimix io.github.brunoherbelin.Vimix.desktop @@ -15,6 +16,7 @@ + diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index a655e46..9b1c19a 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: vimix base: core18 -version: '0.7.2' +version: '0.7.3' summary: Live video mixing title: vimix description: | diff --git a/src/UserInterfaceManager.cpp b/src/UserInterfaceManager.cpp index 5fe7599..8d774ef 100644 --- a/src/UserInterfaceManager.cpp +++ b/src/UserInterfaceManager.cpp @@ -7024,7 +7024,7 @@ void Navigator::RenderNewPannel() ImGui::Text("\nCall an SRT broadcaster:"); ImGui::SetCursorPos(pos + ImVec2(0.f, 1.8f * ImGui::GetFrameHeight()) ); - ImGuiToolkit::Indication("Set the IP and Port for connecting with Secure Reliable Transport (SRT) protocol to a video broadcaster that is waiting for connections (listener mode).", ICON_FA_PODCAST); + ImGuiToolkit::Indication("Set the IP and Port for connecting with Secure Reliable Transport (SRT) protocol to a video broadcaster that is waiting for connections (listener mode).", ICON_FA_GLOBE); // Entry field for IP ImGui::SetNextItemWidth(IMGUI_RIGHT_ALIGN); @@ -7890,7 +7890,7 @@ void Navigator::RenderMainPannelSettings() NetworkToolkit::host_ips()[0].c_str(), Settings::application.broadcast_port, NetworkToolkit::host_ips()[1].c_str(), Settings::application.broadcast_port ); - ImGuiToolkit::Indication(msg, ICON_FA_PODCAST); + ImGuiToolkit::Indication(msg, ICON_FA_GLOBE); ImGui::SameLine(0); ImGui::SetCursorPosX(-1.f * IMGUI_RIGHT_ALIGN); ImGui::SetNextItemWidth(IMGUI_RIGHT_ALIGN);