List of commits:
Subject Hash Author Date (UTC)
修复移动效果 8acf2c120abae11d60f6d7dadf30531fa8617c78 elapse 2020-08-25 06:58:34
可以行棋,但还没检验着法 92583f6da175c40b1763e84f10ee87dfc454d381 elapse 2020-08-25 06:44:08
处理行棋 7d14a218394c3f36c4083cf14ddc8a3d8a108cc4 elapse 2020-08-25 05:55:39
绘制棋子 8c71acbdf851871a49471ecb0fe2eea407ebbbbb elapse 2020-08-25 01:39:21
项目说明 2cb5c8ce027018f0ad31c3c3c9194ed0d6a431be Luck 2020-08-25 01:31:01
Commit 8acf2c120abae11d60f6d7dadf30531fa8617c78 - 修复移动效果
Author: elapse
Author date (UTC): 2020-08-25 06:58
Committer name: elapse
Committer date (UTC): 2020-08-25 06:58
Parent(s): 92583f6da175c40b1763e84f10ee87dfc454d381
Signing key:
Tree: 76db369c17e76394bc725d495d73da8305503b4b
File Lines added Lines deleted
lib/board/pieces-painter.dart 1 1
File lib/board/pieces-painter.dart changed (mode: 100644) (index 256740d..e6a0c7f)
... ... class PiecesPainter extends PainterBase {
142 142
143 143 /* 绘制棋子移动效果 */ /* 绘制棋子移动效果 */
144 144 if (blurIndex != -1) { if (blurIndex != -1) {
145 final int row = focusIndex ~/ 9, column = focusIndex % 9;
145 final int row = blurIndex ~/ 9, column = blurIndex % 9;
146 146
147 147 paint.color = ColorConsts.BlurPosition; paint.color = ColorConsts.BlurPosition;
148 148 paint.style = PaintingStyle.fill; paint.style = PaintingStyle.fill;
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/elapse/chinese_chess

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/elapse/chinese_chess

Clone this repository using git:
git clone git://git.rocketgit.com/user/elapse/chinese_chess

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main