Skip to content

Commit

Permalink
Build 3.0.16.57: fixed issues raised in code review
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-brooke committed Dec 21, 2018
1 parent b2f0139 commit 1a4afc0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "SuiteCRM Outlook Add-in"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.0.16.47
PROJECT_NUMBER = 3.0.16.51

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand All @@ -51,7 +51,7 @@ PROJECT_BRIEF = "An outlook add-in which allows synchronisation with Su
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.

PROJECT_LOGO = C:/Users/Simon/Workspace/SuiteCRM-Outlook-Plugin/SuiteCRMAddIn/Images/SuiteCRM.png
PROJECT_LOGO = Images/SuiteCRM.png

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### What's in this repository

SuiteCRM Outlook Plug-In v 3.0.16.47
SuiteCRM Outlook Plug-In v 3.0.16.51

This repository has been created to allow community members to collaborate and contribute to the project.

Expand Down
18 changes: 9 additions & 9 deletions SuiteCRMAddIn/Dialogs/SettingsDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ private bool ValidateDetails()
return false;
}

//if (chkEnableLDAPAuthentication.Checked)
//{
// if (SafelyGetText(txtLDAPAuthenticationKey) == string.Empty)
// {
// MessageBox.Show("Please enter a valid LDAP authentication key");
// txtLDAPAuthenticationKey.Focus();
// return false;
// }
//}
if (chkEnableLDAPAuthentication.Checked)
{
if (SafelyGetText(txtLDAPAuthenticationKey) == string.Empty)
{
MessageBox.Show("Please enter a valid LDAP authentication key");
txtLDAPAuthenticationKey.Focus();
return false;
}
}

return true;
}
Expand Down
2 changes: 1 addition & 1 deletion SuiteCRMAddIn/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@
// 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("3.0.16.47")]
[assembly: AssemblyVersion("3.0.16.51")]
[assembly: AssemblyFileVersion("3.0.1")]

2 changes: 1 addition & 1 deletion SuiteCRMAddInSetup/SuiteCRMAddInSetup.isl
Original file line number Diff line number Diff line change
Expand Up @@ -4423,7 +4423,7 @@ RABlAGIAdQBnAAEARQB4AHAAcgBlAHMAcwA=
<row><td>PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS</td><td>##IDS_PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS##</td><td/></row>
<row><td>ProductCode</td><td>{3BFCFDAB-2396-46E0-A826-0F142CA288EB}</td><td/></row>
<row><td>ProductName</td><td>SuiteCRMAddIn</td><td/></row>
<row><td>ProductVersion</td><td>3.0.16.47</td><td/></row>
<row><td>ProductVersion</td><td>3.0.16.51</td><td/></row>
<row><td>ProgressType0</td><td>install</td><td/></row>
<row><td>ProgressType1</td><td>Installing</td><td/></row>
<row><td>ProgressType2</td><td>installed</td><td/></row>
Expand Down
2 changes: 1 addition & 1 deletion SuiteCRMAddInWixSetup/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Id="A784C437-58CF-4495-BE4A-F77657600001"
Name="SuiteCRMAddIn"
Language="1033"
Version="3.0.16.47"
Version="3.0.16.51"
Manufacturer="SalesAgility"
UpgradeCode="F50E9CEB-D641-4FC6-8E16-483505C3455A">

Expand Down
2 changes: 1 addition & 1 deletion SuiteCRMClient/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// 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("3.0.16.47")]
[assembly: AssemblyVersion("3.0.16.51")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit 1a4afc0

Please sign in to comment.