[PR #20] [MERGED] v2.3.0 #82

Closed
opened 2026-02-27 20:31:11 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/pull/20
Author: @GruberMarkus
Created: 10/8/2021
Status: Merged
Merged: 10/8/2021
Merged by: @GruberMarkus

Base: mainHead: develop


📝 Commits (10+)

📊 Changes

114 files changed (+58115 additions, -450 deletions)

View changed files

📝 .github/FUNDING.yml (+1 -1)
📝 build/build.ps1 (+5 -3)
📝 docs/CHANGELOG.md (+22 -2)
docs/CODE_OF_CONDUCT.md (+135 -0)
📝 docs/CONTRIBUTING.md (+47 -12)
📝 docs/Implementation approach.md (+1 -1)
📝 docs/README.md (+292 -70)
📝 src/Set-OutlookSignatures.ps1 (+1055 -340)
src/bin/MSAL.PS/Add-MsalClientApplication.ps1 (+197 -0)
src/bin/MSAL.PS/Clear-MsalTokenCache.ps1 (+169 -0)
src/bin/MSAL.PS/Enable-MsalTokenCacheOnDisk.ps1 (+193 -0)
src/bin/MSAL.PS/Get-MsalAccount.ps1 (+176 -0)
src/bin/MSAL.PS/Get-MsalClientApplication.ps1 (+216 -0)
src/bin/MSAL.PS/Get-MsalFeatureSupport.ps1 (+155 -0)
src/bin/MSAL.PS/Get-MsalToken.ps1 (+533 -0)
src/bin/MSAL.PS/License.txt (+21 -0)
src/bin/MSAL.PS/MSAL.PS.ps1 (+278 -0)
src/bin/MSAL.PS/MSAL.PS.psd1 (+334 -0)
src/bin/MSAL.PS/MSAL.PS.psm1 (+195 -0)
src/bin/MSAL.PS/Microsoft.Identity.Client.4.36.1/net45/Microsoft.Identity.Client.dll (+0 -0)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/pull/20 **Author:** [@GruberMarkus](https://github.com/GruberMarkus) **Created:** 10/8/2021 **Status:** ✅ Merged **Merged:** 10/8/2021 **Merged by:** [@GruberMarkus](https://github.com/GruberMarkus) **Base:** `main` ← **Head:** `develop` --- ### 📝 Commits (10+) - [`2492ed2`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/2492ed2e009228052b0bccf59b0b82aa872d76c0) fix: allow multi-relative paths - [`136dca9`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/136dca98e0bfdb0eb4bfb9dfcc051027610c2c7c) docs(CHANGELOG): Fix relative paths display - [`78d8220`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/78d822087acb563c431d23a7caf7391534e3c442) Merge branch 'develop' of https://github.com/GruberMarkus/Set-OutlookSignatures into develop - [`5479e4e`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/5479e4ee92b15996b1f4e197bf13f30ca8b1c9bf) fix: User could connect to hidden Word COM object - [`fbfcd26`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/fbfcd26d9e44618fabcb7a2ce03e53ed12c65de2) docs: Refer to implementation approach - [`53c1f50`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/53c1f50341be99db1d192162b80eb5715aef6cd8) feat: New replacement variables OFFICE, COMPANY - [`6e224d3`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/6e224d3c0e195c56b9fdcaacfaadca6798ade84a) docs: Update FAQs - [`bd36c5e`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/bd36c5e38672b7977d5e78d08d6350b8b7ec4ebb) Initial Graph support - [`d8fa188`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/d8fa18816ad0d9e7ec93218b34b4c9c49866b7a0) v2.3.0-beta1 - [`e14f992`](https://github.com/Set-OutlookSignatures/Set-OutlookSignatures/commit/e14f9929d37c6a9c411927f7dad3f372fc013b23) v2.3.0-beta1 ### 📊 Changes **114 files changed** (+58115 additions, -450 deletions) <details> <summary>View changed files</summary> 📝 `.github/FUNDING.yml` (+1 -1) 📝 `build/build.ps1` (+5 -3) 📝 `docs/CHANGELOG.md` (+22 -2) ➕ `docs/CODE_OF_CONDUCT.md` (+135 -0) 📝 `docs/CONTRIBUTING.md` (+47 -12) 📝 `docs/Implementation approach.md` (+1 -1) 📝 `docs/README.md` (+292 -70) 📝 `src/Set-OutlookSignatures.ps1` (+1055 -340) ➕ `src/bin/MSAL.PS/Add-MsalClientApplication.ps1` (+197 -0) ➕ `src/bin/MSAL.PS/Clear-MsalTokenCache.ps1` (+169 -0) ➕ `src/bin/MSAL.PS/Enable-MsalTokenCacheOnDisk.ps1` (+193 -0) ➕ `src/bin/MSAL.PS/Get-MsalAccount.ps1` (+176 -0) ➕ `src/bin/MSAL.PS/Get-MsalClientApplication.ps1` (+216 -0) ➕ `src/bin/MSAL.PS/Get-MsalFeatureSupport.ps1` (+155 -0) ➕ `src/bin/MSAL.PS/Get-MsalToken.ps1` (+533 -0) ➕ `src/bin/MSAL.PS/License.txt` (+21 -0) ➕ `src/bin/MSAL.PS/MSAL.PS.ps1` (+278 -0) ➕ `src/bin/MSAL.PS/MSAL.PS.psd1` (+334 -0) ➕ `src/bin/MSAL.PS/MSAL.PS.psm1` (+195 -0) ➕ `src/bin/MSAL.PS/Microsoft.Identity.Client.4.36.1/net45/Microsoft.Identity.Client.dll` (+0 -0) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:31:11 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Set-OutlookSignatures-Set-OutlookSignatures#82
No description provided.