staging #17

Merged
yangqiang merged 11 commits from staging into master 2024-05-17 10:07:28 +08:00
5 changed files with 4 additions and 2 deletions
Showing only changes of commit 001bda7d9d - Show all commits

View File

@ -94,6 +94,7 @@ jobs:
>**代码分支**: ${{ gitea.ref_name }}
>**提交标识**: ${{ gitea.sha }}
>**提交发起**: ${{ gitea.actor }}
>**提交信息**: ${{ gitea.event.head_commit.message }}\n
"
}
}

View File

@ -135,6 +135,7 @@ jobs:
>**代码分支**: ${{ gitea.ref_name }}
>**提交标识**: ${{ gitea.sha }}
>**提交发起**: ${{ gitea.actor }}
>**提交信息**: ${{ gitea.event.head_commit.message }}\n
"
}
}

View File

@ -94,6 +94,7 @@ jobs:
>**代码分支**: ${{ gitea.ref_name }}
>**提交标识**: ${{ gitea.sha }}
>**提交发起**: ${{ gitea.actor }}
>**提交信息**: ${{ gitea.event.head_commit.message }}\n
"
}
}

View File

@ -132,6 +132,7 @@ jobs:
>**代码分支**: ${{ gitea.ref_name }}
>**提交标识**: ${{ gitea.sha }}
>**提交发起**: ${{ gitea.actor }}
>**提交信息**: ${{ gitea.event.release.target_commitish }}\n
"
}
}

View File

@ -391,8 +391,6 @@ public class ExamManager : DomainService, IExamManager
var skPointMode = SKPointMode.Polygon;
if (points.Length == 1)
skPointMode = SKPointMode.Points;
else if (points.Length == 2)
skPointMode = SKPointMode.Lines;
canvas.DrawPoints(skPointMode, points, skPaint);
}