Skip to content

Commit

Permalink
Deploy bug fix update
Browse files Browse the repository at this point in the history
Cherry picked a number of bug fixes from the dev branch over to master. See #281
  • Loading branch information
joyfullservice committed Nov 9, 2021
1 parent 2699590 commit 6b2112a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Version Control.accda.src/dbs-properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"Type": 10
},
"AppVersion": {
"Value": "3.4.17",
"Value": "3.4.18",
"Type": 10
},
"Auto Compact": {
Expand Down
4 changes: 2 additions & 2 deletions Version Control.accda.src/modules/clsOptions.cls
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ Private Sub SetBuildPath()
Set prp = GetPropertyByName(cstrBuildPathProperty)

' This should only be done on an open database/project
If DatabaseFileOpen Then
If DatabaseOpen Then
' Check the export folder option
If Me.ExportFolder = vbNullString Then
' When using the default of a blank export path, we don't need
Expand Down Expand Up @@ -727,7 +727,7 @@ Private Function GetPropertyByName(strName As String) As AccessObjectProperty
If DatabaseOpen Then
For Each prp In CurrentProject.Properties
If prp.Name = cstrSourcePathProperty Then
Set GetSavedSourcePathProperty = prp
Set GetPropertyByName = prp
Exit For
End If
Next prp
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vbe-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"Items": {
"Name": "MSAccessVCS",
"Description": "Version 3.4.17 deployed on 9/23/2021",
"Description": "Version 3.4.18 deployed on 11/9/2021",
"FileName": "Version Control.accda",
"HelpFile": "",
"HelpContextId": 0,
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vcs-options.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Info": {
"AddinVersion": "3.4.17",
"AddinVersion": "3.4.18",
"AccessVersion": "14.0 32-bit"
},
"Options": {
Expand Down

0 comments on commit 6b2112a

Please sign in to comment.