Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: Syqlorix/Syqlorix

1.2.9

24 Oct 15:29

Choose a tag to compare

What's Changed

Full Changelog: v1.2.8...1.2.9

v1.2.8

30 Sep 12:47

Choose a tag to compare

fixed minor issues.

v1.2.7

28 Sep 16:26

Choose a tag to compare

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

28 Jul 14:24

Choose a tag to compare

v1.0.5 Pre-release
Pre-release

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 serves static/index.html if it exists.
  • A request to /style.css now correctly serves static/style.css.
  • A request to /images/logo.png will serve static/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 method Error: Corrected a major indentation bug where request handlers (do_GET, do_POST, etc.) were defined outside the SyqlorixRequestHandler class.