Skip to content

wincelau/desktop-electron

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notice

This project is a work in progress.

Before building

Before you can build you will need to install yarn and nodejs

git clone https://github.com/kiwiirc/kiwiirc-desktop.git
cd kiwiirc-desktop/

Building

You should just need to run ./build.sh but if that fails run the following commands:

git submodule init
git submodule update
cd ./kiwiirc/
yarn install && yarn build
mv ./dist ../client
cd ..
cp client-defaults/config.json client/static/config.json
cp client-defaults/package.json client/package.json
cp client-defaults/main.js client/main.js
cp -r client-defaults/plugins client/plugins
cd client/
npm install

To build debian package run the following commands:

npm install electron-installer-debian electron-packager
./node_modules/.bin/electron-packager client KiwiIRC-Desktop --platform linux --arch x64 --out dist/ --overwrite
./node_modules/.bin/electron-installer-debian --src dist/KiwiIRC-Desktop-linux-x64/ --dest dist/installers/ --arch amd64 --options.icon icons/kiwiirclogo_256x256.png

.deb file is available in dist/installers/ folder

Running for development

To run the client you will need to install electron (sudo npm -g install electron) then enter the client/ directory and type electron .

About

Desktop client built from KiwiIRC

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 99.7%
  • Shell 0.3%