diff --git a/Doxyfile b/Doxyfile index fb66ea4c..7666406d 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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.19.111 +PROJECT_NUMBER = 3.0.19.112 # 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 diff --git a/README.md b/README.md index f3c04a0a..39ce028f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ### What's in this repository -SuiteCRM Outlook Plug-In v 3.0.19.111 +SuiteCRM Outlook Plug-In v 3.0.19.112 This repository has been created to allow community members to collaborate and contribute to the project. diff --git a/SuiteCRMAddIn/BusinessLogic/SyncDirection.cs b/SuiteCRMAddIn/BusinessLogic/SyncDirection.cs index 8c5bd80e..baacf8b2 100644 --- a/SuiteCRMAddIn/BusinessLogic/SyncDirection.cs +++ b/SuiteCRMAddIn/BusinessLogic/SyncDirection.cs @@ -36,8 +36,7 @@ public enum Direction Neither = 0, Export = 1, Import = 2, - BiDirectional = 3, - Manual = 4 // note that 'Manual' might be better termed 'Manual Import'. + BiDirectional = 3 } /// @@ -63,9 +62,6 @@ public static string ToString(Direction direction) case Direction.BiDirectional: result = "Both"; break; - case Direction.Manual: - result = "Manual"; - break; default: result = "Shouldn't happen"; break; @@ -91,9 +87,7 @@ public static bool AllowInbound(Direction direction) /// True if this direction allows outbound transfers. public static bool AllowOutbound(Direction direction) { - return (direction == Direction.Import || - direction == Direction.BiDirectional || - direction == Direction.Manual); + return (direction == Direction.Import || direction == Direction.BiDirectional); } } } diff --git a/SuiteCRMAddIn/Properties/AssemblyInfo.cs b/SuiteCRMAddIn/Properties/AssemblyInfo.cs index 8b09766e..682eaff4 100644 --- a/SuiteCRMAddIn/Properties/AssemblyInfo.cs +++ b/SuiteCRMAddIn/Properties/AssemblyInfo.cs @@ -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.19.111")] +[assembly: AssemblyVersion("3.0.19.112")] [assembly: AssemblyFileVersion("3.0.1")] diff --git a/SuiteCRMAddInWixSetup/Product.wxs b/SuiteCRMAddInWixSetup/Product.wxs index c6be0c19..9bcd7fa3 100644 --- a/SuiteCRMAddInWixSetup/Product.wxs +++ b/SuiteCRMAddInWixSetup/Product.wxs @@ -4,7 +4,7 @@ Id="A784C437-58CF-4495-BE4A-F77657600001" Name="SuiteCRMAddIn" Language="1033" - Version="3.0.19.111" + Version="3.0.19.112" Manufacturer="SalesAgility" UpgradeCode="F50E9CEB-D641-4FC6-8E16-483505C3455A"> diff --git a/SuiteCRMClient/Properties/AssemblyInfo.cs b/SuiteCRMClient/Properties/AssemblyInfo.cs index 2b90d941..a0018fa0 100644 --- a/SuiteCRMClient/Properties/AssemblyInfo.cs +++ b/SuiteCRMClient/Properties/AssemblyInfo.cs @@ -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.19.111")] +[assembly: AssemblyVersion("3.0.19.112")] [assembly: AssemblyFileVersion("1.0.0.0")]