Skip to content

Commit

Permalink
Merge branch 'element-picker-fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
abainczyk committed Dec 5, 2018
2 parents 2a3369c + 4bccde2 commit f23f68b
Show file tree
Hide file tree
Showing 12 changed files with 215 additions and 89 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# ALEX 1.6.1

## Fixes

* Fix issues with HTML Element Picker

# ALEX 1.6.0

## Breaking Changes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Make sure you have Java 8 installed on your system.
We advise to use a modern web browser like Google Chrome, Mozilla Firefox or Microsoft Edge with JavaScript enabled.

1. [Download](https://github.com/LearnLib/alex/releases/latest) the latest version.
2. Open a terminal and start ALEX via `java -jar alex-1.6.0.war [--server.port=XXXX]`.
2. Open a terminal and start ALEX via `java -jar alex-1.6.1.war [--server.port=XXXX]`.
3. Wait until the command line prints something like `de.learnlib.alex.App - Started App in XX.XXX seconds`.
3. Open *http://localhost:8000* in a web browser.

Expand Down Expand Up @@ -48,7 +48,7 @@ cd alex
mvn install package [-DskipTests]
```

The bundle can then be found at `build/target/alex-build-1.6.0.war`.
The bundle can then be found at `build/target/alex-build-1.6.1.war`.

## Connecting to a database

Expand All @@ -70,7 +70,7 @@ spring.jpa.hibernate.ddl-auto=update

Then, start ALEX like this:

`java -jar alex-1.6.0.war "--spring.config.location=/path/to/your/application.properties"`
`java -jar alex-1.6.1.war "--spring.config.location=/path/to/your/application.properties"`

## Further reading

Expand Down
2 changes: 1 addition & 1 deletion backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>de.learnlib.alex</groupId>
<artifactId>alex-parent</artifactId>
<version>1.6.0</version>
<version>1.6.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.6.0</version>
<version>1.6.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion frontend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<artifactId>alex-parent</artifactId>
<groupId>de.learnlib.alex</groupId>
<version>1.6.0</version>
<version>1.6.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/main/javascript/environments.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The version of ALEX.
* @type {string}
*/
export const version = '1.6.0';
export const version = '1.6.1';

/**
* API URL
Expand Down
Loading

0 comments on commit f23f68b

Please sign in to comment.