mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03:00
v2.20.3
This commit is contained in:
parent
857ab52a5e
commit
4ec7070ffa
10 changed files with 26 additions and 19 deletions
|
|
@ -290,5 +290,5 @@ dev_email = ""
|
||||||
dev_password = ""
|
dev_password = ""
|
||||||
|
|
||||||
[version]
|
[version]
|
||||||
current = "2.20.2"
|
current = "2.20.3"
|
||||||
saved = "Fri, 30 Sep 2022 12:34:56 +0000"
|
saved = "Fri, 30 Sep 2022 12:34:56 +0000"
|
||||||
|
|
|
||||||
24
CHANGELOG.md
24
CHANGELOG.md
|
|
@ -1,20 +1,26 @@
|
||||||
## 2.20.2 – 2022-11-05
|
## 2.20.3 – 2022-11-07
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Add more search operators (i.e. copy lots of Gmail ones)
|
- Throw decrypt errors
|
||||||
[#625](https://github.com/the-djmaze/snappymail/issues/625)
|
[#632](https://github.com/the-djmaze/snappymail/issues/632)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Some CSS borders to var(--border-color)
|
- Better multiple WYSIWYG registration system (not finished)
|
||||||
|
- Better handling of admin token cookie
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- pgpDecrypt() using MailVelope the decrypt message was not green
|
- Cookie “name” has been rejected because it is already expired.
|
||||||
- Shift + F in search bar resulted in forwarding message
|
[#636](https://github.com/the-djmaze/snappymail/issues/636)
|
||||||
[#624](https://github.com/the-djmaze/snappymail/issues/624)
|
- Content-Security-Policy 'strict-dynamic' was missing
|
||||||
|
|
||||||
### Nextcloud
|
### Nextcloud
|
||||||
- auto login mechanism not working anymore
|
- Better handling of Content-Security-Policy
|
||||||
[#627](https://github.com/the-djmaze/snappymail/issues/627)
|
[#631](https://github.com/the-djmaze/snappymail/issues/631)
|
||||||
|
[#633](https://github.com/the-djmaze/snappymail/issues/633)
|
||||||
|
- Nextcloud 23 Error Call to undefined method useStrictDynamic()
|
||||||
|
[#634](https://github.com/the-djmaze/snappymail/issues/634)
|
||||||
|
- Use snappymail icon as favicon-mask.svg instead default nextcloud logo
|
||||||
|
[#635](https://github.com/the-djmaze/snappymail/issues/635)
|
||||||
|
|
||||||
|
|
||||||
## 2.20.1 – 2022-11-04
|
## 2.20.1 – 2022-11-04
|
||||||
|
|
|
||||||
|
|
@ -85,6 +85,6 @@ $manifest = str_replace('"}', "\"\n\t}", $manifest);
|
||||||
$manifest = str_replace('}]', "}\n]", $manifest);
|
$manifest = str_replace('}]', "}\n]", $manifest);
|
||||||
$manifest = str_replace('","', "\",\n\t\t\"", $manifest);
|
$manifest = str_replace('","', "\",\n\t\t\"", $manifest);
|
||||||
$manifest = str_replace('\/', '/', $manifest);
|
$manifest = str_replace('\/', '/', $manifest);
|
||||||
file_put_contents(PLUGINS_DEST_DIR . "/packages.json", $manifest);
|
file_put_contents(dirname(PLUGINS_DEST_DIR) . "/packages.json", $manifest);
|
||||||
|
|
||||||
exit;
|
exit;
|
||||||
|
|
|
||||||
|
|
@ -634,9 +634,9 @@ export class HtmlEditor {
|
||||||
onReady = onReady ? [onReady] : [];
|
onReady = onReady ? [onReady] : [];
|
||||||
this.onReady = fn => onReady.push(fn);
|
this.onReady = fn => onReady.push(fn);
|
||||||
// TODO: make 'which' user configurable
|
// TODO: make 'which' user configurable
|
||||||
const which = 'CKEditor4',
|
// const which = 'CKEditor4',
|
||||||
wysiwyg = WYSIWYGS.find(item => which == item[0])
|
// wysiwyg = WYSIWYGS.find(item => which == item[0]) || WYSIWYGS.find(item => 'Squire' == item[0]);
|
||||||
|| WYSIWYGS.find(item => 'Squire' == item[0]);
|
const wysiwyg = WYSIWYGS.find(item => 'Squire' == item[0]);
|
||||||
wysiwyg[1](this, element, editor => {
|
wysiwyg[1](this, element, editor => {
|
||||||
this.editor = editor;
|
this.editor = editor;
|
||||||
editor.on('blur', () => this.blurTrigger());
|
editor.on('blur', () => this.blurTrigger());
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages SnappyMail <upstream>2.20.2</upstream>.
|
This app packages SnappyMail <upstream>2.20.3</upstream>.
|
||||||
|
|
||||||
SnappyMail is a simple, modern, lightweight & fast web-based email client.
|
SnappyMail is a simple, modern, lightweight & fast web-based email client.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
# If you change the extraction below, be sure to test on scaleway
|
# If you change the extraction below, be sure to test on scaleway
|
||||||
VERSION=2.20.2
|
VERSION=2.20.3
|
||||||
RUN wget https://github.com/the-djmaze/snappymail/releases/download/v${VERSION}/snappymail-${VERSION}.zip -O /tmp/snappymail.zip && \
|
RUN wget https://github.com/the-djmaze/snappymail/releases/download/v${VERSION}/snappymail-${VERSION}.zip -O /tmp/snappymail.zip && \
|
||||||
unzip /tmp/snappymail.zip -d /app/code && \
|
unzip /tmp/snappymail.zip -d /app/code && \
|
||||||
rm /tmp/snappymail.zip && \
|
rm /tmp/snappymail.zip && \
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<id>snappymail</id>
|
<id>snappymail</id>
|
||||||
<name>SnappyMail</name>
|
<name>SnappyMail</name>
|
||||||
<summary>SnappyMail Webmail</summary>
|
<summary>SnappyMail Webmail</summary>
|
||||||
<version>2.20.2</version>
|
<version>2.20.3</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli</author>
|
<author>SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli</author>
|
||||||
<description><![CDATA[**Simple, modern, lightweight & fast web-based email client.**
|
<description><![CDATA[**Simple, modern, lightweight & fast web-based email client.**
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ return "SnappyMail Webmail is a browser-based multilingual IMAP client with an a
|
||||||
# script_snappymail_versions()
|
# script_snappymail_versions()
|
||||||
sub script_snappymail_versions
|
sub script_snappymail_versions
|
||||||
{
|
{
|
||||||
return ( "2.20.2" );
|
return ( "2.20.3" );
|
||||||
}
|
}
|
||||||
|
|
||||||
sub script_snappymail_version_desc
|
sub script_snappymail_version_desc
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
"title": "SnappyMail",
|
"title": "SnappyMail",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.20.2",
|
"version": "2.20.3",
|
||||||
"homepage": "https://snappymail.eu",
|
"homepage": "https://snappymail.eu",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "DJ Maze",
|
"name": "DJ Maze",
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@
|
||||||
<br />
|
<br />
|
||||||
<a class="btn" href="https://github.com/the-djmaze/snappymail/releases" target="_blank" data-i18n="TAB_ABOUT/BUTTON_RELEASES"></a>
|
<a class="btn" href="https://github.com/the-djmaze/snappymail/releases" target="_blank" data-i18n="TAB_ABOUT/BUTTON_RELEASES"></a>
|
||||||
<a class="btn" data-bind="visible: coreUpdatable(), click: updateCoreData" data-i18n="GLOBAL/UPDATE"></a>
|
<a class="btn" data-bind="visible: coreUpdatable(), click: updateCoreData" data-i18n="GLOBAL/UPDATE"></a>
|
||||||
|
<a class="btn" href="https://github.com/the-djmaze/snappymail/releases/latest" data-bind="hidden: coreUpdatable()" data-i18n="GLOBAL/UPDATE"></a>
|
||||||
</div>
|
</div>
|
||||||
<div data-bind="visible: 'up-to-date' === statusType()">
|
<div data-bind="visible: 'up-to-date' === statusType()">
|
||||||
<i style="color: green">✔</i>
|
<i style="color: green">✔</i>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue