Skip to content
This repository was archived by the owner on Oct 27, 2023. It is now read-only.

Commit 9905947

Browse files
committed
New Release v1.1.0
1 parent afa9500 commit 9905947

File tree

3 files changed

+50
-12
lines changed

3 files changed

+50
-12
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5+
- `Added` for new features.
6+
- `Changed` for changes in existing functionality.
7+
- `Deprecated` for soon-to-be removed features.
8+
- `Removed` for now removed features.
9+
- `Fixed` for any bug fixes.
10+
- `Security` in case of vulnerabilities.
11+
12+
## Released
13+
14+
## [1.1.0] - 06/01/2021
15+
16+
### Added
17+
- Support for fragments
18+
19+
### Changed
20+
- AsyncTask to Kotlin Coroutines
21+
22+
23+
## [1.0.2] - 07/09/2020
24+
25+
## Added
26+
- Can fetch Instagram DP
27+
28+
29+
## [1.0.1] - 06/09/2020
30+
31+
## Added
32+
- Can get both image and video download links
33+
34+
## Changed
35+
- Approached a new efficient method to retrieve the link
36+
37+
38+
## [1.0.0] - 06/09/2020
39+
40+
### Added
41+
- Get the direct download link for image post

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ Insta Utils is a Insta post downloader for Android applications written in **Jav
66
[ ![Download](https://api.bintray.com/packages/sanjaydevtech/instautils/com.sanjaydevtech.instautils/images/download.svg) ](https://bintray.com/sanjaydevtech/instautils/com.sanjaydevtech.instautils/_latestVersion)
77

88
# New Features!
9+
Check [CHANGELOG](https://github.com/SanjayDevTech/instautils/blob/master/CHANGELOG.md) for new features and updates
910

10-
- Download the Insta public post
11-
- Set the image directly to ImageView
1211

1312
### Credits
1413

@@ -17,11 +16,12 @@ Insta Utils uses a number of open source libraries to work properly:
1716
* JSoup - To parse HTML
1817
* [Glide](https://github.com/bumptech/glide) - Url to ImageView
1918

20-
### Implemetation
21-
19+
### Implementation
2220
```gradle
23-
implementation 'com.sanjaydevtech.instautils:instautils:1.0.2'
21+
implementation 'com.sanjaydevtech.instautils:instautils:<latest_version>'
2422
```
23+
Check [Releases](https://github.com/SanjayDevTech/instautils/releases) for Latest version
24+
2525

2626
### Instagram DP
2727

@@ -43,9 +43,10 @@ InstaScraper.getDP(this, instaProfile, new InstaResponse() {
4343
```
4444

4545
#### Displaying
46+
4647
After retrieving the InstaPost object you can set the image to an ImageView
4748
```java
48-
InstaDownloader downloader = new InstaDowloader(this);
49+
InstaDownloader downloader = new InstaDownloader(this);
4950
ImageView img = findViewById(R.id.imageView);
5051
downloader.setImage(post, img);
5152
```
@@ -66,7 +67,7 @@ downloader.getBitmap(post, new InstaImage() {
6667
#### Initialisation
6768

6869
```java
69-
InstaDownloader downloader = new InstaDowloader(this);
70+
InstaDownloader downloader = new InstaDownloader(this);
7071
downloader.setResponse(new InstaResponse() {
7172
@Override
7273
public void onResponse(InstaPost post) {
@@ -122,10 +123,6 @@ git push
122123
### Any Issues?
123124
* Create a new issue on github
124125

125-
### Todos
126-
127-
- Find hidden bugs
128-
129126
License
130127
----
131128
MIT

instautils/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ext {
1616
siteUrl = 'https://github.com/SanjayDevTech/instautils'
1717
gitUrl = 'https://github.com/SanjayDevTech/instautils.git'
1818

19-
libraryVersion = '1.0.2'
19+
libraryVersion = '1.1.0'
2020

2121
developerId = 'sanjaydevtech'
2222
developerName = 'Sanjay Developer'

0 commit comments

Comments
 (0)