...
Outlook (classic) stürzt beim Signaturwechsel ab, wenn Loop-Komponente in NachrichtentextStatus colour Green title FIXED
SentOnBehalfOfName & Automatischer Profilwechsel bei Verwendung von geteilten E-Mail-Postfächern. Einstellbar überStatus colour Yellow title NEW OutlookFeatureConfig
in der DataSourceAdminApp:
Code Block | ||
---|---|---|
| ||
<OutlookFeatureConfig> ... <AutoChangeProfile> <OnSentOnBehalfOfNameExistsOrChanged ProfileFieldIdMatch="User.Email" /> </AutoChangeProfile> </OutlookFeatureConfig> |
...
Mehrere Mandaten auf einer Datenbank durch Entfernung der Azure Tenant Id aus der DatenbankStatus colour Yellow title NEW
Alte jQuery Bibliothek aus App/Connect entferntStatus colour Green title FIXED
Document Engine
"Äusserstes" WordContent-Feld bei der Aktualisierung im offenen Word Dokument ignorieren über eine zusätzliches Attribut (Status colour Yellow title NEW word-UpdateBehavior="disable"
)
Code Block |
---|
<FormattedText Name="MyFormattedText" word-UpdateBehavior="disable">
...
</FormattedText>
<WordContent Name="MyWordContent" word-UpdateBehavior="disable">
...
</WordContent> |
Status colour Yellow title NEW SnippetPlaceholder
: Platzhalter können nun neben Werte auch Referenzen auf andere Felder bekommen um so z.B. Formular-Felder aktualisierbar zu halten über$.getReference
Code Block |
---|
// bislang:
$.snippets.getWordContent("MyKey", { PlaceholderName: $.getText("Forms.Something") })
// neu geht nun auch:
$.snippets.getWordContent("MyKey", { PlaceholderName: $.getReference("Forms.Something") }) |
Status colour Yellow title NEW SnippetPlaceholder
: Das Einfügen von WordContent ermöglichen ("Snippets in Snippets")
Code Block |
---|
<WordContent Name="OverallContent" word-UpdateBehavior="Disable">
<Code>
<![CDATA[
function main() {
return $.snippets.getWordContent("OverallContent", {Content: $.getReference("OverallContentLevel1")});
}
]]>
</Code>
</WordContent>
<WordContent Name="OverallContentLevel1" word-UpdateBehavior="Disable">
<Code>
<![CDATA[
function main() {
return $.snippets.getWordContent("OverallContentLevel1", {Content: $.getReference("OverallContentLevel2")});
}
]]>
</Code>
</WordContent>
<WordContent Name="OverallContentLevel2">
<Code>
<![CDATA[
function main() {
return $.snippets.getWordContent("OverallContentLevel2", {Content: $.getReference("Forms.Subject")});
}
]]>
</Code>
</WordContent> |
Statische Hyperlinks werden nun in WordContent unterstütztStatus colour Yellow title NEW
FormattedText Tab Unterstützung überStatus colour Yellow title NEW <custom-tab />
InlineWordContent-Feldtyp überStatus colour Yellow title NEW <InlineWordContent Name="..." />
, welcher Formattierung unterstützt, welche “Inline” innerhalb eines bestehenden Paragraphen genutzt werden kann.
$.formatNumber API (Status colour Yellow title NEW $.formatNumber($("FormsPreis), "n2");
)
Fields: toLocaleString() geht falsch mit Dezimalzahlen um #5017Status colour Green title FIXED
JsApi: "lang" Property remove #5706Status colour Green title FIXED
Client
TemplatePicker: Nur Classic-Templates (Nutzung vonStatus colour Green title FIXED primedocsConnectBridge
nicht möglich)
Fehlermeldung nach Abbruch bei Sprachdialog nach TemplatePickerStatus colour Green title FIXED
“Externes Dokument"-Vorlage ist korrupt und liess sich nicht öffnenStatus colour Green title FIXED
MessagePack moderate severity vulnerability fixedStatus colour Green title FIXED
Client stürzt ab bei Klick auf Vorlagendatei importieren in Vorlageneditor von (Outlook (new)) SignaturStatus colour Green title FIXED
AI
WebApp: Konfigurationsmöglichkeiten für AI-Interface (Prompts) verbessern/erweitern. Einstellung über die DataSourceAdminAppStatus colour Yellow title NEW
Code Block | ||
---|---|---|
| ||
<Prompts>
<Prompt title="Translate to EN" icon="fi-gb" >Translate this given text to English</Prompt>
<Prompt title="Translate to FR" icon="fi-fr">Translate this given text to French</Prompt>
...
</Prompts> |
Dev / Server
IdS: Neuen Duende-Lizenzschlüssel hinterlegtStatus colour Green title FIXED
Fehler bei Microsoft-Graph-Authentifizierung bei Single Tenant-KonfigurationenStatus colour Green title FIXED
Microsoft Security Advisory: System.Text.Json, System.IO.Packaging, System.Runtime.CachingStatus colour Green title FIXED
vite.js Warnings entfernenStatus colour Green title FIXED
Behebung diverser npm vulnerabilitiesStatus colour Green title FIXED
DataSourceAdminApp
Clickarea bei Package Export "Unterelemente Einblenden" erweiternStatus colour Green title FIXED
DacPac Export als "Empfehlung" markiertStatus colour Green title FIXED
Connect
Connect Data: ObjectCollection führt beim Aktualisieren zu FehlerStatus colour Green title FIXED
App
System.NullReferenceException: AuthToken is null bei AppStatus colour Green title FIXED
Wechsel zwischen Fremdprofilen macht UI für Datenabfragen kaputtStatus colour Green title FIXED
Tab + Info Icon: Kein Hover/Keine AnzeigeStatus colour Green title FIXED
Rive-App wird von unpkg.com geladenStatus colour Green title FIXED
4.0.30013.0 (2024-09-30)
Client
...