Merge pull request #862 from pulsar-edit/changelog-1.113.0

1.113.0 Changelog
This commit is contained in:
confused_techie 2024-01-15 17:09:39 -08:00 committed by GitHub
commit 691dd539be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 1 deletions

View File

@ -6,6 +6,29 @@
## [Unreleased]
## 1.113.0
- Enabled Modern Tree-sitter Grammars by default
- Added a modern Tree-sitter grammar for PHP.
- Fix a measurement issue that was causing visual glitches in the `github` package's diff views.
- Enabled the core `symbols-view` package to accept symbols from a number of sources, including Tree-sitter grammars and IDE packages.
- Switch default to false for converting ASCII emoticons to emoji when rendering Markdown.
- Fix certain find-and-replace scenarios when the "Preserve Case During Replace" setting is enabled.
- Fix an issue in `symbols-view` when returning from visiting a symbol declaration.
### Pulsar
- Fixed: Tree-sitter fixes for December (including a PHP grammar!) [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/852)
- Added: Make `useExperimentalModernTreeSitter` the default... [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/855)
- Fixed: Ensure editor is visible before measuring block decorations [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/854)
- Added: Overhaul `symbols-view` [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/829)
- Added: Default to no emoji when rendering Markdown [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/850)
### find-and-replace
- Fixed: [find-and-replace] Fix `capitalize` utility [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/849)
### symbols-view
- Fixed: [symbols-view] Fix issue with returning from a declaration [@savetheclocktower](https://github.com/pulsar-edit/pulsar/pull/864)
## 1.112.1
- Fixed a bug in PPM that prevented package publishing.

View File

@ -50,7 +50,25 @@ export default class ChangeLogView {
<p>Feel free to read our <a href="https://github.com/pulsar-edit/pulsar/blob/master/CHANGELOG.md">Full Change Log</a>.</p>
<ul>
<li>
Fixed a bug in PPM that prevented package publishing.
Enabled Modern Tree-sitter Grammars by default
</li>
<li>
Added a modern Tree-sitter grammar for PHP.
</li>
<li>
Fix a measurement issue that was causing visual glitches in the `github` package's diff views.
</li>
<li>
Enabled the core `symbols-view` package to accept symbols from a number of sources, including Tree-sitter grammars and IDE packages.
</li>
<li>
Switch default to false for converting ASCII emoticons to emoji when rendering Markdown.
</li>
<li>
Fix certain find-and-replace scenarios when the "Preserve Case During Replace" setting is enabled.
</li>
<li>
Fix an issue in `symbols-view` when returning from visiting a symbol declaration.
</li>
</ul>