Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Changing remotes in the git project settings pages now works if remote is not already defined (#746)
- User-specific basic mode setting can now be changed when settingsUIReadOnly is set (#775)
- Fixed an error displaying the Web UI after reverting a commit (#776)
- Fixed errors exporting items when directory casing does not match mappings (#781)
- Improved accessibility of UI when tabbing through items (#764)

## [2.11.0] - 2025-04-23
Expand Down
5 changes: 2 additions & 3 deletions cls/SourceControl/Git/Utils.cls
Original file line number Diff line number Diff line change
Expand Up @@ -748,11 +748,11 @@ ClassMethod Exists(ByRef pFilename) As %Boolean
If ##class(%File).Exists(pFilename) {
Return 1
}
Set tDirectory = ##class(%File).ParentDirectoryName(pFilename)
Set tDirectory = ##class(%File).GetDirectory(pFilename)
If '##class(%File).DirectoryExists(tDirectory) {
Return 0
}
Set tName = $Piece(pFilename, tDirectory, 2, *)
Set tName = ##class(%File).GetFilename(pFilename)
Set tFileName = $Piece(tName, ".", 1, * - 1)
Set tFileExt = $Piece(tName, ".", *)
for tExt = $$$LOWER(tFileExt), $$$UPPER(tFileExt) {
Expand Down Expand Up @@ -3219,4 +3219,3 @@ ClassMethod IsSchemaStandard(pName As %String = "") As %Boolean [ Internal ]
}

}

Loading