Skip to content

Commit

Permalink
Version 1.4.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz committed Jul 22, 2024
1 parent 7a4d2b4 commit 67bb937
Show file tree
Hide file tree
Showing 1,341 changed files with 6,588 additions and 4,575 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
.env
coverage
node_modules
.vscode-test/**
.vscode-test*
out/
dist/
**/*.map
**/*test.js
**/*test.js.map
package-lock.json
.vscode/settings.json
*.vsix
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ All notable changes to the "Znuny" extension will be documented in this file.
- Added esbuild to get Browser Editor support.
- Refactored code.

## [1.4.1]

### Snippets

- Updated Snippets
- Added Snippets
- `znuny.Module.AgentTicketMarkSeenUnseen.code-snippets`
- `znuny.DBObject.CheckRequiredDatabaseVersion.code-snippets`
- `znuny.SupportDataCollectorObject.DeleteCache.code-snippets`

## [1.3.1]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

| Versions | Status |
| ------ | ------ |
| ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.0) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.4) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.5) <br> ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%207.0) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/DK4/dev) | [![GitHub commits since tagged version](https://img.shields.io/github/commits-since/dennykorsukewitz/VSCode-Znuny/1.3.1/dev)](https://github.com/dennykorsukewitz/VSCode-Znuny/compare/1.3.1...dev) ![GitHub Workflow Lint](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/lint.yml/badge.svg?branch=dev&style=flat&label=Lint) [![Snippet](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/snippet.yml/badge.svg)](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/snippet.yml) ![GitHub Workflow Pages](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/pages.yml/badge.svg?branch=dev&style=flat&label=GitHub%20Pages) |
| ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.0) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.4) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%206.5) <br> ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/dennykorsukewitz/Znuny%207.0) ![GitHub label version](https://img.shields.io/github/labels/dennykorsukewitz/DK4/dev) | [![GitHub commits since tagged version](https://img.shields.io/github/commits-since/dennykorsukewitz/VSCode-Znuny/1.4.1/dev)](https://github.com/dennykorsukewitz/VSCode-Znuny/compare/1.4.1...dev) ![GitHub Workflow Lint](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/lint.yml/badge.svg?branch=dev&style=flat&label=Lint) [![Snippet](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/snippet.yml/badge.svg)](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/snippet.yml) ![GitHub Workflow Pages](https://github.com/dennykorsukewitz/VSCode-Znuny/actions/workflows/pages.yml/badge.svg?branch=dev&style=flat&label=GitHub%20Pages) |

## Features

Expand Down
17 changes: 7 additions & 10 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
# [1.3.0]
# [1.4.1]

## AddFolderToWorkspace
## Snippets

### Maintenance

- Added additional check if vscode.workspace.workspaceFolders exists.
- Saves the new manually entered directory globally.

### Recursive Workspaces (only first level)

- Added new setting `znuny.addFolderToWorkspace.recursiveWorkspaces` to use recursive Workspaces (only first level).
- Updated Snippets
- Added Snippets
- `znuny.Module.AgentTicketMarkSeenUnseen.code-snippets`
- `znuny.DBObject.CheckRequiredDatabaseVersion.code-snippets`
- `znuny.SupportDataCollectorObject.DeleteCache.code-snippets`
14 changes: 13 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "znuny",
"displayName": "Znuny",
"description": "Znuny is an extension that helps you to make Znuny development easier, faster and more error-free.",
"version": "1.3.1",
"version": "1.4.1",
"publisher": "dennykorsukewitz",
"icon": "doc/images/icon.png",
"license": "SEE LICENSE IN LICENSE",
Expand Down Expand Up @@ -1126,6 +1126,10 @@
"language": "perl",
"path": "./snippets/Modules/znuny.Module.AgentTicketLockedView.code-snippets"
},
{
"language": "perl",
"path": "./snippets/Modules/znuny.Module.AgentTicketMarkSeenUnseen.code-snippets"
},
{
"language": "perl",
"path": "./snippets/Modules/znuny.Module.AgentTicketMentionView.code-snippets"
Expand Down Expand Up @@ -2202,6 +2206,10 @@
"language": "perl",
"path": "./snippets/ObjectManager/znuny.ObjectManager.DBObject.code-snippets"
},
{
"language": "perl",
"path": "./snippets/Functions/DBObject/znuny.DBObject.CheckRequiredDatabaseVersion.code-snippets"
},
{
"language": "perl",
"path": "./snippets/Functions/DBObject/znuny.DBObject.Connect.code-snippets"
Expand Down Expand Up @@ -5166,6 +5174,10 @@
"language": "perl",
"path": "./snippets/Functions/SupportDataCollectorObject/znuny.SupportDataCollectorObject.CollectAsynchronous.code-snippets"
},
{
"language": "perl",
"path": "./snippets/Functions/SupportDataCollectorObject/znuny.SupportDataCollectorObject.DeleteCache.code-snippets"
},
{
"language": "perl",
"path": "./snippets/ObjectManager/znuny.ObjectManager.SysConfigObject.code-snippets"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"6.0|6.4|6.5|7.0 - znuny.ActivityDialogObject.ActivityDialogCompletedCheck": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ActivityDialogObject.ActivityDialogCompletedCheck": {
"body": [
"${1:my \\$Completed = \\$ActivityDialogObject->ActivityDialogCompletedCheck(",
" ActivityDialogEntityID => \\$ActivityDialogEntityID,",
Expand All @@ -12,7 +12,7 @@
");}",
],
"prefix": "znuny.ActivityDialogObject.ActivityDialogCompletedCheck",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"6.0|6.4|6.5|7.0 - znuny.ActivityDialogObject.ActivityDialogGet": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ActivityDialogObject.ActivityDialogGet": {
"body": [
"${1:my \\$ActivityDialog = \\$ActivityDialogObject->ActivityDialogGet(",
" ActivityDialogEntityID => \\$ActivityDialogEntityID,",
Expand All @@ -8,7 +8,7 @@
");}",
],
"prefix": "znuny.ActivityDialogObject.ActivityDialogGet",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"6.0|6.4|6.5|7.0 - znuny.ActivityObject.ActivityGet": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ActivityObject.ActivityGet": {
"body": [
"${1:my \\$Activity = \\$ActivityObject->ActivityGet(",
" ActivityEntityID => \\$ActivityEntityID,",
" Interface => ['AgentInterface'], # ['AgentInterface'] or ['CustomerInterface'] or ['AgentInterface', 'CustomerInterface'] or 'all'",
");}",
],
"prefix": "znuny.ActivityObject.ActivityGet",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"6.0|6.4|6.5|7.0 - znuny.ActivityObject.ActivityList": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ActivityObject.ActivityList": {
"body": [
"${1:my \\$Activities = \\$ActivityObject->ActivityList();}",
],
"prefix": "znuny.ActivityObject.ActivityList",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.Add": {
"7.0|7.1 - znuny.ActivityObject.Add": {
"body": [
"${1:my \\$CreatedID = \\$ActivityObject->Add(",
" ID => '...',",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.Add",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataAdd": {
"7.0|7.1 - znuny.ActivityObject.DataAdd": {
"body": [
"${1:my \\$CreatedID = \\$ActivityObject->DataAdd(",
" ID => '...',",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataAdd",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataDelete": {
"7.0|7.1 - znuny.ActivityObject.DataDelete": {
"body": [
"${1:my \\$Success = \\$ActivityObject->DataDelete(",
" ID => '...', # optional",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataDelete",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataGet": {
"7.0|7.1 - znuny.ActivityObject.DataGet": {
"body": [
"${1:my %Data = \\$ActivityObject->DataGet(",
" ID => '...', # optional",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataGet",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataListGet": {
"7.0|7.1 - znuny.ActivityObject.DataListGet": {
"body": [
"${1:my @Data = \\$ActivityObject->DataListGet(",
" ID => '...', # optional",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataListGet",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataSearch": {
"7.0|7.1 - znuny.ActivityObject.DataSearch": {
"body": [
"${1:my %Data = \\$ActivityObject->DataSearch(",
" Search => 'test*test',",
Expand All @@ -15,7 +15,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataSearch",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.DataUpdate": {
"7.0|7.1 - znuny.ActivityObject.DataUpdate": {
"body": [
"${1:my \\$Success = \\$ActivityObject->DataUpdate(",
" ID => 1234,",
Expand All @@ -8,7 +8,7 @@
");}",
],
"prefix": "znuny.ActivityObject.DataUpdate",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.Get": {
"7.0|7.1 - znuny.ActivityObject.Get": {
"body": [
"${1:my \\$Success = \\$ActivityObject->Get();",
" ID => 1,",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.Get",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.GetLink": {
"7.0|7.1 - znuny.ActivityObject.GetLink": {
"body": [
"${1:my \\$String = \\$ActivityObject->GetLink(",
" TicketID => \\$TicketID,",
Expand All @@ -9,7 +9,7 @@
");}",
],
"prefix": "znuny.ActivityObject.GetLink",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"7.0 - znuny.ActivityObject.InitConfig": {
"7.0|7.1 - znuny.ActivityObject.InitConfig": {
"body": [
"${1:my \\$Success = \\$ActivityObject->InitConfig();}",
],
"prefix": "znuny.ActivityObject.InitConfig",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"7.0 - znuny.ActivityObject.ListGet": {
"7.0|7.1 - znuny.ActivityObject.ListGet": {
"body": [
"${1:my @Activities = \\$ActivityObject->ListGet(",
" ID => '...', # optional",
Expand All @@ -14,7 +14,7 @@
");}",
],
"prefix": "znuny.ActivityObject.ListGet",
"description": "7.0",
"description": "7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"6.0|6.4|6.5|7.0 - znuny.ArticleObject.ArticleAccountedTimeDelete": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ArticleObject.ArticleAccountedTimeDelete": {
"body": [
"${1:my \\$Success = \\$ArticleObject->ArticleAccountedTimeDelete(",
" ArticleID => \\$ArticleID,",
");}",
],
"prefix": "znuny.ArticleObject.ArticleAccountedTimeDelete",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"6.0|6.4|6.5|7.0 - znuny.ArticleObject.ArticleAccountedTimeGet": {
"6.0|6.4|6.5|7.0|7.1 - znuny.ArticleObject.ArticleAccountedTimeGet": {
"body": [
"${1:my \\$AccountedTime = \\$ArticleObject->ArticleAccountedTimeGet(",
" ArticleID => \\$ArticleID,",
");}",
],
"prefix": "znuny.ArticleObject.ArticleAccountedTimeGet",
"description": "6.0|6.4|6.5|7.0",
"description": "6.0|6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"6.4|6.5|7.0 - znuny.ArticleObject.ArticleAttachment": {
"6.4|6.5|7.0|7.1 - znuny.ArticleObject.ArticleAttachment": {
"body": [
"${1:my %Attachment = \\$ArticleObject->ArticleAttachment(",
" TicketID => \\$TicketID,",
Expand All @@ -8,7 +8,7 @@
");}",
],
"prefix": "znuny.ArticleObject.ArticleAttachment",
"description": "6.4|6.5|7.0",
"description": "6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"6.4|6.5|7.0 - znuny.ArticleObject.ArticleAttachmentCount": {
"6.4|6.5|7.0|7.1 - znuny.ArticleObject.ArticleAttachmentCount": {
"body": [
"${1:my \\$Count = \\$ArticleObject->ArticleAttachmentCount(",
" TicketID => \\$TicketID,",
" ArticleID => \\$ArticleID,",
");}",
],
"prefix": "znuny.ArticleObject.ArticleAttachmentCount",
"description": "6.4|6.5|7.0",
"description": "6.4|6.5|7.0|7.1",
"scope": "perl"
}
}
Loading

0 comments on commit 67bb937

Please sign in to comment.