File tree 4 files changed +18
-14
lines changed
4 files changed +18
-14
lines changed Original file line number Diff line number Diff line change 1
- ============= Libraries ============
2
-
3
1
Caliburn.Micro
4
2
https://github.com/Caliburn-Micro/Caliburn.Micro/blob/master/License.txt
5
3
@@ -149,8 +147,14 @@ The views and conclusions contained in the software and documentation are those
149
147
authors and should not be interpreted as representing official policies, either expressed
150
148
or implied, of OpenHome.
151
149
150
+ ===================================
151
+
152
+ WPF Localization Using RESX Files
153
+ http://www.codeproject.com/Articles/35159/WPF-Localization-Using-RESX-Files
152
154
153
- ========= Icons and Images =========
155
+ Licensed under the CodeProject Open License (http://www.codeproject.com/info/cpol10.aspx)
156
+
157
+ ====================================
154
158
155
159
Creative Commons (Attribution 3.0 Unported)
156
160
http://creativecommons.org/licenses/by/3.0/
@@ -178,4 +182,4 @@ https://www.iconfinder.com/icons/308459/minus_negative_remove_icon#size=128
178
182
179
183
180
184
181
- ====================================
185
+ ====================================
Original file line number Diff line number Diff line change 10
10
[ assembly: AssemblyConfiguration ( "" ) ]
11
11
[ assembly: AssemblyCompany ( "" ) ]
12
12
[ assembly: AssemblyProduct ( "loadify" ) ]
13
- [ assembly: AssemblyCopyright ( "Copyright © 2014" ) ]
13
+ [ assembly: AssemblyCopyright ( "Copyright © 2014-2015 " ) ]
14
14
[ assembly: AssemblyTrademark ( "" ) ]
15
15
[ assembly: AssemblyCulture ( "" ) ]
16
16
49
49
// You can specify all the values or you can default the Build and Revision Numbers
50
50
// by using the '*' as shown below:
51
51
// [assembly: AssemblyVersion("1.0.*")]
52
- [ assembly: AssemblyVersion ( "1.0 .0.0" ) ]
53
- [ assembly: AssemblyFileVersion ( "1.0 .0.0" ) ]
54
- [ assembly: AssemblyInformationalVersion ( "1.0 - Final " ) ]
52
+ [ assembly: AssemblyVersion ( "1.1 .0.0" ) ]
53
+ [ assembly: AssemblyFileVersion ( "1.1 .0.0" ) ]
54
+ [ assembly: AssemblyInformationalVersion ( "1.1 " ) ]
Original file line number Diff line number Diff line change 4
4
xmlns : controls =" clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
5
5
WindowStartupLocation =" CenterScreen"
6
6
GlowBrush =" {DynamicResource AccentColorBrush}" ResizeMode =" CanMinimize"
7
- Title =" Loadify" Height =" 210" Width =" 370 "
7
+ Title =" Loadify" Height =" 210" Width =" 380 "
8
8
ResxExtension.DefaultResxName=" loadify.Localization.About" Language =" {UICulture}" >
9
9
<Grid >
10
10
<Grid .RowDefinitions>
14
14
</Grid .RowDefinitions>
15
15
<Label Grid.Column=" 0" Content =" LOADIFY " HorizontalContentAlignment =" Center" VerticalContentAlignment =" Center"
16
16
FontFamily =" MV Boli" FontSize =" 46" />
17
- <Grid Grid.Row=" 1" Margin =" 20 5" >
17
+ <Grid Grid.Row=" 1" Margin =" 15 5" >
18
18
<Grid .ColumnDefinitions>
19
- <ColumnDefinition Width =" 40* " />
19
+ <ColumnDefinition Width =" Auto " />
20
20
<ColumnDefinition Width =" 100*" />
21
21
</Grid .ColumnDefinitions>
22
22
<Grid .RowDefinitions>
25
25
<RowDefinition Height =" 33*" />
26
26
</Grid .RowDefinitions>
27
27
<Label Content =" Version" FontSize =" 12" Grid.ColumnSpan=" 2" />
28
- <Label Content =" {Resx Contributors}" FontSize =" 12" Grid.Row=" 1" Grid.ColumnSpan= " 2 " />
28
+ <Label Content =" {Resx Contributors}" FontSize =" 12" Grid.Row=" 1" />
29
29
<Label Content =" {Resx License}" FontSize =" 12" Grid.Row=" 2" />
30
- <Label x : Name =" License" FontSize =" 12" Foreground =" Gray" Grid.Row=" 2" Grid.Column=" 1" />
30
+ <Label x : Name =" License" FontSize =" 12" Foreground =" Gray" HorizontalContentAlignment = " Right " Grid.Row=" 2" Grid.Column=" 1" />
31
31
<Label x : Name =" Version" FontSize =" 12" Foreground =" Gray" Grid.Column=" 1" HorizontalContentAlignment =" Right" Grid.Row=" 0" />
32
32
<Label x : Name =" Contributors" FontSize =" 12" Foreground =" Gray" Grid.Column=" 1" HorizontalContentAlignment =" Right" Grid.Row=" 1" />
33
33
</Grid >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public class AboutViewModel : ViewModelBase
9
9
{
10
10
public string License
11
11
{
12
- get { return "The MIT License (MIT) - Copyright (c) 2014" ; }
12
+ get { return "The MIT License (MIT) - Copyright (c) 2014-2015 " ; }
13
13
}
14
14
15
15
public string Contributors
You can’t perform that action at this time.
0 commit comments