From ac49d772dfd4dbbcfaab2e328a69ed8b9c0af6c4 Mon Sep 17 00:00:00 2001 From: Datalux Date: Sat, 3 Apr 2021 18:39:55 +0200 Subject: [PATCH] #version 1.2 --- README.md | 4 ++-- doc/CHANGELOG.md | 14 ++++++++++++++ main.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 784bdb19..2b8bfe7e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Osintgram 🔎📸 -[![version-1.1](https://img.shields.io/badge/version-1.1-green)](https://github.com/Datalux/Osintgram/releases/tag/1.1) +[![version-1.2](https://img.shields.io/badge/version-1.2-green)](https://github.com/Datalux/Osintgram/releases/tag/1.2) [![GPLv3](https://img.shields.io/badge/license-GPLv3-blue)](https://img.shields.io/badge/license-GPLv3-blue) [![Python3](https://img.shields.io/badge/language-Python3-red)](https://img.shields.io/badge/language-Python3-red) [![Telegram](https://img.shields.io/badge/Telegram-Channel-blue.svg)](https://t.me/osintgram) @@ -45,7 +45,7 @@ Osintgram offers an interactive shell to perform analysis on Instagram account o You can find detailed commands usage [here](doc/COMMANDS.md). -[**Latest version**](https://github.com/Datalux/Osintgram/releases/tag/1.1) | +[**Latest version**](https://github.com/Datalux/Osintgram/releases/tag/1.2) | [Commands](doc/COMMANDS.md) | [CHANGELOG](doc/CHANGELOG.md) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index 1c863e60..3b57acf6 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2](https://github.com/Datalux/Osintgram/releases/tag/1.2) +**Enhancements** +- Added virtual environment (#126) +- Removed some typos (#129, #118) +- Added new configuration (#125) +- Added new `commentdata` command (#131) +- Added Docker support (#141) + + +**Bug fixes** +- Fix bug #138 (fc2a6be) +- SSL certificate error (#136) + + ## [1.1](https://github.com/Datalux/Osintgram/releases/tag/1.1) **Enhancements** - Improved command parser (#86) diff --git a/main.py b/main.py index 48a3a202..ca487b17 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ def printlogo(): pc.printout("\_______ /____ >__|___| /__| \___ /|__| (____ /__|_| /\n", pc.YELLOW) pc.printout(" \/ \/ \/ /_____/ \/ \/ \n", pc.YELLOW) print('\n') - pc.printout("Version 1.1 - Developed by Giuseppe Criscione\n\n", pc.YELLOW) + pc.printout("Version 1.2 - Developed by Giuseppe Criscione\n\n", pc.YELLOW) pc.printout("Type 'list' to show all allowed commands\n") pc.printout("Type 'FILE=y' to save results to files like '_.txt (default is disabled)'\n") pc.printout("Type 'FILE=n' to disable saving to files'\n")