Release Notes
Issue 15
If there is only one repository created, and if user select components from it or Dell Online Catalog or
Local Source Catalog and if copy to new repository option is selected, copy components to existing
repository page is displayed.
Resolution: Change the option and select back export to new repository option UI will work as expected.
Installation Prerequisites
For information on installing Repository Manager, see the "Dell Repository Manager - Quick
Installation Guide".
History of Previous Release Notes
Upgrading From Previous
Versions
Before upgrading the existing version of Repository Manager with the latest version, ensure that
all screens of the existing versions are closed.
Open Source Software
Usage
Dell Repository Manager uses Open Source software to implement certain functions. Next is a list of the
Open Source software used by DRM:
1. Persist the Visual Tree when switching tabs in the WPF Tab Control (Optimized) from
CodeProject.com
Open Source Software URL:
http://www.codeproject.com/Articles/362940/Persist-the-Visual-Tree-when-switching-tabs-in-the
License:
This article, along with any associated source code and files, is licensed under The Code Project Open
License (CPOL), http://www.codeproject.com/info/cpol10.aspx
Dell Modifications:
- Bug fix: Running on .NET4.5 framework over Remote Session causes Tab Item state to be lost if RDP
is reconnected. Similar behavior was observed even with user switching.
Code change: Added a new dependency property “SkipLoad” to determine if a TabControl should
be
re-populated every time a load happens. Also track the last selected index before unload and use
it to set it at next load.
- Bug fix: TabItems containing other TabControl would not allow setting the selected item other
than the first element.
Code change: Populate the inner TabControl as soon as the outer TabControl is bound to a new data
source. This ensures the inner TabControl’s tree is available to select any element, not just the first one.
It works in conjunction with SkipLoad property.
- New: Allow new TabItem to be inserted at any specified index, not just at last position.
Code change: Provision AddTabItem method to accept an index position at which new item will
be inserted in the TabControl.