From 99059477957170969379a5997f9f8e06ae53f171 Mon Sep 17 00:00:00 2001 From: Sanjay Developer Date: Wed, 6 Jan 2021 17:22:10 +0530 Subject: [PATCH] New Release v1.1.0 --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 19 ++++++++----------- instautils/build.gradle | 2 +- 3 files changed, 50 insertions(+), 12 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e5c543d --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 6b9153f..b65b2ad 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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:' ``` +Check [Releases](https://github.com/SanjayDevTech/instautils/releases) for Latest version + ### Instagram DP @@ -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); ``` @@ -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) { @@ -122,10 +123,6 @@ git push ### Any Issues? * Create a new issue on github -### Todos - - - Find hidden bugs - License ---- MIT diff --git a/instautils/build.gradle b/instautils/build.gradle index a00bacd..1657a7c 100644 --- a/instautils/build.gradle +++ b/instautils/build.gradle @@ -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'