Skip to content

Commit 0a9fc7d

Browse files
authored
Merge branch 'intersystems:main' into push-button
2 parents e44befb + 67fbf79 commit 0a9fc7d

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.1] - Unreleased
9+
10+
### Fixed
11+
- Studio export path doesn't get weird mixed slahes on Windows (#252)
12+
813
## [2.2.0] - 2023-06-05
914

1015
### Added

cls/SourceControl/Git/Extension.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ Method OnAfterDelete(InternalName As %String) As %Status
266266
/// the routine/class/csp item. This is often a filename to write the file out to.
267267
Method ExternalName(InternalName As %String) As %String
268268
{
269-
quit ##class(Utils).Name(InternalName)
269+
quit ##class(Utils).ExternalName(InternalName)
270270
}
271271

272272
Method IsReadOnly(InternalName As %String) As %Boolean

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ ClassMethod NormalizeFolder(folder As %String) As %String
498498

499499
ClassMethod ExternalName(InternalName As %String, ByRef MappingExists As %Boolean) As %String
500500
{
501-
quit ..Name(.InternalName,.MappingExists)
501+
quit $Replace(..Name(.InternalName,.MappingExists),"/",..#Slash)
502502
}
503503

504504
ClassMethod AddToServerSideSourceControl(InternalName As %String) As %Status

module.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Document name="git-source-control.ZPM">
44
<Module>
55
<Name>git-source-control</Name>
6-
<Version>2.2.0</Version>
6+
<Version>2.2.1</Version>
77
<Description>Server-side source control extension for use of Git on InterSystems platforms</Description>
88
<Keywords>git source control studio vscode</Keywords>
99
<Packaging>module</Packaging>

0 commit comments

Comments
 (0)