8000 Tags · adityam/filter · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: adityam/filter

Tags

vim-2022-02-17

Toggle vim-2022-02-17's commit message
Fix #59

commit 661441f
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Feb 17 01:27:46 2022 -0500

    Bump version numbers

commit f5766f5
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Feb 17 01:25:24 2022 -0500

    Fix #59

    Typesetting two external files (in the vim module) which lie in different
    directories but have the same name resulted in a clash. It was not possible
    to use the same external file twice with different start-stop values.
    Repored on Github (#59). We now
    create an MD5 hash of the full filename, and all options which are passed to
    vim. So, if either the filename or any of these options change, a output
    filenames are different.

    commit 44795d0
    Author: Aditya Mahajan <adityam@umich.edu>
    Date:   Wed Feb 16 23:26:16 2022 -0500

        Use all options passed to vim to compute the hash

    commit ec413fc
    Author: Aditya Mahajan <adityam@umich.edu>
    Date:   Wed Feb 16 22:32:59 2022 -0500

        Add hash to output file name

        As reported in #59, if two files with the same name in different
        directory are processed, the name of the output filename is the same.
        This patch adds 8 character md5 hash of the full path to the output
        filename.

commit 00fda14
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Wed Feb 16 22:55:12 2022 -0500

    Fix test file

    Pandoc 2.17 parses numered lists as \startenumerate, which is not a
    default environment. Adapted the test file to define such an
    environment.

commit 5dd48f1
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Dec 13 11:04:56 2021 -0500

    Fix wrong catcodes

commit 29e252a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Nov 24 06:37:08 2021 -0500

    Bump nokogiri from 1.11.5 to 1.12.5 (#56)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.5 to 1.12.5.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.11.5...v1.12.5)

    ---
    updated-dependencies:
    - dependency-name: nokogiri
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 000b522
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Fri Oct 15 23:37:02 2021 -0400

    Fix #57

    Two files with the same name but different extensions got mapped to same
    basename. Added the extension to basename as well so that this clash
    does not happen.

    If the two files with the same name (and extension) are located in
    different directories, we will still get a name clash. We can fix this
    by using a md5 sum instead of filename, but that makes it harder for a
    casual user to understand what is happening.

commit 5b091c8
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sat Sep 11 22:17:07 2021 -0400

    change \catcode`\ to \catcode\name

    \cacode`\symbol no longer works.

commit cb7d03d
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Sep 6 18:06:40 2021 -0400

    Left -> Right

commit 07f86e5
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Sep 6 12:22:24 2021 -0400

    Clarify how `numberdistance` works.

    Closes #53

commit e8a769e
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sun Sep 5 22:27:19 2021 -0400

    Bugfile: splitoffname -> splitoffbase

    At some stage, the interface of the internal macro splitfilename
    changed. Adapting to the new interface.

commit 8e68c73
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sun Sep 5 02:21:32 2021 -0400

    Fixes #52

    I am really surprised that this bug went undetected for so long. There
    was a typo in t-vim: `PreProc` -> `Preproc` due to which Include did not
    get proper color.

    In addition, an assignment needed to be expanded to that colors are
    inherited properly

commit fd3565c
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Tue Aug 24 22:43:45 2021 -0400

    Add t-filter.mkxl to zip file

filter-2022-02-17

Toggle filter-2022-02-17's commit message
Fix #59

commit 661441f
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Feb 17 01:27:46 2022 -0500

    Bump version numbers

commit f5766f5
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Feb 17 01:25:24 2022 -0500

    Fix #59

    Typesetting two external files (in the vim module) which lie in different
    directories but have the same name resulted in a clash. It was not possible
    to use the same external file twice with different start-stop values.
    Repored on Github (#59). We now
    create an MD5 hash of the full filename, and all options which are passed to
    vim. So, if either the filename or any of these options change, a output
    filenames are different.

    commit 44795d0
    Author: Aditya Mahajan <adityam@umich.edu>
    Date:   Wed Feb 16 23:26:16 2022 -0500

        Use all options passed to vim to compute the hash

    commit ec413fc
    Author: Aditya Mahajan <adityam@umich.edu>
    Date:   Wed Feb 16 22:32:59 2022 -0500

        Add hash to output file name

        As reported in #59, if two files with the same name in different
        directory are processed, the name of the output filename is the same.
        This patch adds 8 character md5 hash of the full path to the output
        filename.

commit 00fda14
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Wed Feb 16 22:55:12 2022 -0500

    Fix test file

    Pandoc 2.17 parses numered lists as \startenumerate, which is not a
    default environment. Adapted the test file to define such an
    environment.

commit 5dd48f1
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Dec 13 11:04:56 2021 -0500

    Fix wrong catcodes

commit 29e252a
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Wed Nov 24 06:37:08 2021 -0500

    Bump nokogiri from 1.11.5 to 1.12.5 (#56)

    Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.11.5 to 1.12.5.
    - [Release notes](https://github.com/sparklemotion/nokogiri/releases)
    - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
    - [Commits](sparklemotion/nokogiri@v1.11.5...v1.12.5)

    ---
    updated-dependencies:
    - dependency-name: nokogiri
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 000b522
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Fri Oct 15 23:37:02 2021 -0400

    Fix #57

    Two files with the same name but different extensions got mapped to same
    basename. Added the extension to basename as well so that this clash
    does not happen.

    If the two files with the same name (and extension) are located in
    different directories, we will still get a name clash. We can fix this
    by using a md5 sum instead of filename, but that makes it harder for a
    casual user to understand what is happening.

commit 5b091c8
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sat Sep 11 22:17:07 2021 -0400

    change \catcode`\ to \catcode\name

    \cacode`\symbol no longer works.

commit cb7d03d
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Sep 6 18:06:40 2021 -0400

    Left -> Right

commit 07f86e5
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon Sep 6 12:22:24 2021 -0400

    Clarify how `numberdistance` works.

    Closes #53

commit e8a769e
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sun Sep 5 22:27:19 2021 -0400

    Bugfile: splitoffname -> splitoffbase

    At some stage, the interface of the internal macro splitfilename
    changed. Adapting to the new interface.

commit 8e68c73
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sun Sep 5 02:21:32 2021 -0400

    Fixes #52

    I am really surprised that this bug went undetected for so long. There
    was a typo in t-vim: `PreProc` -> `Preproc` due to which Include did not
    get proper color.

    In addition, an assignment needed to be expanded to that colors are
    inherited properly

commit fd3565c
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Tue Aug 24 22:43:45 2021 -0400

    Add t-filter.mkxl to zip file

vim-2021-12-13

Toggle vim-2021-12-13's commit message
Fix wrong catcodes

filter-2021-10-15

Toggle filter-2021-10-15's commit message
Fix #57

Two files with the same name but different extensions got mapped to same
basename. Added the extension to basename as well so that this clash
does not happen.

If the two files with the same name (and extension) are located in
different directories, we will still get a name clash. We can fix this
by using a md5 sum instead of filename, but that makes it harder for a
casual user to understand what is happening.

filter-2021-09-05

Toggle filter-2021-09-05's commit message
Squashed commit of the following:

commit e8a769e
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Sun Sep 5 22:27:19 2021 -0400

    Bugfile: splitoffname -> splitoffbase

    At some stage, the interface of the internal macro splitfilename
    changed. Adapting to the new interface.

vim-2021.09.05

Toggle vim-2021.09.05's commit message
Fixes #52

I am really surprised that this bug went undetected for so long. There
was a typo in t-vim: `PreProc` -> `Preproc` due to which Include did not
get proper color.

In addition, an assignment needed to be expanded to that colors are
inherited properly

filter-2021-08-24

Toggle filter-2021-08-24's commit message
Squashed commit of the following:

commit 052e1dd
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Tue Aug 24 22:29:46 2021 -0400

    jobs.file.run now uses a table interface

    Separated t-filter into MkIV and LMTX versions. For all practical
    purposes, the MKIV version is now frozen.

commit 36b4113
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Tue Aug 24 22:29:28 2021 -0400

    Fix typo

commit 6e3e7d9
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Fri Aug 13 23:47:58 2021 -0400

    Add runners for LMTX

commit 556e0bd
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Fri Aug 13 23:32:10 2021 -0400

    Fix to work with LMTX

commit bcce95c
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Jul 22 12:16:04 2021 -0400

    Fix Condition to Conditional

    Error reported by A. Licari on TeX.SE
    https://tex.stackexchange.com/questions/605625/context-t-vim-module-add-custom-keywords/605662

commit ba39472
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 13 14:09:03 2021 -0400

    Bump addressable from 2.7.0 to 2.8.0 (#47)

    Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.7.0 to 2.8.0.
    - [Release notes](https://github.com/sporkmonger/addressable/releases)
    - [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
    - [Commits](sporkmonger/addressable@addressable-2.7.0...addressable-2.8.0)

    ---
    updated-dependencies:
    - dependency-name: addressable
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

vim-2021.07.22

Toggle vim-2021.07.22's commit message
Squashed commit of the following:

commit bcce95c
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Thu Jul 22 12:16:04 2021 -0400

    Fix Condition to Conditional

    Error reported by A. Licari on TeX.SE
    https://tex.stackexchange.com/questions/605625/context-t-vim-module-add-custom-keywords/605662

commit ba39472
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Tue Jul 13 14:09:03 2021 -0400

    Bump addressable from 2.7.0 to 2.8.0 (#47)

    Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.7.0 to 2.8.0.
    - [Release notes](https://github.com/sporkmonger/addressable/releases)
    - [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
    - [Commits](sporkmonger/addressable@addressable-2.7.0...addressable-2.8.0)

    ---
    updated-dependencies:
    - dependency-name: addressable
      dependency-type: indirect
    ...

    Signed-off-by: dependabot[bot] <support@github.com>

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

vim-2021.05.31

Toggle vim-2021.05.31's commit message
Merge branch 'dev'

Combining following commits:

commit adc8888
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon May 31 22:41:27 2021 -0400

    \c!.. etc should be inside protected mode

commit 79e57c2
Author: Aditya Mahajan <adityam@umich.edu>
Date:   Mon May 31 22:39:59 2021 -0400

    Remove nothypenated option from align

      align={flushleft,nothyphenated}

    causes `--` to be treated as _en-dash_. Not really sure why this is
    happening, but the hypenation mechanism in LMTX has changed, so this
    part needs to be redone anyways.

vim-2021.05.24

Toggle vim-2021.05.24's commit message
New file for LMTX

0