Fork of converse-desktop for c-r-t.tk's XMPP services
Go to file
Keith Maika ac7a137f4e
Get electron and application versions dynamically.
2022-01-07 13:53:19 -05:00
app Get electron and application versions dynamically. 2022-01-07 13:53:19 -05:00
libs/converse.js Get converse version dynamically. 2022-01-07 13:30:38 -05:00
modules Update to Electron 16. 2022-01-05 03:52:42 -05:00
resources Update converse.js and electron 2022-01-04 19:34:28 -05:00
.gitignore Update converse.js and electron 2022-01-04 19:34:28 -05:00
CHANGES.md Changelog update 2020-08-07 20:53:14 +03:00
LICENSE Update LICENSE 2020-08-07 15:03:18 +03:00
README.md Add README section describing the licensing situation 2020-08-25 14:34:05 +03:00
index.html Add content security policy. 2022-01-05 14:45:10 -05:00
main.js Get electron and application versions dynamically. 2022-01-07 13:53:19 -05:00
package.json Update to Electron 16. 2022-01-05 03:52:42 -05:00
preload.js Get electron and application versions dynamically. 2022-01-07 13:53:19 -05:00
renderer.js Update to Electron 16. 2022-01-05 03:52:42 -05:00

README.md

Converse Desktop

This project started as a fork of Nick Denry's Chimeverse.

Jabber/XMPP client based on Converse.js and Electron

Version Downloads PayPayl donate button

It should happen once. A very basic integration of Converse.js and Electron. With OMEMO.

Screenshots and feautures

Account form Main window Chat Settings screen

  • Permanent account storage
  • Tray icon
  • Tray notifications
  • All the best from Converse.js like system notifications, MAM, OMEMO etc. See details at Converse.js

License information

Like Converse.js, Converse Desktop's files are released under the Mozilla Public License version 2 (MPLv2). The gist of this license is that the covered files must stay open source, and modifications to them need to be released under the same license, but new files (for example for your own plugin) don't have to be released under the same license.

However, libsignal library, which is required for OMEMO support is released under the GPLv3. The MPLv2 license is compatible with GPLv3 and when GPLv3 code is included, the entire project effectively is licensed under the GPLv3.

Any custom build of Converse Desktop without libsignal included will again be licensed under the MPLv2.

Changelog

See CHANGES.md

Latest release installers

Operation System Download link
macOS Converse_Desktop-0.1.0_x64.dmg
Windows Converse_Desktop_Setup-0.1.0_x64.exe
Linux DEB converse_desktop-0.1.0_amd64.deb
Linux other converse_desktop-0.1.0_x64.tar.gz

Run with npm

git clone https://github.com/conversejs/converse-desktop.git
cd converse-desktop
npm i
$(npm bin)/electron-rebuild
npm start

Development

Prepare

git clone https://github.com/conversejs/converse-desktop.git
cd converse-desktop
npm i
$(npm bin)/electron-rebuild

Build targets

Operation System Target
macOS npm run dist
Windows npm run dist:win64
Linux DEB npm run dist:linux64deb

More targets could be added via package.json. See electron builder docs.