@networkpro/blog 1.2.6 → 1.2.8
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 +67 -0
- package/CHANGELOG.template.md +64 -0
- package/cspell.json +1 -0
- package/package.json +6 -6
- package/src/img/cryptomator-promo.png +0 -0
- package/src/img/cryptomator-promo.webp +0 -0
- package/src/img/encryption-eff.png +0 -0
- package/src/img/encryption-eff.webp +0 -0
- package/src/posts/2025-06-16-cryptomator.md +73 -0
- package/src/posts/2025-06-23-encryption-eff.md +57 -0
- package/src/sitemap.xml +26 -2
- package/src/stylesheets/default.css +0 -475
- package/src/stylesheets/global.css +0 -11
- package/src/stylesheets/normalize.css +0 -369
- package/src/stylesheets/style.css +0 -315
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable MD024 -->
|
|
4
|
+
|
|
5
|
+
<!-- Use sections: Added, Changed, Deprecated, Removed, Fixed, Security -->
|
|
6
|
+
|
|
7
|
+
All notable changes to this project will be documented in this file.
|
|
8
|
+
|
|
9
|
+
This project attempts to follow
|
|
10
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), though versioning and
|
|
11
|
+
formatting may vary.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## [Unreleased]
|
|
16
|
+
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
## [1.2.8] - 2025-06-23
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- New blog post: `2025-06-23-encryption-eff.md` added to `/src/posts`.
|
|
24
|
+
- Included associated promotional images: `encryption-eff.png` and
|
|
25
|
+
`encryption-eff.webp`
|
|
26
|
+
- Introduced `.github/workflows/COMMIT_GUIDE.md` for reference when creating
|
|
27
|
+
commit messages
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Bumped version to `v1.2.8`.
|
|
32
|
+
- Upgraded `prettier` from `3.5.3` to `3.6.0`.
|
|
33
|
+
- Upgraded `stylelint` from `^16.20.0` to `^16.21.0`.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## [1.2.7] - 2025-06-16
|
|
38
|
+
|
|
39
|
+
### Added
|
|
40
|
+
|
|
41
|
+
- Introduced `CHANGELOG.md` and `CHANGELOG.template.md` to begin structured
|
|
42
|
+
change tracking for the blog repository
|
|
43
|
+
- Added new post: _FOSS Spotlight: Cryptomator_ (`2025-06-16-cryptomator.md`)
|
|
44
|
+
- Included associated promotional images: `cryptomator-promo.png` and
|
|
45
|
+
`cryptomator-promo.webp`
|
|
46
|
+
- Added `check-codeql.yml` reusable workflow for static analysis
|
|
47
|
+
|
|
48
|
+
### Changed
|
|
49
|
+
|
|
50
|
+
- Updated VS Code workspace settings (`.vscode/settings.json`) to disable
|
|
51
|
+
Markdown validation via `"markdown.validate.enabled": false,`
|
|
52
|
+
- Replaced inline `check-codeql` job in `build-and-deploy.yml` with call to new
|
|
53
|
+
reusable workflow
|
|
54
|
+
- Updated links in `sitemap.xml` to reflect current posts and site structure
|
|
55
|
+
|
|
56
|
+
### Removed
|
|
57
|
+
|
|
58
|
+
- Deleted unused stylesheets: `default.css`, `global.css`, `normalize.css`, and
|
|
59
|
+
`style.css`
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
<!-- Link references -->
|
|
64
|
+
|
|
65
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.2.8...HEAD
|
|
66
|
+
[1.2.8]: https://github.com/netwk-pro/blog/releases/tag/v1.2.8
|
|
67
|
+
[1.2.7]: https://github.com/netwk-pro/blog/releases/tag/v1.2.7
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
<!-- markdownlint-disable -->
|
|
4
|
+
|
|
5
|
+
All notable changes to this project will be documented in this file.
|
|
6
|
+
|
|
7
|
+
This project adheres to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
8
|
+
and uses [Semantic Versioning](https://semver.org/).
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## [Unreleased]
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- _(Describe new features or significant additions)_
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- _(Describe updates or breaking changes to existing behavior)_
|
|
21
|
+
|
|
22
|
+
### Deprecated
|
|
23
|
+
|
|
24
|
+
- _(Note anything slated for removal in the future)_
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
|
|
28
|
+
- _(List features, APIs, or code that has been removed)_
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- _(Detail bug fixes or patches)_
|
|
33
|
+
|
|
34
|
+
### Security
|
|
35
|
+
|
|
36
|
+
- _(Note any vulnerabilities addressed)_
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## [x.y.z] – YYYY-MM-DD
|
|
41
|
+
|
|
42
|
+
### Added
|
|
43
|
+
|
|
44
|
+
- ...
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
- ...
|
|
49
|
+
|
|
50
|
+
### Deprecated
|
|
51
|
+
|
|
52
|
+
- ...
|
|
53
|
+
|
|
54
|
+
### Removed
|
|
55
|
+
|
|
56
|
+
- ...
|
|
57
|
+
|
|
58
|
+
### Fixed
|
|
59
|
+
|
|
60
|
+
- ...
|
|
61
|
+
|
|
62
|
+
### Security
|
|
63
|
+
|
|
64
|
+
- ...
|
package/cspell.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@networkpro/blog",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -49,18 +49,18 @@
|
|
|
49
49
|
"upgrade": "npx npm-check-updates -u"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@eslint/js": "^9.
|
|
52
|
+
"@eslint/js": "^9.29.0",
|
|
53
53
|
"@eslint/json": "^0.12.0",
|
|
54
54
|
"autoprefixer": "^10.4.21",
|
|
55
55
|
"browserslist": "^4.25.0",
|
|
56
|
-
"eslint": "^9.
|
|
56
|
+
"eslint": "^9.29.0",
|
|
57
57
|
"eslint-config-prettier": "^10.1.5",
|
|
58
58
|
"globals": "^16.2.0",
|
|
59
59
|
"markdownlint": "^0.38.0",
|
|
60
60
|
"markdownlint-cli2": "^0.18.1",
|
|
61
|
-
"postcss": "^8.5.
|
|
62
|
-
"prettier": "3.
|
|
63
|
-
"stylelint": "^16.
|
|
61
|
+
"postcss": "^8.5.6",
|
|
62
|
+
"prettier": "3.6.0",
|
|
63
|
+
"stylelint": "^16.21.0",
|
|
64
64
|
"stylelint-config-html": "^1.1.0",
|
|
65
65
|
"stylelint-config-recommended": "^16.0.0",
|
|
66
66
|
"stylelint-order": "^7.0.0"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-06-16
|
|
4
|
+
title: 'FOSS Spotlight: Cryptomator'
|
|
5
|
+
summary: 'FOSS Spotlight: Cryptomator - Vault Up Your Cloud Privacy'
|
|
6
|
+
authors:
|
|
7
|
+
- team
|
|
8
|
+
categories:
|
|
9
|
+
- Open-Source
|
|
10
|
+
- Privacy
|
|
11
|
+
- Security
|
|
12
|
+
- Android
|
|
13
|
+
- Windows
|
|
14
|
+
- Linux
|
|
15
|
+
tags:
|
|
16
|
+
- foss-spotlight
|
|
17
|
+
- open-source
|
|
18
|
+
- privacy
|
|
19
|
+
- security
|
|
20
|
+
- android
|
|
21
|
+
- windows
|
|
22
|
+
- linux
|
|
23
|
+
- cryptomator
|
|
24
|
+
- encryption
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# 🔦 FOSS Spotlight: Cryptomator
|
|
28
|
+
|
|
29
|
+
## Vault Up Your Cloud Privacy
|
|
30
|
+
|
|
31
|
+
Tired of feeling like your cloud files are just floating out there, unprotected?
|
|
32
|
+
Say hello to **Cryptomator**—your personal vault for keeping sensitive data safe
|
|
33
|
+
in the cloud, _without giving up open-source freedom_.
|
|
34
|
+
|
|
35
|
+
🛡️ **Cryptomator** provides transparent client-side encryption for your cloud
|
|
36
|
+
storage. Whether you're using Google Drive, Dropbox, OneDrive or another
|
|
37
|
+
service, Cryptomator keeps your files **encrypted and private**—before they even
|
|
38
|
+
leave your device.
|
|
39
|
+
|
|
40
|
+
<!-- more -->
|
|
41
|
+
|
|
42
|
+
📋 Why Cryptomator stands out:
|
|
43
|
+
🔐 **Zero-knowledge encryption**—not even Cryptomator can access your data
|
|
44
|
+
🆓 **Completely free and open-source** (GPLv3)
|
|
45
|
+
💻 **Cross-platform** – Windows, macOS, Linux, iOS & Android
|
|
46
|
+
📂 **Folder-level encryption** integrated with your file system
|
|
47
|
+
💬 **No account needed**, no tracking, no ads
|
|
48
|
+
|
|
49
|
+
📈 Why privacy-conscious users are switching:
|
|
50
|
+
✅ **User-friendly interface**
|
|
51
|
+
✅ **End-to-end encryption** without needing to trust any cloud provider
|
|
52
|
+
✅ **Community-driven** with regular updates
|
|
53
|
+
✅ **Works with any cloud provider**
|
|
54
|
+
✅ **100% local key management**
|
|
55
|
+
|
|
56
|
+
Your cloud deserves more than blind trust. Cryptomator empowers you to _own your
|
|
57
|
+
data_ with ease and elegance.
|
|
58
|
+
|
|
59
|
+
🔗 Learn more and secure your files with Cryptomator:
|
|
60
|
+
Official Site: [cryptomator.org](https://cryptomator.org)
|
|
61
|
+
GitHub: [github.com/cryptomator/cryptomator](https://github.com/cryptomator/cryptomator)
|
|
62
|
+
|
|
63
|
+
> Your digital freedom matters. That’s why we share tools like Cryptomator each
|
|
64
|
+
> week in our FOSS Spotlight series.
|
|
65
|
+
> Keep exploring with us and take control of your tech future!
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
<figure class="poster-figure">
|
|
70
|
+
<source srcset="/img/cryptomator-promo.webp" type="image/webp" />
|
|
71
|
+
<img src="/img/cryptomator-promo.png" alt="FOSS Spotlight: Cryptomator" style="width: 60%; height: 60%;">
|
|
72
|
+
<figcaption>FOSS Spotlight: Cryptomator – featured visual</figcaption>
|
|
73
|
+
</figure>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
---
|
|
2
|
+
date:
|
|
3
|
+
created: 2025-06-23
|
|
4
|
+
title: 'Encryption is not a loophole'
|
|
5
|
+
summary:
|
|
6
|
+
Encryption is not a loophole. It's a lifeline. Act now to protect encryption!
|
|
7
|
+
authors:
|
|
8
|
+
- team
|
|
9
|
+
categories:
|
|
10
|
+
- Privacy
|
|
11
|
+
- Security
|
|
12
|
+
- Policy
|
|
13
|
+
tags:
|
|
14
|
+
- privacy
|
|
15
|
+
- security
|
|
16
|
+
- cybersecurity
|
|
17
|
+
- encryption
|
|
18
|
+
- eff
|
|
19
|
+
- policy
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
# 🔐 Encryption is not a loophole
|
|
23
|
+
|
|
24
|
+
## It’s a lifeline
|
|
25
|
+
|
|
26
|
+
Right now, Congress is considering legislation that could **effectively ban
|
|
27
|
+
encrypted apps** by forcing companies to build dangerous backdoors into private
|
|
28
|
+
communications.
|
|
29
|
+
|
|
30
|
+
These proposals threaten the security of journalists, whistleblowers, business
|
|
31
|
+
professionals, and everyday users who depend on end-to-end encryption to
|
|
32
|
+
communicate safely and confidentially. 💼🛡️
|
|
33
|
+
|
|
34
|
+
**EFF is sounding the alarm. And we all should be too.**
|
|
35
|
+
|
|
36
|
+
<!-- more -->
|
|
37
|
+
|
|
38
|
+
📣 This isn’t just a tech issue—it’s a fundamental human rights issue. Weakening
|
|
39
|
+
encryption undermines trust in our digital infrastructure, increases
|
|
40
|
+
vulnerability to cyber threats, and sets a dangerous precedent for global
|
|
41
|
+
privacy standards.
|
|
42
|
+
|
|
43
|
+
It’s time to act. Contact your representatives and demand they protect encrypted
|
|
44
|
+
communications and uphold digital rights.
|
|
45
|
+
|
|
46
|
+
👉 Take action now:
|
|
47
|
+
[act.eff.org/action/tell-congress-don-t-outlaw-encrypted-applications](https://act.eff.org/action/tell-congress-don-t-outlaw-encrypted-applications)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
<figure class="poster-figure">
|
|
52
|
+
<source srcset="/img/encryption-eff.webp" type="image/webp" />
|
|
53
|
+
<img src="/img/encryption-eff.png" alt="Encryption is not a loophole. It's a lifeline." style="width: 60%; height: 60%;">
|
|
54
|
+
<figcaption>Encryption is not a loophole – featured visual</figcaption>
|
|
55
|
+
</figure>
|
|
56
|
+
|
|
57
|
+
<!-- cspell:ignore backdoors whistleblowers -->
|
package/src/sitemap.xml
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<loc>https://blog.netwk.pro</loc>
|
|
9
9
|
|
|
10
|
-
<lastmod>2025-06-
|
|
10
|
+
<lastmod>2025-06-12</lastmod>
|
|
11
11
|
|
|
12
12
|
<changefreq>weekly</changefreq>
|
|
13
13
|
|
|
@@ -15,6 +15,30 @@
|
|
|
15
15
|
|
|
16
16
|
</url>
|
|
17
17
|
|
|
18
|
+
<url>
|
|
19
|
+
|
|
20
|
+
<loc>https://blog.netwk.pro/2025/06/12/whats-a-backdoor-in-encryption/</loc>
|
|
21
|
+
|
|
22
|
+
<lastmod>2025-06-12</lastmod>
|
|
23
|
+
|
|
24
|
+
<changefreq>monthly</changefreq>
|
|
25
|
+
|
|
26
|
+
<priority>0.8</priority>
|
|
27
|
+
|
|
28
|
+
</url>
|
|
29
|
+
|
|
30
|
+
<url>
|
|
31
|
+
|
|
32
|
+
<loc>https://blog.netwk.pro/2025/06/08/foss-spotlight---squircle-ce/</loc>
|
|
33
|
+
|
|
34
|
+
<lastmod>2025-06-12</lastmod>
|
|
35
|
+
|
|
36
|
+
<changefreq>monthly</changefreq>
|
|
37
|
+
|
|
38
|
+
<priority>0.8</priority>
|
|
39
|
+
|
|
40
|
+
</url>
|
|
41
|
+
|
|
18
42
|
<url>
|
|
19
43
|
|
|
20
44
|
<loc>https://blog.netwk.pro/2025/06/03/google-gemini-now-reads-your-emails-heres-why-you-should-switch/</loc>
|
|
@@ -47,7 +71,7 @@
|
|
|
47
71
|
|
|
48
72
|
<changefreq>monthly</changefreq>
|
|
49
73
|
|
|
50
|
-
<priority>0.
|
|
74
|
+
<priority>0.7</priority>
|
|
51
75
|
|
|
52
76
|
</url>
|
|
53
77
|
|