Skip to content

Commit 1aa3521

Browse files
committed
Changed playlist encoding to UTF-8.
1 parent 4318580 commit 1aa3521

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Playlist Generator GUI/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.3.0.0")]
55-
[assembly: AssemblyFileVersion("1.3.0.0")]
54+
[assembly: AssemblyVersion("1.3.1.0")]
55+
[assembly: AssemblyFileVersion("1.3.1.0")]

Playlist Generator/Playlist.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public Playlist Add(string path) {
2828
}
2929

3030
public Playlist Write(Stream stream) {
31-
var writer = new StreamWriter(stream);
31+
var writer = new StreamWriter(stream, Encoding.UTF8);
3232
writer.Write(ToString());
3333
writer.Flush();
3434

Playlist Generator/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.1.0.0")]
36-
[assembly: AssemblyFileVersion("1.1.0.0")]
35+
[assembly: AssemblyVersion("1.1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.1.0")]
3737

3838
//Friend assemblies.
3939
[assembly: InternalsVisibleTo("PlaylistGeneratorTest")]

0 commit comments

Comments
 (0)