Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## master

## 3.0.28 (2026-07-05)

- 依存ライブラリを更新
- 例示用のモジュール module_name を除外

## 3.0.27 (2026-03-09)

- 検索の表示順を、最短マッチ優先に変更
Expand Down
2 changes: 1 addition & 1 deletion js/crsearch/namespace.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class Namespace {
const indexes = rid.indexes
if (indexes.length === 0) {
found = this._createIndex(idx.cpp_version, rid, null, [])
if (found.name === '<header_name>') {
if (found.name === '<header_name>' || found.name === '<module_name>') {
// shit
continue
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "crsearch",
"version": "3.0.27",
"version": "3.0.28",
"description": "cpprefjp / boostjp searcher",
"main": "dist/js/crsearch.js",
"module": "js/crsearch.js",
Expand Down
Loading