Releases: Syqlorix/Syqlorix
Releases · Syqlorix/Syqlorix
1.2.9
v1.2.8
v1.2.7
What's New
- Error Handling: The development server is now much more detailed. Syntax errors or other exceptions in your code will display a detailed error overlay in your browser without crashing the server. Just fix the error, save, and the page will reload automatically.
Modernized Component Architecture
The component system has been streamlined for clarity and consistency. Components now use a dedicated create() method to define their structure, leading to cleaner and more predictable code. The demo files have been updated to reflect this new best practice.
v1.0.5
What's New
Static File Serving
You no longer need to navigate to /static/index.html! The server is now smart enough to handle static files intuitively:
- A request to
/now automatically servesstatic/index.htmlif it exists. - A request to
/style.cssnow correctly servesstatic/style.css. - A request to
/images/logo.pngwill servestatic/images/logo.png.
This means you can write standard, HTML with relative paths and Syqlorix will handle it.
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>Custom 404 Error Page
on-brand with the Syqlorix design.
Bug Fixes
- Fixed Critical
501 Unsupported methodError: Corrected a major indentation bug where request handlers (do_GET,do_POST, etc.) were defined outside theSyqlorixRequestHandlerclass.