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: yanyiwu/cppjieba
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.6.0
Choose a base ref
...
head repository: yanyiwu/cppjieba
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.6.1
Choose a head ref
  • 13 commits
  • 5 files changed
  • 5 contributors

Commits on Jul 11, 2025

  1. Update CMakeLists.txt

    Add cppjieba library deefinition
    sheldonrobinson authored Jul 11, 2025
    Configuration menu
    Copy the full SHA
    cd567f6 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2025

  1. Merge pull request #203 from sheldonrobinson/master

    Update CMakeLists.txt
    yanyiwu authored Jul 18, 2025
    Configuration menu
    Copy the full SHA
    a2e3497 View commit details
    Browse the repository at this point in the history
  2. Update cmake.yml

    yanyiwu authored Jul 18, 2025
    Configuration menu
    Copy the full SHA
    2efb6f7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e01fb22 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #204 from yanyiwu/yanyiwu-patch-2

    Update cmake.yml
    yanyiwu authored Jul 18, 2025
    Configuration menu
    Copy the full SHA
    2419064 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #205 from sheldonrobinson/master

    Add guard to cppjieba target
    yanyiwu authored Jul 18, 2025
    Configuration menu
    Copy the full SHA
    9b40903 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2025

  1. chore: fix limonp's path

    Freed-Wu committed Jul 23, 2025
    Configuration menu
    Copy the full SHA
    ba96f94 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6420af1 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2025

  1. Merge pull request #206 from Freed-Wu/limonp

    chore: fix limonp's path
    yanyiwu authored Jul 26, 2025
    Configuration menu
    Copy the full SHA
    99124b1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #207 from Freed-Wu/install

    chore: install headers and dicts
    yanyiwu authored Jul 26, 2025
    Configuration menu
    Copy the full SHA
    9408c1d View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2026

  1. Initial plan

    Copilot committed Mar 5, 2026
    Configuration menu
    Copy the full SHA
    41312ea View commit details
    Browse the repository at this point in the history
  2. Fix heap corruption for lines larger than 2114 bytes

    - Replace RuneStrArray (LocalVector<RuneStr>) with std::vector<RuneStr>
      since LocalVector explicitly warns it's only safe for primitive types,
      not structs like RuneStr
    - Change loop counter in DecodeUTF8RunesInString from uint32_t to
      size_t to prevent integer overflow for very long strings, with an
      explicit overflow check before truncating to uint32_t for RuneStr fields
    - Update UnicodeTest.Test1 expected string to match std::vector
      operator<< format
    - Add MixSegmentTest.LongInput regression test for strings > 2114 bytes
    
    Co-authored-by: yanyiwu <[email protected]>
    Copilot and yanyiwu committed Mar 5, 2026
    Configuration menu
    Copy the full SHA
    145c6f9 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2026

  1. Merge pull request #211 from yanyiwu/copilot/fix-corrupted-size-error

    Fix heap corruption for strings larger than 2114 bytes
    yanyiwu authored Mar 7, 2026
    Configuration menu
    Copy the full SHA
    a998b31 View commit details
    Browse the repository at this point in the history
Loading