From a2539b15d55cf7bf81dc2da98449ef2780268d80 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 15 Jul 2020 15:39:39 -0700 Subject: [PATCH] Prep for 0.22.0 release Supercedes: https://github.com/webtorrent/webtorrent-desktop/pull/1730 Thanks @hicom150 :) --- CHANGELOG.md | 29 ++++++++++++++++++++++++++++- src/renderer/lib/migrations.js | 4 ++-- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2505e125..faa8e161 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,33 @@ # WebTorrent Desktop Version History -## v0.21.0 - 2019-08 +## v0.22.0 - 2020-07-15 + +### Added + +- Add support for multiple audio tracks [\#1712](https://github.com/webtorrent/webtorrent-desktop/pull/1712) ([hicom150])(https://github.com/hicom150) +- Improve codec unsupported detection [\#1711](https://github.com/webtorrent/webtorrent-desktop/pull/1711) ([hicom150])(https://github.com/hicom150) +- Report when files are being verified [\#1717](https://github.com/webtorrent/webtorrent-desktop/pull/1717) ([pR0Ps])(https://github.com/pR0Ps) +- Add rpm package creation support [\#1694](https://github.com/webtorrent/webtorrent-desktop/pull/1694) ([hicom150])(https://github.com/hicom150) +- Support additional audio files: MPEG-Layer-2, Musepack, Matroska audio, WavePack [\#1772](https://github.com/webtorrent/webtorrent-desktop/pull/1772) +- Update to Electron 9 [\#1729](https://github.com/webtorrent/webtorrent-desktop/pull/1729) [\#1832](https://github.com/webtorrent/webtorrent-desktop/issues/1832) + +### Changed + +- Update to music-metadata 4.8.0 [\#1719](https://github.com/webtorrent/webtorrent-desktop/pull/1719) ([Borewit])(https://github.com/Borewit) +- Update Windows build documentation [\#1715](https://github.com/webtorrent/webtorrent-desktop/pull/1715) ([RecoX])(https://github.com/RecoX) +- Remove unneeded dependencies + +### Fixed + +- Fix a few type errors [\#1720](https://github.com/webtorrent/webtorrent-desktop/pull/1720) ([mathiasvr])(https://github.com/mathiasvr) +- Fix electron SUID sandbox error [\#1707](https://github.com/webtorrent/webtorrent-desktop/pull/1707) ([hicom150])(https://github.com/hicom150) +- Fix percentage rounding error [\#1716](https://github.com/webtorrent/webtorrent-desktop/pull/1716) ([pR0Ps])(https://github.com/pR0Ps) +- Fix path-selector in preferences page [\#1702](https://github.com/webtorrent/webtorrent-desktop/pull/1702) ([314eter])(https://github.com/314eter) +- Fix path-selector in preferences page [\#1704](https://github.com/webtorrent/webtorrent-desktop/pull/1702) ([mathiasvr])(https://github.com/mathiasvr) +- Fix: Increase height of 'About' window [\#1737](https://github.com/webtorrent/webtorrent-desktop/pull/1737) +- Fix "Save Torrent File As..." [\#1743](https://github.com/webtorrent/webtorrent-desktop/pull/1743) + +## v0.21.0 - 2019-09-14 ### Added diff --git a/src/renderer/lib/migrations.js b/src/renderer/lib/migrations.js index a719583d..4d48660c 100644 --- a/src/renderer/lib/migrations.js +++ b/src/renderer/lib/migrations.js @@ -29,7 +29,7 @@ function run (state) { if (semver.lt(version, '0.17.0')) migrate_0_17_0(saved) if (semver.lt(version, '0.17.2')) migrate_0_17_2(saved) if (semver.lt(version, '0.21.0')) migrate_0_21_0(saved) - if (semver.lt(version, '0.21.1')) migrate_0_21_1(saved) + if (semver.lt(version, '0.22.0')) migrate_0_22_0(saved) // Config is now on the new version state.saved.version = config.APP_VERSION @@ -216,7 +216,7 @@ function migrate_0_21_0 (saved) { } } -function migrate_0_21_1 (saved) { +function migrate_0_22_0 (saved) { if (saved.prefs.externalPlayerPath == null) { saved.prefs.externalPlayerPath = '' }