• 1.1.1 3b5c5550b3

    1.1.1 Release Stable

    mindaslab released this 2024-04-10 02:59:38 +00:00 | 19 commits to master since this release

    Kanipaan 1.1.1 Release

    Usage

    Download kanipaan-1.1.0-standalone.jar then in the terminal type:

    $ java -jar kanipaan-1.1.1-standalone.jar
    

    To start Kanipaan

    Start doing math:

    kani >  40 + 2
    42
    kani >  2,000 * 3
    6000
    

    To exit press ENTER.

    Refer changelog for changes.

    Thanks to

    Juan Monetta for teaching me about jline

    User friendly installation on GNU/Linux / Mac

    Have Java installed, then in terminal:

    $ cd ~
    $ wget https://codeberg.org/kanipaan/kanipaan/releases/download/1.1.1/kanipaan-1.1.1-standalone.jar
    

    This will download the jar file in your home directory.

    Now let's create a hidden directory named .kanipaan:

    $ mkdir ~/.kanipaan
    

    Let's move this 🫙 to the hidden directory

    mv kanipaan-1.1.1-standalone.jar ~/.kanipaan
    

    Let's add an alias in .bashrc or .zshrc for it to be used in a easy way:

    Open either .bashrc or .zshrc, add this line:

    alias kani='java -jar ~/.kanipaan/kanipaan-1.1.1-standalone.jar'
    

    Let's let's load .bashrc or .zshrc in terminal:

    $ source ~/.bashrc
    

    or

    $ source ~/.zshrc
    

    Enjoy 🥳

    $ kani
    
    Downloads