Skip to content

Commit 9bfc9b7

Browse files
committed
chore: bump to v0.5.0 — roadmap fully drained
1 parent 955f6a1 commit 9bfc9b7

6 files changed

Lines changed: 7 additions & 11 deletions

File tree

CHANGELOG.md

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

33
All notable changes to ScriptHunt will be documented in this file.
44

5-
## [v0.4.2]
5+
## [v0.5.0]
66

77
### Security
88
- Added `safeUrl`/`safeHref`/`safeOpen` URL protocol allowlist — only `http:` and `https:` URLs are allowed in `href` attributes and `window.open()` calls; `javascript:`, `data:`, and `vbscript:` URLs from malicious source data are rejected.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ScriptHunt
22

3-
![Version](https://img.shields.io/badge/version-0.4.2-blue)
3+
![Version](https://img.shields.io/badge/version-0.5.0-blue)
44
![License](https://img.shields.io/badge/license-MIT-green)
55
![Platform](https://img.shields.io/badge/platform-Web-ff6600)
66
![JavaScript](https://img.shields.io/badge/JavaScript-ES2022-F7DF1E?logo=javascript&logoColor=black)

ROADMAP.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# Roadmap
22

3-
## P3
4-
5-
6-
7-
3+
No outstanding items. See CHANGELOG.md for delivered work and git history for details.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@
374374
</div>
375375
<p class="tagline">Unified search across every userscript source</p>
376376
<div class="header-meta">
377-
<span class="version">v0.4.2</span>
377+
<span class="version">v0.5.0</span>
378378
<button class="theme-toggle" id="themeToggle" title="Switch theme" aria-label="Switch color theme">Auto</button>
379379
</div>
380380
</header>
@@ -517,7 +517,7 @@ <h3>Search userscripts everywhere</h3>
517517

518518
<script>
519519
/* =============================================
520-
ScriptHunt v0.4.2 - Unified Userscript Search
520+
ScriptHunt v0.5.0 - Unified Userscript Search
521521
Security Scanner + Trust Scoring + Comparison
522522
============================================= */
523523

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scripthunt",
3-
"version": "0.4.2",
3+
"version": "0.5.0",
44
"private": true,
55
"scripts": {
66
"qa": "npm audit && npm test",

sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
var CACHE_NAME = 'scripthunt-v0.4.2';
1+
var CACHE_NAME = 'scripthunt-v0.5.0';
22
var SHELL_ASSETS = ['./', './index.html', './icon.png', './manifest.json'];
33

44
self.addEventListener('install', function(e) {

0 commit comments

Comments
 (0)