Rename GuiApp.App <-> GuiApp

This commit is contained in:
2023-08-03 13:34:14 +02:00
parent 259f8f7ba3
commit 28c1f30d6f
877 changed files with 245 additions and 245 deletions

4
.vscode/launch.json vendored
View File

@@ -20,9 +20,9 @@
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "build gui", "preLaunchTask": "build gui",
"program": "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp.App/bin/Debug/net6.0/FileTime.GuiApp.App.dll", "program": "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp/bin/Debug/net6.0/FileTime.GuiApp.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp.App/bin/Debug/net6.0", "cwd": "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp/bin/Debug/net6.0",
"console": "internalConsole", "console": "internalConsole",
"stopAtEntry": false "stopAtEntry": false
}, },

4
.vscode/tasks.json vendored
View File

@@ -19,7 +19,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"build", "build",
"${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp.App/FileTime.GuiApp.App.csproj", "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp/FileTime.GuiApp.csproj",
"/property:GenerateFullPaths=true", "/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary" "/consoleloggerparameters:NoSummary"
], ],
@@ -77,7 +77,7 @@
"type": "process", "type": "process",
"args": [ "args": [
"publish", "publish",
"${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp.App/FileTime.GuiApp.App.csproj", "${workspaceFolder}/src/GuiApp/Avalonia/FileTime.GuiApp/FileTime.GuiApp.csproj",
"-c", "-c",
"Release" "Release"
], ],

View File

@@ -7,7 +7,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\..\GuiApp\Avalonia\FileTime.GuiApp.Abstractions\FileTime.GuiApp.Abstractions.csproj" /> <ProjectReference Include="..\..\GuiApp\Avalonia\FileTime.GuiApp.App.Abstractions\FileTime.GuiApp.App.Abstractions.csproj" />
<ProjectReference Include="..\FileTime.App.CommandPalette.Abstractions\FileTime.App.CommandPalette.Abstractions.csproj" /> <ProjectReference Include="..\FileTime.App.CommandPalette.Abstractions\FileTime.App.CommandPalette.Abstractions.csproj" />
<ProjectReference Include="..\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj" /> <ProjectReference Include="..\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj" />
<ProjectReference Include="..\FileTime.App.FuzzyPanel\FileTime.App.FuzzyPanel.csproj" /> <ProjectReference Include="..\FileTime.App.FuzzyPanel\FileTime.App.FuzzyPanel.csproj" />

View File

@@ -4,8 +4,8 @@ using FileTime.App.CommandPalette.Services;
using FileTime.App.Core.Services; using FileTime.App.Core.Services;
using FileTime.App.Core.ViewModels; using FileTime.App.Core.ViewModels;
using FileTime.App.FuzzyPanel; using FileTime.App.FuzzyPanel;
using FileTime.GuiApp.Configuration; using FileTime.GuiApp.App.Configuration;
using FileTime.GuiApp.Services; using FileTime.GuiApp.App.Services;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
namespace FileTime.App.CommandPalette.ViewModels; namespace FileTime.App.CommandPalette.ViewModels;

View File

@@ -19,7 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AppCommon", "AppCommon", "{
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Avalonia", "Avalonia", "{01F231DE-4A65-435F-B4BB-77EE5221890C}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Avalonia", "Avalonia", "{01F231DE-4A65-435F-B4BB-77EE5221890C}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.App", "GuiApp\Avalonia\FileTime.GuiApp.App\FileTime.GuiApp.App.csproj", "{C389087E-EB78-4DCD-96AF-F1E2A4DEE0B0}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp", "GuiApp\Avalonia\FileTime.GuiApp\FileTime.GuiApp.csproj", "{C389087E-EB78-4DCD-96AF-F1E2A4DEE0B0}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Providers", "Providers", "{2FC40FE1-4446-44AB-BF77-00F94D995FA3}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Providers", "Providers", "{2FC40FE1-4446-44AB-BF77-00F94D995FA3}"
EndProject EndProject
@@ -39,13 +39,13 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.App.Core", "AppCom
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.App.Core.Abstraction", "AppCommon\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj", "{3E9CCD7F-86AA-4BD8-A100-0CD71BDB1AA0}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.App.Core.Abstraction", "AppCommon\FileTime.App.Core.Abstraction\FileTime.App.Core.Abstraction.csproj", "{3E9CCD7F-86AA-4BD8-A100-0CD71BDB1AA0}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp", "GuiApp\Avalonia\FileTime.GuiApp\FileTime.GuiApp.csproj", "{26331AB9-6E4D-40DB-8FF0-CB7133F67CA0}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.App", "GuiApp\Avalonia\FileTime.GuiApp.App\FileTime.GuiApp.App.csproj", "{26331AB9-6E4D-40DB-8FF0-CB7133F67CA0}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.CustomImpl", "GuiApp\Avalonia\FileTime.GuiApp.CustomImpl\FileTime.GuiApp.CustomImpl.csproj", "{4B742649-225F-4C73-B118-1B29FE2A5774}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.CustomImpl", "GuiApp\Avalonia\FileTime.GuiApp.CustomImpl\FileTime.GuiApp.CustomImpl.csproj", "{4B742649-225F-4C73-B118-1B29FE2A5774}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.Providers.Local.Abstractions", "Providers\FileTime.Providers.Local.Abstractions\FileTime.Providers.Local.Abstractions.csproj", "{1500A537-2116-4111-B216-7632040619B0}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.Providers.Local.Abstractions", "Providers\FileTime.Providers.Local.Abstractions\FileTime.Providers.Local.Abstractions.csproj", "{1500A537-2116-4111-B216-7632040619B0}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.Abstractions", "GuiApp\Avalonia\FileTime.GuiApp.Abstractions\FileTime.GuiApp.Abstractions.csproj", "{D7D1C76A-05B0-49BC-BCFF-06340E264EC1}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FileTime.GuiApp.App.Abstractions", "GuiApp\Avalonia\FileTime.GuiApp.App.Abstractions\FileTime.GuiApp.App.Abstractions.csproj", "{D7D1C76A-05B0-49BC-BCFF-06340E264EC1}"
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{8C3CFEFE-78A5-4940-B388-D15FCE02ECE9}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tools", "Tools", "{8C3CFEFE-78A5-4940-B388-D15FCE02ECE9}"
EndProject EndProject

View File

@@ -1,6 +1,6 @@
using Avalonia.Input; using Avalonia.Input;
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public class CommandBindingConfiguration public class CommandBindingConfiguration
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public class KeyBindingConfiguration public class KeyBindingConfiguration
{ {

View File

@@ -1,6 +1,6 @@
using Avalonia.Input; using Avalonia.Input;
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public class KeyConfig public class KeyConfig
{ {

View File

@@ -2,7 +2,7 @@ using Avalonia.Input;
using FileTime.App.Core.UserCommand; using FileTime.App.Core.UserCommand;
using FileTime.Providers.LocalAdmin; using FileTime.Providers.LocalAdmin;
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public static class MainConfiguration public static class MainConfiguration
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public class ProgramConfiguration public class ProgramConfiguration
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public class ProgramsConfiguration public class ProgramsConfiguration
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Configuration; namespace FileTime.GuiApp.App.Configuration;
public static class SectionNames public static class SectionNames
{ {

View File

@@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework> <TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>FileTime.GuiApp</RootNamespace> <RootNamespace>FileTime.GuiApp.App</RootNamespace>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>

View File

@@ -1,7 +1,7 @@
using FileTime.Core.Models; using FileTime.Core.Models;
using FileTime.GuiApp.Models; using FileTime.GuiApp.App.Models;
namespace FileTime.GuiApp.IconProviders; namespace FileTime.GuiApp.App.IconProviders;
public interface IIconProvider public interface IIconProvider
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.IconProviders; namespace FileTime.GuiApp.App.IconProviders;
public enum SpecialPathType public enum SpecialPathType
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Models; namespace FileTime.GuiApp.App.Models;
public enum GuiPanel public enum GuiPanel
{ {

View File

@@ -1,6 +1,6 @@
using FileTime.Core.Models; using FileTime.Core.Models;
namespace FileTime.GuiApp.Models; namespace FileTime.GuiApp.App.Models;
public interface IHaveFullPath public interface IHaveFullPath
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Models; namespace FileTime.GuiApp.App.Models;
public class ImagePath public class ImagePath
{ {

View File

@@ -1,4 +1,4 @@
namespace FileTime.GuiApp.Models; namespace FileTime.GuiApp.App.Models;
public enum ImagePathType public enum ImagePathType
{ {

View File

@@ -1,3 +1,3 @@
namespace FileTime.GuiApp.Models; namespace FileTime.GuiApp.App.Models;
public record SpecialKeysStatus(bool IsAltPressed, bool IsShiftPressed, bool IsCtrlPressed); public record SpecialKeysStatus(bool IsAltPressed, bool IsShiftPressed, bool IsCtrlPressed);

View File

@@ -1,6 +1,6 @@
using FileTime.Core.Models; using FileTime.Core.Models;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IContextMenuProvider public interface IContextMenuProvider
{ {

View File

@@ -1,3 +1,3 @@
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IDefaultModeKeyInputHandler : IKeyInputHandler { } public interface IDefaultModeKeyInputHandler : IKeyInputHandler { }

View File

@@ -1,7 +1,7 @@
using FileTime.Core.Interactions; using FileTime.Core.Interactions;
using FileTime.GuiApp.ViewModels; using FileTime.GuiApp.App.ViewModels;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IDialogService : IUserCommunicationService public interface IDialogService : IUserCommunicationService
{ {

View File

@@ -1,7 +1,7 @@
using Avalonia.Input; using Avalonia.Input;
using FileTime.GuiApp.Models; using FileTime.GuiApp.App.Models;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IKeyInputHandler public interface IKeyInputHandler
{ {

View File

@@ -1,6 +1,6 @@
using Avalonia.Input; using Avalonia.Input;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IKeyInputHandlerService public interface IKeyInputHandlerService
{ {

View File

@@ -1,6 +1,6 @@
using FileTime.GuiApp.Configuration; using FileTime.GuiApp.App.Configuration;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IKeyboardConfigurationService public interface IKeyboardConfigurationService
{ {

View File

@@ -1,7 +1,7 @@
using FileTime.App.Core.Services; using FileTime.App.Core.Services;
using FileTime.GuiApp.IconProviders; using FileTime.GuiApp.App.IconProviders;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IPlacesService : IStartupHandler public interface IPlacesService : IStartupHandler
{ {

View File

@@ -1,3 +1,3 @@
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IRapidTravelModeKeyInputHandler : IKeyInputHandler { } public interface IRapidTravelModeKeyInputHandler : IKeyInputHandler { }

View File

@@ -1,6 +1,6 @@
using Avalonia.Controls; using Avalonia.Controls;
namespace FileTime.GuiApp.Services; namespace FileTime.GuiApp.App.Services;
public interface IUiAccessor public interface IUiAccessor
{ {

View File

@@ -2,10 +2,10 @@ using System.Collections.ObjectModel;
using DeclarativeProperty; using DeclarativeProperty;
using FileTime.App.Core.ViewModels; using FileTime.App.Core.ViewModels;
using FileTime.Core.Models; using FileTime.Core.Models;
using FileTime.GuiApp.Configuration; using FileTime.GuiApp.App.Configuration;
using FileTime.GuiApp.Models; using FileTime.GuiApp.App.Models;
namespace FileTime.GuiApp.ViewModels; namespace FileTime.GuiApp.App.ViewModels;
public interface IGuiAppState : IAppState public interface IGuiAppState : IAppState
{ {

View File

@@ -2,7 +2,7 @@ using FileTime.App.Core.ViewModels;
using FileTime.Core.Interactions; using FileTime.Core.Interactions;
using MvvmGen; using MvvmGen;
namespace FileTime.GuiApp.ViewModels; namespace FileTime.GuiApp.App.ViewModels;
[ViewModel] [ViewModel]
public partial class MessageBoxViewModel : IModalViewModel public partial class MessageBoxViewModel : IModalViewModel

View File

@@ -1,7 +1,7 @@
using FileTime.Core.Models; using FileTime.Core.Models;
using FileTime.GuiApp.Models; using FileTime.GuiApp.App.Models;
namespace FileTime.GuiApp.ViewModels; namespace FileTime.GuiApp.App.ViewModels;
public class PlaceInfo : IHaveFullPath public class PlaceInfo : IHaveFullPath
{ {

View File

@@ -3,7 +3,7 @@ using FileTime.App.Core.ViewModels;
using FileTime.Core.Interactions; using FileTime.Core.Interactions;
using PropertyChanged.SourceGenerator; using PropertyChanged.SourceGenerator;
namespace FileTime.GuiApp.ViewModels; namespace FileTime.GuiApp.App.ViewModels;
public class ReadInputsViewModel : IModalViewModel public class ReadInputsViewModel : IModalViewModel
{ {

View File

@@ -1,11 +1,11 @@
using System.ComponentModel; using System.ComponentModel;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using FileTime.Core.Models; using FileTime.Core.Models;
using FileTime.GuiApp.Models; using FileTime.GuiApp.App.Models;
using PropertyChanged.SourceGenerator; using PropertyChanged.SourceGenerator;
using IContainer = FileTime.Core.Models.IContainer; using IContainer = FileTime.Core.Models.IContainer;
namespace FileTime.GuiApp.ViewModels; namespace FileTime.GuiApp.App.ViewModels;
public partial class RootDriveInfo : IHaveFullPath, INotifyPropertyChanged public partial class RootDriveInfo : IHaveFullPath, INotifyPropertyChanged
{ {

View File

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 33 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 136 B

After

Width:  |  Height:  |  Size: 136 B

View File

Before

Width:  |  Height:  |  Size: 404 B

After

Width:  |  Height:  |  Size: 404 B

View File

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 768 B

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 360 B

After

Width:  |  Height:  |  Size: 360 B

View File

Before

Width:  |  Height:  |  Size: 286 B

After

Width:  |  Height:  |  Size: 286 B

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 950 B

After

Width:  |  Height:  |  Size: 950 B

View File

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 233 B

View File

Before

Width:  |  Height:  |  Size: 788 B

After

Width:  |  Height:  |  Size: 788 B

View File

Before

Width:  |  Height:  |  Size: 780 B

After

Width:  |  Height:  |  Size: 780 B

View File

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 817 B

View File

Before

Width:  |  Height:  |  Size: 894 B

After

Width:  |  Height:  |  Size: 894 B

View File

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 850 B

After

Width:  |  Height:  |  Size: 850 B

View File

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 275 B

View File

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

Before

Width:  |  Height:  |  Size: 559 B

After

Width:  |  Height:  |  Size: 559 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 465 B

After

Width:  |  Height:  |  Size: 465 B

View File

Before

Width:  |  Height:  |  Size: 231 B

After

Width:  |  Height:  |  Size: 231 B

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 480 B

After

Width:  |  Height:  |  Size: 480 B

View File

Before

Width:  |  Height:  |  Size: 831 B

After

Width:  |  Height:  |  Size: 831 B

View File

Before

Width:  |  Height:  |  Size: 284 B

After

Width:  |  Height:  |  Size: 284 B

View File

Before

Width:  |  Height:  |  Size: 880 B

After

Width:  |  Height:  |  Size: 880 B

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 709 B

After

Width:  |  Height:  |  Size: 709 B

View File

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 376 B

View File

Before

Width:  |  Height:  |  Size: 481 B

After

Width:  |  Height:  |  Size: 481 B

View File

Before

Width:  |  Height:  |  Size: 838 B

After

Width:  |  Height:  |  Size: 838 B

View File

Before

Width:  |  Height:  |  Size: 764 B

After

Width:  |  Height:  |  Size: 764 B

View File

Before

Width:  |  Height:  |  Size: 347 B

After

Width:  |  Height:  |  Size: 347 B

View File

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 363 B

View File

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 277 B

View File

Before

Width:  |  Height:  |  Size: 760 B

After

Width:  |  Height:  |  Size: 760 B

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Some files were not shown because too many files have changed in this diff Show More