Skip to content

Commit 7e341a9

Browse files
committed
버전 정보 설정, 라이센스에 번역 기여자 추가
1 parent 9c2676d commit 7e341a9

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

DaramRenamer.Commands/DaramRenamer.Commands.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<RootNamespace>DaramRenamer</RootNamespace>
66
<LangVersion>latest</LangVersion>
7-
<Version>2024.7.1</Version>
8-
<PackageVersion>2024.7.1</PackageVersion>
7+
<Version>2024.7.2</Version>
8+
<PackageVersion>2024.7.2</PackageVersion>
99
<Authors>Jin Jae-yeon</Authors>
1010
<Company>DARAM WORLD</Company>
1111
<Product>DaramRenamer Command</Product>

DaramRenamer.Windows/DaramRenamer.Windows.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<ApplicationIcon>Resources\ProgramIcon.ico</ApplicationIcon>
1313
<AssemblyName>DaramRenamer</AssemblyName>
1414
<Copyright>Copyright ⓒ 2013-2024 Jin Jae-yeon</Copyright>
15-
<Version>2024.7.1</Version>
16-
<PackageVersion>2024.7.1</PackageVersion>
15+
<Version>2024.7.2</Version>
16+
<PackageVersion>2024.7.2</PackageVersion>
1717
<SignAssembly>true</SignAssembly>
1818
<AssemblyOriginatorKeyFile>../Modules/StrongNameKey/Daelumgi.snk</AssemblyOriginatorKeyFile>
1919
<ApplicationManifest>DaramRenamer.manifest</ApplicationManifest>

DaramRenamer.Windows/LicenseWindow.xaml.cs

+13-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ public LicenseWindow()
3636
}
3737
else if (line.Length > 0 && line[0] == '#')
3838
{
39-
if (line.Length > 1 && line[1] == '#')
39+
if (line.Length > 2 && line[2] == '#')
40+
document.Blocks.Add(new Paragraph(new Run(line.Substring(3).Trim()))
41+
{
42+
FontSize = 14
43+
});
44+
else if (line.Length > 1 && line[1] == '#')
4045
document.Blocks.Add(new Paragraph(new Run(line.Substring(2).Trim()))
4146
{
4247
FontSize = 18
@@ -70,6 +75,13 @@ public LicenseWindow()
7075

7176
codeStore.Clear();
7277
}
78+
else if (line.StartsWith("- "))
79+
{
80+
document.Blocks.Add(new Paragraph(new Run("ㆍ " + line.Substring(2).Trim())
81+
{
82+
FontSize = 10,
83+
}));
84+
}
7385

7486
LicenseTextBox.Document = document;
7587
}

LICENSE.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -604,4 +604,18 @@ necessary. Here is a sample; alter the names:
604604
Ty Coon, President of Vice
605605
606606
That's all there is to it!
607-
```
607+
```
608+
609+
## Application Translations
610+
### 한국어 (Korean)
611+
- Jin Jae-yeon (daramkun)
612+
613+
### English
614+
- Stephan Paternotte (Stephan-P)
615+
- Jin Jae-yeon (daramkun)
616+
617+
### Nederlands (Dutch)
618+
- Stephan Paternotte (Stephan-P)
619+
620+
### 中文 (Simplified Chinese)
621+
- 大眼仔旭 (wcxu21)

0 commit comments

Comments
 (0)