mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 08:48:42 +00:00
594246ea47
* add settings windows and children views * Expose hotkeys configuration on the UI * Remove double spacing from locale JSON * simplify button assigner * add cemuhook buttons and title to locale * move common button assigner to own class * cancel button assigner when window is closed * remove unused setting * address review. fix controller profile not loading default when switching devices * fix updater file name * Input cleanup (#37) * addressed review * add device type to controller device checks * change accessibility modifier of public classes to internal * Update Ryujinx.Ava/Ui/ViewModels/ControllerSettingsViewModel.cs Co-authored-by: gdkchan <gab.dark.100@gmail.com> * Update de_DE.json * Update de_DE.json * Update tr_TR.json Translated newly added lines * Update it_IT.json * fix rebase * update avalonia * fix wrong key used for button text * Align settings window elements * Tabs to spaces * Update brazilian portuguese translation * Minor improvement on brazilian portuguese translation * fix turkish translation * remove unused text * change view related classes to public * unsubscribe from deferred event if dialog is closed * Load the default language before loading any other when switching languages * Make controller settings more compact * increase default width of settings window, reduce profile buttons width Co-authored-by: gdk <gab.dark.100@gmail.com> Co-authored-by: MutantAura <44103205+MutantAura@users.noreply.github.com> Co-authored-by: Niwu34 <67392333+Niwu34@users.noreply.github.com> Co-authored-by: aegiff <99728970+aegiff@users.noreply.github.com> Co-authored-by: Antonio Brugnolo <36473846+AntoSkate@users.noreply.github.com>
147 lines
7 KiB
XML
147 lines
7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
|
<OutputType>Exe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Version>1.0.0-dirty</Version>
|
|
<TieredCompilation>false</TieredCompilation>
|
|
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
|
<RootNamespace>Ryujinx.Ava</RootNamespace>
|
|
<ApplicationIcon>Ryujinx.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="0.10.15" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="0.10.15" />
|
|
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.15" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.15" />
|
|
<PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="0.10.15" />
|
|
<PackageReference Include="Avalonia.Svg" Version="0.10.14" />
|
|
<PackageReference Include="Avalonia.Svg.Skia" Version="0.10.14" />
|
|
<PackageReference Include="jp2masa.Avalonia.Flexbox" Version="0.2.0" />
|
|
<PackageReference Include="DynamicData" Version="7.9.4" />
|
|
<PackageReference Include="FluentAvaloniaUI" Version="1.4.1" />
|
|
|
|
<PackageReference Include="Ryujinx.Audio.OpenAL.Dependencies" Version="1.21.0.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
<PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.4.0-build9" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
<PackageReference Include="OpenTK.Graphics" Version="4.7.2" />
|
|
<PackageReference Include="SPB" Version="0.0.4-build17" />
|
|
<PackageReference Include="SharpZipLib" Version="1.3.3" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.OpenAL\Ryujinx.Audio.Backends.OpenAL.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Audio.Backends.SoundIo\Ryujinx.Audio.Backends.SoundIo.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
|
|
<ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Ui.Common\Ryujinx.Ui.Common.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ContentWithTargetPath Include="..\distribution\windows\alsoft.ini" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<TargetPath>alsoft.ini</TargetPath>
|
|
</ContentWithTargetPath>
|
|
<ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<TargetPath>THIRDPARTY.md</TargetPath>
|
|
</ContentWithTargetPath>
|
|
<ContentWithTargetPath Include="..\Ryujinx.Audio\LICENSE.txt">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
<TargetPath>LICENSE-Ryujinx.Audio.txt</TargetPath>
|
|
</ContentWithTargetPath>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Ui\**\*.xaml">
|
|
<SubType>Designer</SubType>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\Fonts\SegoeFluentIcons.ttf" />
|
|
<AvaloniaResource Include="Assets\Styles\BaseLight.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\Styles\BaseDark.xaml">
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</AvaloniaResource>
|
|
<AvaloniaResource Include="Assets\Styles\Styles.xaml" />
|
|
|
|
<Compile Update="App.axaml.cs">
|
|
<DependentUpon>App.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Windows\MainWindow.axaml.cs">
|
|
<DependentUpon>MainWindow.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Windows\AboutWindow.axaml.cs">
|
|
<DependentUpon>AboutWindow.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Applet\ErrorAppletWindow.axaml.cs">
|
|
<DependentUpon>ProfileWindow.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Applet\SwkbdAppletWindow.axaml.cs">
|
|
<DependentUpon>ProfileWindow.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Controls\InputDialog.axaml.cs">
|
|
<DependentUpon>InputDialog.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
<Compile Update="Ui\Windows\ContentDialogOverlay.xaml.cs">
|
|
<DependentUpon>ContentDialogOverlay.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Ui\Controls\GameListView.axaml.cs">
|
|
<DependentUpon>GameListView.axaml</DependentUpon>
|
|
<SubType>Code</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Assets\Locales\el_GR.json" />
|
|
<None Remove="Assets\Locales\en_US.json" />
|
|
<None Remove="Assets\Locales\es_ES.json" />
|
|
<None Remove="Assets\Locales\fr_FR.json" />
|
|
<None Remove="Assets\Locales\de_DE.json" />
|
|
<None Remove="Assets\Locales\it_IT.json" />
|
|
<None Remove="Assets\Locales\ko_KR.json" />
|
|
<None Remove="Assets\Locales\pt_BR.json" />
|
|
<None Remove="Assets\Locales\ru_RU.json" />
|
|
<None Remove="Assets\Locales\tr_TR.json" />
|
|
<None Remove="Assets\Locales\zh_CN.json" />
|
|
<None Remove="Assets\Styles\Styles.xaml" />
|
|
<None Remove="Assets\Styles\BaseDark.xaml" />
|
|
<None Remove="Assets\Styles\BaseLight.xaml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Assets\Locales\el_GR.json" />
|
|
<EmbeddedResource Include="Assets\Locales\en_US.json" />
|
|
<EmbeddedResource Include="Assets\Locales\es_ES.json" />
|
|
<EmbeddedResource Include="Assets\Locales\fr_FR.json" />
|
|
<EmbeddedResource Include="Assets\Locales\de_DE.json" />
|
|
<EmbeddedResource Include="Assets\Locales\it_IT.json" />
|
|
<EmbeddedResource Include="Assets\Locales\ko_KR.json" />
|
|
<EmbeddedResource Include="Assets\Locales\pt_BR.json" />
|
|
<EmbeddedResource Include="Assets\Locales\ru_RU.json" />
|
|
<EmbeddedResource Include="Assets\Locales\tr_TR.json" />
|
|
<EmbeddedResource Include="Assets\Locales\zh_CN.json" />
|
|
<EmbeddedResource Include="Assets\Styles\Styles.xaml" />
|
|
</ItemGroup>
|
|
</Project>
|