mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-15 13:45:36 +07:00
Compare commits
2 Commits
0011b78509
...
308a2f1579
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
308a2f1579 | ||
|
|
d33a86ce3c |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -15,6 +15,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- Require Firefox >= 55
|
||||
- Require Chrome >= 37
|
||||
|
||||
## [1.27.2] - 2025-01-27
|
||||
|
||||
### Fixed
|
||||
Special thanks to [SunsetTechuila](https://github.com/SunsetTechuila) for providing [PR 415](https://github.com/ClearURLs/Addon/pull/415)
|
||||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943562
|
||||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1942909
|
||||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1942705
|
||||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943842
|
||||
- https://bugzilla.mozilla.org/show_bug.cgi?id=1943807
|
||||
- [#407](https://github.com/ClearURLs/Addon/issues/407)
|
||||
- [#408](https://github.com/ClearURLs/Addon/issues/408)
|
||||
- [#409](https://github.com/ClearURLs/Addon/issues/409)
|
||||
- [#410](https://github.com/ClearURLs/Addon/issues/410)
|
||||
- [#411](https://github.com/ClearURLs/Addon/issues/411)
|
||||
- [#412](https://github.com/ClearURLs/Addon/issues/412)
|
||||
- [#413](https://github.com/ClearURLs/Addon/issues/413)
|
||||
|
||||
## [1.27.1] - 2025-01-05
|
||||
|
||||
### Changed
|
||||
|
||||
@@ -347,7 +347,7 @@ function urlSearchParamsToString(searchParams) {
|
||||
|
||||
searchParams.forEach((value, key) => {
|
||||
if (value) {
|
||||
rtn.push(key + '=' + value)
|
||||
rtn.push(key + '=' + encodeURIComponent(value))
|
||||
} else {
|
||||
rtn.push(key)
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "ClearURLs",
|
||||
"version": "1.27.1",
|
||||
"version": "1.27.2",
|
||||
"author": "Kevin Roebert",
|
||||
"description": "__MSG_extension_description__",
|
||||
"homepage_url": "https://docs.clearurls.xyz",
|
||||
|
||||
Reference in New Issue
Block a user