Hydra is a game launcher with its own embedded bittorrent client
Go to file
2024-04-15 10:46:52 -03:00
.github/workflows ci: adding systemvars to webpack 2024-04-15 12:34:53 +01:00
docs baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
images baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
resources baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
src feat/adjust-ui: adjust game details screen spacings 2024-04-15 10:46:52 -03:00
torrent-client baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
.env.example baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
.eslintrc.js baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
.gitignore chore: add .venv to gitignore 2024-04-11 12:23:37 -03:00
.prettierrc.js fix: fixing dependencies 2024-04-15 10:18:24 +01:00
forge.config.ts fix: fixing dependencies 2024-04-15 10:18:24 +01:00
LICENSE baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
package.json chore: increasing version 2024-04-15 11:01:47 +01:00
README.md feat: adding accuracy as text instead of colours 2024-04-15 00:38:25 +01:00
requirements.txt baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
tsconfig.json baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
webpack.main.config.ts baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
webpack.plugins.ts ci: adding systemvars to webpack 2024-04-15 12:34:53 +01:00
webpack.renderer.config.ts baf9dd8dfe3152e4ea104de0a9b83471b6e92368 2024-04-09 23:30:27 +00:00
webpack.rules.ts fix: fixing dependencies 2024-04-15 10:18:24 +01:00
yarn.lock style: format code 2024-04-15 09:27:34 -03:00

Hydra

Discord GitHub Actions Workflow Status GitHub package.json version

Hydra is a game launcher with its own embedded bittorrent client and a self-managed repack scraper. The launcher is written in TypeScript (Electron) and Python, which handles the torrenting system by using libtorrent.

Hydra Catalogue

Installation

Install Node.js

Ensure you have Node.js installed on your machine. If not, download and install it from nodejs.org.

Install Yarn

Yarn is a package manager for Node.js. If you haven't installed Yarn yet, you can do so by following the instructions on yarnpkg.com.

Clone the Repository

git clone https://github.com/hydralauncher/hydra.git

Install Node Dependencies

Navigate to the project directory and install the Node dependencies using Yarn:

cd hydra
yarn

Install Python 3.9

Ensure you have Python installed on your machine. You can download and install it from python.org.

Install Python Dependencies

Install the required Python dependencies using pip:

pip install -r requirements.txt

Environment variables

You'll need an SteamGridDB API Key in order to fetch the game icons on installation. Once you have it, you can paste the .env.example file and put it on STEAMGRIDDB_API_KEY.

Running

Once you've got all things set up, you can run the following command to start both the Electron process and the bittorrent client:

yarn start

Build

Build the bittorrent client

Build the bittorrent client by using this command:

pyinstaller torrent-client/main.py --distpath resources/dist --icon=images/icon.ico -n hydra-download-manager

Build the Electron application

Build the Electron application by using this command:

yarn make

Contributors

Made with contrib.rocks.

License

Hydra is licensed under the MIT License.