fontastic 1.3.0 → 1.3.2

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "1.3.0"
2
+ ".": "1.3.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.2](https://github.com/tomshaw/fontastic/compare/fontastic-v1.3.1...fontastic-v1.3.2) (2026-03-17)
4
+
5
+
6
+ ### 🛠️ Fixes
7
+
8
+ * update Content Security Policy to allow inline styles ([d95f7b5](https://github.com/tomshaw/fontastic/commit/d95f7b50f6cf0265052ad5964915ee42367d2c70))
9
+
10
+ ## [1.3.1](https://github.com/tomshaw/fontastic/compare/fontastic-v1.3.0...fontastic-v1.3.1) (2026-03-17)
11
+
12
+
13
+ ### 🛠️ Fixes
14
+
15
+ * update base href in index.html for correct path resolution ([2c30779](https://github.com/tomshaw/fontastic/commit/2c307790d64947fbbbf0f3ec057c4994e28ddf13))
16
+
3
17
  ## [1.3.0](https://github.com/tomshaw/fontastic/compare/fontastic-v1.2.0...fontastic-v1.3.0) (2026-03-15)
4
18
 
5
19
 
package/app/main.ts CHANGED
@@ -164,7 +164,7 @@ try {
164
164
  responseHeaders: {
165
165
  ...details.responseHeaders,
166
166
  'Content-Security-Policy': [
167
- "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self' font:; img-src 'self' data: https:;",
167
+ "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; font-src 'self' font:; img-src 'self' data: https:;",
168
168
  ],
169
169
  },
170
170
  });
package/app/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "name": "Tom Shaw",
6
6
  "email": ""
7
7
  },
8
- "version": "1.3.0",
8
+ "version": "1.3.2",
9
9
  "main": "main.js",
10
10
  "private": true,
11
11
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fontastic",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Fontastic is an Electron-based font management and cataloging application built for organizing, browsing, and inspecting font libraries.",
5
5
  "homepage": "https://github.com/tomshaw/fontastic",
6
6
  "private": false,
package/src/index.html CHANGED
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="utf-8" />
5
5
  <title>Fontastic</title>
6
- <base href="/" />
6
+ <base href="./" />
7
7
 
8
8
  <meta name="viewport" content="width=device-width, initial-scale=1" />
9
9
  <link rel="icon" type="image/x-icon" href="assets/icons/favicon.ico" />