-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
113 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
## v0.2.1 | ||
|
||
- prevent borrow panics in VM during batch operations | ||
- fix Maximize batch mode | ||
- fix panic in parsing invalid numbers | ||
|
||
## v0.2.0 | ||
<!-- insertion marker --> | ||
## [v0.2.1] | ||
|
||
- prevent borrow panics in VM during batch operations | ||
- fix Maximize batch mode | ||
- fix panic in parsing invalid numbers | ||
|
||
## [v0.2.0] | ||
|
||
### Share VM State! | ||
|
||
New in this release is the ability to share the entire VM with you share a link. This means code; connected devices and their state; as well as the state of the stack, registers, and line number of the active IC! | ||
|
||
Additionally you can now save and load any number of sessions in your browser. Access this functionality from the main menu. | ||
|
||
Also! the project has officially moved to https://ic10emu.dev . Old share links *should* redirect, but if not simply copy the fragment (the part of the url starting with the `#` symbol) | ||
Also! the project has officially moved to https://ic10emu.dev . Old share links _should_ redirect, but if not simply copy the fragment (the part of the url starting with the `#` symbol) | ||
|
||
#### List of changes | ||
|
||
- Move build system from Webpack to [Rsbuild](https://rsbuild.dev/) (way faster build times). | ||
- VM now supports exporting and restoring a frozen state. | ||
- Share links updates to use frozen vm state. | ||
- Save and load sessions from the browser's IndexedDB storage. | ||
- project now includes tailwindcss to make frontend dev easier. | ||
- Changelog dialog to notify users of updates. | ||
- Move build system from Webpack to [Rsbuild](https://rsbuild.dev/) (way faster build times). | ||
- VM now supports exporting and restoring a frozen state. | ||
- Share links updates to use frozen vm state. | ||
- Save and load sessions from the browser's IndexedDB storage. | ||
- project now includes tailwindcss to make frontend dev easier. | ||
- Changelog dialog to notify users of updates. | ||
|
||
## v0.1.0 | ||
## [v0.1.0] | ||
|
||
### **Initial Release**: | ||
|
||
IC10emu is released to the public! edit and share your IC10 scripts! | ||
|
||
- view and edit stack and registers | ||
- view and edit stack and registers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{#- macro: render_commit -#} | ||
{%- macro render_commit(commit) -%} | ||
- {{ commit.convention.subject|default(commit.subject) }} ([{{ commit.hash|truncate(7, True, '') }}]({{ commit.url }}) by {{ commit.author_name }}). | ||
{%- if commit.text_refs.issues_not_in_subject %} Related issues/PRs: {% for issue in commit.text_refs.issues_not_in_subject -%} | ||
{% if issue.url %}[{{ issue.ref }}]({{ issue.url }}){% else %}{{ issue.ref }}{% endif %}{% if not loop.last %}, {% endif -%} | ||
{%- endfor -%}{%- endif -%} | ||
{%- for trailer_name, trailer_value in commit.trailers.items() -%} | ||
{%- if trailer_value|is_url %} [{{ trailer_name }}]({{ trailer_value }}) | ||
{%- else %} {{ trailer_name }}: {{ trailer_value }}{% endif %} | ||
{%- if not loop.last %},{% endif %} | ||
{%- endfor -%} | ||
{%- endmacro -%} | ||
|
||
{#- macro: render_section -#} | ||
{%- macro render_section(section) -%} | ||
### {{ section.type or "Misc" }} | ||
|
||
{% for commit in section.commits|sort(attribute='author_date',reverse=true)|unique(attribute='subject') -%} | ||
{{ render_commit(commit) }} | ||
{% endfor %} | ||
{%- endmacro -%} | ||
|
||
{#- macro: render_version -#} | ||
{%- macro render_version(version) -%} | ||
{%- if version.tag or version.planned_tag -%} | ||
## [{{ version.tag or version.planned_tag }}]{% if version.date %} - {{ version.date }}{% endif %} | ||
|
||
<small>[Compare with {{ version.previous_version.tag|default("first commit") }}]({{ version.compare_url }})</small> | ||
{%- else -%} | ||
## Unreleased | ||
|
||
<small>[Compare with latest]({{ version.compare_url }})</small> | ||
{%- endif %} | ||
{% for type in changelog.sections %} | ||
{%- if type in version.sections_dict %} | ||
{%- with section = version.sections_dict[type] %} | ||
{{ render_section(section) }} | ||
{%- endwith %} | ||
{%- endif %} | ||
{%- endfor %} | ||
{%- if not (version.tag or version.planned_tag) %} | ||
<!-- insertion marker -->{% endif %} | ||
{% endmacro -%} | ||
|
||
{#- template -#} | ||
{%- if not in_place -%} | ||
# Changelog | ||
|
||
{% endif %}<!-- insertion marker --> | ||
{% for version in changelog.versions_list -%} | ||
{{ render_version(version) }} | ||
{%- endfor -%} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters