Fix ICCV CCF rank detection and release 0.8.1.2 - #3
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR improves venue-rank resolution for ICCV by recognizing “Proceedings of the IEEE International Conference on Computer Vision …” style venue strings as ICCV (CCF A), adds a regression test for that citation form, and bumps extension/package versions to 0.8.1.2.
Changes:
- Add an ICCV alias match for the normalized venue substring “IEEE INTERNATIONAL CONFERENCE ON COMPUTER VISION”.
- Add a regression test for the full ICCV proceedings citation including page numbers.
- Bump version strings across manifest/package metadata and README badges to
0.8.1.2.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
js/ccf.js |
Adds an ICCV alias to recognize IEEE ICCV proceedings venue strings. |
test/venueRegression.test.js |
Adds a regression case for ICCV proceedings venue text with page numbers. |
README.md |
Updates the version badge to v0.8.1.2. |
README_en.md |
Updates the version badge to v0.8.1.2. |
package.json |
Bumps package version to 0.8.1.2. |
package-lock.json |
Bumps lockfile version fields to 0.8.1.2. |
manifest.json |
Bumps Chrome extension version to 0.8.1.2. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
69
to
72
| "IEEE CVF CONFERENCE ON COMPUTER VISION AND PATTERN RECOGNITION": "CVPR", | ||
| "IEEE CONFERENCE ON COMPUTER VISION AND PATTERN RECOGNITION": "CVPR", | ||
| "IEEE INTERNATIONAL CONFERENCE ON COMPUTER VISION": "ICCV", | ||
| "ACM INTERNATIONAL CONFERENCE ON MULTIMEDIA": "ACM MM", |
Comment on lines
+75
to
80
| [ | ||
| "ICCV proceedings with pages", | ||
| "Proceedings of the IEEE International Conference on Computer Vision, 4405-4413", | ||
| "A", | ||
| ], | ||
| ["ECCV full", "European Conference on Computer Vision", "B"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changed
Root cause
The normalized ICCV full name contains only two non-stop-word tokens, so the generic full-name matcher intentionally skipped fuzzy matching. The proceedings citation was therefore neither an exact full-name match nor a known alias.
Impact
Google Scholar results whose venue is shown as
Proceedings of the IEEE International Conference on Computer Vision, ...now receive the CCF A badge.Validation
npm testnpm run format:checknpm run check:release