Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kuyoonjo committed Oct 20, 2024
1 parent 3885cd0 commit c9abdf6
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@
</div>

## Screenshot
![](./screenshot-udp.png)
![](./screenshot-tcp.png)
![](./screenshot-websocket.png)
![](./screenshot-socketio.png)
![](./screenshot-mqtt.png)
![](./screenshots/udp.png)
![](./screenshots/tcp.png)
![](./screenshots/ws.png)
![](./screenshots/sio.png)
![](./screenshots/mqtt.png)

## Scripting Support
This application supports scripting with javascript to customize the input fields and the output.

![](./screenshot-scripting.png)
![](./screenshots/scripting.png)

The .js file is imported as a module. The struct of the module is as follows:
> Input Script
Expand Down
Binary file removed screenshot-mqtt.png
Binary file not shown.
Binary file removed screenshot-socketio.png
Binary file not shown.
Binary file removed screenshot-tcp.png
Binary file not shown.
Binary file removed screenshot-udp.png
Binary file not shown.
Binary file removed screenshot-websocket.png
Binary file not shown.
Binary file added screenshots/mqtt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added screenshots/sio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/tcp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/udp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added screenshots/ws.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,21 +118,21 @@ fn main() {
.invoke_handler(tauri::generate_handler![open_save_dialog,])
.setup(|app| {
let new_udp_window = MenuItemBuilder::with_id("new_udp_window", "New UDP Window")
.accelerator("CmdOrCtrl+Alt+U")
.accelerator("Shift+Alt+U")
.build(app)?;
let new_tcp_window = MenuItemBuilder::with_id("new_tcp_window", "New TCP Window")
.accelerator("CmdOrCtrl+Alt+T")
.accelerator("Shift+Alt+T")
.build(app)?;
let new_websocket_window =
MenuItemBuilder::with_id("new_websocket_window", "New Websocket Window")
.accelerator("CmdOrCtrl+Alt+W")
.accelerator("Shift+Alt+W")
.build(app)?;
let new_socketio_window =
MenuItemBuilder::with_id("new_socketio_window", "New SocketIO Window")
.accelerator("CmdOrCtrl+Alt+S")
.accelerator("Shift+Alt+S")
.build(app)?;
let new_mqtt_window = MenuItemBuilder::with_id("new_mqtt_window", "New MQTT Window")
.accelerator("CmdOrCtrl+Alt+M")
.accelerator("Shift+Alt+M")
.build(app)?;

let theme_menu = SubmenuBuilder::with_id(app, "theme", "Theme").build()?;
Expand Down

0 comments on commit c9abdf6

Please sign in to comment.