Skip to content

Commit

Permalink
v1.6.1 (#165)
Browse files Browse the repository at this point in the history
* Multi browser fix (#152)

Proposed fix for supporting different browsers and the Send Outlook email task in v1.x

* Refactoring take (#154)

Updating take logic so Tier Membership is only tested when required

* Improving MA actions (v1.x) (#156)

* Improving MA actions

Moving away from IF blocks in MA actions to more closely align with the other primary work item types (e.g. Change Request).

* updating MA take action

removed the take action when the email is from the implementer as it is redundant

* Suggestion fix (#161)

Updating the function that obtains suggestions to return null if the feature isn't configured. New-WorkItem is modified accordingly.

* syntax, update-workitem (#162)

syntax error was introduced on previous commits during #154

* fix, MA non-Implementer action (v1.x) (#163)

* fix, MA non-Implementer action

This is to preserve functionality in Update-WorkItem for Manual Activities when the comment to add is not from the Activity Implementer and features no keywords. The comment should be added to the MA Notes, rather than the Parent Work Item.

* changing user variable

the ActivityImplementer variable doesn't exist in the default context, shifting to CommentLeftBy

* updating SMLets link

had a specific version of smlets instead of the parent/most recent release link

* filename fix, again.

File was persisted through branching

* missing parameter name

Get-SCSMWorkItemParent was missing the named parameter

* updating version notes

updating version notes for next release

* notes (v1.6.1)

updating to include issue type
  • Loading branch information
AdhocAdam committed Dec 30, 2019
1 parent f485407 commit 63e64f9
Show file tree
Hide file tree
Showing 4 changed files with 158 additions and 97 deletions.
16 changes: 14 additions & 2 deletions CiresonPortalTasks/sendOutlookMeeting/sendOutlookMeeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,17 @@ app.custom.formTasks.add('Incident', "Send Outlook Meeting", function (formObj,
}

//Open the the ICS file
window.open( "data:text/calendar;charset=utf8," + escape(icsMSG));
});
//ie/edge
var isIE = /*@cc_on!@*/false || !!document.documentMode;
var isEdge = !isIE && !!window.StyleMedia;
if ((isIE) || (isEdge))
{
var blob = new Blob([icsMSG], { type: 'text/calendar;charset=utf-8' });
window.navigator.msSaveOrOpenBlob(blob, 'download.ics');
}
else
{
//every other browser
window.open( "data:text/calendar;charset=utf8," + escape(icsMSG));
}
});
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

# SCSM Exchange Connector via SMlets
This PowerShell script leverages the [SMlets module](https://www.powershellgallery.com/packages/smlets/0.5.0.1) to build an open and flexible Exchange Connector for controlling Microsoft System Center Service Manager 2012+
This PowerShell script leverages the [SMlets module](https://www.powershellgallery.com/packages/SMLets) to build an open and flexible Exchange Connector for controlling Microsoft System Center Service Manager 2012+


## So what is this for?
Expand Down
Binary file removed docs/images/CreateACustomMPSettingsPane/30.PNG
Binary file not shown.

0 comments on commit 63e64f9

Please sign in to comment.