Prepare release

This commit is contained in:
Thomas Nordquist
2019-03-04 18:55:26 +01:00
parent f8a2af8554
commit 7961a7dd3f
3 changed files with 13 additions and 7 deletions

View File

@@ -1,6 +1,12 @@
# next release
# 0.2.1
- Highlight differences in the last received message with a "diff" view
- Magnify app content with "Ctrl +", "Ctrl -", "Ctrl 0"
- Add message diff view
- Make user interactions more predictable
- Make user interactions more predictable by removing "select topic on mouse over"
- Add "Quick Preview" setting, to enable topic selection on mouse over
- Add JSON formatter
- Show error when connection to the mqtt broker is lost
- Fix bug where mqtt explorer resets the tree after a reconnect
- Fix MQTT-Client id
# 0.2.0

View File

@@ -1,6 +1,6 @@
{
"name": "MQTT-Explorer",
"version": "0.2.1-alpha4",
"version": "0.2.1",
"description": "Explore your message queues",
"main": "dist/src/electron.js",
"scripts": {

View File

@@ -12,7 +12,7 @@ export async function showJsonFormatting(browser: Browser<void>) {
await browser.keys(['\uE009', 'A']) // Ctrl + A
await browser.keys(['\uE000']) // End keyboard modifier
await browser.keys(['\uE003']) // Backspace
await sleep(300)
await sleep(500)
await writeTextPayload(payloadInput, '{"action": "setState", "state": "on" }')
await sleep(300)
await clickOn(formatJsonButton, browser)