Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Releases: mansuf/zippyshare-downloader

More pattern in v0.3.4

28 Feb 07:00
Compare
Choose a tag to compare

What's new in v0.3.4 ?

This update only fix "failed to get download url" in zippyshare

  • Add more pattern

More pattern in v0.3.3

23 Jul 01:27
9fb3e48
Compare
Choose a tag to compare

What's new in v0.3.3 ?

This update only fix "failed to get download url" in zippyshare

  • Add more pattern

More pattern in v0.3.2

18 Jul 05:39
c63e65e
Compare
Choose a tag to compare

What's new in v0.3.2 ?

This update only fix "failed to get download url" in zippyshare

  • Add more pattern

Some fixes in 0.3.1

04 Feb 07:59
Compare
Choose a tag to compare

What's new in v0.3.1 ?

This update only include some fixes and improvements. More info see below:

For CLI

  • Fixed --folder without --async option throwing error
  • Fixed some error message after finished download

For API

  • Fixed File.download() with parameter folder throwing error
  • Fixed Net.close_async() are not closed properly
  • Improved NetworkObject class

v0.3.0

03 Jan 06:48
Compare
Choose a tag to compare

What's new in v0.3.0 ?

  • Added proxy support
  • Some bug fixes

For embedding

  • Added url attribute in File class, returning origin zippyshare url.
  • Added size_fmt attribute in File class, returning formatted size of zippyshare file.
  • Added date_uploaded_fmt attribute in File class, returning formatted date uploaded of zippyshare file.

For Command Line Interface (CLI)

  • Output cli is now changed from json format to pretty print format
  • Added --json option, the output will be in json format, NOTE: all logging from the app will be disabled.
  • Now the app will throw error if -pipe and --no-download are present
  • Fix --silent option are not working properly

v0.2.0

20 Dec 06:21
Compare
Choose a tag to compare

What's new in v0.2.0 ?

  • Fixed unable to extract download url #10

For embedding

  • Added download_stdout(), this function will download zippyshare file to stdout. Useful for piping media content to media player (like vlc) if playable.

For Command Line Interface (CLI)

  • Added -pipe option, Download to stdout, useful for piping media content to media player (like vlc).

v0.1.3

04 Nov 17:18
Compare
Choose a tag to compare

What's new in v0.1.3 ?

For embedding

  • Fixed "folder not exist" caused by folder parameter in File.download_coro()

For Command Line Interface (CLI)

  • Fixed "folder not exist" caused by --folder combined with --async and --fast

v0.1.2

30 Sep 10:00
Compare
Choose a tag to compare

What's new in v0.1.2 ?

This release fix problem from v0.1.0 and v0.1.1

CRITICAL FIX (AGAIN)

  • Fixed CLI won't run, because some modules are missing during installation.

v0.1.1 (BROKEN)

30 Sep 09:53
Compare
Choose a tag to compare

What's new in v0.1.1 ?

CRITICAL FIX

  • Fixed CLI won't run, because some modules are missing during installation.

v0.1.0

29 Sep 16:16
Compare
Choose a tag to compare

What's new in v0.1.0 ?

There a lot of reworks and new features, including:

  • Reworked, optimized and fixed bugs in CLI
  • Added fast download
  • Added Documentation

For more informations about these updates, see below

For Embedding (API)

  • Added File.download_coro(). The parameters are same from File.download()
  • Added fast parameter for File.download_coro()
  • extract_info_coro() and download_coro() now have native async downloader (the previous one was from download module threaded)
  • extract_info_coro() and download_coro() now are faster than before when extracting info

For Command Line Interface (CLI)

  • Added --fast option for faster download. NOTE: You must add --async option in order to work
  • Fixed --filename option are not working
  • Optimized app