Skip to content

Commit

Permalink
#192 Hostess -> 포카락 / Spork로 리브랜딩
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Mar 16, 2024
1 parent aec20ad commit 418394d
Show file tree
Hide file tree
Showing 124 changed files with 2,801 additions and 2,796 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

env:
Solution_Name: src\TableCloth.sln
Hostess_Project_Path: src\Hostess\Hostess.csproj
Spork_Project_Path: src\Spork\Spork.csproj
Test_Project_Path: src\TableCloth.Test\TableCloth.Test.csproj
TableCloth_Project_Path: src\TableCloth\TableCloth.csproj
Platform: ${{ matrix.platform }}
Expand Down Expand Up @@ -51,9 +51,9 @@ jobs:
env:
Configuration: ${{ matrix.configuration }}

# Build Hostess project separately
- name: Build Hostess project
run: msbuild $env:Hostess_Project_Path /p:Configuration=$env:Configuration /p:Platform=$env:Platform /m
# Build Spork project separately
- name: Build Spork project
run: msbuild $env:Spork_Project_Path /p:Configuration=$env:Configuration /p:Platform=$env:Platform /m
env:
Configuration: ${{ matrix.configuration }}

Expand Down
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -436,14 +436,14 @@ FodyWeavers.xsd

# End of https://www.toptal.com/developers/gitignore/api/dotnetcore,visualstudio,visualstudiocode,windows

/src/Hostess/commit.txt
/src/Spork/commit.txt

/src/TableCloth/commit.txt
/src/TableCloth/Hostess.zip
/src/TableCloth/Spork.zip
/src/TableCloth/Images.zip

/src/TableCloth.Test/commit.txt
/src/TableCloth.Test/Hostess.zip
/src/TableCloth.Test/Spork.zip
/src/TableCloth.Test/Images.zip

/src/commit.iss
Expand Down
1 change: 1 addition & 0 deletions README.EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ Installation and usage guide are introduced in [Tablecloth Introduction Page(KO)
## Copyrights

![Tablecloth icon](https://img.icons8.com/color/96/000000/tablecloth.png) by [Icons8](https://icons8.com)
![Spork icon](https://www.flaticon.com/free-icon/spork_5625701) by Freepik Flaticon
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,4 @@ GitHub Sponsorship을 통하여 후원해주시면 지속적으로 프로젝트
## 저작권 정보

![Tablecloth icon](https://img.icons8.com/color/96/000000/tablecloth.png) by [Icons8](https://icons8.com)
![Spork icon](https://www.flaticon.com/free-icon/spork_5625701) by Freepik Flaticon
Binary file removed src/Hostess/App.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/Hostess/App.config → src/Spork/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<!--
노트:
Windows 10 2019년 5월 업데이트부터 Windows Sandbox 첫 버전이 지원되며,
.NET Framework도 4.8 버전이 기본 탑재되어 Hostess는 .NET Framework 4.8에 맞추어 빌드됩니다.
.NET Framework도 4.8 버전이 기본 탑재되어 Spork는 .NET Framework 4.8에 맞추어 빌드됩니다.
자세한 내용:
- https://learn.microsoft.com/en-us/windows/whats-new/whats-new-windows-10-version-1903
- https://learn.microsoft.com/en-us/dotnet/framework/install/on-windows-10
Expand Down
Binary file added src/Spork/App.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Hostess/App.xaml → src/Spork/App.xaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Application x:Class="Hostess.App"
<Application x:Class="Spork.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:converters="clr-namespace:Hostess.Converters"
xmlns:converters="clr-namespace:Spork.Converters"
Startup="Application_Startup">
<Application.Resources>
<ResourceDictionary>
Expand Down
6 changes: 3 additions & 3 deletions src/Hostess/App.xaml.cs → src/Spork/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using AsyncAwaitBestPractices;
using Hostess.Components;
using Spork.Components;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using System;
Expand All @@ -10,7 +10,7 @@
using TableCloth;
using TableCloth.Resources;

namespace Hostess
namespace Spork
{
public partial class App : Application
{
Expand All @@ -35,7 +35,7 @@ private async Task OnApplicationstartupAsync(object sender, StartupEventArgs e)

if (parsedArgs.ShowCommandLineHelp)
{
appMessageBox.DisplayInfo(StringResources.TableCloth_Hostess_Switches_Help, MessageBoxButton.OK);
appMessageBox.DisplayInfo(StringResources.TableCloth_Spork_Switches_Help, MessageBoxButton.OK);
return;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Diagnostics;
using System.Windows;

namespace Hostess.Browsers
namespace Spork.Browsers
{
public interface IWebBrowserService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Hostess.Browsers
namespace Spork.Browsers
{
public interface IWebBrowserServiceFactory
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.Extensions.DependencyInjection;
using System;

namespace Hostess.Browsers.Implementations
namespace Spork.Browsers.Implementations
{
public sealed class WebBrowserServiceFactory : IWebBrowserServiceFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System;
using System.IO;

namespace Hostess.Browsers.Implementations
namespace Spork.Browsers.Implementations
{
public sealed class X86ChromiumEdgeWebBrowserService : IWebBrowserService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using AsyncAwaitBestPractices;
using AsyncAwaitBestPractices.MVVM;
using Hostess.ViewModels;
using Spork.ViewModels;
using System.Threading.Tasks;
using TableCloth.Events;

namespace Hostess.Commands.AboutWindow
namespace Spork.Commands.AboutWindow
{
public sealed class AboutWindowCloseCommand : ViewModelCommandBase<AboutWindowViewModel>, IAsyncCommand<AboutWindowViewModel>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Hostess.Components;
using Hostess.ViewModels;
using Spork.Components;
using Spork.ViewModels;
using TableCloth;
using TableCloth.Resources;

namespace Hostess.Commands.AboutWindow
namespace Spork.Commands.AboutWindow
{
public sealed class AboutWindowLoadedCommand : ViewModelCommandBase<AboutWindowViewModel>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Hostess.Browsers;
using Spork.Browsers;
using System.Diagnostics;
using TableCloth.Resources;

namespace Hostess.Commands.AboutWindow
namespace Spork.Commands.AboutWindow
{
public sealed class OpenAppHomepageCommand : CommandBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Windows.Input;

namespace Hostess.Commands
namespace Spork.Commands
{
public abstract class CommandBase : ICommand
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Hostess.Components;
using Spork.Components;

namespace Hostess.Commands.MainWindow
namespace Spork.Commands.MainWindow
{
public sealed class AboutThisAppCommand : CommandBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using AsyncAwaitBestPractices;
using AsyncAwaitBestPractices.MVVM;
using Hostess.Steps;
using Hostess.ViewModels;
using Spork.Steps;
using Spork.ViewModels;
using System;
using System.Threading.Tasks;

namespace Hostess.Commands.MainWindow
namespace Spork.Commands.MainWindow
{
public sealed class MainWindowInstallPackagesCommand : ViewModelCommandBase<MainWindowViewModel>, IAsyncCommand<MainWindowViewModel>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
using AsyncAwaitBestPractices;
using AsyncAwaitBestPractices.MVVM;
using Hostess.Components;
using Hostess.Steps;
using Hostess.ViewModels;
using Spork.Components;
using Spork.Steps;
using Spork.ViewModels;
using System;
using System.Collections.ObjectModel;
using System.Threading.Tasks;
using System.Windows;
using TableCloth;

namespace Hostess.Commands.MainWindow
namespace Spork.Commands.MainWindow
{
public sealed class MainWindowLoadedCommand : ViewModelCommandBase<MainWindowViewModel>, IAsyncCommand<MainWindowViewModel>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Hostess.Components;
using Spork.Components;
using System.Diagnostics;
using TableCloth.Resources;

namespace Hostess.Commands.MainWindow
namespace Spork.Commands.MainWindow
{
public sealed class ShowDebugInfoCommand : CommandBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Hostess.Components;
using Spork.Components;

namespace Hostess.Commands.MainWindow
namespace Spork.Commands.MainWindow
{
public sealed class ShowErrorMessageCommand : CommandBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using AsyncAwaitBestPractices;
using AsyncAwaitBestPractices.MVVM;
using Hostess.ViewModels;
using Spork.ViewModels;
using System.Threading.Tasks;
using TableCloth.Events;

namespace Hostess.Commands.PrecautionsWindow
namespace Spork.Commands.PrecautionsWindow
{
public sealed class PrecautionsWindowCloseCommand : ViewModelCommandBase<PrecautionsWindowViewModel>, IAsyncCommand<PrecautionsWindowViewModel>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
using Hostess.Components;
using Hostess.ViewModels;
using Spork.Components;
using Spork.ViewModels;
using System;
using System.Linq;
using System.Text;
using TableCloth.Resources;

namespace Hostess.Commands.PrecautionsWindow
namespace Spork.Commands.PrecautionsWindow
{
public sealed class PrecautionsWindowLoadedCommand : ViewModelCommandBase<PrecautionsWindowViewModel>
{
Expand All @@ -30,7 +30,7 @@ public override void Execute(PrecautionsWindowViewModel viewModel)

foreach (var eachItem in catalog.Services.Where(x => targets.Contains(x.Id)))
{
buffer.AppendLine($"[{eachItem.DisplayName} {UIStringResources.Hostess_Warning_Title}]");
buffer.AppendLine($"[{eachItem.DisplayName} {UIStringResources.Spork_Warning_Title}]");
buffer.AppendLine();
buffer.AppendLine(eachItem.CompatibilityNotes);
buffer.AppendLine();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TableCloth;

namespace Hostess.Commands
namespace Spork.Commands
{
public abstract class ViewModelCommandBase<TViewModel> : CommandBase
where TViewModel : class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Runtime.CompilerServices;
using System.Windows;

namespace Hostess.Components
namespace Spork.Components
{
public interface IAppMessageBox
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Threading.Tasks;
using TableCloth.Models;

namespace Hostess.Components
namespace Spork.Components
{
public interface IAppStartup : IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Hostess.Dialogs;
using Spork.Dialogs;

namespace Hostess.Components
namespace Spork.Components
{
public interface IAppUserInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Windows;

namespace Hostess.Components
namespace Spork.Components
{
public interface IApplicationService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using TableCloth.Models;

namespace Hostess.Components
namespace Spork.Components
{
public interface ICommandLineArguments
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ServiceProcess;

namespace Hostess.Components
namespace Spork.Components
{
public interface ICriticalServiceProtector
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Hostess.Components
namespace Spork.Components
{
public interface ILicenseDescriptor
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Windows;

namespace Hostess.Components
namespace Spork.Components
{
public interface IMessageBoxService
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Threading.Tasks;
using TableCloth.Models.Catalog;

namespace Hostess.Components
namespace Spork.Components
{
public interface IResourceCacheManager
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using TableCloth.Models;
using TableCloth.Models.Catalog;

namespace Hostess.Components
namespace Spork.Components
{
public interface IResourceResolver
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Hostess.Components
namespace Spork.Components
{
public interface ISharedLocations
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Windows;

namespace Hostess.Components
namespace Spork.Components
{
public interface IVisualThemeManager
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Windows;
using TableCloth.Resources;

namespace Hostess.Components.Implementations
namespace Spork.Components.Implementations
{
/// <summary>
/// Windows Presentation Foundation의 메시지 상자 표시 기능을 구현합니다.
Expand Down
Loading

0 comments on commit 418394d

Please sign in to comment.