Skip to content

Commit

Permalink
버전 정보 설정, 라이센스에 번역 기여자 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
daramkun committed Jul 3, 2024
1 parent 9c2676d commit 7e341a9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
4 changes: 2 additions & 2 deletions DaramRenamer.Commands/DaramRenamer.Commands.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<TargetFramework>netstandard2.1</TargetFramework>
<RootNamespace>DaramRenamer</RootNamespace>
<LangVersion>latest</LangVersion>
<Version>2024.7.1</Version>
<PackageVersion>2024.7.1</PackageVersion>
<Version>2024.7.2</Version>
<PackageVersion>2024.7.2</PackageVersion>
<Authors>Jin Jae-yeon</Authors>
<Company>DARAM WORLD</Company>
<Product>DaramRenamer Command</Product>
Expand Down
4 changes: 2 additions & 2 deletions DaramRenamer.Windows/DaramRenamer.Windows.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<ApplicationIcon>Resources\ProgramIcon.ico</ApplicationIcon>
<AssemblyName>DaramRenamer</AssemblyName>
<Copyright>Copyright ⓒ 2013-2024 Jin Jae-yeon</Copyright>
<Version>2024.7.1</Version>
<PackageVersion>2024.7.1</PackageVersion>
<Version>2024.7.2</Version>
<PackageVersion>2024.7.2</PackageVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>../Modules/StrongNameKey/Daelumgi.snk</AssemblyOriginatorKeyFile>
<ApplicationManifest>DaramRenamer.manifest</ApplicationManifest>
Expand Down
14 changes: 13 additions & 1 deletion DaramRenamer.Windows/LicenseWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ public LicenseWindow()
}
else if (line.Length > 0 && line[0] == '#')
{
if (line.Length > 1 && line[1] == '#')
if (line.Length > 2 && line[2] == '#')
document.Blocks.Add(new Paragraph(new Run(line.Substring(3).Trim()))
{
FontSize = 14
});
else if (line.Length > 1 && line[1] == '#')
document.Blocks.Add(new Paragraph(new Run(line.Substring(2).Trim()))
{
FontSize = 18
Expand Down Expand Up @@ -70,6 +75,13 @@ public LicenseWindow()

codeStore.Clear();
}
else if (line.StartsWith("- "))
{
document.Blocks.Add(new Paragraph(new Run("" + line.Substring(2).Trim())
{
FontSize = 10,
}));
}

LicenseTextBox.Document = document;
}
Expand Down
16 changes: 15 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -604,4 +604,18 @@ necessary. Here is a sample; alter the names:
Ty Coon, President of Vice
That's all there is to it!
```
```

## Application Translations
### 한국어 (Korean)
- Jin Jae-yeon (daramkun)

### English
- Stephan Paternotte (Stephan-P)
- Jin Jae-yeon (daramkun)

### Nederlands (Dutch)
- Stephan Paternotte (Stephan-P)

### 中文 (Simplified Chinese)
- 大眼仔旭 (wcxu21)

0 comments on commit 7e341a9

Please sign in to comment.