diff --git a/.gitignore b/.gitignore index b9a95beae..452c2d8e2 100644 --- a/.gitignore +++ b/.gitignore @@ -30,7 +30,6 @@ parsetab.py compiler/lib/ .gradle -**/BuildVersion.kt /prog8compiler.jar sd*.img *.d64 diff --git a/compiler/build.gradle b/compiler/build.gradle index e8f82045a..d4c73329d 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -105,7 +105,7 @@ test { gversion { srcDir = "src/" // path is relative to the sub-project by default classPackage = "prog8.buildversion" - className = "BuildVersion" + className = "Version" language = "kotlin" } diff --git a/compiler/src/prog8/buildversion/BuildVersion.kt b/compiler/src/prog8/buildversion/BuildVersion.kt deleted file mode 100644 index cde2a505c..000000000 --- a/compiler/src/prog8/buildversion/BuildVersion.kt +++ /dev/null @@ -1,15 +0,0 @@ -package prog8.buildversion - -/** - * Automatically generated file containing build version information. - */ -const val MAVEN_GROUP = "prog8" -const val MAVEN_NAME = "compiler" -const val VERSION = "10.2-SNAPSHOT" -const val GIT_REVISION = 4491 -const val GIT_SHA = "9fbc7bc5ad12fe3ee233eae40f710c244c998473" -const val GIT_DATE = "2024-03-03T22:15:47Z" -const val GIT_BRANCH = "master" -const val BUILD_DATE = "2024-03-03T22:27:16Z" -const val BUILD_UNIX_TIME = 1709504836383L -const val DIRTY = 1 diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 99cc5b37c..2ff396597 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -54,7 +54,7 @@ Compiler: Libraries: -- gfx2: add EOR mode support line in monogfx and see PAINT for inspiration. Self modifying code to keep it optimized? +- gfx2: add EOR mode support like in monogfx and see PAINT for inspiration. Self modifying code to keep it optimized? - conv: the routines could return the address of conv.string_out, and/or there could be versions that take the address of a different buffer and use it instead. - once kernal rom v47 is released, remove most of the workarounds in cx16 floats.parse_f() . Prototype parse routine in examples/cx16/floatparse.p8 - fix the problems in atari target, and flesh out its libraries.