Skip to content

Commit

Permalink
v0.5.1 출시 및 각종 문구 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed Aug 28, 2021
1 parent 3f9a47b commit 5f97fa2
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-msi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ jobs:
$certificatePath = Join-Path -Path $env:Setup_Project_Directory -ChildPath GitHubActionsWorkflow.pfx
Remove-Item -path $certificatePath
# Upload the MSIX package: https://github.com/marketplace/actions/upload-artifact
# Upload the MSI package: https://github.com/marketplace/actions/upload-artifact
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: MSIX Package (${{ matrix.configuration }})
name: MSI Package (${{ matrix.configuration }})
path: TableCloth.msi
4 changes: 2 additions & 2 deletions src/Hostess/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
[assembly: AssemblyProduct("Table Cloth")]
[assembly: AssemblyCopyright("(c) rkttu.com, 2021")]
[assembly: AssemblyTrademark("Table Cloth")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
[assembly: AssemblyVersion("0.5.1.0")]
[assembly: AssemblyFileVersion("0.5.1.0")]
[assembly: Guid("36e7b617-ca94-4ecb-ad65-39fe94ce265b")]
[assembly: ComVisible(true)]

Expand Down
2 changes: 1 addition & 1 deletion src/Hostess/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="0.5.0.0" name="Hostess.app" />
<assemblyIdentity version="0.5.1.0" name="Hostess.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down
6 changes: 3 additions & 3 deletions src/TableCloth.SetupBuilder/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyVersion("0.5.0.0")]
[assembly: AssemblyFileVersion("0.5.0.0")]
// [assembly: AssemblyVersion("0.5.1.0")]
[assembly: AssemblyVersion("0.5.1.0")]
[assembly: AssemblyFileVersion("0.5.1.0")]
2 changes: 1 addition & 1 deletion src/TableCloth.Shared/Resources/StringResources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ internal static readonly string TitleText_Warning
= $"{AppName} 경고";

internal static readonly string AboutDialog_BodyText
= $"{AppName} (빌드 번호: {Assembly.GetExecutingAssembly().GetName().Version})\r\n\r\nhttps://bit.ly/yourtablecloth\r\n\r\n{AppCopyright}";
= $"{AppName} (버전 {Assembly.GetExecutingAssembly().GetName().Version})\r\n\r\n{AppInfoUrl}\r\n\r\n{AppCopyright}";
}

// 비 사용자 인터페이스 문자열들
Expand Down
8 changes: 4 additions & 4 deletions src/TableCloth/TableCloth.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<Product>Table Cloth</Product>
<ProductName>Table Cloth</ProductName>
<Copyright>(c) rkttu.com, 2021</Copyright>
<Version>0.5.0.0</Version>
<FileVersion>0.5.0.0</FileVersion>
<PackageProjectUrl>https://bit.ly/yourtablecloth</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnetdev-kr/TableCloth</RepositoryUrl>
<Version>0.5.1.0</Version>
<FileVersion>0.5.1.0</FileVersion>
<PackageProjectUrl>https://yourtablecloth.github.io</PackageProjectUrl>
<RepositoryUrl>https://github.com/yourtablecloth/TableCloth</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>TableCloth</PackageTags>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/TableCloth/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="0.5.0.0" name="TableCloth.app" />
<assemblyIdentity version="0.5.1.0" name="TableCloth.app" />
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down

0 comments on commit 5f97fa2

Please sign in to comment.