Desktop application used to interact with the League of Legends client through external sources such as Twitch chat.
To download and install official releases, visit GitHub releases (Latest release here).
From these pages, you can download the 'vX.Y.Z<name>.app.zip
' file, unpack it, and run '<name> Setup X.Y.Z.exe
'. (Where X, Y and Z refer to version numbers, and <name>
to the name of the application)
Running this Setup .exe
-file will install the application to the start bar accessible through the Windows-key, and to C:\Users\<user>\AppData\Local\Programs\<name>\
, where <user>
is your Windows account's name, and <name>
is the name of the application.
To ensure everything works properly, please run the application from here, and not from the Setup .exe
-file that installed it.
To run the application from source, undergo the following steps:
- Install git (If not already installed, check using
git --version
) - Install node (If not already installed, check using
node --version
) - Install expo
- Run
npm install -g expo-cli
to install it
- Run
- Install node-foreman
- Run
npm install -g foreman
to install it
- Run
- Clone repository
git clone https://github.com/justinsmid/accept-league-queue.git
- Go to cloned directory
cd <path/to/directory>
- Install dependencies
npm install
- Run the application
npm run dev
To publish a new release, undergo the following steps:
npm install
npm run build
npm run dist
- archive all files created in the /dist folder to a zip
- Go to https://github.com/justinsmid/accept-league-queue/releases/new
- Write release information
- Upload the .zip archive, as well as the
latest.yml
inside of the zip, and the .exe installer. (Make sure the .exe installer's name matches thepath
inlatest.yml
) - Publish the release!