Skip to content

Commit

Permalink
Merge pull request #3 from DollarNoob/dev
Browse files Browse the repository at this point in the history
Synapsploit v1.2.1
  • Loading branch information
DollarNoob authored Aug 26, 2024
2 parents 181655e + cc49298 commit 9d74f3c
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Synapsploit (Synapse X UI for MacSploit)
My first rust project. New to rust!
A Synapse X themed custom UI for [MacSploit](https://www.raptor.fun/).

# Credits
Please refer to [Acrillis/Synapse X](https://github.com/Acrillis/SynapseX) for the Synapse X WPF UI source code.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "synapsploit",
"version": "1.2.0",
"version": "1.2.1",
"description": "",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "synapsploit"
version = "1.2.0"
version = "1.2.1"
description = "Synapse UI for MacSploit"
authors = ["DollarNoob"]
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ fn on_system_tray_event(handle: &AppHandle, event: SystemTrayEvent) {
fn main() {
let tray_menu = SystemTrayMenu::new()
.add_item(
CustomMenuItem::new("title", "Synapse X - v1.2").disabled()
CustomMenuItem::new("title", "Synapse X - v1.2.1").disabled()
)
.add_item(
CustomMenuItem::new("title", "MacSploit v1.2 Edition").disabled()
CustomMenuItem::new("title", "MacSploit v1.2.4 Edition").disabled()
)
.add_native_item(SystemTrayMenuItem::Separator)
.add_item(
Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "Synapse X",
"version": "1.2.0"
"version": "1.2.1"
},
"tauri": {
"allowlist": {
Expand Down Expand Up @@ -44,7 +44,7 @@
},
"windows": [
{
"title": "Synapse X - v1.2",
"title": "Synapse X - v1.2.1",
"label": "main",
"width": 801,
"height": 355,
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import "ace-builds/src-noconflict/ext-searchbox";
import Icon from "./sxlogosmallwhite_OJJ_icon.ico";
const version = "v1.2";
const version = "v1.2.1";
const baseTitle = "Synapse X - " + version;
interface SessionInfo {
Expand Down
3 changes: 1 addition & 2 deletions src/routes/options/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@
function onSettingChange(event: Event) {
const target = event.target as HTMLInputElement;
// TODO: send write_setting if attached
invoke("write_setting", { key: target.id, value: target.checked })
.then(() => {
invoke("update_setting", { key: target.id, value: target.checked })
Expand Down Expand Up @@ -250,7 +249,7 @@
</div>
<div class="checkbox">
<input type="checkbox" id="sandbox" checked={ setting.sandbox } on:change={ onSettingChange }>
<label for="sandbox">Increased Sandbox</label>
<label for="sandbox">Decreased Sandbox</label>
</div>
</div>

Expand Down

0 comments on commit 9d74f3c

Please sign in to comment.