codeskyblue
codeskyblue
- [ ] 跨网段设备连接 - [ ] 显示设备的区域 - [x] 只显示连接成功的设备 - [ ] 保留屏幕旋转的功能
  
``` $ goservice start --name some ./some-service -addr :8000 LOG: some.log NOTIFICATIONS: DingTalk(token=xxxxxx) $ goservice stop some stopped $ goservice status NAME STATUS some stopped ```
复线方法 1. 启动一个应用 2. 点击Edit 3. Stop那个应用
tested in Mac, it looks fine.
目前需要针对不同分辨率的设备分别进行截图,可以增加一个选项来调整 假设手机分辨率是 1920x1280 而只有图片 960x720,既然比例都是16:9。根据游戏的等价缩放原则,直接将手机的截图进行等比的缩放,进而去识别。可以大大提高脚本编写的速度。 ```python import atx d = atx.connect() d.auto_resize = True d.click_image("[email protected]") # d.click_image("[email protected]") ``` 为了对非游戏的项目造成困惑,需要一个开关 `d.auto_resize`