Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a5c051916e | |||
| 4f4dbabf8b | |||
| e4c86f1cc1 | |||
| eabd9671f0 | |||
| 9b34abfa29 | |||
| d1007266c9 |
@@ -46,8 +46,9 @@
|
||||
<Reference Include="itextsharp">
|
||||
<HintPath>..\Resources\Libraries\iTextSharp\itextsharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="LumenWorks.Framework.IO">
|
||||
<HintPath>..\..\..\Resources\Libraries\LumenWorks.Framework.IO\LumenWorks.Framework.IO.dll</HintPath>
|
||||
<Reference Include="LumenWorks.Framework.IO, Version=3.8.0.0, Culture=neutral, PublicKeyToken=5ad3ea2f85776344, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\Resources\Libraries\LumenWorks.Framework.IO\LumenWorks.Framework.IO.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.AspNet.SignalR.Core, Version=1.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
@@ -254,7 +255,7 @@
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
<UserProperties BuildVersion_UpdateFileVersion="True" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_BuildVersioningStyle="None.DeltaBaseYear.MonthAndDayStamp.TimeStamp" BuildVersion_UseGlobalSettings="False" BuildVersion_DetectChanges="False" BuildVersion_BuildAction="Both" BuildVersion_StartDate="2011/7/1" />
|
||||
<UserProperties BuildVersion_StartDate="2011/7/1" BuildVersion_BuildAction="Both" BuildVersion_DetectChanges="False" BuildVersion_UseGlobalSettings="False" BuildVersion_BuildVersioningStyle="None.DeltaBaseYear.MonthAndDayStamp.TimeStamp" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_UpdateFileVersion="True" />
|
||||
</VisualStudio>
|
||||
</ProjectExtensions>
|
||||
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1300")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1300")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -149,8 +149,10 @@ namespace Disco.ClientBootstrapper
|
||||
// Unzip Client
|
||||
statusUI.UpdateStatus(null, "Extracting", "Retrieving Preparation Client, Please wait...", true, -1);
|
||||
string clientLocation = Path.Combine(tempWorkingDirectory, "PreparationClient");
|
||||
if (!Directory.Exists(clientLocation))
|
||||
Directory.CreateDirectory(clientLocation);
|
||||
if (Directory.Exists(clientLocation))
|
||||
Directory.Delete(clientLocation, true);
|
||||
|
||||
Directory.CreateDirectory(clientLocation);
|
||||
using (var clientSource = Ionic.Zip.ZipFile.Read(clientSourceLocation))
|
||||
{
|
||||
clientSource.ExtractAll(clientLocation, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently);
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1300")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1300")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -60,7 +60,15 @@ namespace Disco.Data.Repository
|
||||
{
|
||||
if (Database.DeviceProfiles.Count() == 0)
|
||||
{
|
||||
Database.DeviceProfiles.Add(new DeviceProfile { ShortName = "WS", Name = "Default", Description = "Initial Default Workstation Profile", ComputerNameTemplate = "DeviceProfile.ShortName + ''-'' + SerialNumber" });
|
||||
Database.DeviceProfiles.Add(
|
||||
new DeviceProfile
|
||||
{
|
||||
ShortName = "WS",
|
||||
Name = "Default",
|
||||
Description = "Initial Default Workstation Profile",
|
||||
ComputerNameTemplate = "DeviceProfile.ShortName + ''-'' + SerialNumber",
|
||||
DistributionType = DeviceProfile.DistributionTypes.OneToMany
|
||||
});
|
||||
}
|
||||
}
|
||||
public static void SeedJobSubTypes(this DiscoDataContext Database)
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
@@ -39565,70 +39565,117 @@ jQuery.fn.DataTable.defaults.aLengthMenu = [[10, 20, 50, -1], [10, 20, 50, "All"
|
||||
|
||||
// Menu Functionality
|
||||
var $menu = $('#menu');
|
||||
var $menuItems = $menu.find('li');
|
||||
var $menuItemParents = $menuItems.filter('.hasSubMenu');
|
||||
var $menuSubMenus = $menuItems.filter('.subMenu');
|
||||
var menuAllowTouchNavigation = null;
|
||||
|
||||
$menuItemParents.each(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.children('ul.subMenu');
|
||||
$parent.data('menuSubMenu', $subMenu);
|
||||
}).mouseover(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.data('menuSubMenu');
|
||||
var hideToken = $parent.data('menuHideToken');
|
||||
if (hideToken)
|
||||
window.clearTimeout(hideToken);
|
||||
if (!$subMenu.is(':visible')) {
|
||||
$subMenu.show();
|
||||
if (menuAllowTouchNavigation !== null)
|
||||
menuTouchPreventNavigation();
|
||||
if ($menu.length > 0) {
|
||||
|
||||
function subMenuShow() {
|
||||
var $this = $(this);
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
var hideToken = $this.data('menuHideToken');
|
||||
|
||||
if (hideToken)
|
||||
window.clearTimeout(hideToken);
|
||||
|
||||
if (!$subMenu.is(':visible'))
|
||||
$subMenu.show();
|
||||
}
|
||||
}).mouseout(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.data('menuSubMenu');
|
||||
var hideToken = window.setTimeout(function () {
|
||||
$subMenu.hide();
|
||||
}, 250);
|
||||
$parent.data('menuHideToken', hideToken);
|
||||
});
|
||||
function subMenuHide() {
|
||||
var $this = $(this);
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
|
||||
if (Modernizr.touch) {
|
||||
menuAllowTouchNavigation = true;
|
||||
$menuItemParents.children('a').on('touchstart', menuTouchStarted);
|
||||
} else if (window.navigator.msPointerEnabled) {
|
||||
menuAllowTouchNavigation = true;
|
||||
$menuItemParents.children('a').on('MSPointerUp', menuTouchMSPointerUp);
|
||||
}
|
||||
function menuTouchPreventNavigation() {
|
||||
// Block Touch Navigation for 350ms
|
||||
allowTouchNavigation = false;
|
||||
window.setTimeout(function () {
|
||||
allowTouchNavigation = true;
|
||||
}, 350);
|
||||
}
|
||||
function menuTouchNavigationBlockClick(e) {
|
||||
$(this).off('click', menuTouchNavigationBlockClick);
|
||||
e.preventDefault();
|
||||
}
|
||||
//#region TouchEvents Implementation
|
||||
function menuSubMenuVisible($element) {
|
||||
return $element.closest('li').data('menuSubMenu').is(':visible');
|
||||
}
|
||||
function menuTouchStarted(e) {
|
||||
var $this = $(this);
|
||||
if (!menuSubMenuVisible($this))
|
||||
$this.click(menuTouchNavigationBlockClick);
|
||||
}
|
||||
//#endregion
|
||||
var hideToken = window.setTimeout(function () {
|
||||
$subMenu.hide();
|
||||
}, 250);
|
||||
|
||||
//#region MS Pointer Implementation
|
||||
function menuTouchMSPointerUp(e) {
|
||||
if (!allowTouchNavigation && e.originalEvent.pointerType == e.originalEvent.MSPOINTER_TYPE_TOUCH)
|
||||
$(this).click(menuTouchNavigationBlockClick);
|
||||
$this.data('menuHideToken', hideToken);
|
||||
}
|
||||
function subMenuTouchDown(e, preventClick) {
|
||||
var $this = $(this);
|
||||
var $link = $this.children('a');
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
|
||||
if (!$subMenu.is(':visible')) {
|
||||
|
||||
$subMenu.show();
|
||||
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if (preventClick) {
|
||||
// Stop Click Event
|
||||
if ($link.length > 0) {
|
||||
var preventClick = function () { $link.off('click', preventClick); return false; }
|
||||
$link.on('click', preventClick);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (Modernizr.hasEvent('pointerdown')) {
|
||||
// Pointer Events
|
||||
$menu
|
||||
.on('pointerover', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== 'touch') {
|
||||
subMenuShow.call(this);
|
||||
}
|
||||
})
|
||||
.on('pointerout', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== 'touch') {
|
||||
subMenuHide.call(this);
|
||||
}
|
||||
})
|
||||
.on('pointerdown', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType === 'touch') {
|
||||
return subMenuTouchDown.call(this, e, true);
|
||||
}
|
||||
});
|
||||
$(document).on('pointerdown', function (e) {
|
||||
if (e.originalEvent.pointerType === 'touch') {
|
||||
if ($(e.target).closest('#menu').length == 0)
|
||||
$menu.find('li.hasSubMenu>ul.subMenu:visible').hide();
|
||||
}
|
||||
});
|
||||
} else if (Modernizr.hasEvent('mspointerdown')) {
|
||||
// MS Pointer Events
|
||||
$menu
|
||||
.on('MSPointerOver', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
subMenuShow.call(this);
|
||||
}
|
||||
})
|
||||
.on('MSPointerOut', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
subMenuHide.call(this);
|
||||
}
|
||||
})
|
||||
.on('MSPointerDown', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType === e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
return subMenuTouchDown.call(this, e, true);
|
||||
}
|
||||
});
|
||||
$(document).on('MSPointerDown', function (e) {
|
||||
if (e.originalEvent.pointerType === e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
if ($(e.target).closest('#menu').length == 0)
|
||||
$menu.find('li.hasSubMenu>ul.subMenu:visible').hide();
|
||||
}
|
||||
});
|
||||
} else if (Modernizr.touch) {
|
||||
// Touch Events
|
||||
$menu
|
||||
.on('mouseover', 'li.hasSubMenu', subMenuShow)
|
||||
.on('mouseout', 'li.hasSubMenu', subMenuHide)
|
||||
.on('touchstart', 'li.hasSubMenu', function (e) {
|
||||
return subMenuTouchDown.call(this, e, false);
|
||||
});
|
||||
} else {
|
||||
// Mouse Events
|
||||
$menu
|
||||
.on('mouseover', 'li.hasSubMenu', subMenuShow)
|
||||
.on('mouseout', 'li.hasSubMenu', subMenuHide);
|
||||
}
|
||||
}
|
||||
//#endregion
|
||||
|
||||
});
|
||||
})(jQuery, window, document, Modernizr);
|
||||
|
||||
+3
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -15,70 +15,117 @@
|
||||
|
||||
// Menu Functionality
|
||||
var $menu = $('#menu');
|
||||
var $menuItems = $menu.find('li');
|
||||
var $menuItemParents = $menuItems.filter('.hasSubMenu');
|
||||
var $menuSubMenus = $menuItems.filter('.subMenu');
|
||||
var menuAllowTouchNavigation = null;
|
||||
|
||||
$menuItemParents.each(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.children('ul.subMenu');
|
||||
$parent.data('menuSubMenu', $subMenu);
|
||||
}).mouseover(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.data('menuSubMenu');
|
||||
var hideToken = $parent.data('menuHideToken');
|
||||
if (hideToken)
|
||||
window.clearTimeout(hideToken);
|
||||
if (!$subMenu.is(':visible')) {
|
||||
$subMenu.show();
|
||||
if (menuAllowTouchNavigation !== null)
|
||||
menuTouchPreventNavigation();
|
||||
if ($menu.length > 0) {
|
||||
|
||||
function subMenuShow() {
|
||||
var $this = $(this);
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
var hideToken = $this.data('menuHideToken');
|
||||
|
||||
if (hideToken)
|
||||
window.clearTimeout(hideToken);
|
||||
|
||||
if (!$subMenu.is(':visible'))
|
||||
$subMenu.show();
|
||||
}
|
||||
}).mouseout(function () {
|
||||
var $parent = $(this);
|
||||
var $subMenu = $parent.data('menuSubMenu');
|
||||
var hideToken = window.setTimeout(function () {
|
||||
$subMenu.hide();
|
||||
}, 250);
|
||||
$parent.data('menuHideToken', hideToken);
|
||||
});
|
||||
function subMenuHide() {
|
||||
var $this = $(this);
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
|
||||
if (Modernizr.touch) {
|
||||
menuAllowTouchNavigation = true;
|
||||
$menuItemParents.children('a').on('touchstart', menuTouchStarted);
|
||||
} else if (window.navigator.msPointerEnabled) {
|
||||
menuAllowTouchNavigation = true;
|
||||
$menuItemParents.children('a').on('MSPointerUp', menuTouchMSPointerUp);
|
||||
}
|
||||
function menuTouchPreventNavigation() {
|
||||
// Block Touch Navigation for 350ms
|
||||
allowTouchNavigation = false;
|
||||
window.setTimeout(function () {
|
||||
allowTouchNavigation = true;
|
||||
}, 350);
|
||||
}
|
||||
function menuTouchNavigationBlockClick(e) {
|
||||
$(this).off('click', menuTouchNavigationBlockClick);
|
||||
e.preventDefault();
|
||||
}
|
||||
//#region TouchEvents Implementation
|
||||
function menuSubMenuVisible($element) {
|
||||
return $element.closest('li').data('menuSubMenu').is(':visible');
|
||||
}
|
||||
function menuTouchStarted(e) {
|
||||
var $this = $(this);
|
||||
if (!menuSubMenuVisible($this))
|
||||
$this.click(menuTouchNavigationBlockClick);
|
||||
}
|
||||
//#endregion
|
||||
var hideToken = window.setTimeout(function () {
|
||||
$subMenu.hide();
|
||||
}, 250);
|
||||
|
||||
//#region MS Pointer Implementation
|
||||
function menuTouchMSPointerUp(e) {
|
||||
if (!allowTouchNavigation && e.originalEvent.pointerType == e.originalEvent.MSPOINTER_TYPE_TOUCH)
|
||||
$(this).click(menuTouchNavigationBlockClick);
|
||||
$this.data('menuHideToken', hideToken);
|
||||
}
|
||||
function subMenuTouchDown(e, preventClick) {
|
||||
var $this = $(this);
|
||||
var $link = $this.children('a');
|
||||
var $subMenu = $this.children('ul.subMenu');
|
||||
|
||||
if (!$subMenu.is(':visible')) {
|
||||
|
||||
$subMenu.show();
|
||||
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if (preventClick) {
|
||||
// Stop Click Event
|
||||
if ($link.length > 0) {
|
||||
var preventClick = function () { $link.off('click', preventClick); return false; }
|
||||
$link.on('click', preventClick);
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (Modernizr.hasEvent('pointerdown')) {
|
||||
// Pointer Events
|
||||
$menu
|
||||
.on('pointerover', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== 'touch') {
|
||||
subMenuShow.call(this);
|
||||
}
|
||||
})
|
||||
.on('pointerout', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== 'touch') {
|
||||
subMenuHide.call(this);
|
||||
}
|
||||
})
|
||||
.on('pointerdown', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType === 'touch') {
|
||||
return subMenuTouchDown.call(this, e, true);
|
||||
}
|
||||
});
|
||||
$(document).on('pointerdown', function (e) {
|
||||
if (e.originalEvent.pointerType === 'touch') {
|
||||
if ($(e.target).closest('#menu').length == 0)
|
||||
$menu.find('li.hasSubMenu>ul.subMenu:visible').hide();
|
||||
}
|
||||
});
|
||||
} else if (Modernizr.hasEvent('mspointerdown')) {
|
||||
// MS Pointer Events
|
||||
$menu
|
||||
.on('MSPointerOver', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
subMenuShow.call(this);
|
||||
}
|
||||
})
|
||||
.on('MSPointerOut', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType !== e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
subMenuHide.call(this);
|
||||
}
|
||||
})
|
||||
.on('MSPointerDown', 'li.hasSubMenu', function (e) {
|
||||
if (e.originalEvent.pointerType === e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
return subMenuTouchDown.call(this, e, true);
|
||||
}
|
||||
});
|
||||
$(document).on('MSPointerDown', function (e) {
|
||||
if (e.originalEvent.pointerType === e.originalEvent.MSPOINTER_TYPE_TOUCH) {
|
||||
if ($(e.target).closest('#menu').length == 0)
|
||||
$menu.find('li.hasSubMenu>ul.subMenu:visible').hide();
|
||||
}
|
||||
});
|
||||
} else if (Modernizr.touch) {
|
||||
// Touch Events
|
||||
$menu
|
||||
.on('mouseover', 'li.hasSubMenu', subMenuShow)
|
||||
.on('mouseout', 'li.hasSubMenu', subMenuHide)
|
||||
.on('touchstart', 'li.hasSubMenu', function (e) {
|
||||
return subMenuTouchDown.call(this, e, false);
|
||||
});
|
||||
} else {
|
||||
// Mouse Events
|
||||
$menu
|
||||
.on('mouseover', 'li.hasSubMenu', subMenuShow)
|
||||
.on('mouseout', 'li.hasSubMenu', subMenuHide);
|
||||
}
|
||||
}
|
||||
//#endregion
|
||||
|
||||
});
|
||||
})(jQuery, window, document, Modernizr);
|
||||
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||
//
|
||||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyFileVersion("1.2.1001.1541")]
|
||||
[assembly: AssemblyVersion("1.2.1128.1503")]
|
||||
[assembly: AssemblyFileVersion("1.2.1128.1503")]
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user