Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 227d916

Browse files
committed
Initial version
1 parent d90204a commit 227d916

File tree

14 files changed

+242
-0
lines changed

14 files changed

+242
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
indent_style = tab
5+
indent_size = 4
6+
end_of_line = crlf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = false
10+
11+
[*.yml]
12+
indent_style = space
13+
indent_size = 2

.github/check.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: check
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Check
20+
run: cargo check --verbose

.github/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- v[0-9]+.*
10+
11+
jobs:
12+
create-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: taiki-e/create-gh-release-action@v1
17+
with:
18+
changelog: CHANGELOG.md
19+
token: ${{ secrets.GITHUB_TOKEN }}
20+
21+
upload-assets:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: taiki-e/upload-rust-binary-action@v1
26+
with:
27+
bin: multiblox
28+
token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# 0.1.0
2+
3+
Initial version.
4+
5+
Creates a mutex with CreateMutexA with name `ROBLOX_singletonMutex`, stays in system tray.
6+
7+
Windows only.

Cargo.lock

Lines changed: 42 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[package]
2+
name = "multiblox"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[profile.release]
7+
panic = "abort"
8+
strip = true
9+
opt-level = "z"
10+
lto = true
11+
codegen-units = 1
12+
13+
[dependencies]
14+
trayicon = "0.1.3"
15+
winapi = { version = "0.3.9", features = ["winuser"] }

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Multiblox
2+
3+
Simple program to allow running multiple Roblox client instances at once.
4+
5+
## Downloading
6+
7+
Download a build from the [Releases](https://github.com/DvvCz/Multiblox/releases/latest)
8+
9+
## Usage
10+
11+
Open Multiblox **before** opening Roblox, and it should move to your system tray / "hidden icons".
12+
13+
You should be able to open multiple clients while it is there.
14+
15+
## ⚠️ Note
16+
17+
This is not associated with the Roblox corporation in any way.
18+
19+
I doubt you would get banned for using this, but keep in mind there could always be a chance.

assets/icon.ico

8.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)