@nurkamol/seo-audit 1.35.0 → 1.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +56 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -205,7 +205,62 @@ brew install --cask seo-audit
205
205
  ./mac/build.sh --run
206
206
  ```
207
207
 
208
- <p align="center"><img src="docs/shots/app.png" alt="The macOS app showing a report: 25 pages, 171 findings, 55 things to change" width="820"></p>
208
+ <p align="center"><img src="docs/shots/app.png" alt="The macOS app showing a real audit of astro.build: 60 pages, 232 findings, 37 things to change, scored 87 out of 100" width="820"></p>
209
+
210
+ <p align="center"><em>A real run against astro.build — and the one error at the top is a link to a page that does not exist, which is the bug this tool was written to catch.</em></p>
211
+
212
+ <p align="center"><img src="docs/shots/compare.png" alt="The compare sheet: docs.astro.build against astro.build, showing the 26 findings that appeared" width="820"></p>
213
+
214
+ <p align="center"><em>Compare two runs: a site against itself last week, or one property against another. Different hosts are matched by path.</em></p>
215
+
216
+ #### If you downloaded the zip instead: "SEO Audit is damaged and can't be opened"
217
+
218
+ It is not damaged. The app is **ad-hoc signed** rather than notarised, because
219
+ notarising needs a paid Apple Developer account this project does not have.
220
+ macOS puts a `com.apple.quarantine` flag on anything a browser downloads, and
221
+ for an app without a notarisation ticket Gatekeeper refuses it — with a message
222
+ that says "damaged" and offers to move it to the Trash, which reads exactly like
223
+ malware and is the single most confusing thing about installing this.
224
+
225
+ **`brew install --cask seo-audit` does not have this problem.** Homebrew checks
226
+ the download against a checksum written by the build that produced it, then
227
+ clears the flag for you. That is the recommended route, and the rest of this
228
+ section is for people who would rather not use Homebrew.
229
+
230
+ If you downloaded the zip by hand, verify it first. Every release attaches a
231
+ `SHA256SUMS.txt` covering all four downloads, and lists the same checksums in
232
+ its notes — save it next to the file and:
233
+
234
+ ```bash
235
+ shasum -a 256 --ignore-missing -c SHA256SUMS.txt
236
+ ```
237
+
238
+ `--ignore-missing` because you almost certainly downloaded one of the four, not
239
+ all of them. The same command verifies the `.deb`, the `.AppImage` and the
240
+ `setup.exe`, which matters most on Windows, where the advice for SmartScreen is
241
+ otherwise just "run it anyway".
242
+
243
+ Then, once it matches, clear the flag:
244
+
245
+ ```bash
246
+ xattr -dr com.apple.quarantine "/Applications/SEO Audit.app"
247
+ ```
248
+
249
+ No `sudo`: the app is yours, in a directory you can write to, and the command
250
+ works as you. If it ever answers `Operation not permitted`, the copy is owned by
251
+ another user — `sudo xattr -dr com.apple.quarantine "/Applications/SEO Audit.app"`
252
+ is the fallback, but reach for it second, not first.
253
+
254
+ This is exactly what right-click → **Open** does in the Finder, minus the
255
+ dialog. Do it because the checksum matched, not because a README said to — the
256
+ same command on a file you have not checked is how people get hurt.
257
+
258
+ Or avoid the question entirely and build it yourself, which produces a signature
259
+ your own machine already trusts:
260
+
261
+ ```bash
262
+ ./mac/build.sh --run
263
+ ```
209
264
 
210
265
  SwiftUI throughout, Liquid Glass, and the report drawn natively: cause cards
211
266
  that expand into the pages they affect, filtering, search, and export as PDF,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nurkamol/seo-audit",
3
- "version": "1.35.0",
3
+ "version": "1.36.0",
4
4
  "description": "Crawl a site's sitemap and check every page for SEO, metadata and structured-data problems that single-page graders miss. Zero dependencies.",
5
5
  "type": "module",
6
6
  "bin": {