New splash screen.

This commit is contained in:
John Livingston 2021-11-09 10:55:12 +01:00
parent ab8dac1bba
commit aa156d3c06
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
4 changed files with 22 additions and 2 deletions

View File

@ -1,11 +1,20 @@
# Changelog
## v5.0.0 (not published yet)
### Features
* UI/UX improvements. Now using a custom ConverseJS build.
### Breaking changes
* If you have some CSS customization for the plugin, it may be broken.
## v4.0.3
### Features
* Brand new documentation, in french and english. (Work in Progress)
* UI/UX improvements. Now using a custom ConverseJS build.
### Minor changes and fixes

View File

@ -0,0 +1,10 @@
import { html } from 'lit-html'
import { api } from '@converse/headless/converse-core'
export default () => html`
<div class="inner-content converse-brand row">
<div class="converse-brand__padding"></div>
<div class="converse-brand__heading">
<img src="${api.settings.get('assets_path')}/../../images/logo.svg">
</div>
</div>`

View File

@ -9,6 +9,7 @@ module.exports = merge(prod, {
alias: {
// To override a template, use this syntax:
// 'templates/muc_sidebar.js': path.resolve(__dirname, 'custom/templates/muc_sidebar.js')
'templates/background_logo.js': path.resolve(__dirname, 'custom/templates/background_logo.js'),
'../sass/converse.scss': path.resolve(__dirname, 'custom/sass/livechat.scss')
}
}

View File

@ -1,7 +1,7 @@
{
"name": "peertube-plugin-livechat",
"description": "PeerTube plugin livechat: offers a way to embed a chat system into Peertube.",
"version": "4.0.3",
"version": "5.0.0",
"author": {
"name": "John Livingston",
"url": "https://github.com/JohnXLivingston"