mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Added changelog so it can be shown at apps.nextcloud.com
This commit is contained in:
parent
7bca4fb6af
commit
dc57442ba0
2 changed files with 50 additions and 0 deletions
49
CHANGELOG.md
Normal file
49
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,49 @@
|
||||||
|
## 2.19.7 – 2022-11-02
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Make it clear that you are on the admin panel login screen
|
||||||
|
- Force PHP opcache_invalidate due to upgrade error reports "Missing version directory"
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Switching user (impersonate plugin) keeps old Email logged in
|
||||||
|
[#561](https://github.com/the-djmaze/snappymail/issues/561)
|
||||||
|
- PGP Decryption / Encryption Failures
|
||||||
|
[#600](https://github.com/the-djmaze/snappymail/issues/600)
|
||||||
|
- Undefined constant "OCA\SnappyMail\Util\RAINLOOP_APP_LIBRARIES_PATH
|
||||||
|
[#601](https://github.com/the-djmaze/snappymail/issues/601)
|
||||||
|
- Cannot access admin panel
|
||||||
|
[#602](https://github.com/the-djmaze/snappymail/issues/602)
|
||||||
|
- Wont show my emails
|
||||||
|
[#604](https://github.com/the-djmaze/snappymail/issues/604)
|
||||||
|
- Return type of MailSo\Base\StreamFilters\LineEndings::filter
|
||||||
|
[#610](https://github.com/the-djmaze/snappymail/issues/610)
|
||||||
|
- Create .pgp directory was missing
|
||||||
|
|
||||||
|
### Security
|
||||||
|
- Logger leaked some passwords
|
||||||
|
|
||||||
|
## 2.19.6 – 2022-10-31
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Put sign and encrypt options in composer dropdown menu and simplify te two existing buttons with a glyph
|
||||||
|
- Filter scripts UI let user understand which filter is active
|
||||||
|
[#590](https://github.com/the-djmaze/snappymail/issues/590)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Method 'GetRequest' not found in \MailSo\Base\Http
|
||||||
|
[#585](https://github.com/the-djmaze/snappymail/issues/585)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Base Domain setup enhancements
|
||||||
|
- Cleanup MailSo MailClient using __call()
|
||||||
|
- Domain settings handling and store as JSON instead of ini
|
||||||
|
- Some JavaScript changes
|
||||||
|
- When try to login IMAP/SMTP/SIEVE but STARTTLS is required, force STARTTLS
|
||||||
|
- Embed admin panel into Nextcloud (with autologin, no need for separate login)
|
||||||
|
- Don't set default_domain in Nextcloud when already set
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- Nextcloud dark mode, it is incomplete
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
- nothing
|
||||||
|
|
@ -29,6 +29,7 @@ $index = file_get_contents('index.php');
|
||||||
$index = str_replace('0.0.0', $package->version, $index);
|
$index = str_replace('0.0.0', $package->version, $index);
|
||||||
$nc_tar->addFromString('snappymail/app/index.php', $index);
|
$nc_tar->addFromString('snappymail/app/index.php', $index);
|
||||||
$nc_tar->addFile('README.md', 'snappymail/app/README.md');
|
$nc_tar->addFile('README.md', 'snappymail/app/README.md');
|
||||||
|
$nc_tar->addFile('CHANGELOG.md', 'snappymail/CHANGELOG.md');
|
||||||
|
|
||||||
$data = file_get_contents('dev/serviceworker.js');
|
$data = file_get_contents('dev/serviceworker.js');
|
||||||
$nc_tar->addFromString('snappymail/app/serviceworker.js', $data);
|
$nc_tar->addFromString('snappymail/app/serviceworker.js', $data);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue