Skip to content

Commit 7238d40

Browse files
committed
Documentation: Add links to July 2025 blog posts
1 parent 9c89b2f commit 7238d40

File tree

12 files changed

+30
-97
lines changed

12 files changed

+30
-97
lines changed

Documentation/Doxygen/Doxyfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ HTML_EXTRA_FILES = ../../_Build/_Packages/doxygen-awesome-css_$(PACKAGES_P
109109
../../_Build/_Packages/doxygen-awesome-css_$(PACKAGES_PLATFORM)/doxygen-custom/toggle-alternative-theme.js \
110110
../../_Build/_Packages/doxygen-awesome-css_$(PACKAGES_PLATFORM)/doxygen-awesome-interactive-toc.js \
111111
../../_Build/_Packages/doxygen-awesome-css_$(PACKAGES_PLATFORM)/doxygen-awesome-tabs.js\
112-
../../Documentation/Pages/Dependencies.svg\
113112
favicon.png
114113
GENERATE_TREEVIEW = YES
115114
GENERATE_LATEX = NO

Documentation/Libraries/Async.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Some relevant blog posts are:
7474
- [April 2025 Update](https://pagghiu.github.io/site/blog/2025-04-30-SaneCppLibrariesUpdate.html)
7575
- [May 2025 Update](https://pagghiu.github.io/site/blog/2025-05-31-SaneCppLibrariesUpdate.html)
7676
- [June 2025 Update](https://pagghiu.github.io/site/blog/2025-06-30-SaneCppLibrariesUpdate.html)
77+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
7778

7879
# Description
7980
@copydetails SC::AsyncRequest

Documentation/Libraries/File.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ File library allows synchronous I/O operations on files and pipes.
3333
This library has a relatively limited scope and it should not need many additional features compared to now.
3434
Will consider bumping to Complete in the future.
3535

36+
# Blog
37+
38+
Some relevant blog posts are:
39+
40+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
41+
3642
# Description
3743
SC::FileDescriptor object can be created by SC::FileDescriptor::open-ing a path on file system and it can be SC::FileDescriptor::read or SC::FileDescriptor::write.
3844
Also non-blocking mode can be controlled with SC::FileDescriptor::setBlocking.

Documentation/Libraries/FileSystem.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ FileSystem executed executing operations on files and directories.
5858
The library contains commonly used function but it's missing some notable ones like `stat`.
5959
SC::FileSystem::getFileTime and SC::FileSystem::setLastModifiedTime will probably be refactored in a future dedicated class for handling `stat` based operations.
6060

61+
# Blog
62+
63+
Some relevant blog posts are:
64+
65+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
66+
6167
# Description
6268

6369
SC::FileSystem allows all typical file operations ( exists | copy | delete | make files or directory).

Documentation/Libraries/FileSystemIterator.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ The library is simple but gets the job done.
3030
Some relevant blog posts are:
3131

3232
- [June 2025 Update](https://pagghiu.github.io/site/blog/2025-06-30-SaneCppLibrariesUpdate.html)
33+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
3334

3435
# Description
3536
@copydetails SC::FileSystemIterator

Documentation/Libraries/FileSystemWatcher.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Library does have basic capabilities and it can be used just fine.
2727
Some relevant blog posts are:
2828

2929
- [June 2025 Update](https://pagghiu.github.io/site/blog/2025-06-30-SaneCppLibrariesUpdate.html)
30+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
3031

3132
# Description
3233

Documentation/Libraries/FileSystemWatcherAsync.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ SC::FileSystemWatcherAsync is an implementation of SC::FileSystemWatcher that us
2121
🟩 Usable
2222
Library does have basic capabilities and it can be used just fine.
2323

24+
# Blog
25+
26+
Some relevant blog posts are:
27+
28+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
29+
2430
# Roadmap
2531

2632
🟦 Complete Features:

Documentation/Libraries/Foundation.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ Some relevant blog posts are:
6868

6969
- [January 2025 Update](https://pagghiu.github.io/site/blog/2025-01-31-SaneCppLibrariesUpdate.html)
7070
- [June 2025 Update](https://pagghiu.github.io/site/blog/2025-06-30-SaneCppLibrariesUpdate.html)
71+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
7172

7273
# Roadmap
7374

Documentation/Libraries/Process.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Some relevant blog posts are:
4747
- [March 2024 Update](https://pagghiu.github.io/site/blog/2024-03-27-SaneCppLibrariesUpdate.html)
4848
- [April 2024 Update](https://pagghiu.github.io/site/blog/2024-04-27-SaneCppLibrariesUpdate.html)
4949
- [April 2025 Update](https://pagghiu.github.io/site/blog/2025-04-30-SaneCppLibrariesUpdate.html)
50+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
5051

5152
## Process
5253
@copydoc SC::Process

Documentation/Libraries/Socket.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Simple synchronous TCP client / server workflow is supported, but it would need
3434
Some relevant blog posts are:
3535

3636
- [June 2025 Update](https://pagghiu.github.io/site/blog/2025-06-30-SaneCppLibrariesUpdate.html)
37+
- [July 2025 Update](https://pagghiu.github.io/site/blog/2025-07-31-SaneCppLibrariesUpdate.html)
3738

3839
# Description
3940
- SC::SocketDescriptor can create and destroy the OS level socket descriptor.

0 commit comments

Comments
 (0)