Skip to content

Commit b8f22a1

Browse files
authored
Add files via upload
1 parent d5723a4 commit b8f22a1

File tree

9 files changed

+206
-0
lines changed

9 files changed

+206
-0
lines changed

version_notes/CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Changelog
2+
3+
# v1.3.2
4+
- Release Date: 2025-09-7
5+
- Highlights:
6+
- New `ctx.Param()` function for retrieving URL parameters.
7+
- New `ctx.ParamInt()` function for retrieving URL parameters as integers.
8+
- New `ctx.ParamIntDefault()` function for retrieving URL parameters as integers with a default value.
9+
- New `ctx.HTMLString()` function for rendering HTML from a string.
10+
- Contributors
11+
- [Coderianx](./contributors.md)
12+
- [View Full Notes](./v1.3.2.md)
13+
14+
# v1.3.1
15+
- Release Date: 2025-09-01
16+
- Highlights:
17+
- New `ctx.JSONPretty()` function for pretty-printing JSON responses.
18+
- New `ctx.JSONFile()` function for serving JSON files.
19+
- Contributors
20+
- [Coderianx](./contributors.md)
21+
- [View Full Notes](./v1.3.1.md)
22+
23+
24+
# v1.3
25+
- Release Date: 2025-08-25
26+
- Highlights:
27+
- Stdlib incompatibility resolved
28+
- Contributors
29+
- [Coderianx](./contributors.md)
30+
- [View Full Notes](./v1.3.md)
31+
32+
# v1.2
33+
- Release Date: 2025-08-19
34+
- Highlights:
35+
- HTTP 405 Method Not Allowed Error Handling.
36+
- User Agent Support.
37+
- Contributors
38+
- [Coderianx](./contributors.md)
39+
- [View Full Notes](./v1.2.md)
40+
41+
# v1.1
42+
- Release Date: 2025-08-12
43+
- Highlights:
44+
- New `Stringf()` function for string formatting.
45+
- Query Param Support.
46+
- Contributors
47+
- [Coderianx](./contributors.md)
48+
- [View Full Notes](./v1.1.md)
49+
50+
# v1.0
51+
- Release Date: 2025-08-03
52+
- Highlights:
53+
- Basic routing system
54+
- Simple HTTP server
55+
- Error handling and logging
56+
- Contributors
57+
- [Coderianx](./contributors.md)
58+
- [View Full Notes](./v1.0.md)

version_notes/all_version.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# All Versions
2+
3+
## v1.3.2
4+
- Release date : 2025-09-07 (September 7, 2025)
5+
6+
## v1.3.1
7+
- Release date : 2025-09-01 (September 1, 2025)
8+
9+
## v1.3
10+
- Release date : 2025-08-26 (August 25, 2025)
11+
12+
## v1.2
13+
- Release date : 2025-08-19 (August 19, 2025)
14+
15+
## v1.1
16+
- First Announcement: 2025-08-10 (August 9, 2025)
17+
- Release date : 2025-08-12 (August 12, 2025)
18+
19+
## v1.0
20+
- Release date : 2025-08-03 (August 3, 2025)
21+
- The first stable and official version of Flint Framework.
22+
23+
## BETA (Development period)
24+
- Release date : 2025/07/17 - 2025/08/02
25+
- This is the beta version of Flint Framework.
26+
- This process is a period of rapid development.

version_notes/contributors.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributors
2+
3+
## 1 - Coderian
4+
- **Role**: Creator, Developer, CEO
5+
- **Links:**
6+
### [![GitHub](https://img.shields.io/badge/GitHub-Account-black?logo=github)](https://github.com/coderianx)
7+
8+
### [![Telegram](https://img.shields.io/badge/Telegram-Account-blue?logo=telegram)](https://t.me/coderian)
9+
10+
### [![İnstagram](https://img.shields.io/badge/Instagram-Account-black?logo=instagram)](https://www.instagram.com/the_coderian/)
11+
12+
### [![X](https://img.shields.io/badge/X-Account-black?logo=twitter)](https://x.com/the_coderian)
13+
14+
- **Active:** 2025-08-02 – Present
15+
- **Versions:** v1.0 – Present

version_notes/v1.0.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# v1.0 Release Notes
2+
3+
## Features
4+
5+
- Initial release of the Flint Framework.
6+
7+
- Basic routing system. implemented.
8+
9+
- Simple HTTP server infrastructure set up.
10+
11+
- Basic Error handling and logging mechanisms established.
12+
13+
## Fixes
14+
15+
- No knows bugs in this logging mechanism established.
16+
17+
## Notes
18+
19+
- This release contains only core features.
20+
21+
- Future versions will include template engine, database abstraction, and more.
22+
23+

version_notes/v1.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# v1.1 Realease Notes
2+
3+
## Features
4+
5+
- Static File function updated.
6+
7+
- Query param support has been introduced.
8+
9+
- Added `Stringf()` function to return answers with variables.
10+
11+
- A minor change was made to the Default 404 Error Page.
12+
13+
## Fixes
14+
15+
- Fixed file write creation bug in `FakeData()` function
16+
17+
## Notes
18+
19+
- This version includes improvements to the static file serving mechanism and query parameter handling.
20+
21+
- Future versions will focus on enhancing the framework's capabilities and performance.

version_notes/v1.2.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# v1.2 Realease Notes
2+
3+
## Features
4+
5+
- New HTTP 405 Support.
6+
7+
- HTTP PUT method support.
8+
9+
- New Functions:
10+
- `Default405()`: Returns a default 405 error page.
11+
- `Template405()`: Returns a custom 405 error page.
12+
- `Put()` support.
13+
14+
- `UserAgent()` support
15+
16+
## Fixes
17+
18+
19+
## Notes

version_notes/v1.3.1.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# v1.3.1 Release Notes
2+
3+
## Features
4+
5+
- new `ctx.JSONPretty()` function for pretty-printing JSON responses.
6+
7+
- new `ctx.JSONFile()` function for serving JSON files.
8+
9+
## Fixes
10+
11+
- No error found
12+
13+
## Notes
14+
15+
- With this version you can now provide more advanced JSON responses.

version_notes/v1.3.2.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# v1.3.2 Release Notes
2+
3+
## Features
4+
5+
- new `ctx.Param()` function for retrieving URL parameters.
6+
- new `ctx.ParamInt()` function for retrieving URL parameters as integers.
7+
- new `ctx.ParamIntDefault()` function for retrieving URL parameters as integers with a default value.
8+
- new `ctx.HTMLString()` function for rendering HTML from a string.
9+
- new `ctx.XML()` & `ctx.XMLPretty()` & `ctx.XMLFile()` functions for serving XML responses.
10+
11+
## Bug Fixes
12+
- No bug fixes in this release.

version_notes/v1.3.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# v1.3.0 Release Notes
2+
3+
## Features
4+
5+
- new `Get` function.
6+
- new `Post` function.
7+
- new `Put` function.
8+
- new `Delete` function.
9+
10+
## Bug Fixes
11+
12+
- Flint stdlib incompatibility resolved.
13+
14+
## Notes
15+
16+
- You can now use third-party libraries in a stdlib-compatible manner.
17+
- This release focuses on enhancing HTTP method support and resolving compatibility issues with the standard library.

0 commit comments

Comments
 (0)