Skip to content

Commit

Permalink
Update to version 1.6
Browse files Browse the repository at this point in the history
Changelog of version 1.6.0:

## Additions:

+ Added a feature to import personal API keys for specific hosts.
+ Created an online demonstration accessible at: https://p-u.vercel.app/demonstration
+ Introduced 11 new hosts:
    - TmpSend (https://tmpsend.com)
    - uFile (https://ufile.io)
    - Sendvid (https://sendvid.com)
    - Upstore (https://upstore.net)
    - Netu (https://netu.ac)
    - Fastupload (https://fastupload.io)
    - ImgBB (https://imgbb.com)
    - Buzzheavier (https://buzzheavier.com)
    - Media.cm (https://media.cm)
    - UploadEv (https://uploadev.org)
    - Isra.cloud (https://isra.cloud)
+ Added 14 new hosts requiring an API key:
    - DoodStream (https://doodstream.com)
    - Drop.download (https://drop.download)
    - FileMoon (https://filemoon.sx)
    - Catbox (https://catbox.moe)
    - ddownload (https://ddownload.com)
    - mp4upload (https://mp4upload.com)
    - DropGalaxy (https://dropgalaxy.com)
    - Nitroflare (https://nitroflare.com)
    - Vidoza (https://vidoza.net)
    - Katfile (https://katfile.com)
    - Rapidgator (https://rapidgator.net)
    - StreamA2Z (https://streama2z.com)
    - StreamWish (https://streamwish.com)
    - StreamRuby (https://streamruby.com)
    - Voe.sx (https://voe.sx)
    - DevUploads (https://devuploads.com)
+ Added support for manual file deletion for 8 hosts:
    - Catbox (https://catbox.moe)
    - ddownload (https://ddownload.com)
    - Katfile (https://katfile.com)
    - c-v.sh (https://c-v.sh).
    - Fastupload (https://fastupload.io)
    - Pixeldrain (https://pixeldrain.com)
    - UploadEv (https://uploadev.org)
    - Isra.cloud (https://isra.cloud)
+ Added an option to delete the unique sharing link created after uploading multiple files at once.
+ Introduced a tooltip for hosts with frequent errors unrelated to PolyUploader.
+ Added statistics at the bottom of the page showing the number of hosts online and the date of the last check.
+ Added a button to copy uploads links from the history.
+ Implemented data import and export feature. For more information on this: https://polyuploader.vercel.app/installation-and-user-guide/import-export-data
+ Displayed the file name when uploading via URL.
+ Added host names to error messages during uploads in the final result.
+ Added a feature to accept only specific file formats required by certain hosts.
+ Added an option to reset to the default host order when sorting by name, maximum file size, or expiration time.
+ Introduced a control signal for upload requests external to the main function to prevent errors.

## Changes:

* Improved the overall interface with a new font, updated graphics, improved organization, and better readability.
* Enhanced the history interface.
* Enhanced the upload mode interface (local/URL).
* Improved the update process to keep users in the application.
* Improved the display of prohibited file formats by making them clearer and easier to identify.
* Improved default sorting of hosts by popularity rating.
* Pinned the multiple upload button on the page for easier access.
* Disabled file browsing, file deletion, and upload mode switching (local or URL) during uploads to prevent errors.
* Improved uploads profiles to no longer include offline hosts.
* Enabled the multiple upload button only if two or more hosts are selected.
* Excluded hosts that frequently cause upload errors in profiles.
* Updated URLs and retention times for several hosts.
* Fixed a bug that added erroneous links when copying multiple links and creating a single share link.
* Optimized the upload URL prefix request to avoid window freezes.
* Refined some regexes for improved uploads links detection.
* Required an API key for 1 host:
    - Pixeldrain (https://pixeldrain.com)
* Made various miscellaneous improvements to the code, user experience, and interface layout.

## Removals:

- Removed unsupported hosts:
    - Uppit (https://uppit.com): Site no longer offers a file upload service.
    - Userscloud (https://userscloud.com): Site no longer offers a file upload service.
- Discontinued manual deletion support for 1 host:
    - Daily Uploads (https://dailyuploads.net): The site now requires a captcha to delete a file.
  • Loading branch information
spel987 committed Aug 25, 2024
1 parent dad83a9 commit 6ca9d1c
Show file tree
Hide file tree
Showing 99 changed files with 5,581 additions and 899 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
src-tauri/Resources/history.json
src-tauri/Resources/history.json
package-lock.json
node_modules
253 changes: 151 additions & 102 deletions README.md

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"name": "PolyUploader",
"private": true,
"version": "1.5.0",
"version": "1.6.0",
"type": "module",
"scripts": {
"tailwind": "tailwindcss -i ./src/input_tailwind.css -o ./src/styles.css --watch"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.0"
"@tauri-apps/cli": "^1.6.0"
},
"dependencies": {
"tailwindcss": "^3.4.10"
}
}
Loading

0 comments on commit 6ca9d1c

Please sign in to comment.