Skip to content

Commit 0f83dc6

Browse files
committed
sponsorship link.
error sorting. version.
1 parent cc22861 commit 0f83dc6

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
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

34
Prog8 - 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

1415
This 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.
1516
If 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

1920
Documentation

compiler/src/prog8/buildversion/BuildVersion.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ package prog8.buildversion
55
*/
66
const val MAVEN_GROUP = "prog8"
77
const 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"
1212
const 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
1515
const val DIRTY = 1

compiler/src/prog8/compiler/ErrorReporter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ org.gradle.daemon=true
55
kotlin.code.style=official
66
javaVersion=11
77
kotlinVersion=1.9.22
8-
version=10.0-SNAPSHOT
8+
version=10.0

0 commit comments

Comments
 (0)