Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
abbruzze committed Jul 16, 2024
1 parent 974b67d commit d1265e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Kernal64/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ Compile / sourceGenerators += Def.task {
val dfTime = new java.text.SimpleDateFormat("HHmm")
val now = new java.util.Date
val buildNumber = if (System.getProperty("kbuild") != null) s" b${System.getProperty("kbuild")}" else ""
IO.write(versionFile,s"""package ucesoft.cbm
println(s"Generating Version object with build number $buildNumber")
IO.write(versionFile,s"""package ucesoft.cbm
object Version {
val VERSION = "${version.value}$buildNumber"
val BUILD_DATE = "${dfBuildDate.format(now)}"
Expand Down
2 changes: 1 addition & 1 deletion Kernal64/src/ucesoft/cbm/misc/AboutCanvas.scala
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AboutCanvas(charRom:Memory,version:String,romCharBytes:Int = 8,romCharHeig
newLine
add(center("WRITTEN IN SCALA BY ALESSANDRO ABBRUZZETTI",WIDTH)).newLine
newLine
add(center("2013-2023",WIDTH)).newLine
add(center("2013-2024",WIDTH)).newLine
newLine
yellow
add(center("VISIT",WIDTH)).newLine
Expand Down

0 comments on commit d1265e9

Please sign in to comment.