Installing the program is very easy. Download your preffered native OS Tale: Tale-Windows, Tale-Linux, Tale-OSX
After downloading the .zip file, extract it and there you have it! Tale is now installed.
Please note: If your OS is not listed above, you will have to build the program your self by downloading the source code.
This program is dependant on Fluent Command Line Parser. To build the program, you need to use:
$ dotnet publish -r win-x64 -c Release
If you want to make it self-contained then add --self-contained true
at the end. Example:
$ dotnet publish -r win-x64 -c Release --self-contained true
Make sure to replace win-x64
with your OS.
Finally, Your build will be located in: Tale\bin\Release\net7.0\<yourOS>\publish
Once the build is complete, you can simply run your terminal in the build directory and type:
# Dreate Journal (--date is optional)
$ tale --create newJournal --date 01/01/2023
# View Journal
$ tale --view newJournal
# Edit Journal
$ tale --edit newJournal
Doing this will ask you to enter some details.
- Please write the part that you want to edit: (Example: Hello)
- You want to replace it with: (Example: Hi)
Please note that you need to enter a valid prompt that exists in the Journal.
# Delete Journal
$ tale --delete newJournal
# Show List
$ tale --list
# Show commands
$ tale --cmd
Contributing to Tale is simple. You have to fork the repository and clone it. Make your changes. After you are done, just push the changes to your fork and make a pull request.
We hope that you will be making some amazing changes!
Licensed under the MIT License.