Commit 22e104f 1 parent 5172b6e commit 22e104f Copy full SHA for 22e104f
File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name := "strategygames"
2
2
3
3
organization := " org.playstrategy"
4
4
5
- version := " 10.2.1-pstrat174 "
5
+ version := " 10.2.1-pstrat175 "
6
6
7
7
scalaVersion := " 2.13.10"
8
8
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ case class Pos private (index: Int) extends AnyVal {
80
80
def piotr : Char = Piotr .lookup.get(index).getOrElse('?' )
81
81
def piotrStr = piotr.toString
82
82
83
- def sgf = (97 + ( 23 - index) ).toChar.toString()
83
+ def sgf = (97 + index).toChar.toString()
84
84
85
85
def last : Boolean = (index + 1 ) % File .all.size == 0
86
86
Original file line number Diff line number Diff line change @@ -42,8 +42,9 @@ object Tags {
42
42
43
43
val importantTagRoster = List (
44
44
Tag .FF ,
45
- Tag .CA ,
46
45
Tag .GM ,
46
+ Tag .CA ,
47
+ Tag .AP ,
47
48
Tag .DT ,
48
49
Tag .EV ,
49
50
Tag .TM ,
@@ -59,6 +60,7 @@ object Tag {
59
60
case object FF extends TagType // File Format
60
61
case object CA extends TagType // Character
61
62
case object GN extends TagType // Game Name
63
+ case object AP extends TagType // Application
62
64
case object DT extends TagType { // Date time
63
65
val format = DateTimeFormat forPattern " yyyy.MM.dd" withZone DateTimeZone .UTC
64
66
}
@@ -94,8 +96,9 @@ object Tag {
94
96
95
97
val tagTypes = List (
96
98
FF ,
97
- CA ,
98
99
GN ,
100
+ CA ,
101
+ AP ,
99
102
DT ,
100
103
PC ,
101
104
EV ,
You can’t perform that action at this time.
0 commit comments