Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removeUrlParams #48

Merged
merged 2 commits into from
Feb 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addon/globalPlugins/placeMarkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def getFile(folder, ext=""):
uia = True
val = rootObj.UIAValuePattern.CurrentValue
try:
nameToAdd = " - %s" % val.split("#")[0].split("/")[-1].split("\\")[-1]
nameToAdd = " - %s" % val.split("#")[0].split("?")[0].split("/")[-1].split("\\")[-1]
except Exception:
nameToAdd = ""
else:
Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ Using the PlaceMarkers submenu under NVDA's Preferences menu, you can access:

Note: The placemarker position is based on the number of characters; and therefore in dynamic pages it is better to use the specific search, not placemarkers.

## Changes for 35.0
* Removed URL parameters from file names, so that bookmarks are valid for specific websites in different sessions.

## Changes for 24.0
* Y is used instead of k in gestures such as NVDA+k, NVDA+shift+k, NVDA+alt+k and NVDA+control+shift+k.
* Compatible with NVDA 2023.1.
Expand Down
Loading