File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1+ [ ![ ko-fi] ( https://ko-fi.com/img/githubbutton_sm.svg )] ( https://ko-fi.com/H2H6S0FFF )
12[ ![ Documentation] ( https://readthedocs.org/projects/prog8/badge/?version=latest )] ( https://prog8.readthedocs.io/ )
23
34Prog8 - Structured Programming Language for 8-bit 6502/65c02 microprocessors
@@ -13,7 +14,7 @@ which aims to provide many conveniences over raw assembly code (even when using
1314
1415This project was created over the last couple of years by dedicating thousands of hours of my free time to it, to make it the best I possibly can.
1516If you like Prog8, and think it's worth a nice cup of hot coffee or a delicious pizza,
16- you can help me out a little bit over at [ ko-fi.com/irmen] ( https://ko-fi.com/irmen ) .
17+ you can help me out a little bit over at [ ko-fi.com/irmen] ( https://ko-fi.com/irmen ) .
1718
1819
1920Documentation
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ package prog8.buildversion
55 */
66const val MAVEN_GROUP = " prog8"
77const val MAVEN_NAME = " compiler"
8- const val VERSION = " 10.0-SNAPSHOT "
9- const val GIT_REVISION = 4405
10- const val GIT_SHA = " 69075376dc26f06b7422f47529f90577f4213aaf "
11- const val GIT_DATE = " 2024-01-17T20:24 :41Z"
8+ const val VERSION = " 10.0"
9+ const val GIT_REVISION = - 1
10+ const val GIT_SHA = " cc22861719e36ed842d00d6ca7c29792c2c37b9f "
11+ const val GIT_DATE = " 2024-01-19T18:26 :41Z"
1212const val GIT_BRANCH = " master"
13- const val BUILD_DATE = " 2024-01-17T21:46:56Z "
14- const val BUILD_UNIX_TIME = 1705528016840L
13+ const val BUILD_DATE = " 2024-01-19T18:58:11Z "
14+ const val BUILD_UNIX_TIME = 1705690691084L
1515const val DIRTY = 1
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ internal class ErrorReporter: IErrorReporter {
3333 var numErrors = 0
3434 var numWarnings = 0
3535 var numInfos = 0
36- messages.forEach {
36+ messages.sortedWith(compareBy({it.position.file}, {it.position.line}, {it.severity})). forEach {
3737 val printer = when (it.severity) {
3838 MessageSeverity .INFO -> System .out
3939 MessageSeverity .WARNING -> System .out
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ org.gradle.daemon=true
55kotlin.code.style =official
66javaVersion =11
77kotlinVersion =1.9.22
8- version =10.0-SNAPSHOT
8+ version =10.0
You can’t perform that action at this time.
0 commit comments