File tree 4 files changed +32
-6
lines changed
4 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 4
4
<TargetFramework >netstandard2.1</TargetFramework >
5
5
<RootNamespace >DaramRenamer</RootNamespace >
6
6
<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 >
9
9
<Authors >Jin Jae-yeon</Authors >
10
10
<Company >DARAM WORLD</Company >
11
11
<Product >DaramRenamer Command</Product >
Original file line number Diff line number Diff line change 12
12
<ApplicationIcon >Resources\ProgramIcon.ico</ApplicationIcon >
13
13
<AssemblyName >DaramRenamer</AssemblyName >
14
14
<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 >
17
17
<SignAssembly >true</SignAssembly >
18
18
<AssemblyOriginatorKeyFile >../Modules/StrongNameKey/Daelumgi.snk</AssemblyOriginatorKeyFile >
19
19
<ApplicationManifest >DaramRenamer.manifest</ApplicationManifest >
Original file line number Diff line number Diff line change @@ -36,7 +36,12 @@ public LicenseWindow()
36
36
}
37
37
else if ( line . Length > 0 && line [ 0 ] == '#' )
38
38
{
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 ] == '#' )
40
45
document . Blocks . Add ( new Paragraph ( new Run ( line . Substring ( 2 ) . Trim ( ) ) )
41
46
{
42
47
FontSize = 18
@@ -70,6 +75,13 @@ public LicenseWindow()
70
75
71
76
codeStore . Clear ( ) ;
72
77
}
78
+ else if ( line . StartsWith ( "- " ) )
79
+ {
80
+ document . Blocks . Add ( new Paragraph ( new Run ( "ㆍ " + line . Substring ( 2 ) . Trim ( ) )
81
+ {
82
+ FontSize = 10 ,
83
+ } ) ) ;
84
+ }
73
85
74
86
LicenseTextBox . Document = document ;
75
87
}
Original file line number Diff line number Diff line change @@ -604,4 +604,18 @@ necessary. Here is a sample; alter the names:
604
604
Ty Coon, President of Vice
605
605
606
606
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)
You can’t perform that action at this time.
0 commit comments