Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.46 KB

CONTRIBUTING.md

File metadata and controls

59 lines (41 loc) · 1.46 KB

Contribution Guidelines of Useful Tools for Windows

Issues

Create a new issue

If you spot a problem with the docs, search if an issue already exists. If a related issue doesn't exist, you can open a new issue using a relevant issue form.

Solve an issue

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters. If you find an issue to work on, you are welcome to open a PR with a fix.

Make Changes

Following dependencies are required to build this app.

  • Python >= 3.10 (Microsoft Store version will work as well)
  • Inno Setup >= 6.2.0 (only required to build installer)
  • upx (optional)
  • bun
  • uv

Then create venv using:

python -m venv .venv

Then activate venv using:

.\.venv\Scripts\Activate.ps1

Then install all dependencies using:

uv pip install -r requirements.txt && bun install

Running development version (UI only):

bun dev

Building:

build.bat