diff --git a/File-Formats-toc.html b/File-Formats-toc.html
index 1d9b3d415..c344fa695 100644
--- a/File-Formats-toc.html
+++ b/File-Formats-toc.html
@@ -1735,7 +1735,7 @@
Release Notes
- - 2024 Volume 1 - v25.*
- Weekly Nuget Release
- v25.1.42
- v25.1.41
- v25.1.40
- v25.1.39
- v25.1.38
- v25.1.37
+ - 2024 Volume 1 - v25.*
- 2023 Volume 4 - v24.*
- 2023 Volume 3 - v23.*
- 2023 Volume 2 - v22.*
- 2023 Volume 1 - v21.*
- 2022 Volume 4 - v20.4.0.*
- 2022 Volume 3 - v20.3.0.*
- 2022 Volume 2 - v20.2.0.*
- 2022 volume 1 - v20.1.0.*
- 2021 Volume 4 - v19.4.0.*
- 2021 volume 3 - v19.3.0.*
- 2021 Volume 2 - v19.2.0.*
- 2021 Volume 1 - v19.1.0.*
- 2020 Volume 4 - v18.4.0.*
- 2020 Volume 3 - v18.3.0.*
- 2020 Volume 2 - v18.2.0.*
- 2020 Volume 1 - v18.1.0.*
- 2019 Volume 4 - v17.4.0.*
diff --git a/File-Formats/Presentation/Working-with-Slide.md b/File-Formats/Presentation/Working-with-Slide.md
index a1458c939..0c9ce8cd6 100644
--- a/File-Formats/Presentation/Working-with-Slide.md
+++ b/File-Formats/Presentation/Working-with-Slide.md
@@ -451,6 +451,11 @@ You can download a complete working sample from [GitHub](https://github.com/Sync
The Essential Presentation provides ability to clone slides from one Presentation to another Presentation. With this ability, you can split a large Presentation into small ones and also merge multiple presentations to one Presentation. You can choose the theme for the cloned slide by using the enum [PasteOption](https://help.syncfusion.com/cr/file-formats/Syncfusion.Presentation.PasteOptions.html).
+### Destination formatting
+This [PasteOption](https://help.syncfusion.com/cr/document-processing/Syncfusion.Presentation.PasteOptions.html) preserves the merged slide with formatting from the destination file during merging.
+
+The following code sample explains how to merge slide with the destination formatting.
+
{% tabs %}
{% highlight c# tabtitle="C# [Cross-platform]" %}
@@ -511,6 +516,71 @@ destinationPresentation.Close()
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Slides/Merge-PowerPoint-slide).
+### Source formatting
+This [PasteOption](https://help.syncfusion.com/cr/document-processing/Syncfusion.Presentation.PasteOptions.html) preserves the merged slide with formatting from the source file during merging.
+
+The following code sample explains how to merge slide with the source formatting.
+
+{% tabs %}
+
+{% highlight c# tabtitle="C# [Cross-platform]" %}
+//Opens the source Presentation
+IPresentation sourcePresentation = Presentation.Open(SourcePresentationStream);
+//Opens the destination Presentation
+IPresentation destinationPresentation = Presentation.Open(destinationPresentationStream);
+//Clones the first slide of the source Presentation
+ISlide clonedSlide = sourcePresentation.Slides[0].Clone();
+//Merges the cloned slide to the destination Presentation with paste option - Source formatting
+destinationPresentation.Slides.Add(clonedSlide, PasteOptions.SourceFormatting);
+//Save the PowerPoint Presentation as stream
+FileStream outputStream = new FileStream(OutputFileName, FileMode.Create);
+destinationPresentation.Save(outputStream);
+//Release all resources of the stream
+outputStream.Dispose();
+//Closes the source presentation
+sourcePresentation.Close();
+//Closes the destination Presentation
+destinationPresentation.Close();
+{% endhighlight %}
+
+{% highlight c# tabtitle="C# [Windows-specific]" %}
+//Opens the source Presentation
+IPresentation sourcePresentation = Presentation.Open("SourcePresentation.pptx");
+//Opens the destination Presentation
+IPresentation destinationPresentation = Presentation.Open("DestinationPresentation.pptx");
+//Clones the first slide of the source Presentation
+ISlide clonedSlide = sourcePresentation.Slides[0].Clone();
+//Merges the cloned slide to the destination Presentation with paste option - Source formatting
+destinationPresentation.Slides.Add(clonedSlide, PasteOptions.SourceFormatting);
+//Saves the destination Presentation
+destinationPresentation.Save("Output.pptx");
+//Closes the source presentation
+sourcePresentation.Close();
+//Closes the destination Presentation
+destinationPresentation.Close();
+{% endhighlight %}
+
+{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
+'Opens the source Presentation
+Dim sourcePresentation_1 As IPresentation = Presentation.Open("SourcePresentation.pptx")
+'Opens the destination Presentation
+Dim destinationPresentation_1 As IPresentation = Presentation.Open("DestinationPresentation.pptx")
+'Clones the first slide of the source Presentation
+Dim clonedSlide As ISlide = sourcePresentation_1.Slides(0).Clone()
+'Merges the cloned slide to the destination Presentation with paste option - Source formatting
+destinationPresentation_1.Slides.Add(clonedSlide, PasteOptions.SourceFormatting)
+'Saves the destination Presentation
+destinationPresentation_1.Save("Output.pptx")
+'Closes the source presentation
+sourcePresentation.Close()
+'Closes the destination Presentation
+destinationPresentation.Close()
+{% endhighlight %}
+
+{% endtabs %}
+
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Slides/Merge-PowerPoint-slide-with-Source-formatting/.NET).
+
## Removing slide
The Essential Presentation provides the ability to delete a slide by its instance or by its index position in slide collection. The following code demonstrates how to delete a slide from a presentation.
@@ -687,4 +757,4 @@ pptxDoc.Close()
{% endtabs %}
-You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Slides/Change-PowerPoint-slide-background).
\ No newline at end of file
+You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Slides/Change-PowerPoint-slide-background).
diff --git a/File-Formats/Release-Notes/v25.2.4.md b/File-Formats/Release-Notes/v25.2.4.md
new file mode 100644
index 000000000..dc7ea4234
--- /dev/null
+++ b/File-Formats/Release-Notes/v25.2.4.md
@@ -0,0 +1,98 @@
+---
+title : Essential Studio for File Formats Weekly Nuget Release Release Notes
+description : Essential Studio for File Formats Weekly Nuget Release Release Notes
+platform : file-formats
+documentation: ug
+---
+
+# Essential Studio for File Formats Release Notes
+
+{% include release-info.html date="May 14, 2024" version="v25.2.4" %}
+
+
+## DocIO
+
+* [EJ2 ASP.NET Core Release Notes](https://ej2.syncfusion.com/aspnetcore/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 ASP.NET MVC Release Notes](https://ej2.syncfusion.com/aspnetmvc/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 Angular Release Notes](https://ej2.syncfusion.com/angular/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [Blazor Release Notes](https://blazor.syncfusion.com/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 React Release Notes](https://ej2.syncfusion.com/react/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/25.2.4#docio){:target="_blank"}
+* [.NET MAUI Release Notes](/maui/release-notes/v25.2.4#docio){:target="_blank"}
+* [Xamarin.Forms Release Notes](/xamarin/release-notes/v25.2.4#docio){:target="_blank"}
+* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v25.2.4#docio){:target="_blank"}
+* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v25.2.4#docio){:target="_blank"}
+* [Flutter Release Notes](/flutter/release-notes/v25.2.4#docio){:target="_blank"}
+* [WinUI Release Notes](/winui/release-notes/v25.2.4#docio){:target="_blank"}
+* [UWP Release Notes](/uwp/release-notes/v25.2.4#docio){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v25.2.4#docio){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v25.2.4#docio){:target="_blank"}
+
+
+
+## PDF
+
+* [EJ2 ASP.NET Core Release Notes](https://ej2.syncfusion.com/aspnetcore/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 ASP.NET MVC Release Notes](https://ej2.syncfusion.com/aspnetmvc/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 Angular Release Notes](https://ej2.syncfusion.com/angular/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [Blazor Release Notes](https://blazor.syncfusion.com/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 React Release Notes](https://ej2.syncfusion.com/react/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/25.2.4#pdf){:target="_blank"}
+* [.NET MAUI Release Notes](/maui/release-notes/v25.2.4#pdf){:target="_blank"}
+* [Xamarin.Forms Release Notes](/xamarin/release-notes/v25.2.4#pdf){:target="_blank"}
+* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v25.2.4#pdf){:target="_blank"}
+* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v25.2.4#pdf){:target="_blank"}
+* [Flutter Release Notes](/flutter/release-notes/v25.2.4#pdf){:target="_blank"}
+* [WinUI Release Notes](/winui/release-notes/v25.2.4#pdf){:target="_blank"}
+* [UWP Release Notes](/uwp/release-notes/v25.2.4#pdf){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v25.2.4#pdf){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v25.2.4#pdf){:target="_blank"}
+
+
+## Presentation
+
+* [EJ2 ASP.NET Core Release Notes](https://ej2.syncfusion.com/aspnetcore/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 ASP.NET MVC Release Notes](https://ej2.syncfusion.com/aspnetmvc/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [Blazor Release Notes](https://blazor.syncfusion.com/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 Angular Release Notes](https://ej2.syncfusion.com/angular/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 React Release Notes](https://ej2.syncfusion.com/react/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/25.2.4#presentation){:target="_blank"}
+* [.NET MAUI Release Notes](/maui/release-notes/v25.2.4#presentation){:target="_blank"}
+* [Xamarin.Forms Release Notes](/xamarin/release-notes/v25.2.4#presentation){:target="_blank"}
+* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v25.2.4#presentation){:target="_blank"}
+* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v25.2.4#presentation){:target="_blank"}
+* [Flutter Release Notes](/flutter/release-notes/v25.2.4#presentation){:target="_blank"}
+* [WinUI Release Notes](/winui/release-notes/v25.2.4#presentation){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v25.2.4#presentation){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v25.2.4#presentation){:target="_blank"}
+* [UWP Release Notes](/uwp/release-notes/v25.2.4#presentation){:target="_blank"}
+
+
+
+## XlsIO
+
+* [EJ2 ASP.NET Core Release Notes](https://ej2.syncfusion.com/aspnetcore/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 ASP.NET MVC Release Notes](https://ej2.syncfusion.com/aspnetmvc/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 Angular Release Notes](https://ej2.syncfusion.com/angular/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [Blazor Release Notes](https://blazor.syncfusion.com/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 React Release Notes](https://ej2.syncfusion.com/react/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 Vue Release Notes](https://ej2.syncfusion.com/vue/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 JavaScript Release Notes](https://ej2.syncfusion.com/javascript/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [EJ2 TypeScript Release Notes](https://ej2.syncfusion.com/documentation/release-notes/25.2.4#xlsio){:target="_blank"}
+* [.NET MAUI Release Notes](/maui/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [Xamarin.Forms Release Notes](/xamarin/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [Xamarin.Android Release Notes](/xamarin-android/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [Xamarin.iOS Release Notes](/xamarin-ios/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [Flutter Release Notes](/flutter/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [WinUI Release Notes](/winui/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [UWP Release Notes](/uwp/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [Windows Forms Release Notes](/windowsforms/release-notes/v25.2.4#xlsio){:target="_blank"}
+* [WPF Release Notes](/wpf/release-notes/v25.2.4#xlsio){:target="_blank"}
+
+