Skip to content

Commit

Permalink
v2.0.1 (#166)
Browse files Browse the repository at this point in the history
* Refactoring take

Updating take logic so Tier Membership is only tested when required

* Reverting take refactor

Didn't create a branch for it, restoring from previous version

* Multi browser fix (#153)

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

* Refactoring take (attempt 2) (#155)

Updating take logic so Tier Membership is only tested when required

* Improving MA actions (v2.x) (#157)

* 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

* syntax error

previous commit broke switch logic via }

* Support Group extension fix (#159)

How the class extension for support group is found on MA, CR, and PR classes uses a different property name compared to v1

* fix, MA non-Implementer action (v2.x) (#164)

* 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

* missing parameter name

Get-SCSMWorkItemParent was missing the named parameter

* updating version

changing version for next release

* updating notes

Updating notes for changes in versioning
  • Loading branch information
AdhocAdam committed Dec 31, 2019
1 parent bc1a751 commit a0bd2f9
Show file tree
Hide file tree
Showing 4 changed files with 143 additions and 69 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));
}
});
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ From BaseManagedEntity

//Create a new "wizard" (also used for property dialogs as in this case), set the title bar, create the data, and add the pages
WizardStory wizard = new WizardStory();
wizard.WizardWindowTitle = "SMLets Exchange Connector Settings v2.0";
wizard.WizardWindowTitle = "SMLets Exchange Connector Settings v2.0.1";
WizardData data = new AdminSettingWizardData(emoAdminSetting);
wizard.WizardData = data;
wizard.AddLast(new WizardStep("General", typeof(GeneralSettingsForm), wizard.WizardData));
Expand Down
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 2016+
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 2016+


## So what is this for?
Expand Down

0 comments on commit a0bd2f9

Please sign in to comment.