Skip to content

Releases: tailot/taylored-snippets-web

1.2.1

22 Jun 23:26
c3c954e
Compare
Choose a tag to compare

Full Changelog: 1.2.0...1.2.1

1.2.0

20 Jun 11:40
Compare
Choose a tag to compare

Full Changelog: 9d91092

Lua 5.4 and Java 21 are supported

12 Jun 09:31
Compare
Choose a tag to compare

Release Notes v1.1.9

  • Available openjdk21-jdk
    Now you can define and run snippets in JAVA like this:
#!/usr/bin/java --source 21

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
  • Available lua 5.4
  • Now you can define and run snippets in Lua like this:
#!/usr/bin/env lua5.4

print("huuuu raaaaa")
  • Responsiveness and bug fix