Skip to content

Commit

Permalink
Merge pull request #191 from ator-dev/keyword_lists-match_modes-fix
Browse files Browse the repository at this point in the history
Keyword lists match modes fix
  • Loading branch information
ator-dev authored Oct 10, 2024
2 parents c8ce2d6 + 3f79642 commit e556940
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest/chromium.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Mark My Search",
"description": "Highlight searched keywords. Find matches instantly.",
"version": "1.14.2",
"version": "1.14.3",

"icons": {
"16": "/icons/dist/mms-16.png",
Expand Down
2 changes: 1 addition & 1 deletion manifest/firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Mark My Search",
"description": "Highlight searched keywords. Find matches instantly.",
"version": "1.14.2",
"version": "1.14.3",

"browser_specific_settings": { "gecko": { "id": "[email protected]" } },

Expand Down
4 changes: 2 additions & 2 deletions src/pages/popup-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,9 +415,9 @@ const loadPopup = (() => {
{
className: "matching",
rows: [
getMatchModeInteractionInfo("whole", "Stemming"),
getMatchModeInteractionInfo("stem", "Whole Words"),
getMatchModeInteractionInfo("case", "Case Sensitive"),
getMatchModeInteractionInfo("whole", "Whole Words"),
getMatchModeInteractionInfo("stem", "Stemming"),
getMatchModeInteractionInfo("diacritics", "Diacritics Insensitive"),
getMatchModeInteractionInfo("regex", "Regular Expression"),
],
Expand Down

0 comments on commit e556940

Please sign in to comment.