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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const markdown = createIssueReport(
);
```

The `AnalysisResult` schema is versioned separately from the package. Within `0.x`, documented exported types and behavior are treated as stable but may receive breaking changes in a minor release with changelog notice. Public findings include location, category, detector ID, placeholder, and enabled statenever the matched value.
The `AnalysisResult` schema is versioned separately from the package. Within `0.x`, documented exported types and behavior are treated as stable but may receive breaking changes in a minor release with changelog notice. Public findings include location, category, detector ID, placeholder, and enabled state; never the matched value.

## Architecture

Expand Down
6 changes: 3 additions & 3 deletions demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<link rel="icon" href="./issuesafe-mark.svg" type="image/svg+xml" />
<meta property="og:type" content="website" />
<meta property="og:site_name" content="IssueSafe" />
<meta property="og:title" content="IssueSafe Local-first log redaction" />
<meta property="og:title" content="IssueSafe: Local-first log redaction" />
<meta
property="og:description"
content="Review common sensitive patterns and export sanitized developer logs locally."
Expand All @@ -25,7 +25,7 @@
/>
<meta property="og:image:alt" content="IssueSafe local-first log redaction workspace" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="IssueSafe Local-first log redaction" />
<meta name="twitter:title" content="IssueSafe: Local-first log redaction" />
<meta
name="twitter:description"
content="Sanitize developer logs without uploading anything."
Expand All @@ -34,7 +34,7 @@
name="twitter:image"
content="https://aminhanifm.github.io/projects/IssueSafe/issuesafe-social.svg"
/>
<title>IssueSafe Sanitize developer logs locally</title>
<title>IssueSafe: Sanitize developer logs locally</title>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export default function App() {
</option>
{SAMPLE_SCENARIOS.map((sample) => (
<option key={sample.id} value={sample.id}>
{sample.name} {sample.description}
{sample.name}: {sample.description}
</option>
))}
</select>
Expand Down
2 changes: 1 addition & 1 deletion docs/demo-metadata.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Demo metadata

- Canonical URL: `https://aminhanifm.github.io/projects/IssueSafe/`
- Title: `IssueSafe Sanitize developer logs locally`
- Title: `IssueSafe: Sanitize developer logs locally`
- Description: `Sanitize developer logs and create shareable bug reports without uploading anything.`
- Theme color: `#0e1820`
- Social image: `/projects/IssueSafe/issuesafe-social.svg`
Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes-v0.1.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# IssueSafe v0.1.0 release notes draft
# IssueSafe v0.1.0 release notes draft

IssueSafe's first release introduces a local-first way to inspect developer logs before sharing them. The package ships one deterministic redaction engine used by both a Node.js CLI and a static browser review application.

Expand Down
Loading