Skip to content

Review 2024.3 documentation changes#16742

Merged
seanbudd merged 12 commits into
masterfrom
docsFor2024.3
Jul 1, 2024
Merged

Review 2024.3 documentation changes#16742
seanbudd merged 12 commits into
masterfrom
docsFor2024.3

Conversation

@seanbudd

@seanbudd seanbudd commented Jun 26, 2024

Copy link
Copy Markdown
Member

Must be a squash merge

Changes from this PR to the previous release:

  • Files to check: user_docs/en/userGuide.md, user_docs/en/changes.md developerGuide.md
  • Compare this branch to the previous release
  • Comparison command:
    git diff release-2024.2...docsFor2024.3 -- "**/en/*.md" "**/developerGuide.md"

Common mistakes to check for:

  • Issue/PR reference in changes file is incorrect
  • Incorrect spelling.
  • Shortcuts added without code markdown (e.g. NVDA+d)
  • List items not indented by a multiple of 2 spaces (regex ^ ( )*-)
  • Double spaces (regex [^ ] )
  • Inconsistent use of single vs double quote. (regex ' )

Summary by CodeRabbit

  • New Features

    • Added support for Help Tech Activator Pro displays.
    • Introduced new key commands and notification for add-on updates on NVDA startup.
  • Enhancements

    • Updated dependencies: LibLouis, fast_diff_match_patch, NSIS, markdown, and nh3.
    • Enhanced Unicode normalization and Unicode CLDR.
  • Bug Fixes

    • Various bug fixes improving overall stability.
  • Documentation

    • Updated user guide with new configuration options for NVDA modifier keys.
    • Added detailed information about tables in NVDA add-ons to the developer guide.

@seanbudd seanbudd requested review from a team as code owners June 26, 2024 03:03
@coderabbitai

coderabbitai Bot commented Jun 26, 2024

Copy link
Copy Markdown
Contributor

Walkthrough

The updates involve enhancements and new feature additions to NVDA, including detailed documentation on table support in add-ons, configuration updates for the NVDA modifier key, and various functional updates, bug fixes, and dependency upgrades in user documentation.

Changes

File Path Change Summary
projectDocs/dev/developerGuide/... Added details about tables in NVDA add-ons, including display name, input/output support, and braille type.
user_docs/en/changes.md Documented functionality changes, feature additions, updates, and enhancements, including updates to various dependencies.
user_docs/en/userGuide.md Updated configuration options for NVDA modifier key, specifying key names in backticks and adjusting default keys.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md Outdated
@seanbudd seanbudd marked this pull request as draft June 26, 2024 03:30
@seanbudd seanbudd marked this pull request as ready for review June 27, 2024 01:53

@Qchristensen Qchristensen left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All looks good.

@seanbudd seanbudd added this to the 2024.3 milestone Jun 27, 2024
@seanbudd seanbudd marked this pull request as draft June 27, 2024 07:21
@seanbudd seanbudd marked this pull request as ready for review June 27, 2024 07:33

@CyrilleB79 CyrilleB79 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is my review.

In addition to the comments in the code, the following points should be looked at in the change log:

  1. "menuitems": rather use "menu items" with dash
  2. Remove the following sentence which is useless since there are no deprecations:
    Please refer to [the developer guide](https://www.nvaccess.org/files/nvda/documentation/developerGuide.html#API) for information on NVDA's API deprecation and removal process.
    Note that this has not been removed for 2024.2, but IMO, it was a mistake.

Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md
Comment thread user_docs/en/changes.md Outdated
Comment thread user_docs/en/changes.md
* NVDA will no longer appear to get stuck when closing the clipboard history and emoji panel. (#16346, #16347, @josephsl)
* NVDA will announce visible candidates again when opening the Windows 11 IME interface. (#14023, @josephsl)
* NVDA will announce visible candidates again when opening the IME interface. (#14023, @josephsl)
* NVDA will no longer announce "clipboard history" twice when navigating through the emoji panel menu items. (#16532, @josephsl)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@josephsl do you confirm this change log item? Seems strange that NVDA was announcing "clipboard history" in the emoji panel. Or was it a copy/paste issue with the other change?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems accurate to the original issue: #16532

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The title of the original issue mentions emoji panel, but the STR only mentions Clipboard history panel and its shortcut (windows+V).
That's why I was assuming that there were a cfusion somewhere and that I had tagged @josephsl for checking.

@seanbudd seanbudd merged commit ba04b51 into master Jul 1, 2024
@seanbudd seanbudd deleted the docsFor2024.3 branch July 1, 2024 00:13
@coderabbitai coderabbitai Bot mentioned this pull request Nov 10, 2024
5 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants