Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit 17c836d

Browse files
committed
1.0.5: Minor quality of life improvements
- UI footer now sticks to the bottom of the page, even if the page contains little content - The demo script generated by --demo is now a little more interactive, to demonstrate the websocket features of the UI - The resubmit button has been fixed and will now correctly refresh the page afterwards - The "download request (debug)" button is now less prominent - The documentation now contains an architecture diagram - The README now contains up-to-date links
2 parents 2fb231d + b94e3a2 commit 17c836d

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Requires java (8+):
3636
3737
```bash
3838
# install and add to PATH
39-
wget https://github.com/adamkewley/jobson/releases/download/1.0.4/jobson-nix-1.0.4.tar.gz
40-
tar xvf jobson-nix-1.0.4.tar.gz
41-
export PATH=$PATH:jobson-nix-1.0.4/bin
39+
wget https://github.com/adamkewley/jobson/releases/download/1.0.5/jobson-nix-1.0.5.tar.gz
40+
tar xvf jobson-nix-1.0.5.tar.gz
41+
export PATH=$PATH:jobson-nix-1.0.5/bin
4242

4343
# create demo workspace
4444
jobson new --demo

jobson-deb/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-deb</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.github.jobson</groupId>
1919
<artifactId>jobson-nix</artifactId>
20-
<version>1.0.4</version>
20+
<version>1.0.5</version>
2121
<type>tar.gz</type>
2222
</dependency>
2323
</dependencies>

jobson-docker/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-docker</artifactId>
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.github.jobson</groupId>
1919
<artifactId>jobson-deb</artifactId>
20-
<version>1.0.4</version>
20+
<version>1.0.5</version>
2121
<type>deb</type>
2222
</dependency>
2323
</dependencies>

jobson-docs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-docs</artifactId>
14-
<version>1.0.4</version>
14+
<version>1.0.5</version>
1515
<packaging>pom</packaging>
1616

1717
<dependencies>

jobson-nix/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-nix</artifactId>
@@ -17,18 +17,18 @@
1717
<dependency>
1818
<groupId>com.github.jobson</groupId>
1919
<artifactId>jobson</artifactId>
20-
<version>1.0.4</version>
20+
<version>1.0.5</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>com.github.jobson</groupId>
2424
<artifactId>jobson-docs</artifactId>
25-
<version>1.0.4</version>
25+
<version>1.0.5</version>
2626
<type>tar.gz</type>
2727
</dependency>
2828
<dependency>
2929
<groupId>com.github.jobson</groupId>
3030
<artifactId>jobson-ui</artifactId>
31-
<version>1.0.4</version>
31+
<version>1.0.5</version>
3232
<type>tar.gz</type>
3333
</dependency>
3434
</dependencies>

jobson-swagger-ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-swagger-ui</artifactId>
14-
<version>1.0.4</version>
14+
<version>1.0.5</version>
1515
<packaging>pom</packaging>
1616

1717
<dependencies>

jobson-swagger/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-swagger</artifactId>
14-
<version>1.0.4</version>
14+
<version>1.0.5</version>
1515
<packaging>pom</packaging>
1616

1717
<dependencies>
1818
<dependency>
1919
<groupId>com.github.jobson</groupId>
2020
<artifactId>jobson</artifactId>
21-
<version>1.0.4</version>
21+
<version>1.0.5</version>
2222
<exclusions>
2323
<exclusion>
2424
<groupId>com.fasterxml</groupId>

jobson-ui/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson-ui</artifactId>
14-
<version>1.0.4</version>
14+
<version>1.0.5</version>
1515
<packaging>pom</packaging>
1616

1717
<build>

jobson/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>com.github.jobson</groupId>
99
<artifactId>jobson-project</artifactId>
10-
<version>1.0.4</version>
10+
<version>1.0.5</version>
1111
</parent>
1212

1313
<artifactId>jobson</artifactId>
14-
<version>1.0.4</version>
14+
<version>1.0.5</version>
1515
<packaging>jar</packaging>
1616

1717
<dependencies>

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.github.jobson</groupId>
88
<artifactId>jobson-project</artifactId>
9-
<version>1.0.4</version>
9+
<version>1.0.5</version>
1010
<packaging>pom</packaging>
1111

1212
<name>jobson project</name>
@@ -48,8 +48,8 @@
4848
</developers>
4949

5050
<properties>
51-
<version.jobsonswagger>1.0.4</version.jobsonswagger>
52-
<version.jobsonswaggerui>1.0.4</version.jobsonswaggerui>
51+
<version.jobsonswagger>1.0.5</version.jobsonswagger>
52+
<version.jobsonswaggerui>1.0.5</version.jobsonswaggerui>
5353

5454
<dropwizard.version>1.3.9</dropwizard.version>
5555
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)