Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Version Numbering #18

Copy link
Copy link

Description

@sfranzyshen
Issue body actions

Version Numbering:

It would be useful to have a version number to verify what version of the engine is active.
perhaps adding #define MQUICKJS_VERSION "#.#.#" to the top of the mquickjs.h file ...

---
#ifndef MQUICKJS_H
#define MQUICKJS_H

#define MQUICKJS_VERSION "0.1.0"

#include <inttypes.h>
---

or perhaps even expand it to include "MAJOR.MINOR.PATCH" separated as defined in https://semver.org/

---
#ifndef MQUICKJS_H
#define MQUICKJS_H

#define MQUICKJS_VERSION_MAJOR "0"
#define MQUICKJS_VERSION_MINOR "1"
#define MQUICKJS_VERSION_PATCH "0"
#define MQUICKJS_VERSION MQUICKJS_VERSION_MAJOR "." MQUICKJS_VERSION_MINOR "." MQUICKJS_VERSION_PATCH

#include <inttypes.h>
---

Reactions are currently unavailable

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.