Skip to content

Commit ac2fc1e

Browse files
committed
Updated to version version 1.8
1 parent 9219c73 commit ac2fc1e

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

src/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33

44
"name": "Regex Search",
5-
"version": "1.7",
5+
"version": "1.8",
66

77
"permissions": [
88
"tabs", "http://*/*"

src/pages/install.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
<title>Regex Search Updated</title>
55
</head>
66
<body>
7-
<h1>Regex Search 1.7</h1>
7+
<h1>Regex Search 1.8</h1>
88
<b>How to use:</b>
99
<ul>
1010
<li>Type in a regex query and click Next to search. Clicking Next again will go to the next match. Modifying the search query will clear the current search. Note that this extension will not work on the Chrome store, so do not test it on any Chrome store pages.</li>
1111
</ul>
1212
<b>Notes:</b>
1313
<ul>
14-
<li>You can open the extension by typing Alt+Shift+F. You can go to the next and previous search results by typing Alt+Shift+N and Alt+Shift+P, respectively. These shortcuts can be configured by going to the bottom of the extensions page and clicking "Keyboard Shortcuts"</li>
14+
<li>You can open the extension by typing Alt+Shift+F. You can go to the next and previous search results by hitting Enter and Shift+Enter, respectively. Esc clears results.</li>
1515
<li>You can set the default case sensitivity on the <a href="options.html">options page</a></li>
1616
<li>This extension uses the JavaScript regex engine. I create a regular expression using 'new RegExp(regexp, flags)', where flags are currently either 'g' or 'gi'.</li>
1717
<li>This extension is open source and the code can be found <a href="https://github.com/gsingh93/regex-search">here</a>. I'd appreciate any help, whether it's adding new features, fixing bugs, or making the extension look better (including this page).</li>

src/pages/update.html

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@
44
<title>Regex Search Updated</title>
55
</head>
66
<body>
7-
<h1>Regex Search 1.7</h1>
7+
<h1>Regex Search 1.8</h1>
88
<b>Updates:</b>
99
<ul>
10-
<li>Most of the code base has been converted to TypeScript with the help of <a href="https://github.com/ComFreek">ComFreek</a></li>
11-
<li>Fixed a bug where search doesn't work when changing to a different page.</li>
12-
<li>Added an <a href="options.html">options page</a> where you can set whether you want case sensitivity to be on or off by default.</li>
10+
<li>Fixed a bug the broke the search. See commit history for details.</li>
11+
<li>Some minor improvements by Nathan Freeman. See the commit history for details.</li>
1312
</ul>
1413
<b>Notes:</b>
1514
<ul>
16-
<li>You can open the extension by typing Alt+Shift+F. You can go to the next and previous search results by typing Alt+Shift+N and Alt+Shift+P, respectively. These shortcuts can be configured by going to the bottom of the extensions page and clicking "Keyboard Shortcuts"</li>
15+
<li>You can open the extension by typing Alt+Shift+F. You can go to the next and previous search results by hitting Enter and Shift+Enter, respectively. Esc clears results.</li>
1716
<li>This extension uses the JavaScript regex engine. I create a regular expression using 'new RegExp(regexp, flags)', where flags are currently either 'g' or 'gi'.</li>
1817
<li>This extension is open source and the code can be found <a href="https://github.com/gsingh93/regex-search">here</a>. I'd appreciate any help, whether it's adding new features, fixing bugs, or making the extension look better (including this update page).</li>
19-
<li>This update probably introduced a couple of bugs. If you find any, let me know <a href="https://github.com/gsingh93/regex-search/issues">here</a>.</li>
2018
<li>If you like this extension, please review it in the <a href="https://chrome.google.com/webstore/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl/reviews">Chrome store</a></li>
2119
</ul>
2220
<b>Upcoming Features:</b>

0 commit comments

Comments
 (0)