@networkpro/web 1.12.4 → 1.12.5
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/CHANGELOG.md +25 -1
- package/README.md +9 -0
- package/cspell.json +2 -0
- package/package.json +3 -3
- package/src/app.html +1 -1
- package/src/lib/data/fossData.js +69 -2
- package/src/lib/images.js +4 -0
- package/src/lib/img/posts/squircle.png +0 -0
- package/src/lib/img/posts/squircle.webp +0 -0
- package/src/lib/pages/FossContent.svelte +1 -1
- package/static/sitemap.xml +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,29 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
22
22
|
|
|
23
23
|
---
|
|
24
24
|
|
|
25
|
+
## [1.12.5] - 2025-06-08
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- Added `squircle` section to `src/lib/data/fossData.js`.
|
|
30
|
+
- Added Squircle CE images to `src/lib/img/` and imported them via the image utility (`src/lib/images.js`).
|
|
31
|
+
|
|
32
|
+
### Changed
|
|
33
|
+
|
|
34
|
+
- Quoted `name` and `steps.name` fields in `auto-assign.yml` and `dependency-review.yml` to prevent potential YAML parsing issues.
|
|
35
|
+
- Replaced `GITHUB_TOKEN` with `NWPRO_GPR` in the `build-and-publish.yml` workflow.
|
|
36
|
+
- Upgraded `svelte` to `v5.33.18` and `@sveltejs/kit` to `v2.21.3`.
|
|
37
|
+
- Updated the `generator` meta tag in `app.html` to reflect the new `@sveltejs/kit` version.
|
|
38
|
+
- Updated "Last Updated" date in `FossContent.svelte` to reflect the Squircle CE post addition.
|
|
39
|
+
- Revised page modification dates in `sitemap.xml` for FOSS Spotlight, Privacy Policy, and Legal, Licensing, and Copyright.
|
|
40
|
+
|
|
41
|
+
### Removed
|
|
42
|
+
|
|
43
|
+
- Removed unused `GITHUB_TOKEN` permissions from `build-and-publish.yml`.
|
|
44
|
+
- Removed the unnecessary "Authenticate GitHub CLI" step from `build-and-publish.yml`.
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
25
48
|
## [1.12.4] - 2025-06-05
|
|
26
49
|
|
|
27
50
|
### Added
|
|
@@ -112,7 +135,8 @@ This project attempts to follow [Keep a Changelog](https://keepachangelog.com/en
|
|
|
112
135
|
|
|
113
136
|
<!-- Link references -->
|
|
114
137
|
|
|
115
|
-
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.12.
|
|
138
|
+
[Unreleased]: https://github.com/netwk-pro/netwk-pro.github.io/compare/v1.12.5...HEAD
|
|
139
|
+
[1.12.5]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.5
|
|
116
140
|
[1.12.4]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.4
|
|
117
141
|
[1.12.3]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.3
|
|
118
142
|
[1.12.1]: https://github.com/netwk-pro/netwk-pro.github.io/releases/tag/v1.12.1
|
package/README.md
CHANGED
|
@@ -32,6 +32,7 @@ All infrastructure and data flows are designed with **maximum transparency, self
|
|
|
32
32
|
|
|
33
33
|
### Table of Contents
|
|
34
34
|
|
|
35
|
+
- [Changelog](#changelog)
|
|
35
36
|
- [Repository Structure](#structure)
|
|
36
37
|
- [Getting Started](#getting-started)
|
|
37
38
|
- [Configuration](#configuration)
|
|
@@ -46,6 +47,14 @@ All infrastructure and data flows are designed with **maximum transparency, self
|
|
|
46
47
|
|
|
47
48
|
---
|
|
48
49
|
|
|
50
|
+
<section id="changelog">
|
|
51
|
+
|
|
52
|
+
## 📝 Changelog
|
|
53
|
+
|
|
54
|
+
For a history of changes to the Network Pro Web Presence, see the [CHANGELOG](https://github.com/netwk-pro/netwk-pro.github.io/blob/master/CHANGELOG.md).
|
|
55
|
+
|
|
56
|
+
</section>
|
|
57
|
+
|
|
49
58
|
<section id="structure">
|
|
50
59
|
|
|
51
60
|
## 📁 Repository Structure
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/web",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.12.
|
|
4
|
+
"version": "1.12.5",
|
|
5
5
|
"description": "Locking Down Networks, Unlocking Confidence™ | Security, Networking, Privacy — Network Pro Strategies",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"advisory",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"dompurify": "^3.2.6",
|
|
80
80
|
"posthog-js": "^1.249.4",
|
|
81
81
|
"semver": "^7.7.2",
|
|
82
|
-
"svelte": "5.33.
|
|
82
|
+
"svelte": "5.33.18"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
85
|
"@eslint/compat": "^1.2.9",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"@lhci/cli": "^0.14.0",
|
|
88
88
|
"@playwright/test": "^1.52.0",
|
|
89
89
|
"@sveltejs/adapter-netlify": "^5.0.2",
|
|
90
|
-
"@sveltejs/kit": "2.21.
|
|
90
|
+
"@sveltejs/kit": "2.21.3",
|
|
91
91
|
"@sveltejs/vite-plugin-svelte": "5.1.0",
|
|
92
92
|
"@testing-library/jest-dom": "^6.6.3",
|
|
93
93
|
"@testing-library/svelte": "^5.2.8",
|
package/src/app.html
CHANGED
package/src/lib/data/fossData.js
CHANGED
|
@@ -7,10 +7,77 @@ This file is part of Network Pro.
|
|
|
7
7
|
========================================================================== */
|
|
8
8
|
|
|
9
9
|
// Import FOSS images
|
|
10
|
-
import { acodePng, acodeWbp, eauthPng, eauthWbp, hboardPng, hboardWbp, lsheetPng, lsheetWbp, pmxPng, pmxWbp, tosPng, tosWbp, urlPng, urlWbp } from "$lib";
|
|
10
|
+
import { acodePng, acodeWbp, eauthPng, eauthWbp, hboardPng, hboardWbp, lsheetPng, lsheetWbp, pmxPng, pmxWbp, squirclePng, squircleWbp, tosPng, tosWbp, urlPng, urlWbp } from "$lib";
|
|
11
11
|
|
|
12
12
|
export const fossData = [
|
|
13
|
-
{
|
|
13
|
+
{
|
|
14
|
+
id: "squircle",
|
|
15
|
+
images: {
|
|
16
|
+
webp: squircleWbp,
|
|
17
|
+
png: squirclePng,
|
|
18
|
+
},
|
|
19
|
+
imgAlt: "Squircle CE",
|
|
20
|
+
title: "Squircle CE",
|
|
21
|
+
headline: "Squircle CE vs. QuickEdit - Which Text Editor Deserves Your Love?",
|
|
22
|
+
headlineDescription: `
|
|
23
|
+
<p>
|
|
24
|
+
Looking for a lightweight, open-source text editor that <em>actually</em> respects your privacy and still packs modern power? Meet <strong>Squircle CE</strong>!
|
|
25
|
+
</p>
|
|
26
|
+
<p>
|
|
27
|
+
🚀 <strong>Squircle CE</strong> is more than just a pretty interface—it's built on a clean Material 3 design, supports syntax highlighting for 50+ languages, and includes all the must-haves like code folding, session management, and Git integration.
|
|
28
|
+
</p>
|
|
29
|
+
<p>
|
|
30
|
+
🔥 <strong>How it stacks against QuickEdit:</strong><br />
|
|
31
|
+
While <strong>QuickEdit</strong> is known for its speed and decent performance, it comes with closed-source limitations and ads that can hinder user experience. Squircle CE, on the other hand, is <strong>100% open-source</strong>, <strong>ad-free</strong>, and lets YOU control the experience.
|
|
32
|
+
</p>
|
|
33
|
+
`,
|
|
34
|
+
features: [
|
|
35
|
+
{
|
|
36
|
+
emoji: "💬",
|
|
37
|
+
label: "Why developers are switching:",
|
|
38
|
+
isIntro: true
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
emoji: "✔️",
|
|
42
|
+
label: "No ads, no tracking",
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
emoji: "✔️",
|
|
46
|
+
label: "True dark mode",
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
emoji: "✔️",
|
|
50
|
+
label: "Lightning-fast code editing",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
emoji: "✔️",
|
|
54
|
+
label: "F-Droid support",
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
emoji: "✔️",
|
|
58
|
+
label: "Open contributions welcome!",
|
|
59
|
+
}
|
|
60
|
+
],
|
|
61
|
+
detailsDescription: `
|
|
62
|
+
<p>
|
|
63
|
+
Whether you're debugging scripts or tweaking configs on the go, Squircle CE has you covered without the bloat or barriers.
|
|
64
|
+
</p>
|
|
65
|
+
`,
|
|
66
|
+
links: [
|
|
67
|
+
{
|
|
68
|
+
label: "GitHub",
|
|
69
|
+
href: "https://github.com/massivemadness/Squircle-CE",
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
label: "F-Droid",
|
|
73
|
+
href: "https://f-droid.org/packages/com.blacksquircle.ui/",
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
notes: [
|
|
77
|
+
"Although Squircle CE is available on the Play Store, that version includes closed-source libraries and is therefore not considered fully open-source. For a completely free and open-source experience, we recommend downloading Squircle CE from either <strong>F-Droid</strong> or <strong>GitHub</strong>."
|
|
78
|
+
],
|
|
79
|
+
},
|
|
80
|
+
{
|
|
14
81
|
id: "heliboard",
|
|
15
82
|
images: {
|
|
16
83
|
webp: hboardWbp,
|
package/src/lib/images.js
CHANGED
|
@@ -47,6 +47,8 @@ import lsheetPng from "$lib/img/posts/linksheet.png";
|
|
|
47
47
|
import lsheetWbp from "$lib/img/posts/linksheet.webp";
|
|
48
48
|
import pmxPng from "$lib/img/posts/pmx.png";
|
|
49
49
|
import pmxWbp from "$lib/img/posts/pmx.webp";
|
|
50
|
+
import squirclePng from "$lib/img/posts/squircle.png";
|
|
51
|
+
import squircleWbp from "$lib/img/posts/squircle.webp";
|
|
50
52
|
import tosPng from "$lib/img/posts/tosdr.png";
|
|
51
53
|
import tosWbp from "$lib/img/posts/tosdr.webp";
|
|
52
54
|
import urlPng from "$lib/img/posts/urlcheck.png";
|
|
@@ -81,6 +83,8 @@ export {
|
|
|
81
83
|
pgpSupport,
|
|
82
84
|
pmxPng,
|
|
83
85
|
pmxWbp,
|
|
86
|
+
squirclePng,
|
|
87
|
+
squircleWbp,
|
|
84
88
|
tosPng,
|
|
85
89
|
tosWbp,
|
|
86
90
|
urlPng,
|
|
Binary file
|
|
Binary file
|
package/static/sitemap.xml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!-- Sitemap last updated on 2025-
|
|
2
|
+
<!-- Sitemap last updated on 2025-06-08 -->
|
|
3
3
|
|
|
4
4
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
5
5
|
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
<loc>https://netwk.pro/foss-spotlight</loc>
|
|
21
21
|
|
|
22
|
-
<lastmod>2025-
|
|
22
|
+
<lastmod>2025-06-08</lastmod>
|
|
23
23
|
|
|
24
24
|
<changefreq>weekly</changefreq>
|
|
25
25
|
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
<loc>https://netwk.pro/privacy</loc>
|
|
57
57
|
|
|
58
|
-
<lastmod>2025-
|
|
58
|
+
<lastmod>2025-06-02</lastmod>
|
|
59
59
|
|
|
60
60
|
<changefreq>monthly</changefreq>
|
|
61
61
|
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
|
|
68
68
|
<loc>https://netwk.pro/license</loc>
|
|
69
69
|
|
|
70
|
-
<lastmod>2025-
|
|
70
|
+
<lastmod>2025-06-04</lastmod>
|
|
71
71
|
|
|
72
72
|
<changefreq>monthly</changefreq>
|
|
73
73
|
|