File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
release/share/git-webui/webui/js
src/share/git-webui/webui/js Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
- Added environment awareness in configuration, and showing of environment name in UI (#124 )
16
16
- Warning on sync page if other users have unstaged changes (#493 )
17
17
- Added "Export System Default Settings" menu item (#544 )
18
+ - IRIS Business Intelligence items are mapped to the /dfi subdirectory by default (#428 )
18
19
19
20
### Fixed
20
21
- Fixed display of other users' username in workspace view on Unix (#530 )
@@ -33,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
34
- Remove leading/trailing spaces from input to Configure() (#356 )
34
35
- Fix branches with special characters not showing in GitUI (#523 )
35
36
- Fix filenames with spaces not showing correctly in workspace view (#551 )
37
+ - Removed inaccurate placeholder text for commit message in UI (#406 )
36
38
37
39
## [ 2.6.0] - 2024-10-07
38
40
Original file line number Diff line number Diff line change @@ -2830,6 +2830,7 @@ ClassMethod SetDefaultMappings(mappingsNode As %String)
2830
2830
set @mappingsNode @(" CLS" ," UnitTest" )=" test/"
2831
2831
set @mappingsNode @(" INC" ," *" )=" inc/"
2832
2832
set @mappingsNode @(" MAC" ," *" )=" rtn/"
2833
+ set @mappingsNode @(" DFI" ," *" )=" dfi/"
2833
2834
}
2834
2835
2835
2836
ClassMethod PrintStreams (streams ... As %Stream .FileCharacter )
Original file line number Diff line number Diff line change @@ -3041,7 +3041,7 @@ webui.NewChangedFilesView = function(workspaceView) {
3041
3041
'</div>' +
3042
3042
'<div class="commit-area col-sm-6">' +
3043
3043
'<div class="form-group">' +
3044
- '<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required, 72 character limit )">' +
3044
+ '<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required)">' +
3045
3045
'</div>' +
3046
3046
'<div class="form-group">' +
3047
3047
'<textarea class="form-control" id="commitMsgDetail" rows="4" placeholder="Enter commit details (optional)"></textarea>' +
Original file line number Diff line number Diff line change @@ -3041,7 +3041,7 @@ webui.NewChangedFilesView = function(workspaceView) {
3041
3041
'</div>' +
3042
3042
'<div class="commit-area col-sm-6">' +
3043
3043
'<div class="form-group">' +
3044
- '<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required, 72 character limit )">' +
3044
+ '<input type="area" class="form-control" id="commitMsg" placeholder="Enter commit message (required)">' +
3045
3045
'</div>' +
3046
3046
'<div class="form-group">' +
3047
3047
'<textarea class="form-control" id="commitMsgDetail" rows="4" placeholder="Enter commit details (optional)"></textarea>' +
You can’t perform that action at this time.
0 commit comments