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.
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/app/main.ts +1 -1
- package/app/package.json +1 -1
- package/package.json +1 -1
- package/src/index.html +1 -1
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fontastic",
|
|
3
|
-
"version": "1.3.
|
|
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