Start renaming Chimeverse to Converse Desktop

This commit is contained in:
JC Brand 2020-07-22 16:33:06 +02:00
parent 85bfaf78a7
commit 7af84c584c
4 changed files with 20 additions and 75 deletions

View File

@ -1,50 +1,3 @@
## 0.1.55 (2020-06-17) ## 0.0.1 (Unreleased)
- Fix Chimeverse fails to load due to missing locale files [#24](https://github.com/nick-denry/Chimeverse/issues/24) - Forked from [Chimeverse](https://github.com/nick-denry/Chimeverse)
- Added websocket connection to the login form [#18](https://github.com/nick-denry/Chimeverse/issues/18)
- Generate random xmpp resource only if no resource provided at all
- Added debug item to the help menu
## 0.1.54 (2020-05-28)
- Fix for interrupting macOS shutdown with minimizeOnClose setting enabled
- Added tray icons for macOS dark mode
- macOS tray icons improved
- Display menu items according to typical usability for each platform
- Added restart action to the settings dialog
## 0.1.53 (2020-05-18)
- Improved tray icons for each platform
- Improved login process stability
- Auto-generate an unique xmpp resource id for each Chimeverse instance
- Settings param for use OMEMO by default if available
- Display a notification for a new release available
## 0.1.52 (2020-05-12)
- Display notifications only for recieved messages (not contact typing, services messages, etc.)
- Open chat with unreaded message by clicking tray icon
- Added settings dialog
- Run minimized to tray
- Minimize window to tray instead of closing
- Preserve window position
- Preserve window size
- Allow or disallow Converse.js server bookmarks
- Added about dialog
## 0.0.16 (2019-04-29)
- Add app menu items for reconnect and force logout
## 0.0.15 (2019-04-26)
- Bugfix: Open external links with system default browser
- Add copy & paste support via menu
- Remove debug calls
## 0.0.14 (2019-04-26)
- Initial release

View File

@ -1,4 +1,6 @@
# Chimeverse # Converse Desktop
This project started as a fork of Nick Denry's [Chimeverse](https://github.com/conversejs/converse-desktop).
#### Jabber/XMPP client based on Converse.js and Electron #### Jabber/XMPP client based on Converse.js and Electron
@ -27,22 +29,12 @@ It should happen once. A very basic integration of [Converse.js](https://convers
#### Changelog #### Changelog
See [CHANGES.md](https://github.com/nick-denry/Chimeverse/blob/master/CHANGES.md) See [CHANGES.md](https://github.com/conversejs/converse-desktop/blob/master/CHANGES.md)
#### Latest release installers
| Operation System | Download link |
-------------------|----------------
| macOS | [Chimeverse-0.1.55_x64.dmg](https://github.com/nick-denry/Chimeverse/releases/download/v0.1.55/Chimeverse-0.1.55_x64.dmg) |
| Windows | [Chimeverse.Setup.0.1.55_x64.exe](https://github.com/nick-denry/Chimeverse/releases/download/v0.1.55/Chimeverse.Setup.0.1.55_x64.exe) |
| Linux DEB | [chimeverse_0.1.55_amd64.deb](https://github.com/nick-denry/Chimeverse/releases/download/v0.1.55/chimeverse_0.1.55_amd64.deb) |
- [All releases](https://github.com/nick-denry/Chimeverse/releases)
#### Run with npm #### Run with npm
``` ```
git clone https://github.com/nick-denry/Chimeverse.git git clone https://github.com/conversejs/converse-desktop.git
cd Chimeverse cd Chimeverse
npm i npm i
$(npm bin)/electron-rebuild $(npm bin)/electron-rebuild
@ -53,7 +45,7 @@ npm start
Prepare Prepare
``` ```
git clone https://github.com/nick-denry/Chimeverse.git git clone https://github.com/conversejs/converse-desktop.git
cd Chimeverse cd Chimeverse
npm i npm i
$(npm bin)/electron-rebuild $(npm bin)/electron-rebuild

View File

@ -2,11 +2,11 @@ const angular = require('angular')
let angApp = angular.module('app', []) let angApp = angular.module('app', [])
angApp.constant('AppInfo', { angApp.constant('AppInfo', {
APP_NAME: 'Chimeverse', APP_NAME: 'Converse Desktop',
APP_VERSION: 'v0.1.55', APP_VERSION: 'v0.0.1',
APP_HOME: 'https://github.com/nick-denry/Chimeverse', APP_HOME: 'https://github.com/conversejs/converse-desktop',
APP_RELEASES_CHECK_URL: 'https://api.github.com/repos/nick-denry/Chimeverse/releases', APP_RELEASES_CHECK_URL: 'https://api.github.com/repos/conversejs/converse-desktop/releases',
APP_RELEASES_URL: 'https://github.com/nick-denry/Chimeverse/releases' APP_RELEASES_URL: 'https://github.com/conversejs/converse-desktop/releases'
}); });
module.exports = angApp module.exports = angApp

View File

@ -1,7 +1,7 @@
{ {
"name": "chimeverse", "name": "@converse/desktop",
"version": "0.1.55", "version": "0.0.1",
"description": "Jabber/XMPP client based on Converse.js and Electron", "description": "Desktop Jabber/XMPP client based on Converse.js and Electron",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"postinstall": "electron-builder install-app-deps", "postinstall": "electron-builder install-app-deps",
@ -11,7 +11,7 @@
"dist:win64": "build --platform win --arch x64", "dist:win64": "build --platform win --arch x64",
"dist:linux64deb": "build --platform linux --arch x64" "dist:linux64deb": "build --platform linux --arch x64"
}, },
"repository": "https://github.com/nick-denry/Chimeverse", "repository": "https://github.com/conversejs/converse-desktop",
"keywords": [ "keywords": [
"Jabber", "Jabber",
"XMPP", "XMPP",
@ -38,8 +38,8 @@
"open-iconic": "^1.1.1" "open-iconic": "^1.1.1"
}, },
"build": { "build": {
"appId": "com.denry.chimeverse", "appId": "com.denry.converse-desktop",
"productName": "Chimeverse", "productName": "Converse Desktop",
"mac": { "mac": {
"category": "public.app-category.social-networking", "category": "public.app-category.social-networking",
"icon": "resources/images/logo.icns", "icon": "resources/images/logo.icns",