Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mellowcandle/bitwise
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.42
Choose a base ref
...
head repository: mellowcandle/bitwise
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 19 commits
  • 13 files changed
  • 7 contributors

Commits on Jul 22, 2021

  1. Configuration menu
    Copy the full SHA
    2b895eb View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. Configuration menu
    Copy the full SHA
    b13efe0 View commit details
    Browse the repository at this point in the history
  2. First Github action

    mellowcandle committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    4c03f17 View commit details
    Browse the repository at this point in the history
  3. Add OS-X pipeline

    mellowcandle committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    b83a075 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2021

  1. Fix -Werror=format-security errors with mvwprintw()

    Here a non-constant is used as a format string which
    compiler complains about. Fix by using "%s" as format.
    
    Signed-off-by: Khem Raj <[email protected]>
    kraj authored and mellowcandle committed Nov 1, 2021
    Configuration menu
    Copy the full SHA
    a72458c View commit details
    Browse the repository at this point in the history
  2. Bump up to v0.43

    mellowcandle committed Nov 1, 2021
    Configuration menu
    Copy the full SHA
    276140f View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2021

  1. Fix typos

    whonore authored and rfried-nrl committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    f8d5ade View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2022

  1. ipv4: treat 0xffffffff as a valid ipv4 address

    In print_conversions() all values >= 0xffffffff are treated as invalid
    ipv4 addresses. Since 255.255.255.255 is a valid ipv4 address change
    this to just filter out values > 0xffffffff.
    
    Signed-off-by: Danilo Krummrich <[email protected]>
    Danilo Krummrich authored and mellowcandle committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    c4f6b58 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2022

  1. Configuration menu
    Copy the full SHA
    1526928 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2022

  1. allow shortening of commands

    Instead of typing:
    output hex
    output decimal
    
    Allow to simply type:
    o hex
    o dec
    
    Also, fix a bug where commands could considered valid when they are
    only prefixed with the right word.
    
    For example:
    'clearGARBAGE' was a valid command.
    
    Signed-off-by: Pasha Tatashin <[email protected]>
    soleen authored and mellowcandle committed Oct 16, 2022
    Configuration menu
    Copy the full SHA
    e056dce View commit details
    Browse the repository at this point in the history
  2. Fix bit() function overflow

    It should 1ull << val, otherwise we get overflow when bit is over 32:
    
    Before the fix:
    $ ./bitwise "bit(33)"
    Unsigned decimal: 2
    Signed decimal: 2
    Hexadecimal: 0x2
    Octal: 02
    Human: 2
    Radix64: 0
    IPv4 (Network byte order - Big):  2.0.0.0
    IPv4 (Reversed byte order - Little):  0.0.0.2
    ASCII: ........
    Binary:
    0 0 0 0 0 0 1 0
         7 -  0
    
    After the fix:
    
    $ ./bitwise "bit(33)"
    Unsigned decimal: 8589934592
    Signed decimal: 8589934592
    Hexadecimal: 0x200000000
    Octal: 0100000000000
    Human: 8.00 GiB
    IPv4: Value too big to be a valid IPv4 address
    ASCII: ........
    Binary:
    0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 1 0 | 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0
        63 - 56           55 - 48           47 - 40           39 - 32           31 - 24           23 - 16           15 -  8            7 -  0
    
    Signed-off-by: Pasha Tatashin <[email protected]>
    soleen authored and mellowcandle committed Oct 16, 2022
    Configuration menu
    Copy the full SHA
    6b5dbbd View commit details
    Browse the repository at this point in the history

Commits on May 11, 2023

  1. feat: add command r to reverse endianness

    Signed-off-by: Tianrui Wei <[email protected]>
    tianrui-wei authored and mellowcandle committed May 11, 2023
    Configuration menu
    Copy the full SHA
    021ff39 View commit details
    Browse the repository at this point in the history

Commits on May 14, 2023

  1. Fix divide by zero crash

    Issue #61
    
    Signed-off-by: Ramon Fried <[email protected]>
    mellowcandle committed May 14, 2023
    Configuration menu
    Copy the full SHA
    5bb7d30 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

  1. interactive: Fix backwards key not working in some terminals

    Add support for the delete button and ASCII backwards code.
    mellowcandle committed May 15, 2023
    Configuration menu
    Copy the full SHA
    a349870 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e05fb0d View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2023

  1. Fix overflow akward implementation

    Issue #55
    mellowcandle committed Jul 18, 2023
    Configuration menu
    Copy the full SHA
    77f8f45 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2023

  1. Bump to release v0.50

    mellowcandle committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    42b2923 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2023

  1. Update README.md

    Remove coverity and Travis.ci
    mellowcandle authored Jul 21, 2023
    Configuration menu
    Copy the full SHA
    f51d488 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Fix binary prefix parsing

    xfgusta authored and mellowcandle committed Aug 16, 2023
    Configuration menu
    Copy the full SHA
    0a4e7d9 View commit details
    Browse the repository at this point in the history
Loading