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

Commit

Permalink
New Release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SanjayDevTech committed Jan 6, 2021
1 parent afa9500 commit 9905947
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 12 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- `Added` for new features.
- `Changed` for changes in existing functionality.
- `Deprecated` for soon-to-be removed features.
- `Removed` for now removed features.
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## Released

## [1.1.0] - 06/01/2021

### Added
- Support for fragments

### Changed
- AsyncTask to Kotlin Coroutines


## [1.0.2] - 07/09/2020

## Added
- Can fetch Instagram DP


## [1.0.1] - 06/09/2020

## Added
- Can get both image and video download links

## Changed
- Approached a new efficient method to retrieve the link


## [1.0.0] - 06/09/2020

### Added
- Get the direct download link for image post
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ Insta Utils is a Insta post downloader for Android applications written in **Jav
[ ![Download](https://api.bintray.com/packages/sanjaydevtech/instautils/com.sanjaydevtech.instautils/images/download.svg) ](https://bintray.com/sanjaydevtech/instautils/com.sanjaydevtech.instautils/_latestVersion)

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

- Download the Insta public post
- Set the image directly to ImageView

### Credits

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

### Implemetation

### Implementation
```gradle
implementation 'com.sanjaydevtech.instautils:instautils:1.0.2'
implementation 'com.sanjaydevtech.instautils:instautils:<latest_version>'
```
Check [Releases](https://github.com/SanjayDevTech/instautils/releases) for Latest version


### Instagram DP

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

#### Displaying

After retrieving the InstaPost object you can set the image to an ImageView
```java
InstaDownloader downloader = new InstaDowloader(this);
InstaDownloader downloader = new InstaDownloader(this);
ImageView img = findViewById(R.id.imageView);
downloader.setImage(post, img);
```
Expand All @@ -66,7 +67,7 @@ downloader.getBitmap(post, new InstaImage() {
#### Initialisation

```java
InstaDownloader downloader = new InstaDowloader(this);
InstaDownloader downloader = new InstaDownloader(this);
downloader.setResponse(new InstaResponse() {
@Override
public void onResponse(InstaPost post) {
Expand Down Expand Up @@ -122,10 +123,6 @@ git push
### Any Issues?
* Create a new issue on github

### Todos

- Find hidden bugs

License
----
MIT
2 changes: 1 addition & 1 deletion instautils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ext {
siteUrl = 'https://github.com/SanjayDevTech/instautils'
gitUrl = 'https://github.com/SanjayDevTech/instautils.git'

libraryVersion = '1.0.2'
libraryVersion = '1.1.0'

developerId = 'sanjaydevtech'
developerName = 'Sanjay Developer'
Expand Down

0 comments on commit 9905947

Please sign in to comment.