Skip to content

Commit

Permalink
Minor update v8.2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoudkooi committed Nov 11, 2024
1 parent ee43119 commit 6838bfa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# CHANGELOG.md

## 8.2.5.1 (2024-11-11)
## 8.2.5.1/2 (2024-11-11)
Fixes / changes:
- Updates to the package script publish.sh, goal is to prevent renaming of the tsWorker.js file.
- Bugfix to handle undefined snufilter variable, causing slash commands not to work (Slack)

## 8.2.5.0 (2024-11-09)
Features:
- Add /sns command to open the new ServiceNow Studio (LinkedIn post #philgoesdeep)
- Add /ois command to open current record in existing ServiceNow Studio as tab, as a tab (Beta)
- Add /ois command to open current record in existing ServiceNow Studio tab as a tab (Beta)
- Inside ServiceNow Studio slash command inline results, will now open the record as a tab inside ServiceNow studio when it is metadata. By holding a modifier key a new tab will open.
- Dynamic slash commands that search metadata tables, now show sys_name as first column in the inline results.

Expand Down
2 changes: 1 addition & 1 deletion inject.js
Original file line number Diff line number Diff line change
Expand Up @@ -3616,7 +3616,7 @@ function snuSetShortCuts() {
}
}
}
else if (snufilter?.value?.length === 1 && (event.metaKey || event.ctrlKey)) {
else if (window.top?.snufilter?.value?.length === 1 && (event.metaKey || event.ctrlKey)) {
snuSlashCommandHide();
return;
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"short_name": "SN Utils",
"description": "Productivity tools for ServiceNow. (Personal work, not affiliated to ServiceNow)",
"author": "Arnoud Kooi / arnoudkooi.com",
"version": "8.2.5.1",
"version": "8.2.5.2",
"manifest_version": 3,
"permissions": [
"activeTab",
Expand Down

0 comments on commit 6838bfa

Please sign in to comment.