1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/notes/release/pending.md

47 lines
2.6 KiB
Markdown
Raw Normal View History

2022-08-28 14:26:17 +03:00
# Pending
These will be added to release notes when the release is made.
2022-08-30 23:34:44 +03:00
## Features
- This was reported as Jira bug [I7-2087](https://inform7.atlassian.net/browse/I7-2087)
"three anonymous standard rules", but is arguably a feature request: that three
rules in the Standard Rules should have names. All three are simple rules, two
of them occurring early and late in the turn cycle to consider whether a scene
change has happened, and one as the fallback rule making an action succeed if
no rules have intervened in the process.
```
early scene changing stage
late scene changing stage
default action success rule
```
2022-08-28 14:26:17 +03:00
## Bug fixes
2022-08-30 00:20:16 +03:00
- Fix for Jira bug [I7-2139](https://inform7.atlassian.net/browse/I7-2139)
"Articles become part of relation name"
([commit 85110a9](https://github.com/ganelson/inform/commit/85110a981a3d2419b3778eb383408de122c301a8))
2022-11-21 01:44:27 +02:00
- Fix for Jira bug [I7-2234](https://inform7.atlassian.net/browse/I7-2234)
"Non-heading @ sections not supported in template files"
(Inweb: [commit f2aaa32](https://github.com/ganelson/inweb/commit/f2aaa32479e14187679828e3e5696f5951b43b38))
- Fix for a "very old quirk of I7 where it generates a `story.gblorb.js` file for
the interpreter website, but the filename is a lie. It's the base64-encoding
of the `story.ulx` file, not the `story.gblorb`." (Andrew Plotkin, not from Jira)
2023-01-02 00:31:37 +02:00
- Fix for Jira bug [I7-2269](https://inform7.atlassian.net/browse/I7-2269)
"Output of I6 floating point literals strips the '+', resulting in uncompilable I6"
([commit 8155d40](https://github.com/ganelson/inform/commit/46349cb85c56116602c9245ee47e67ea08155d40))
2023-01-02 12:31:19 +02:00
- Fix for Jira bug [I7-2267](https://inform7.atlassian.net/browse/I7-2267)
"I6 inclusion for which compiler hangs (using '::' operator)"
([commit 8155d40](https://github.com/ganelson/inform/commit/f46433c22cfd9d414b7c337f8ee58220fb9286cc))
2023-01-04 21:07:55 +02:00
- Fix for Jira bug [I7-2247](https://inform7.atlassian.net/browse/I7-2247)
"Internal error 'unowned' when using 'Understand'"
([commit 3ebcac0](https://github.com/ganelson/inform/commit/3ebcac0b5dc58e9754de6b2c8dd85fad719e4629))
2023-01-05 01:09:20 +02:00
- Fix for Jira bug [I7-2235](https://inform7.atlassian.net/browse/I7-2235)
"List of action names ending with 23 bonus instances of waiting (i.e., action name 0)"
([commit ](https://github.com/ganelson/inform/commit/)): in fact those were
anonymous debugging actions from WorldModelKit, which are valid instances of
`action name` (and need to be for type safety reasons), but which were not
properly looped through or described. They now print as, e.g.,
`performing kit action ##ShowRelations`.
2023-01-02 00:01:39 +02:00
- Cosmetic fixes not worth linking to (I7-2270, I7-2268)