Skip to content

Commit

Permalink
chore(release): 5.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
techmovie committed Sep 23, 2024
1 parent 81a82f3 commit b2dc176
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [5.2.1](https://github.com/techmovie/easy-upload/compare/5.2.0...5.2.1) (2024-09-23)


### Bug Fixes

* **fnp:** update fnp config ([77a377d](https://github.com/techmovie/easy-upload/commit/77a377de51422045a1c6b9b4a4e2a4e1ad8f56b9))
* **ssd:** torrent titile is missing ([db6f30e](https://github.com/techmovie/easy-upload/commit/db6f30e56c3f89a4b5435ef456de57c41627934b))



# [5.2.0](https://github.com/techmovie/easy-upload/compare/5.1.12...5.2.0) (2024-09-22)


Expand Down
9 changes: 7 additions & 2 deletions dist/easy-upload.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// @name EasyUpload PT一键转种
// @name:en EasyUpload - Trackers Transfer Tool
// @namespace https://github.com/techmovie/easy-upload
// @version 5.2.0
// @version 5.2.1
// @description easy uploading torrents to other trackers
// @description:en easy uploading torrents to other trackers
// @author birdplane
Expand All @@ -17,6 +17,8 @@
// @match https://blutopia.cc/torrents/*
// @match https://blutopia.cc/torrents?*
// @match https://blutopia.cc/upload/*
// @match https://fearnopeer.com/torrents/*
// @match https://fearnopeer.com/torrents?*
// @match https://pt.hdpost.top/torrents?*
// @match https://pt.hdpost.top/torrents/*
// @match https://asiancinema.me/torrents/*
Expand Down Expand Up @@ -10288,7 +10290,7 @@
selector: '.form__group input[type="checkbox"][name="anon"]'
},
torrent: {
selector: 'input[name="file"]'
selector: 'input[type="file"][accept=".torrent"]'
},
category: {
selector: "#browsecat",
Expand Down Expand Up @@ -18745,6 +18747,9 @@ ${doubanPart}`);
if (CURRENT_SITE_NAME === "HDArea") {
title = (_d = (_c = jQuery("h1#top").text().split(/\s{3,}/)) == null ? void 0 : _c[0]) == null ? void 0 : _d.trim();
}
if (CURRENT_SITE_NAME === "SSD") {
title = formatTorrentTitle(jQuery("#torrent-name").text());
}
if (CURRENT_SITE_NAME === "PuTao") {
title = formatTorrentTitle((_e = jQuery("h1").text().replace(/\[.+?\]|\(.+?\)/g, "")) == null ? void 0 : _e.trim());
}
Expand Down

0 comments on commit b2dc176

Please sign in to comment.