Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.10.1 #1525

Merged
merged 33 commits into from
Sep 15, 2022
Merged

v2.10.1 #1525

merged 33 commits into from
Sep 15, 2022

Commits on Aug 29, 2022

  1. [dev] bump to v2.11dev

    anjakefala committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    41127ed View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. Configuration menu
    Copy the full SHA
    f54dfa9 View commit details
    Browse the repository at this point in the history
  2. [sidebar] tighter wordwrap

    saulpw committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    db4894a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    85a39dc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    98c62d6 View commit details
    Browse the repository at this point in the history
  5. [dev] run mkman

    anjakefala committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    0bd576a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fb8c89e View commit details
    Browse the repository at this point in the history
  7. [freq] cleanup imports

    saulpw committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    0274873 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

  1. Configuration menu
    Copy the full SHA
    062c4e2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    62ee13e View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

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

Commits on Sep 7, 2022

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

Commits on Sep 8, 2022

  1. Add open-cell (zo) to open file or url from path in current cell (#…

    …1514)
    
    * [pyobj] rename open-row/open-cell to open-row-pyobj/open-cell-pyobj
    
    * [open-cell] add 'zo' to open file or url from path in current cell
    
    Closes #1512
    
    * [tests] clean up load-zip.vd
    anjakefala committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    eff9833 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    226d428 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. [plugin usd] change to use apilayer

    The original currency conversion API data.fixer.io redirects already to apilayer.com and I couldn't find
    a way to create API keys for the former data.fixer.io API, so I updated the url and passing of parameters. Especially the api key is passed now as header instead as a url param what's certainly reasonable for security.
    
    apilayer blocks urllib requests as bot requests (for at least for the free account).  apilayers blocks urllib requests even with different user-agents.  So, the solution is to add more headers like described in
    https://stackoverflow.com/questions/13303449/urllib2-httperror-http-error-403-forbidden
    hanfried committed Sep 9, 2022
    Configuration menu
    Copy the full SHA
    fa89248 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    388035c View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2022

  1. [date-] fix date.__ge__ #1507

    saulpw committed Sep 10, 2022
    Configuration menu
    Copy the full SHA
    27bf0d8 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2022

  1. Document -d option

    (i don't know what I am doing, just following the instruction)
    abitrolly authored and anjakefala committed Sep 11, 2022
    Configuration menu
    Copy the full SHA
    f4fef3b View commit details
    Browse the repository at this point in the history
  2. [tests] move jetsam and flotsam to current folder

    Potentially tests/ will not exist in a context, better to save in
    current folder.
    
    Closes #1499
    anjakefala committed Sep 11, 2022
    Configuration menu
    Copy the full SHA
    bc0b26a View commit details
    Browse the repository at this point in the history
  3. Adds unguard-sheet command

    IMHO a guarding of a sheet should be reverseable,
    so added this simple command.
    
    Not sure if we should show a status,
    when guarded it's obviously we show,
    but I decided against showing a status,
    as unguarded is the normal behaviour and see no reason to differentiate
    in the status between never guarded or once guarded and then unguarded.
    hanfried authored and anjakefala committed Sep 11, 2022
    Configuration menu
    Copy the full SHA
    414f2dc View commit details
    Browse the repository at this point in the history
  4. Add Menu option for unguarding too

    There was a File > Guard menu item so far.
    Didn't want to add a 2nd File > Unguard item for a probably very seldom
    used functionality.
    
    So changed it to an on/off selection as
    File > Guard > on
                   off
    what I think is still convenient and very self explainary.
    hanfried authored and anjakefala committed Sep 11, 2022
    Configuration menu
    Copy the full SHA
    e9e32c1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1334dae View commit details
    Browse the repository at this point in the history
  6. Update menu.py

    saulpw authored and anjakefala committed Sep 11, 2022
    Configuration menu
    Copy the full SHA
    57d2d73 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. [api] add Extensible.before and Extensible.after

    Now you can do:
    
    @VisiData.before
    def run(vd, *args, **kwargs):
        ABC()
    
    to execute ABC() before the rest of vd.run().  Similarly @after will run
    after (but return the value from the original function).
    saulpw committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    97cb8c0 View commit details
    Browse the repository at this point in the history
  2. [repeat-] fix repeat- since 184d9e9

    Part of #1513
    anjakefala authored and saulpw committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    3029508 View commit details
    Browse the repository at this point in the history
  3. [macros-] fix macros-record since 184d9e9

    Part of #1513
    anjakefala authored and saulpw committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    2591b37 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4263c83 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. [dev] update CHANGELOG

    anjakefala committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    15e0a05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3fb84f0 View commit details
    Browse the repository at this point in the history
  3. [docs] update manpage

    anjakefala committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    9380b1e View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. Configuration menu
    Copy the full SHA
    0e43c19 View commit details
    Browse the repository at this point in the history
  2. [macros-] add new macro to macrosheet

    anjakefala authored and saulpw committed Sep 14, 2022
    Configuration menu
    Copy the full SHA
    3fbcad5 View commit details
    Browse the repository at this point in the history