AutoArchiveFolders
{
@@ -260,6 +284,34 @@ public bool ShowConfirmationMessageArchive
{
this["ShowConfirmationMessageArchive"] = value;
}
- }
+ }
+ [DebuggerNonUserCode, UserScopedSetting]
+ public StringCollection case_dropdown_priority
+ {
+ get
+ {
+ return (StringCollection)this["case_dropdown_priority"];
+ }
+ set
+ {
+ this["case_dropdown_priority"] = value;
+ }
+ }
+
+ [UserScopedSetting, DebuggerNonUserCode]
+ public StringCollection case_dropdown_status
+ {
+ get
+ {
+ return (StringCollection)this["case_dropdown_status"];
+ }
+ set
+ {
+ this["case_dropdown_status"] = value;
+ }
+ }
+
+ public static Hashtable accountEntrys = new Hashtable();
+ public static AutoCompleteStringCollection accounts = new AutoCompleteStringCollection();
}
}
diff --git a/SuiteCRMAddIn/frmArchive.cs b/SuiteCRMAddIn/frmArchive.cs
index 375b9550..2ff96e24 100644
--- a/SuiteCRMAddIn/frmArchive.cs
+++ b/SuiteCRMAddIn/frmArchive.cs
@@ -34,6 +34,7 @@
using System.Collections.Specialized;
using Microsoft.Office.Interop.Outlook;
using System.Runtime.InteropServices;
+using System.Web;
namespace SuiteCRMAddIn
{
@@ -277,7 +278,15 @@ public void Search(string query)
str5 = "(accounts.name LIKE '%" + clsGlobals.MySqlEscape(usString) + "%') OR (accounts.id in (select eabr.bean_id from email_addr_bean_rel eabr INNER JOIN email_addresses ea on eabr.email_address_id = ea.id where eabr.bean_module = 'Accounts' and ea.email_address LIKE '%" + clsGlobals.MySqlEscape(query) + "%'))";
fields[4] = "account_name";
Label_0446:
- _result = clsSuiteCRMHelper.GetEntryList(text, str5, settings.SyncMaxRecords, "date_entered DESC", 0, false, fields);
+ try
+ {
+ _result = clsSuiteCRMHelper.GetEntryList(text, str5, settings.SyncMaxRecords, "date_entered DESC", 0, false, fields);
+ }
+ catch (System.Exception ex1)
+ {
+ ex1.Data.Clear();
+ _result = clsSuiteCRMHelper.GetEntryList(text, str5.Replace("%",""), settings.SyncMaxRecords, "date_entered DESC", 0, false, fields);
+ }
if (_result.result_count > 0)
{
this.populateTree(_result, text, node);
@@ -452,11 +461,17 @@ public string archiveEmail(MailItem itemFromID)
goto Label_01A5;
Label_017D:
data[1] = clsSuiteCRMHelper.SetNameValuePair("date_sent", itemFromID.SentOn.ToString("yyyy-MM-dd HH:mm:ss"));
- Label_01A5:
- data[0] = clsSuiteCRMHelper.SetNameValuePair("name", subject);
+ Label_01A5:
+ TextBox oTB = new TextBox();
+ oTB.Multiline = true;
+ oTB.WordWrap = false;
+ oTB.ScrollBars = ScrollBars.Both;
+ oTB.Text = itemFromID.Subject.Replace("&", "%26");
+ data[0] = clsSuiteCRMHelper.SetNameValuePair("name", oTB.Text);
data[2] = clsSuiteCRMHelper.SetNameValuePair("message_id", itemFromID.EntryID);
data[3] = clsSuiteCRMHelper.SetNameValuePair("status", "archived");
- data[4] = clsSuiteCRMHelper.SetNameValuePair("description", body);
+ oTB.Text = itemFromID.Body.Replace("&", "%26");
+ data[4] = clsSuiteCRMHelper.SetNameValuePair("description", oTB.Text);
data[5] = clsSuiteCRMHelper.SetNameValuePair("description_html", hTMLBody);
data[6] = clsSuiteCRMHelper.SetNameValuePair("from_addr", clsGlobals.GetSenderAddress(itemFromID, this.type));
data[7] = clsSuiteCRMHelper.SetNameValuePair("to_addrs", itemFromID.To);
@@ -464,11 +479,11 @@ public string archiveEmail(MailItem itemFromID)
data[9] = clsSuiteCRMHelper.SetNameValuePair("bcc_addrs", itemFromID.BCC);
data[10] = clsSuiteCRMHelper.SetNameValuePair("reply_to_addr", itemFromID.ReplyRecipientNames);
data[11] = clsSuiteCRMHelper.SetNameValuePair("assigned_user_id", clsSuiteCRMHelper.GetUserId());
- string str = clsSuiteCRMHelper.ArchiveEmail(data);
+ string str = clsSuiteCRMHelper.SetEntry(data);
if (str.Length < 0x24)
{
- data[7] = clsSuiteCRMHelper.SetNameValuePair("description_html", "");
- str = clsSuiteCRMHelper.ArchiveEmail(data);
+ data[5] = clsSuiteCRMHelper.SetNameValuePair("description_html", "");
+ str = clsSuiteCRMHelper.SetEntry(data);
if (str.Length < 0x24)
{
return "-1";
diff --git a/SuiteCRMAddIn/frmSettings.Designer.cs b/SuiteCRMAddIn/frmSettings.Designer.cs
index a5d00bdf..7ce99979 100644
--- a/SuiteCRMAddIn/frmSettings.Designer.cs
+++ b/SuiteCRMAddIn/frmSettings.Designer.cs
@@ -88,6 +88,8 @@ private void InitializeComponent()
this.tabControl1 = new System.Windows.Forms.TabControl();
this.btnCancel = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
+ this.chkSyncCalendar = new System.Windows.Forms.CheckBox();
+ this.chkSyncContacts = new System.Windows.Forms.CheckBox();
this.tabPage3.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox2.SuspendLayout();
@@ -101,6 +103,8 @@ private void InitializeComponent()
//
// tabPage3
//
+ this.tabPage3.Controls.Add(this.chkSyncContacts);
+ this.tabPage3.Controls.Add(this.chkSyncCalendar);
this.tabPage3.Controls.Add(this.label7);
this.tabPage3.Controls.Add(this.txtAutoSync);
this.tabPage3.Controls.Add(this.tsResults);
@@ -478,6 +482,26 @@ private void InitializeComponent()
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
+ // chkSyncCalendar
+ //
+ this.chkSyncCalendar.AutoSize = true;
+ this.chkSyncCalendar.Location = new System.Drawing.Point(15, 308);
+ this.chkSyncCalendar.Name = "chkSyncCalendar";
+ this.chkSyncCalendar.Size = new System.Drawing.Size(95, 17);
+ this.chkSyncCalendar.TabIndex = 15;
+ this.chkSyncCalendar.Text = "Sync Calendar";
+ this.chkSyncCalendar.UseVisualStyleBackColor = true;
+ //
+ // chkSyncContacts
+ //
+ this.chkSyncContacts.AutoSize = true;
+ this.chkSyncContacts.Location = new System.Drawing.Point(15, 332);
+ this.chkSyncContacts.Name = "chkSyncContacts";
+ this.chkSyncContacts.Size = new System.Drawing.Size(95, 17);
+ this.chkSyncContacts.TabIndex = 16;
+ this.chkSyncContacts.Text = "Sync Contacts";
+ this.chkSyncContacts.UseVisualStyleBackColor = true;
+ //
// frmSettings
//
this.AcceptButton = this.btnSave;
@@ -558,6 +582,8 @@ private void InitializeComponent()
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.TabPage tabPage1;
private System.Windows.Forms.CheckBox chkShowConfirmationMessageArchive;
+ private System.Windows.Forms.CheckBox chkSyncContacts;
+ private System.Windows.Forms.CheckBox chkSyncCalendar;
}
}
\ No newline at end of file
diff --git a/SuiteCRMAddIn/frmSettings.cs b/SuiteCRMAddIn/frmSettings.cs
index add753cf..1523f1d1 100644
--- a/SuiteCRMAddIn/frmSettings.cs
+++ b/SuiteCRMAddIn/frmSettings.cs
@@ -136,6 +136,8 @@ private void frmSettings_Load(object sender, EventArgs e)
this.txtSyncMaxRecords.Text = this.settings.SyncMaxRecords.ToString();
this.checkBoxShowRightClick.Checked = this.settings.PopulateContextLookupList;
this.chkAutoArchive.Checked = this.settings.AutoArchive;
+ this.chkSyncCalendar.Checked = this.settings.SyncCalendar;
+ this.chkSyncContacts.Checked = this.settings.SyncContacts;
this.tsResults.AfterCheck += new TreeViewEventHandler(this.tree_search_results_AfterCheck);
this.tsResults.AfterExpand += new TreeViewEventHandler(this.tree_search_results_AfterExpand);
this.tsResults.NodeMouseClick += new TreeNodeMouseClickEventHandler(this.tree_search_results_NodeMouseClick);
@@ -290,7 +292,9 @@ private void btnTestLogin_Click(object sender, EventArgs e)
Globals.ThisAddIn.SuiteCRMUserSession.AuthenticateLDAP();
}
else
+ {
Globals.ThisAddIn.SuiteCRMUserSession.Login();
+ }
if (Globals.ThisAddIn.SuiteCRMUserSession.id == "")
{
MessageBox.Show("Authentication failed!!!", "Authentication failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
@@ -336,11 +340,13 @@ private void chkEnableLDAPAuthentication_CheckedChanged(object sender, EventArgs
{
labelKey.Enabled = true;
txtLDAPAuthenticationKey.Enabled = true;
+ txtLDAPAuthenticationKey.Text = settings.LDAPKey;
}
else
{
labelKey.Enabled = false;
txtLDAPAuthenticationKey.Enabled = false;
+ txtLDAPAuthenticationKey.Text = "";
}
}
@@ -421,6 +427,8 @@ private void btnSave_Click(object sender, EventArgs e)
}
settings.AutoArchive = this.chkAutoArchive.Checked;
+ settings.SyncCalendar = this.chkSyncCalendar.Checked;
+ settings.SyncContacts = this.chkSyncContacts.Checked;
settings.ShowConfirmationMessageArchive = this.chkShowConfirmationMessageArchive.Checked;
if (this.txtSyncMaxRecords.Text != string.Empty)
{
diff --git a/SuiteCRMAddInSetup/SuiteCRMAddInSetup.isl b/SuiteCRMAddInSetup/SuiteCRMAddInSetup.isl
index 17a21a73..adfb2bab 100644
--- a/SuiteCRMAddInSetup/SuiteCRMAddInSetup.isl
+++ b/SuiteCRMAddInSetup/SuiteCRMAddInSetup.isl
@@ -340,7 +340,8 @@
ISDotNetInstallerArgsUninstall
ISDotNetInstallerArgsRollback
ISX_DEFAULTCOMPONENT | {47DC3583-1B85-4B83-8898-D4057742C505} | INSTALLDIR | 2 | | | 17 | | | | /LogFile= | /LogFile= | /LogFile= | /LogFile= |
- Newtonsoft.Json.dll | {13FB21D0-EDD1-47D8-AE25-2B7664FDFE08} | INSTALLDIR | 2 | | newtonsoft.json.dll | 17 | | | | /LogFile= | /LogFile= | /LogFile= | /LogFile= |
+ ISX_DEFAULTCOMPONENT1 | {CF752638-4907-450F-A762-ED937A0E9D51} | INSTALLDIR | 258 | | | 17 | | | | /LogFile= | /LogFile= | /LogFile= | /LogFile= |
+ Newtonsoft.Json.dll | {8F129954-4BFF-4523-BFD1-9355815F4A5A} | INSTALLDIR | 2 | | newtonsoft.json.dll | 17 | | | | /LogFile= | /LogFile= | /LogFile= | /LogFile= |
SuiteCRMAddIn.Primary_output | {C3AFF890-EE54-47A7-8D90-39F2BF44D01E} | INSTALLDIR | 2 | | suitecrmaddin.primary_output | 17 | | | | /LogFile= | /LogFile= | /LogFile= | /LogFile= |
@@ -1050,6 +1051,7 @@
Directory_
Component_
+ INSTALLDIR | ISX_DEFAULTCOMPONENT1 |
@@ -1860,6 +1862,7 @@
Feature_
Component_
AlwaysInstall | ISX_DEFAULTCOMPONENT |
+ AlwaysInstall | ISX_DEFAULTCOMPONENT1 |
AlwaysInstall | Newtonsoft.Json.dll |
AlwaysInstall | SuiteCRMAddIn.Primary_output |
@@ -1876,10 +1879,10 @@
ISBuildSourcePath
ISAttributes
ISComponentSubFolder_
- newtonsoft.json.dll | Newtonsoft.Json.dll | NEWTON~1.DLL|Newtonsoft.Json.dll | 0 | | | | 1 | D:\Mohan Kumar\Projects\Greg\SuiteCRMOutlookAddIn - V2 (Has both AE and VSTO version of V1)\SuiteCRMAddIn\bin\Debug\Newtonsoft.Json.dll | 1 | |
- suitecrmaddin.dll.manifest | ISX_DEFAULTCOMPONENT | SUITEC~1.MAN|SuiteCRMAddIn.dll.manifest | 0 | | | | 1 | D:\Mohan Kumar\Projects\Greg\SuiteCRMOutlookAddIn - V2 (Has both AE and VSTO version of V1)\SuiteCRMAddIn\bin\Debug\SuiteCRMAddIn.dll.manifest | 1 | |
+ newtonsoft.json.dll | Newtonsoft.Json.dll | NEWTON~1.DLL|Newtonsoft.Json.dll | 0 | | | | 1 | D:\SuiteCRM\Working Copy\SuiteCRMOutlookAddIn\SuiteCRMAddIn\bin\Debug\Newtonsoft.Json.dll | 1 | |
+ suitecrmaddin.dll.manifest | ISX_DEFAULTCOMPONENT | SUITEC~1.MAN|SuiteCRMAddIn.dll.manifest | 0 | | | | 1 | D:\SuiteCRM\Working Copy\SuiteCRMOutlookAddIn\SuiteCRMAddIn\bin\Debug\SuiteCRMAddIn.dll.manifest | 1 | |
suitecrmaddin.primary_output | SuiteCRMAddIn.Primary_output | SuiteCRMAddIn.Primary output | 0 | | | 0 | 1 | <SuiteCRMAddIn>|Built | 3 | |
- suitecrmaddin.vsto | ISX_DEFAULTCOMPONENT | SUITEC~1.VST|SuiteCRMAddIn.vsto | 0 | | | | 1 | D:\Mohan Kumar\Projects\Greg\SuiteCRMOutlookAddIn - V2 (Has both AE and VSTO version of V1)\SuiteCRMAddIn\bin\Debug\SuiteCRMAddIn.vsto | 1 | |
+ suitecrmaddin.vsto | ISX_DEFAULTCOMPONENT | SUITEC~1.VST|SuiteCRMAddIn.vsto | 0 | | | | 1 | D:\SuiteCRM\Working Copy\SuiteCRMOutlookAddIn\SuiteCRMAddIn\bin\Debug\SuiteCRMAddIn.vsto | 1 | |
@@ -2025,7 +2028,8 @@
HTTPLocation
Miscellaneous
ISX_DEFAULTCOMPONENT | | | _30B7A77B_5D1A_4D6F_BD4D_E2B0995BFFFF_FILTER | | | | |
- Newtonsoft.Json.dll | | | _D9CB9BA7_6D56_4E06_88A9_71BF8B49A29C_FILTER | | | | |
+ ISX_DEFAULTCOMPONENT1 | | | _AEA5FF0E_7F99_4D23_86ED_B81515D69189_FILTER | | | | |
+ Newtonsoft.Json.dll | | | _8B1FE9AB_7FCA_4EB5_BC34_DFD0BAF5FC98_FILTER | | | | |
SuiteCRMAddIn.Primary_output | | | _99EC7A64_5F26_47A4_8927_317EF14A2FB2_FILTER | | | | |
@@ -2611,7 +2615,7 @@
Order
ISSetupLocation
ISReleaseFlags
- _470891EF_1BF5_47AE_9BBA_DA2872FEAF38_ | Visual Studio 2010 Tools for Office Runtime.prq | | 2 | |
+ _87BC9124_660F_4ED2_B17C_E31E8FE7BCD2_ | Microsoft VSTO 2010 Runtime.prq | | 2 | |
_D89610ED_62EC_4583_BEF4_136546520A99_ | Microsoft .NET Framework 4.5 Full.prq | | 2 | |
@@ -2646,7 +2650,7 @@
Encoded
Comment
TimeStamp
- COMPANY_NAME | 1033 | SalesAgility | 0 | | -1700637910 |
+ COMPANY_NAME | 1033 | SalesAgility | 0 | | -2128312591 |
DN_AlwaysInstall | 1033 | Always Install | 0 | | 849486892 |
IDPROP_EXPRESS_LAUNCH_CONDITION_COLOR | 1033 | The color settings of your system are not adequate for running [ProductName]. | 0 | | 849486892 |
IDPROP_EXPRESS_LAUNCH_CONDITION_OS | 1033 | The operating system is not adequate for running [ProductName]. | 0 | | 849486892 |
@@ -3746,9 +3750,9 @@
IDS__TargetReq_DESC_PROCESSOR | 1033 | The processor is not adequate for running [ProductName]. | 0 | | 849486892 |
IDS__TargetReq_DESC_RAM | 1033 | The amount of RAM is not adequate for running [ProductName]. | 0 | | 849486892 |
IDS__TargetReq_DESC_RESOLUTION | 1033 | The screen resolution is not adequate for running [ProductName]. | 0 | | 849486892 |
- ID_STRING1 | 1033 | http://www.SalesAgility.com | 0 | | -1700637910 |
- ID_STRING2 | 1033 | SalesAgility | 0 | | -1700637910 |
- ID_STRING3 | 1033 | http://www.SalesAgility.com | 0 | | -1700637910 |
+ ID_STRING1 | 1033 | http://www.SalesAgility.com | 0 | | -2128312591 |
+ ID_STRING2 | 1033 | SalesAgility | 0 | | -2128312591 |
+ ID_STRING3 | 1033 | http://www.SalesAgility.com | 0 | | -2128312591 |
ID_STRING4 | 1033 | http://www.salesagility.com | 0 | | 849487596 |
ID_STRING5 | 1033 | SuiteCRM Outlook AddIn | 0 | | 849508076 |
IIDS_UITEXT_FeatureUninstalled | 1033 | This feature will remain uninstalled. | 0 | | 849486892 |
@@ -4298,6 +4302,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
Property
Value
ISComments
+ ALLUSERS | 1 | |
ARPCOMMENTS | ##ID_STRING5## | |
ARPCONTACT | ##ID_STRING4## | |
ARPHELPLINK | ##ID_STRING3## | |
@@ -4342,6 +4347,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
InstallChoice | AR | |
LAUNCHPROGRAM | 1 | |
LAUNCHREADME | 1 | |
+ MSIFASTINSTALL | 2 | |
Manufacturer | ##COMPANY_NAME## | |
PIDKEY | | |
PIDTemplate | 12345<###-%%%%%%%>@@@@@ | |
@@ -4370,7 +4376,7 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS | ##IDS_PROGMSG_IIS_ROLLBACKWEBSERVICEEXTENSIONS## | |
ProductCode | {7D2339B3-980B-4AF0-8428-56ABB4CD7EF0} | |
ProductName | SuiteCRMAddIn | |
- ProductVersion | 1.1.0.7 | |
+ ProductVersion | 2.0.0.0 | |
ProgressType0 | install | |
ProgressType1 | Installing | |
ProgressType2 | installed | |
@@ -4437,11 +4443,15 @@ UwBpAG4AZwBsAGUASQBtAGEAZwBlAAEARQB4AHAAcgBlAHMAcwA=
Value
Component_
ISAttributes
- Registry10 | 1 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Manifest | file:///[INSTALLDIR]SuiteCRMAddIn.vsto|vstolocal | ISX_DEFAULTCOMPONENT | 0 |
- Registry2 | 1 | SOFTWARE\Microsoft\Office\Outlook\Addins | | | ISX_DEFAULTCOMPONENT | 1 |
- Registry7 | 1 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Description | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT | 0 |
- Registry8 | 1 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | FriendlyName | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT | 0 |
- Registry9 | 1 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | LoadBehavior | #3 | ISX_DEFAULTCOMPONENT | 0 |
+ Registry1 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Manifest | file:///[INSTALLDIR]SuiteCRMAddIn.vsto|vstolocal | ISX_DEFAULTCOMPONENT | 0 |
+ Registry11 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Description | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT1 | 0 |
+ Registry12 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | FriendlyName | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT1 | 0 |
+ Registry13 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | LoadBehavior | #3 | ISX_DEFAULTCOMPONENT1 | 0 |
+ Registry2 | 1 | SOFTWARE | | | ISX_DEFAULTCOMPONENT | 1 |
+ Registry3 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Description | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT | 0 |
+ Registry4 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | FriendlyName | SuiteCRM Outlook AddIn | ISX_DEFAULTCOMPONENT | 0 |
+ Registry5 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | LoadBehavior | #3 | ISX_DEFAULTCOMPONENT | 0 |
+ Registry6 | 2 | SOFTWARE\Microsoft\Office\Outlook\Addins\SalesAgility.SuiteCRMAddIn | Manifest | file:///[INSTALLDIR]SuiteCRMAddIn.vsto|vstolocal | ISX_DEFAULTCOMPONENT1 | 0 |
diff --git a/SuiteCRMOutlookAddIn.sln b/SuiteCRMOutlookAddIn.sln
index 23a8af67..fd841b04 100644
--- a/SuiteCRMOutlookAddIn.sln
+++ b/SuiteCRMOutlookAddIn.sln
@@ -1,6 +1,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 2012
+# Visual Studio 2013
+VisualStudioVersion = 12.0.21005.1
+MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuiteCRMClient", "SugarCRMClient\SuiteCRMClient.csproj", "{383E8EE7-604D-447D-A2C2-C50080D28F69}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SuiteCRMAddIn", "SuiteCRMAddIn\SuiteCRMAddIn.csproj", "{8EF51293-040D-4A83-AFC3-9EA8C328B653}"
@@ -11,10 +13,6 @@ Project("{6141683F-8A12-4E36-9623-2EB02B2C2303}") = "SuiteCRMAddInSetup", "Suite
EndProjectSection
EndProject
Global
- GlobalSection(SubversionScc) = preSolution
- Svn-Managed = True
- Manager = AnkhSVN - Subversion Support for Visual Studio
- EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
CD_ROM|Any CPU = CD_ROM|Any CPU
CD_ROM|Mixed Platforms = CD_ROM|Mixed Platforms
@@ -91,8 +89,8 @@ Global
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.CD_ROM|x86.Build.0 = CD_ROM
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Any CPU.ActiveCfg = DVD-5
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Any CPU.Build.0 = DVD-5
- {068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Mixed Platforms.ActiveCfg = DVD-5
- {068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Mixed Platforms.Build.0 = DVD-5
+ {068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Mixed Platforms.ActiveCfg = SingleImage
+ {068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|Mixed Platforms.Build.0 = SingleImage
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|x86.ActiveCfg = DVD-5
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.Debug|x86.Build.0 = DVD-5
{068824B4-9D40-4ACB-B21A-1F0BFA9C0D74}.DVD-5|Any CPU.ActiveCfg = DVD-5
@@ -117,4 +115,8 @@ Global
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
+ GlobalSection(SubversionScc) = preSolution
+ Svn-Managed = True
+ Manager = AnkhSVN - Subversion Support for Visual Studio
+ EndGlobalSection
EndGlobal
diff --git a/SuiteCRMOutlookAddIn.v12.suo b/SuiteCRMOutlookAddIn.v12.suo
new file mode 100644
index 00000000..d2bb5012
Binary files /dev/null and b/SuiteCRMOutlookAddIn.v12.suo differ
diff --git a/UpgradeLog.htm b/UpgradeLog.htm
new file mode 100644
index 00000000..3183bb4b
Binary files /dev/null and b/UpgradeLog.htm differ
diff --git a/setup.exe b/setup.exe
index dfa6336a..c840d0b4 100644
Binary files a/setup.exe and b/setup.exe differ