Skip to content

Commit cf157ab

Browse files
committed
Update to v1.2.1.0 for the DDS pathsep fix
1 parent cc565fa commit cf157ab

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
kOS Mod Changelog
22
=================
33

4+
# v1.2.1 Pathsep fix
5+
6+
v1.2'S DDS fix had a backslash path separator that broke it on UNIX
7+
platoforms. This quick fix does nothing more than switch it to a
8+
normal slash, as that will work on all platforms. Apparently the .Net
9+
file libraries convert the path names one way but not the other.
10+
(They will map things so Windows can work with the "wrong" separator,
11+
but not do a similar mapping to make UNIX work with the "wrong"
12+
separator, so UNIX separators are the only cross-platform path
13+
separator to use.)
14+
15+
416
# v1.2 Unity Update
517

618
This update is mostly to make kOS compatible with KSP 1.8.x, which

Resources/GameData/kOS/kOS.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"VERSION": {
1212
"MAJOR": 1,
1313
"MINOR": 2,
14-
"PATCH": 0,
14+
"PATCH": 1,
1515
"BUILD": 0
1616
},
1717
"KSP_VERSION": {

src/kOS.Safe.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
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: AssemblyFileVersion("1.2.0.0")]
36-
[assembly: AssemblyVersion("1.2.0.0")]
35+
[assembly: AssemblyFileVersion("1.2.1.0")]
36+
[assembly: AssemblyVersion("1.2.1.0")]

src/kOS.Safe/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyFileVersion("1.2.0.0")]
35-
[assembly: AssemblyVersion("1.2.0.0")]
34+
[assembly: AssemblyFileVersion("1.2.1.0")]
35+
[assembly: AssemblyVersion("1.2.1.0")]

src/kOS/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyFileVersion("1.2.0.0")]
35-
[assembly: AssemblyVersion("1.2.0.0")]
34+
[assembly: AssemblyFileVersion("1.2.1.0")]
35+
[assembly: AssemblyVersion("1.2.1.0")]
3636
[assembly: KSPAssembly("kOS", 1, 7)]

0 commit comments

Comments
 (0)