Skip to content

Commit 5c5aa66

Browse files
committed
Initial release
0 parents  commit 5c5aa66

26 files changed

+7714
-0
lines changed

.github/workflows/build.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
strategy:
11+
matrix:
12+
# mac version is built locally because of the code signing
13+
os: [ubuntu-latest, windows-latest]
14+
runs-on: ${{ matrix.os }}
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
19+
20+
- name: Set up Node.js
21+
uses: actions/setup-node@v3
22+
with:
23+
node-version: 22
24+
25+
- name: Install dependencies
26+
run: npm install
27+
28+
- name: Build application
29+
run: npm run make -- --arch x64,arm64
30+
31+
- name: Upload artifacts
32+
if: success()
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: dmtool-${{ matrix.os }}
36+
path: out/make

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
out
3+
4+
signed.zip

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Damian Mąsior
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.PHONY: build-mac
2+
build-mac:
3+
@npm run make -- --platform darwin --arch x64,arm64

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# DMTool
2+
3+
Tool for developers. Perform operations on your clipboard data with ease.
4+
5+
![dropdown presentation](./assets/dropdown_presentation.png)
6+
7+
## Features
8+
9+
- Base64 Encode/Decode
10+
- URL Encode/Decode
11+
- JSON Beautify and Minify
12+
- Sorting and trimming
13+
- Generate, validate and detect UUID. Convert between UUID V1 and V6
14+
- Hashing (MD5, SHA, BLAKE)
15+
16+
## Usage
17+
18+
1. Copy the data you want to perform an operation on
19+
2. Select the operation from the dropdown
20+
3. Paste the result
21+
22+
## Download
23+
24+
Download the latest version from the [releases page](https://github.com/dmasior/dmtool/releases).
25+
26+
## License
27+
28+
MIT.

assets/dropdown_presentation.png

295 KB
Loading

assets/icons/app/icon.icns

51.4 KB
Binary file not shown.

assets/icons/app/icon.ico

3.98 KB
Binary file not shown.

assets/icons/app/icon.png

13.9 KB
Loading

assets/icons/tray/linux-icon.png

596 Bytes
Loading

0 commit comments

Comments
 (0)