Skip to content

Commit

Permalink
Version 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HuiiBuh committed Jul 28, 2021
1 parent 0297021 commit 6b82bb7
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
15 changes: 13 additions & 2 deletions docs/_includes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# **NEW PERMISSIONS:** I have to modify the headers in order to speed up the download
### Version 4.5.0

As always I do not collect any of your data. If you don't trust me, take a look at the extensions GitHub page.
`28.07.2021`

#### New:
+ Added support for dark reader [#216](https://github.com/HuiiBuh/InstagramDownloader/issues/216)
+ New alert design
+ New bulk download design
+ Better obfuscation, so Instagram does not detect that you are using a downloader

#### Fixes:

+ Fixed Low-Resolution Story Image download [#218](https://github.com/HuiiBuh/InstagramDownloader/issues/218)
+ Improved mutation observer, so events don't get fired so fast

---

Expand Down
3 changes: 2 additions & 1 deletion src/manifest_chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "IG Downloader",
"description": "Open Source und privacy conscious Instagram Downloader, which downloads images, videos, Instagram stories and IGTV.",
"version": "4.4.8",
"version": "4.5.0",
"icons": {
"512": "icons/instagram.png"
},
Expand All @@ -16,6 +16,7 @@
"page": "options.html"
},
"declarative_net_request": {
"rule_resources": []
},
"permissions": [
"downloads",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest_firefox.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "IG Downloader",
"version": "4.4.8",
"version": "4.5.0",
"icons": {
"512": "icons/instagram.png"
},
Expand Down
2 changes: 2 additions & 0 deletions src/ts/downloaders/BulkDownloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* linking to the original source AND open sourcing your code. *
****************************************************************************************/
import { browser } from 'webextension-polyfill-ts';
import { Alert } from '../components/Alert';
import { Modal } from '../components/Modal';
import { LogClassErrors } from '../decorators';
import { log, sleep, validURL } from '../functions';
Expand Down Expand Up @@ -61,6 +62,7 @@ export class BulkDownloader extends Downloader {
* Prepare and execute the download
*/
private async prepareDownload(): Promise<void> {
Alert.createAndAdd('Be aware that Instagram WILL ban you if they find out. So use this feature with caution', 'warn', true, 100000000000);
const downloadSpeed = await this.getDownloadSpeed();
if (downloadSpeed === null) return;

Expand Down

0 comments on commit 6b82bb7

Please sign in to comment.