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

Adding TokyoNight highlight themes (next branch) #2075

Closed
wants to merge 50 commits into from

Commits on Aug 22, 2022

  1. Next version

    Keats committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    bc776b5 View commit details
    Browse the repository at this point in the history
  2. Metainfo: Add 0.16.1

    Newbytee authored and Keats committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    991d7b0 View commit details
    Browse the repository at this point in the history
  3. Imporved is_colocated_asset_links (#1972)

    This PR includes the following:
    
    - Added a check for `../` which would check to see if a file is in a
      _sub_ directory
    - Wrote test for `is_colocated_asset_links`
    
    This PR is similare to PR #1969
    JoelMon committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    76453d2 View commit details
    Browse the repository at this point in the history
  4. Add completion subcommand (#1968)

    * Add completion subcommand
    
    * Remove old completion scripts
    
    * Move completion logic
    tranzystorekk committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    923e21f View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2022

  1. Add slugify.paths_keep_dates option. Update docs.

    Manual testing:
    
    Existing test_site/config.toml
    
    http://127.0.0.1:1111/posts/a-post-with-dates
    
    ====
    
    --- a/test_site/config.toml
    +++ b/test_site/config.toml
    @@ -18,6 +18,7 @@ extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
    
     [slugify]
     paths = "on"
    +paths_keep_dates = true
     taxonomies = "on"
     anchors = "on"
    
    http://127.0.0.1:1111/posts/2016-10-08-a-post-with-dates
    
    ====
    
    --- a/test_site/config.toml
    +++ b/test_site/config.toml
    @@ -17,7 +17,8 @@ highlight_theme = "custom_gruvbox"
     extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
    
     [slugify]
    -paths = "on"
    +paths = "off"
    +paths_keep_dates = true
     taxonomies = "on"
     anchors = "on"
    
    http://127.0.0.1:1111/posts/2016-10-08_a-post-with-dates
    
    ====
    
    --- a/test_site/config.toml
    +++ b/test_site/config.toml
    @@ -17,7 +17,8 @@ highlight_theme = "custom_gruvbox"
     extra_syntaxes_and_themes = ["syntaxes", "highlight_themes"]
    
     [slugify]
    -paths = "on"
    +paths = "safe"
    +paths_keep_dates = true
     taxonomies = "on"
     anchors = "on"
    
    http://127.0.0.1:1111/posts/2016-10-08_a-post-with-dates
    DerSaidin authored and Keats committed Aug 24, 2022
    Configuration menu
    Copy the full SHA
    d196d8a View commit details
    Browse the repository at this point in the history
  2. Get term fn (#1964)

    * Add new `get_taxonomy_term` global function
    
    * Update per @Keats feedback to make `page_count` available all the time.
    scouten committed Aug 24, 2022
    Configuration menu
    Copy the full SHA
    b01e99b View commit details
    Browse the repository at this point in the history
  3. Simplify taxonomy term struct

    Keats committed Aug 24, 2022
    Configuration menu
    Copy the full SHA
    3c8c204 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2022

  1. Add sorting by slug (#1926)

    bemyak committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    44ced17 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2022

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

Commits on Sep 19, 2022

  1. Add flag to override prompt for existing dir (#1986)

    * Add flag to override prompt for existing dir
    
    Added --force flag to build subcommand.
    
    * Remove unnecessary 'force' check
    
    * Remove prompt to overwrite directory on build cmd
    Yaroslav-95 committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    c50ef1f View commit details
    Browse the repository at this point in the history
  2. Update deps

    Keats committed Sep 19, 2022
    Configuration menu
    Copy the full SHA
    38ce5de View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2022

  1. Handle colocated links to assets

    Solves #1993
    Keats committed Sep 21, 2022
    Configuration menu
    Copy the full SHA
    19b3376 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Use BufWriter in imageproc (#1996)

    According to
    https://docs.rs/image/0.24.3/image/enum.DynamicImage.html#method.write_to,
    it assumes a buffered writer, so we should provide one.
    
    Signed-off-by: Ana Hobden <[email protected]>
    Hoverbear committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    fd0e25e View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2022

  1. add get_hash function (#1962)

    
    Co-authored-by: Newbyte <[email protected]>
    Co-authored-by: n-tux-tmp <[email protected]>
    Co-authored-by: n-tux-tmp <[email protected]>
    4 people committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    537b0b9 View commit details
    Browse the repository at this point in the history
  2. Update changelog

    Vincent Prouillet committed Oct 11, 2022
    Configuration menu
    Copy the full SHA
    a02436c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d5ed47f View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2022

  1. Fix test

    Vincent Prouillet committed Oct 17, 2022
    Configuration menu
    Copy the full SHA
    f0e34d5 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2022

  1. Fix current_url in taxonomy term (#2000)

    * Fix current_url in taxonomy term
    
    * add tests
    iEverX committed Oct 24, 2022
    Configuration menu
    Copy the full SHA
    5c52be6 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

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

Commits on Oct 27, 2022

  1. Fix no-port-append default

    Keats committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    ea3c51e View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2022

  1. Do not overfilter HTML when removing footnotes (#2008)

    If the summary contain HTML using <sup> like "the 1<sup>st</<sup>", it get
    filtered as the regexp that remove footnotes is not precise
    enough to remove just the footnotes.
    mscherer committed Oct 30, 2022
    Configuration menu
    Copy the full SHA
    e3bf9ac View commit details
    Browse the repository at this point in the history
  2. Search json index (#1998)

    * search: Add support for a JSON index
    
    * docs: Document JSON index for search
    
    * docs: Use lazy-loaded JSON index
    
    * Add elasticlunr prefix to search engine format configuration
    
    This will be useful if support for more search libraries are added in the future
    sgued committed Oct 30, 2022
    Configuration menu
    Copy the full SHA
    c889cab View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2022

  1. Filter more than 1 footnote in summary (#2017)

    If the summary contains more than 1 footnote, only the 1st is
    removed, and so dangling links exists for all the others.
    mscherer committed Nov 5, 2022
    Configuration menu
    Copy the full SHA
    da8433b View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. Cargo fmt (#2009)

    * Run cargo fmt
    
    * Add cargo fmt --check to pipeline
    sgued committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    697e715 View commit details
    Browse the repository at this point in the history
  2. Fix clippy::derive_partial_eq_without_eq

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    bddc9e5 View commit details
    Browse the repository at this point in the history
  3. Fix clippy::manual_retain

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    bc2e3ad View commit details
    Browse the repository at this point in the history
  4. Site: fix clippy warnings

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    8e06f6f View commit details
    Browse the repository at this point in the history
  5. templates: Fix clippy warning

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    cc9ca49 View commit details
    Browse the repository at this point in the history
  6. content: Fix clippy warnings

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    1c8c419 View commit details
    Browse the repository at this point in the history
  7. imageproc: Fix clippy warning

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    fb04a17 View commit details
    Browse the repository at this point in the history
  8. markdown: Fix clippy warnings

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    d62c2b2 View commit details
    Browse the repository at this point in the history
  9. Add clippy to CI

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    55ea114 View commit details
    Browse the repository at this point in the history
  10. Fix needless_borrow warnings

    sgued authored and Keats committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    ee4f53e View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2022

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

Commits on Nov 25, 2022

  1. Small update to the docs for get_url (#2033)

    Small update to the doc linked to the discussion on #2026.
    magikstm committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    1c2e221 View commit details
    Browse the repository at this point in the history
  2. Add details in the doc on CommonMark extension (#2034)

    * Add details in the doc on CommonMark extension
    
    * Update overview.md
    magikstm committed Nov 25, 2022
    Configuration menu
    Copy the full SHA
    2c7f621 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2023

  1. Expose markdown config property to templates (#2052)

    * Expose the markdown config property to templates
    
    * Document additional strategies for linking code-highlight stylesheets
    davidmreed committed Jan 2, 2023
    Configuration menu
    Copy the full SHA
    6d8cec4 View commit details
    Browse the repository at this point in the history
  2. Update some deps

    Keats committed Jan 2, 2023
    Configuration menu
    Copy the full SHA
    c800dca View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2023

  1. Replace libsass by grass

    Closes #1535
    Closes #2022
    Keats committed Jan 8, 2023
    Configuration menu
    Copy the full SHA
    a5834b8 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Fmt + change min version

    Keats committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    d1c1c6b View commit details
    Browse the repository at this point in the history
  2. Clippy + 1.63

    Keats committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    2f35c82 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2023

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

Commits on Jan 12, 2023

  1. Add upgrade guide for Sass

    Keats committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    979a84e View commit details
    Browse the repository at this point in the history
  2. Update changelog

    Keats committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    1268946 View commit details
    Browse the repository at this point in the history
  3. Update base64

    Keats committed Jan 12, 2023
    Configuration menu
    Copy the full SHA
    9dc6be9 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2023

  1. Configuration menu
    Copy the full SHA
    276a50f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d43cee7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79d322e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02e40a1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    11bbd18 View commit details
    Browse the repository at this point in the history