@networkpro/blog 1.2.5 → 1.2.7
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 +48 -0
- package/CHANGELOG.template.md +64 -0
- package/cspell.json +1 -0
- package/package.json +4 -4
- package/src/img/cryptomator-promo.png +0 -0
- package/src/img/cryptomator-promo.webp +0 -0
- package/src/posts/2025-05-29-heliboard.md +1 -1
- package/src/posts/2025-05-29-msauth.md +1 -1
- package/src/posts/2025-06-16-cryptomator.md +73 -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,48 @@
|
|
|
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.7] - 2025-06-16
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- Introduced `CHANGELOG.md` and `CHANGELOG.template.md` to begin structured
|
|
24
|
+
change tracking for the blog repository
|
|
25
|
+
- Added new post: _FOSS Spotlight: Cryptomator_ (`2025-06-16-cryptomator.md`)
|
|
26
|
+
- Included associated promotional images: `cryptomator-promo.png` and
|
|
27
|
+
`cryptomator-promo.webp`
|
|
28
|
+
- Added `check-codeql.yml` reusable workflow for static analysis
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Updated VS Code workspace settings (`.vscode/settings.json`) to disable
|
|
33
|
+
Markdown validation via `"markdown.validate.enabled": false,`
|
|
34
|
+
- Replaced inline `check-codeql` job in `build-and-deploy.yml` with call to new
|
|
35
|
+
reusable workflow
|
|
36
|
+
- Updated links in `sitemap.xml` to reflect current posts and site structure
|
|
37
|
+
|
|
38
|
+
### Removed
|
|
39
|
+
|
|
40
|
+
- Deleted unused stylesheets: `default.css`, `global.css`, `normalize.css`, and
|
|
41
|
+
`style.css`
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
<!-- Link references -->
|
|
46
|
+
|
|
47
|
+
[Unreleased]: https://github.com/netwk-pro/blog/compare/v1.2.7...HEAD
|
|
48
|
+
[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.7",
|
|
4
4
|
"description": "The official blog of Network Pro Strategies (Network Pro™).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"advisory",
|
|
@@ -49,16 +49,16 @@
|
|
|
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.
|
|
61
|
+
"postcss": "^8.5.6",
|
|
62
62
|
"prettier": "3.5.3",
|
|
63
63
|
"stylelint": "^16.20.0",
|
|
64
64
|
"stylelint-config-html": "^1.1.0",
|
|
Binary file
|
|
Binary file
|
|
@@ -59,7 +59,7 @@ might feature it next!
|
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
<figure class="poster-figure">
|
|
62
|
-
<img src="/img/heliboard-promo.png" alt="FOSS Spotlight: HeliBoard" style="width:
|
|
62
|
+
<img src="/img/heliboard-promo.png" alt="FOSS Spotlight: HeliBoard" style="width: 100%; height: 100%;">
|
|
63
63
|
<figcaption>FOSS Spotlight: HeliBoard – featured visual</figcaption>
|
|
64
64
|
</figure>
|
|
65
65
|
|
|
@@ -54,7 +54,7 @@ Check the link below for full details:
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
<figure class="poster-figure">
|
|
57
|
-
<img src="/img/msauth-promo.png" alt="Microsoft Authenticator Users: Major Change Incoming" style="width:
|
|
57
|
+
<img src="/img/msauth-promo.png" alt="Microsoft Authenticator Users: Major Change Incoming" style="width: 100%; height: 100%;">
|
|
58
58
|
<figcaption>Microsoft Authenticator Changes Incoming – featured visual</figcaption>
|
|
59
59
|
</figure>
|
|
60
60
|
|
|
@@ -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>
|
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
|
|