Releases: aditya-an1l/tweet-from-console
v1.2.1 Text and Metadata Version
Summary
- 🚩 Multi-line Tweet Support
You can now have multiline tweets. There are two ways to achieve it.
1. Inline Console method:
Write writing the tweet in the console directly, use \n
to leave go to next line. The following is an example:
$ python tweet.py "Line 1 \n Line 2"
The output would be:
Line 1
Line 2
2. (recommended) Interactive text mode:
You can execute the following simple command, and you can interactively write your multiline tweet in the console by leaving lines.
Here is how you can enter the interactive text mode:
$ python tweet.py
Use :q
to stop writing and send the text as tweet. Use :e
to cancel the tweet.
- 🚩 Version tracking and Metadata
A small yet helpful housekeeping feature. If your TFC package is out dated, the script will display a message of current versions and the latest versions.
Features Added
- Multiline Text Support
What's Changed
- 14/UI/show the current version in the cli by @aditya-an1l in #24
- Fix #25 - Added the log script by @aditya-an1l in #26
- 20/feature/enhancement add a mechanism to view the number of characters used and a warning if the word limit is crossed by @aditya-an1l in #27
- Add Text Box feature (branch: 21/feature/textbox) by @aditya-an1l in #28
Full Changelog: v1.1.1...v1.2.1
v1.1.1 Argument Support Version
Summary
- 🚩 Added Argument support: Users can use arguments to extend the functionality of script. This includes
This includes functionality such as
- send tweets without confirmation
- view version details
- view tweet history logs
- view error logs
Refer the README.md for more details, or run python tweet.py -h
- 🚩 Added functionality to view Version and Release Data: Users can now view their package version and release details
This can be done by running python tweet.py -v
(or python tweet.py --version
)
Features Added
- Argument Support
What's Changed
- Applied Feature #15 by @aditya-an1l in #16
- 9/argument feature/add arguments for many modes by @aditya-an1l in #21
Full Changelog: v1.0.1...v1.1.1
v1.0.1 Better README
Summary
- Fixed critical bugs
- Made the README much more cooler to look and read
Bugs fixed
Fix Issue #7 - Whitespace bug removed by @aditya-an1l in #8
- Fix #10 - modify main.py by @aditya-an1l in #11
Minor Features
- Feature #12 - modify main.py to output the log info by @aditya-an1l in #13
Full Changelog: v1.0.0...v1.0.1
v1.0.0 Text Tweet Version
Summary
- Made the UX and workflow better, and removed redundant 'cd's
What's Changed
- Better Workflow - Issue #2 by @aditya-an1l in #5
Full Changelog: v0.1.1...v1.0.0
v0.1.1 Critical Yes/No Bug Patch
SUMMARY
- Fixed a critical mistake that accidentally sent tweets whenever the users responded with NO ( 3cd4083 )
What's Changed
- Fix issue #3 by @aditya-an1l in PR #4
New Contributors
- @aditya-an1l made their first contribution in #4
Full Changelog: v0.1.0...v0.1.1
v0.1.0 Text Version MVP
- Tweet functionality works, provided the API keys are corrected and captured in the dot env file.
- CLI is functional with proper bug reports
- Tweet History available as an additional feature