From cd49096bc9c94c2c4a1a3d17f461ea0c384aa286 Mon Sep 17 00:00:00 2001 From: Jesse Chan Date: Sat, 6 Feb 2021 21:26:47 +0800 Subject: [PATCH] flood: 4.4.1 --- CHANGELOG.md | 20 ++++++++++++++++++++ distribution/alpine/flood/APKBUILD | 2 +- distribution/archlinux/flood/PKGBUILD | 2 +- distribution/debian/flood-bin/BUILD | 2 +- distribution/debian/flood/changelog | 2 +- package-lock.json | 4 ++-- package.json | 8 ++++---- 7 files changed, 30 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d265f911..1ed01445 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [4.4.1] (February 6, 2021) + +- Better handle tracker domain conversion and grouping +- Wrap texts (e.g. long IPv6 addresses and peer client versions) in tables of torrent details if necessary +- Distribution: + - CI now publishes releases to AUR (Arch Linux User Repository) + - CI now publishes Debian (`.deb`) packages to Github Releases + - Contributions are welcome. See [distribution/README.md](https://github.com/jesec/flood/blob/v4.4.1/distribution/README.md). +- rTorrent fixes: + - Remove [] from IPv6 addresses in peer list +- Bug fixes: + - Remove ugly outline and highlight of focused button caused by an a11y change + - Try to workaround potential index.html caching issues + - Browser uses a fully cached asset tree in some cases, which defeats cache busting by asset hashes +- New translations + - Finnish, thanks to @hyvamiesh + - German, thanks to @chint95 +- Bump dependencies + ## [4.4.0] (February 2, 2021) - Return a portable link when torrent content is requested @@ -371,3 +390,4 @@ Other changes: [4.3.0]: https://github.com/jesec/flood/compare/v4.2.0...v4.3.0 [4.3.1]: https://github.com/jesec/flood/compare/v4.3.0...v4.3.1 [4.4.0]: https://github.com/jesec/flood/compare/v4.3.1...v4.4.0 +[4.4.1]: https://github.com/jesec/flood/compare/v4.4.0...v4.4.1 diff --git a/distribution/alpine/flood/APKBUILD b/distribution/alpine/flood/APKBUILD index a2c201de..847dab27 100644 --- a/distribution/alpine/flood/APKBUILD +++ b/distribution/alpine/flood/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: replace with your name # Contributor: replace with your name _npmname=flood -_npmver=4.4.0 +_npmver=4.4.1 pkgname=flood pkgver=$_npmver pkgrel=1 diff --git a/distribution/archlinux/flood/PKGBUILD b/distribution/archlinux/flood/PKGBUILD index f2a4a2d0..1d28e00e 100644 --- a/distribution/archlinux/flood/PKGBUILD +++ b/distribution/archlinux/flood/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: replace-with-your-name # Contributor: replace-with-your-name _npmname=flood -_npmver=4.4.0 +_npmver=4.4.1 pkgname=flood pkgver=$_npmver pkgrel=1 diff --git a/distribution/debian/flood-bin/BUILD b/distribution/debian/flood-bin/BUILD index 4bc9e9dd..8ca448d1 100644 --- a/distribution/debian/flood-bin/BUILD +++ b/distribution/debian/flood-bin/BUILD @@ -10,7 +10,7 @@ PACKAGE = "flood" RECOMMENDS = ["mediainfo"] -VERSION = "4.4.0-0" +VERSION = "4.4.1-0" genrule( name = "flood-pkg-arm64", diff --git a/distribution/debian/flood/changelog b/distribution/debian/flood/changelog index 7b8e8b4b..3a8d998f 100644 --- a/distribution/debian/flood/changelog +++ b/distribution/debian/flood/changelog @@ -1,4 +1,4 @@ -flood (4.4.0-1) UNRELEASED; urgency=low +flood (4.4.1-1) UNRELEASED; urgency=low * Initial release diff --git a/package-lock.json b/package-lock.json index 35bf4b4e..dd092863 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "flood", - "version": "4.4.0", + "version": "4.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "4.4.0", + "version": "4.4.1", "bundleDependencies": [ "geoip-country", "async", diff --git a/package.json b/package.json index 3bdd1036..edceddee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flood", - "version": "4.4.0", + "version": "4.4.1", "description": "A modern Web UI for various torrent clients with multi-user and multi-client support", "keywords": [ "typescript", @@ -224,9 +224,6 @@ "yargs": "^16.2.0", "zod": "^1.11.11" }, - "bundledDependencies": [ - "geoip-country" - ], "engines": { "node": ">=12.0.0", "npm": ">=6.0.0" @@ -238,5 +235,8 @@ "last 5 edge version", "last 2 iOS version", "last 2 Safari version" + ], + "bundleDependencies": [ + "geoip-country" ] }