Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.0.5 bug fix release #96

Merged
merged 9 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: BuildTest
on: []
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'

- name: Install VoiceCraft.Core Dependencies
run: dotnet workload restore ./VoiceCraft.Core/VoiceCraft.Core.csproj
- name: Build VoiceCraft.Core
run: dotnet build ./VoiceCraft.Core/VoiceCraft.Core.csproj

- name: Install VoiceCraft.Network Dependencies
run: dotnet workload restore ./VoiceCraft.Network/VoiceCraft.Network.csproj
- name: Build VoiceCraft.Network
run: dotnet build ./VoiceCraft.Network/VoiceCraft.Network.csproj

- name: Install VoiceCraft.Server Dependencies
run: dotnet workload restore ./VoiceCraft.Server/VoiceCraft.Server.csproj
- name: Build VoiceCraft.Server
run: dotnet build ./VoiceCraft.Server/VoiceCraft.Server.csproj
195 changes: 0 additions & 195 deletions NewPacketStructure.md

This file was deleted.

7 changes: 5 additions & 2 deletions VoiceCraft.Maui/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
namespace VoiceCraft.Maui
using OpusSharp.Core;

namespace VoiceCraft.Maui
{
public partial class App : Application
{
public const string Version = "1.0.3";
public const string Version = "1.0.4";
public static string OpusVersion = OpusInfo.Version();
public App()
{
InitializeComponent();
Expand Down
3 changes: 3 additions & 0 deletions VoiceCraft.Maui/AppShell.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
Shell.FlyoutBackdrop="#6f404040"
Shell.FlyoutBehavior="{OnIdiom Default='Flyout',
Phone='Disabled'}"
Shell.ForegroundColor="{AppThemeBinding Light=Black,
Dark=White,
Default=Black}"
Shell.NavBarIsVisible="False"
Shell.TabBarIsVisible="{OnIdiom Default='False',
Phone='True'}">
Expand Down
2 changes: 1 addition & 1 deletion VoiceCraft.Maui/Platforms/Windows/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">

<Identity Name="maui-package-name-placeholder" Publisher="CN=SineVector241" Version="1.0.4.0" />
<Identity Name="maui-package-name-placeholder" Publisher="CN=SineVector241" Version="1.0.5.0" />

<mp:PhoneIdentity PhoneProductId="34746B2F-1310-4136-B29D-AAE3ADD7BEC5" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
2 changes: 1 addition & 1 deletion VoiceCraft.Maui/Views/Desktop/Credits.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<Label Grid.Row="4"
FontAttributes="Bold"
FontSize="Small"
Text="Codec: Opus - v1.5.1" />
Text="{Binding Source={x:Static app:App.OpusVersion}, StringFormat='Codec: {0}'}" />
</Grid>
</Border>
</Grid>
Expand Down
Loading