├── DingTalkHelper.plist ├── LICENSE ├── Makefile ├── README.md ├── control └── src ├── DingTalkHelper.h ├── LLCollectConfig.xm ├── LLFaceDetector.xm ├── LLImagePicker.h ├── LLImagePicker.m ├── LLPunchConfig.h ├── LLPunchConfig.m ├── LLPunchManager.h ├── LLPunchManager.m ├── LLPunchSetting.xm └── Tweak.xm /DingTalkHelper.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/DingTalkHelper.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DingTalkHack 2 | iOS版钉钉远程打卡插件 支持Wi-Fi和定位两种打卡模式 3 | -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/control -------------------------------------------------------------------------------- /src/DingTalkHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/DingTalkHelper.h -------------------------------------------------------------------------------- /src/LLCollectConfig.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLCollectConfig.xm -------------------------------------------------------------------------------- /src/LLFaceDetector.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLFaceDetector.xm -------------------------------------------------------------------------------- /src/LLImagePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLImagePicker.h -------------------------------------------------------------------------------- /src/LLImagePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLImagePicker.m -------------------------------------------------------------------------------- /src/LLPunchConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLPunchConfig.h -------------------------------------------------------------------------------- /src/LLPunchConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLPunchConfig.m -------------------------------------------------------------------------------- /src/LLPunchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLPunchManager.h -------------------------------------------------------------------------------- /src/LLPunchManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLPunchManager.m -------------------------------------------------------------------------------- /src/LLPunchSetting.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/LLPunchSetting.xm -------------------------------------------------------------------------------- /src/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eziochiu/DingTalkHack/HEAD/src/Tweak.xm --------------------------------------------------------------------------------