attempt to no longer have BuildVersion.kt in git, blocking easy pulls

This commit is contained in:
Irmen de Jong 2024-03-04 20:45:59 +01:00
parent 4d7e96d423
commit bfcf07c1a2
4 changed files with 2 additions and 18 deletions

1
.gitignore vendored
View File

@ -30,7 +30,6 @@ parsetab.py
compiler/lib/
.gradle
**/BuildVersion.kt
/prog8compiler.jar
sd*.img
*.d64

View File

@ -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"
}

View File

@ -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

View File

@ -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.