Skip to content

Commit

Permalink
Merge pull request #96 from SineVector241/dev
Browse files Browse the repository at this point in the history
v1.0.5 bug fix release
  • Loading branch information
SineVector241 authored Jun 26, 2024
2 parents 4386db8 + 74176b1 commit c4c4abe
Show file tree
Hide file tree
Showing 11 changed files with 283 additions and 444 deletions.
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

0 comments on commit c4c4abe

Please sign in to comment.