Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Status
    colourGreen
    titleFIXED
    Outlook (classic) stürzt beim Signaturwechsel ab, wenn Loop-Komponente in Nachrichtentext

  • Status
    colourYellow
    titleNEW
    SentOnBehalfOfName & Automatischer Profilwechsel bei Verwendung von geteilten E-Mail-Postfächern. Einstellbar über OutlookFeatureConfig in der DataSourceAdminApp:

Code Block
languagexml
<OutlookFeatureConfig>
...    
     <AutoChangeProfile>
          <OnSentOnBehalfOfNameExistsOrChanged ProfileFieldIdMatch="User.Email" />
     </AutoChangeProfile>
</OutlookFeatureConfig>

...

  • Status
    colourYellow
    titleNEW
    Mehrere Mandaten auf einer Datenbank durch Entfernung der Azure Tenant Id aus der Datenbank

  • Status
    colourGreen
    titleFIXED
    Alte jQuery Bibliothek aus App/Connect entfernt

Document Engine

  • Status
    colourYellow
    titleNEW
    "Äusserstes" WordContent-Feld bei der Aktualisierung im offenen Word Dokument ignorieren über eine zusätzliches Attribut (word-UpdateBehavior="disable")

Code Block
<FormattedText Name="MyFormattedText" word-UpdateBehavior="disable">
  ...
</FormattedText>
<WordContent Name="MyWordContent" word-UpdateBehavior="disable">
  ...
</WordContent>
  • Status
    colourYellow
    titleNEW
    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
    colourYellow
    titleNEW
    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>
  • Status
    colourYellow
    titleNEW
    Statische Hyperlinks werden nun in WordContent unterstützt

  • Status
    colourYellow
    titleNEW
    FormattedText Tab Unterstützung über <custom-tab />

  • Status
    colourYellow
    titleNEW
    InlineWordContent-Feldtyp über <InlineWordContent Name="..." />, welcher Formattierung unterstützt, welche “Inline” innerhalb eines bestehenden Paragraphen genutzt werden kann.

  • Status
    colourYellow
    titleNEW
    $.formatNumber API ($.formatNumber($("FormsPreis), "n2");)

  • Status
    colourGreen
    titleFIXED
    Fields: toLocaleString() geht falsch mit Dezimalzahlen um #5017

  • Status
    colourGreen
    titleFIXED
    JsApi: "lang" Property remove #5706

Client

  • Status
    colourGreen
    titleFIXED
    TemplatePicker: Nur Classic-Templates (Nutzung von primedocsConnectBridge nicht möglich)

  • Status
    colourGreen
    titleFIXED
    Fehlermeldung nach Abbruch bei Sprachdialog nach TemplatePicker

  • Status
    colourGreen
    titleFIXED
    “Externes Dokument"-Vorlage ist korrupt und liess sich nicht öffnen

  • Status
    colourGreen
    titleFIXED
    MessagePack moderate severity vulnerability fixed

  • Status
    colourGreen
    titleFIXED
    Client stürzt ab bei Klick auf Vorlagendatei importieren in Vorlageneditor von (Outlook (new)) Signatur

AI

  • Status
    colourYellow
    titleNEW
    WebApp: Konfigurationsmöglichkeiten für AI-Interface (Prompts) verbessern/erweitern. Einstellung über die DataSourceAdminApp

Code Block
languagexml
<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

  • Status
    colourGreen
    titleFIXED
    IdS: Neuen Duende-Lizenzschlüssel hinterlegt

  • Status
    colourGreen
    titleFIXED
    Fehler bei Microsoft-Graph-Authentifizierung bei Single Tenant-Konfigurationen

  • Status
    colourGreen
    titleFIXED
    Microsoft Security Advisory: System.Text.Json, System.IO.Packaging, System.Runtime.Caching

  • Status
    colourGreen
    titleFIXED
    vite.js Warnings entfernen

  • Status
    colourGreen
    titleFIXED
    Behebung diverser npm vulnerabilities

DataSourceAdminApp

  • Status
    colourGreen
    titleFIXED
    Clickarea bei Package Export "Unterelemente Einblenden" erweitern

  • Status
    colourGreen
    titleFIXED
    DacPac Export als "Empfehlung" markiert

Connect

  • Status
    colourGreen
    titleFIXED
    Connect Data: ObjectCollection führt beim Aktualisieren zu Fehler

App

  • Status
    colourGreen
    titleFIXED
    System.NullReferenceException: AuthToken is null bei App

  • Status
    colourGreen
    titleFIXED
    Wechsel zwischen Fremdprofilen macht UI für Datenabfragen kaputt

  • Status
    colourGreen
    titleFIXED
    Tab + Info Icon: Kein Hover/Keine Anzeige

  • Status
    colourGreen
    titleFIXED
    Rive-App wird von unpkg.com geladen

4.0.30013.0 (2024-09-30)

Client

...