Skip to content

Releases: letter-aa/seoul

v0.02426

15 Nov 22:42
5846712
Compare
Choose a tag to compare
v0.02426 Pre-release
Pre-release

small bug fix

v0.02425

15 Nov 16:57
d51a245
Compare
Choose a tag to compare
v0.02425 Pre-release
Pre-release

fixed small variable bug

v0.0242

15 Nov 16:19
366efbd
Compare
Choose a tag to compare
v0.0242 Pre-release
Pre-release

variable bug fixed

v0.02417

15 Nov 15:41
94afa17
Compare
Choose a tag to compare
v0.02417 Pre-release
Pre-release

made error handler better but variables do not work now, will fix soon

v0.0241

14 Nov 01:45
b2078df
Compare
Choose a tag to compare
v0.0241 Pre-release
Pre-release

fixed small console.text bug

v0.024

14 Nov 01:31
4bde9d1
Compare
Choose a tag to compare
v0.024 Pre-release
Pre-release

now supports new lines in console.text and variables (you have to type \n to make a new line)

also fixed bug where string priority is more than int or bool causing reinitializing variable to different type to give an error

it would give something like this

eg.

>> hi = "hi"

>> console.text(hi)
hi

>> hi = true

>> console.text(hi)
malformed number or bool! pos: 13

v0.023

13 Nov 17:41
ae0da91
Compare
Choose a tag to compare
v0.023 Pre-release
Pre-release

fixed right arrow bug, fixed boolean bug, made error handler more advanced, if integer variable is too big it will not be initialized, and if the number in console.text is too big it will not be converted into a number, errors are now red, and ye thats all i could remember changing

v0.0216

11 Nov 00:55
393f83a
Compare
Choose a tag to compare
v0.0216 Pre-release
Pre-release

added save() and load() functions so you can save code and load it later

btw here is an example:

>> hi = 1
save("c:\seoul\test.seoul")

>> hi = 0

>> load("c:\seoul\test.seoul")

>> console.text(hi)
0

you can set the .seoul to any file type you want, maybe even no file type at all (including the name obviously)

ALSO you can save your code with the same file name again to edit/update the already existing file.

dont forget that it has to be a correct path, or else it wont work

v0.021

10 Nov 20:04
1cbe7aa
Compare
Choose a tag to compare
v0.021 Pre-release
Pre-release

made more shorter and readable (and reusable i guess)

v0.02

10 Nov 01:45
cd75ca1
Compare
Choose a tag to compare
v0.02 Pre-release
Pre-release

added functions
(only one function, "console.text()")

also made debugging 1000% better