Skip to content

Releases: MTDdk/jawn

v1.1.6

03 Nov 12:40
Compare
Choose a tag to compare
version 1.1.6

v1.1.4

03 Sep 11:00
Compare
Choose a tag to compare

Minor bug fix to template loading

v1.1.3

02 Mar 11:29
Compare
Choose a tag to compare

Fixes for Windows

v1.1.2

23 Feb 09:03
Compare
Choose a tag to compare

PackageWatcher fix for Windows

v1.1.1

22 Sep 12:55
Compare
Choose a tag to compare
default value for max life time

v1.1.0

02 Sep 12:31
Compare
Choose a tag to compare
handling javascript modules

v1.0.2

21 Jul 11:17
Compare
Choose a tag to compare
releasing v1.0.2

v0.9.14

17 Jan 18:34
Compare
Choose a tag to compare
  • Context path should now be possible and mostly used for resource translation
public class SimpleMain extends Jawn {
    public SimpleMain() {
        server().contextPath("/test");
    }
}
  • local js and css will be appended with ?v=modified

v0.9.13

13 Sep 19:06
Compare
Choose a tag to compare

This is now possible:

        get("/output", context -> {
            Result result = Results.noBody(200).contentType("application/json").charset("UTF8");
            try {
                OutputStream stream = context.responseOutputStream(result);
                stream.write("{\"output\":\"value\"}".getBytes());
            } catch (IOException e) {
                e.printStackTrace();
            }
        });

v0.9.11

24 Jul 13:01
Compare
Choose a tag to compare
fixed loading multiple modules in jars