Skip to content

Releases: aditya-an1l/tweet-from-console

v1.2.1 Text and Metadata Version

27 Sep 20:33
v1.2.1
e86c2b1
Compare
Choose a tag to compare

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

26 Aug 17:37
v1.1.1
ae2be6d
Compare
Choose a tag to compare

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

Full Changelog: v1.0.1...v1.1.1

v1.0.1 Better README

23 Aug 13:44
v1.0.1
c920a82
Compare
Choose a tag to compare

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

Minor Features

Full Changelog: v1.0.0...v1.0.1

v1.0.0 Text Tweet Version

22 Aug 15:14
v1.0.0
2866f09
Compare
Choose a tag to compare

Summary

  • Made the UX and workflow better, and removed redundant 'cd's

What's Changed

Full Changelog: v0.1.1...v1.0.0

v0.1.1 Critical Yes/No Bug Patch

21 Aug 16:35
v0.1.1
3cd4083
Compare
Choose a tag to compare
Pre-release

SUMMARY

  • Fixed a critical mistake that accidentally sent tweets whenever the users responded with NO ( 3cd4083 )

What's Changed

New Contributors

Full Changelog: v0.1.0...v0.1.1

v0.1.0 Text Version MVP

21 Aug 10:46
v0.1.0
2a7fd8c
Compare
Choose a tag to compare
Pre-release
  • 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