You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/Label.yml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,24 +11,24 @@ jobs:
11
11
with:
12
12
fetch-depth: 0# Fetch all commit history and tags, instead of the default fetch of only one commit
13
13
ref: ${{ github.event.pull_request.head.sha }} # Checkout the PR branch
14
-
- name: If there are changes in PublicApi.Shipped.txt, fail the workflow
14
+
- name: If there are changes in PublicAPI.Shipped.txt, fail the workflow
15
15
if: github.head_ref != 'action/ship-publicapi' # Same branch name specified in Release.yml
16
16
run: |
17
-
$changes = git diff --numstat --shortstat origin/${{ github.base_ref }}...HEAD -- '**/PublicApi.Shipped.txt' # Note that ** must expand to at least one folder here, this doesn't check root
17
+
$changes = git diff --numstat --shortstat origin/${{ github.base_ref }}...HEAD -- '**/PublicAPI.Shipped.txt' # Note that ** must expand to at least one folder here, this doesn't check root
18
18
Write-Output "$changes"
19
19
if ($changes) {
20
-
Write-Error "Changes detected in PublicApi.Shipped.txt files. Public API changes must be shipped through the release process, not in regular pull requests."
20
+
Write-Error "Changes detected in PublicAPI.Shipped.txt files. Public API changes must be shipped through the release process, not in regular pull requests."
21
21
exit 1
22
22
}
23
23
shell: pwsh
24
-
- name: Label based on PublicApi.Unshipped.txt
24
+
- name: Label based on PublicAPI.Unshipped.txt
25
25
run: |
26
26
if ("${{ github.head_ref }}" -eq "action/ship-publicapi") {
27
27
$labels = @('Type/Housekeeping')
28
28
Write-Output "This is a ship-publicapi PR, labeling as Type/Housekeeping"
TestOuter($@"={nonDisplayedAtomThatCreatesNewDisplayLine}-1",4,14,4,3*charWidth+5*mathUnit+additionalWidth,// issue 213: inserting a space between them should still work
Copy file name to clipboardExpand all lines: CSharpMath/Atom/Range.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ namespace CSharpMath.Atom {
10
10
/// <summary>
11
11
/// Corresponds to a range of <see cref="MathAtom"/>s before finalization.
12
12
/// This value is tracked in finalized <see cref="MathAtom"/>s and <see cref="Display.IDisplay{TFont, TGlyph}"/>s,
13
-
/// for utilization in CSharpMath.Editor to construct MathListIndexes from <see cref="Display.IDisplay{TFont, TGlyph}"/>s.
13
+
/// for use in <see cref="Editor.Extensions.IndexForPoint{TFont, TGlyph}(Display.IDisplay{TFont, TGlyph}, Display.FrontEnd.TypesettingContext{TFont, TGlyph}, System.Drawing.PointF)"/>.
($"Invalid space between {left.TypeName} and {right.TypeName}"),
55
+
($"Invalid space between {left.TypeName} and {right.TypeName}. The {nameof(Atoms.BinaryOperator)} should have been converted to a {nameof(Atoms.UnaryOperator)} during {nameof(MathList)}{nameof(MathList.Clone)}, then converted to an {nameof(Atoms.Ordinary)} during {nameof(Typesetter)} preparation."),
0 commit comments