Commit Graph

  • 987ac44575 add company 2FA in utool.py and remove old rokae files main gitea 2024-08-16 10:11:24 +08:00
  • e8159fc8cb [modify] change scripts path with mid-fix "/git/", and do a exclude for syncthing due to too big tar ball gitea 2024-06-02 08:01:54 +08:00
  • cc1463b166 [modify] textbox color, nagative value gitea 2024-05-31 18:33:36 +08:00
  • 14c72fe080 [modify] change vers location again gitea 2024-05-31 08:52:18 +08:00
  • 2922806e9c [modify] change domain to intranet addr in vers check gitea 2024-05-30 20:25:32 +08:00
  • 06e5111309 5. 重新在write2textbox中添加exitcode参数,并补齐相关逻辑和修改brake中的调用方式 6. 修复参数检查无效的情况 7. 屏蔽电流相关的功能 gitea 2024-05-30 17:12:43 +08:00
  • b04b9e9205 v0.1.1(2024/05/30) 1. 增加版本检测功能 2. 修改了无效数据下的动作 3. textbox只在开始和结束时改变状态,而不是每次写入都更改 4. 调整了brake的结构 gitea 2024-05-30 16:24:54 +08:00
  • cad7792fa1 [modify] skip when data is invalid gitea 2024-05-30 15:08:42 +08:00
  • fd553b3442 [modify] minor modification gitea 2024-05-30 14:37:39 +08:00
  • 9b849897e2 [modify] minor modification, change write2textbox and using shorter func name gitea 2024-05-30 08:28:59 +08:00
  • 05f461f8c1 v0.1.0(2024/05/29) 1. 修改为customtkinter图形化界面 2. 支持工业机器人制动数据处理(理论上支持,测试数据有问题,待验证) 3. 删除configs.xlsx配置表格,直接在界面配置,新增layout.xlsx文件,存储customtkinter布局 4. 电流尚未支持 gitea 2024-05-29 19:15:44 +08:00
  • 1cee89cd0a v0.0.7(2024/05/27) 1. 该版本制动数据处理变动较大,重写了find_row_start & copy_data_to_result,删除了delete_excel_files 2. 主要是修改了数据处理的方式,直接使用pandas进行数据处理,跳过了openpyxl来回变换,节省了大量的IO以及时间 gitea 2024-05-27 19:15:29 +08:00
  • 203138947b [modify] AXIS is int, and add wb_data param in find_row_start() and modify accordingly; also the info of damage of result files gitea 2024-05-23 20:52:06 +08:00
  • 3d2e0e33af [modify] change icon.ico to true ico, and modify time format gitea 2024-05-23 20:12:07 +08:00
  • e11dc60438 [modify] v0.0.6(2024/05/23) 1. 为了调整多功能框架,aio.py文件将会作为入口程序存在,不实现具体功能,功能的实现将由具体的功能脚本实现,aio.py只负责条件调用 2. 新增了自动化处理电流数据(电机/过载)的功能 gitea 2024-05-23 17:35:34 +08:00
  • 7123fa1147 [modify] rename workdir gitea 2024-05-23 17:33:26 +08:00
  • f1fd1aaff5 [modify] add attention sheet gitea 2024-05-23 16:19:17 +08:00
  • 2dec392e50 [modify] minor modifications, see readme.txt in v0.0.5 the later half part gitea 2024-05-23 16:12:35 +08:00
  • 6cb768a05e [modify] change var place in initialization func gitea 2024-05-23 15:11:22 +08:00
  • a0f8f49b27 [modify] delete some comments gitea 2024-05-23 14:11:53 +08:00
  • 09d63b6630 [add] icon.ico and readme.txt gitea 2024-05-23 14:00:32 +08:00
  • 44ef429d5a [modify] v0.0.5(2024/05/23) 1. 完善了函数注释 2. 调整了阈值和步长 3. 删除了just_open函数,以及对应的win32com库(Thank GOD!终于可以不用这个库了) 4. 重写了获取开始点位的代码,直接使用speed来判断,而不用角度,所以find_row_start_dp以及copy_data_to_excel_file函数也被一并删除 gitea 2024-05-23 13:59:06 +08:00
  • de6d1d47c8 [midify] v0.0.4(2024/05/22) 1. 重新标定了get_threshold_step函数,让处理更加准确 2. 新定义了now_doing_msg函数,实时输出处理信息 3. 修改了find_row_start和find_row_start_dp函数,增加的部分相同,处理数据的时候,先判断是否是空值,或者是0,此时可以加快步进 4. 修改了just_open函数,不在做重试 gitea 2024-05-23 11:25:45 +08:00
  • b335f61c72 [modify] v0.0.3(2024/05/21) 1. just_open函数打开失败的信息中,添加文件名 2. 删除global变量,函数全部通过传参实现 3. configuration.xlsx配置文件增加AXIS常量,表示那个轴,取值为 j1/j2/j3/j4/j5/j6/j7 4. [bugfix] 增加get_threshold_step函数,用来获取在计算row_start时合适的阈值和步长,主要是解决了二轴最差工况下,最大速度是个尖端的问题: a. load100_speed100_reachxxx 二轴 threshold = 50 step = 20 b. 其他 threshold = 50 step = 100 如上是一个比较保守的设定,因为设定的step比较小,找到点之后要往后延200最好 5. 在find_row_start_dp函数中新增一个参数data_file,方便后续调试 gitea 2024-05-23 11:23:32 +08:00
  • c61686065e [modify] v0.0.2(2024/05/20) 1. 功能模块化,为后面其他功能奠定一个基本的框架 2. 使用了多线程提高效率 3. 优化了准备工作中的细节 4. 运行初始化时自动删除 raw_data_dir 中的 .xlsx 文件 5. 优化了输出格式 6. 使用 pyinstaller 库进行代码冻结并调试成功 gitea 2024-05-23 11:07:35 +08:00
  • 9a001021b1 [init] v0.0.1 drafts gitea 2024-05-23 11:03:12 +08:00
  • 6080fe48c1 [modify] 1. systemd-networkd service 2. add a mod blacklist 3. bluetooth 4. remove unused files when do a backup gitea 2024-05-19 11:33:36 +08:00
  • 36a18e870f [modify] make a exception for v2raya gitea 2024-05-19 11:31:23 +08:00
  • 40e14b5cc7 [add] create rokae scripts dir, and add script for processing brake data gitea 2024-05-19 11:30:57 +08:00
  • a96f533f8f [modify] make ifconfig output to /opt/wd/99-Temp/ifconfig.txt on the start of the system gitea 2024-05-19 11:28:01 +08:00
  • b36c0b6939 [modify] delete sysctl related parts and add conf backup for netdata gitea 2024-04-27 21:46:49 +08:00
  • 7e68bbb891 [modify] delete jekyll related parts gitea 2024-04-27 21:45:42 +08:00
  • 21f481076c [modify] exclude grep/ps/utool process when filtering gitea 2024-01-14 11:10:05 +08:00
  • fc60587252 [modify] add cert sync for windows nginx gitea 2024-01-14 11:08:53 +08:00
  • d1afa8e0ad [add] qiyeweixin bot for suqian gitea 2024-01-14 11:08:24 +08:00
  • 09f73bb770 [modify] add new functions of find docker pid and print top 20 info of mem & cpu gitea 2023-11-30 08:32:14 +08:00
  • ed631e97c2 [modify] change restart mem limit from 1000 to 500 gitea 2023-11-30 08:30:48 +08:00
  • f5c9f65fe7 [modify] test gitea 2023-11-27 14:48:15 +08:00
  • 999b8d977d [modify] rewrite via parseargs module gitea 2023-11-26 11:16:48 +08:00
  • c6cb2cf281 [add] check frp service, restart it or push an alert to iphone gitea 2023-11-26 11:16:06 +08:00
  • d6784fa70c [modify] change syncthing location, also the nginx of windows client gitea 2023-11-18 11:10:47 +08:00
  • 52dccb1787 [remove] todo app not used anymore gitea 2023-11-17 20:18:14 +08:00
  • dbc0c638fd [modify] complete rewrite of utool gitea 2023-11-12 22:15:31 +08:00
  • 1931445c13 [add] rewrite utool with enclosure function gitea 2023-11-09 19:44:45 +08:00
  • 816b07306f [modify] move utool.py to old/ gitea 2023-11-09 19:43:47 +08:00
  • 88a5898f8c [modify] remove restore.sh script gitea 2023-11-01 20:02:49 +08:00
  • 6523b0eac0 [modify] change multi-thread compression algo from pixz to pigz, and add a comment of how to uncompress gitea 2023-11-01 16:33:50 +08:00
  • cf91fbd224 [modify] rsync will sync everything to backup dir, but tar will exlude some big folder instead, and fix wrong scp gitea 2023-11-01 11:01:24 +08:00
  • c8be4e5d2c [modify] change the device key and domain gitea 2023-10-27 21:27:58 +08:00
  • 578e1ba496 [modify] remove rand logo for dashboard, change homepage hourly rand logo generation, and add rustle.cc cert sync to windows monthly gitea 2023-10-27 21:26:14 +08:00
  • 2a78030816 [modify] remove restore.sh, and add tailscale sysctl file gitea 2023-10-27 20:54:57 +08:00
  • 459e3bc59b [modify] remove rand logo script, not using gitea 2023-10-27 20:54:29 +08:00
  • 7b07df0ec0 [modify] add nextcloud sync on 01:00 everyday gitea 2023-10-19 20:39:40 +08:00
  • d4f132eebd [modify] renew frpc-visitor origin path, and move cert sync to first day of month gitea 2023-10-19 20:38:59 +08:00
  • b5d13cdf5b [modify] remove rsync of syncthing and add frpc-visitor backup gitea 2023-10-19 20:17:41 +08:00
  • 9d07b32e46 [modify] remove initialization of openwrt gitea 2023-10-19 20:16:55 +08:00
  • d2fd9a6a25 [remove] old scripts, not using anymore gitea 2023-10-19 20:14:39 +08:00
  • 5e821cf08c [modify] add backup for windows frpc xtcp gitea 2023-10-16 01:54:10 +08:00
  • 5eff1f0ac7 remove test gitea 2023-10-16 01:49:11 +08:00
  • 37e4634213 test gitea 2023-10-15 12:58:29 +08:00
  • af558f33f9 [modify] not sync music dir of koel, and fix name error of syncthing gitea 2023-10-14 13:55:41 +08:00
  • d7fccd74b9 [modify] remove old navigation related gitea 2023-10-04 21:28:28 +08:00
  • 773e2552ac [modify] add a copy of interfaces gitea 2023-09-15 20:00:52 +08:00
  • 59cb3622f4 [add] rsync syncthing files to nextcloud gitea 2023-09-08 16:52:33 +08:00
  • 90aea333fd [modify] add reboot function and initialization on startup gitea 2023-09-08 16:52:07 +08:00
  • 20813a992f [modify] remove calibre & jekyll things to old/, and change the name and content of shutdown.sh gitea 2023-09-08 16:50:12 +08:00
  • 9b97d42f31 [modify] fix logo number error gitea 2023-09-01 17:20:23 +08:00
  • 42ec2ca2b7 [modify] use dos2unix tool to change the file gitea 2023-09-01 16:16:09 +08:00
  • 1168fa1d36 [modify] add comments of usage gitea 2023-09-01 16:15:39 +08:00
  • 62a7fa644a [modify] change gitignore content to make it effect gitea 2023-09-01 16:15:17 +08:00
  • 4958bed672 [delete] remove alert/bark/option.json file gitea 2023-09-01 16:14:07 +08:00
  • 22da887f77 [add] create gitignore file gitea 2023-09-01 16:12:28 +08:00
  • 4c15418d6f [modify] add to pic space reduction software gitea 2023-08-31 22:31:45 +08:00
  • 9e7424efe2 [modify] make inotify to blog work on background gitea 2023-08-31 22:30:55 +08:00
  • eca21bb3d0 [modify] change passwd of xgdfmf on the third party client gitea 2023-08-31 22:29:38 +08:00
  • ddbb77c59e [add] bark server file, notification on iPhone gitea 2023-08-31 22:28:53 +08:00
  • 19f72612cd [modify] make mavvlan take effect by putting this action 20s after NIC setting gitea 2023-08-28 11:42:13 +08:00
  • ce95c20bc4 [add/modify] add macvlan.sh for create a macvlan network, and add this action to init.sh gitea 2023-08-28 10:11:37 +08:00
  • ac2ee2f48c [modify] add a condition to determine if the file is empty gitea 2023-08-25 22:04:40 +08:00
  • e0cdc133a2 [modify] add scp certs action to arm1/arm2/amd gitea 2023-08-25 21:51:15 +08:00
  • 8d11aa9ec8 [modify] change alert method to mail gitea 2023-08-25 21:50:46 +08:00
  • 5efa59be75 [add] send mail via python, using as an alert method gitea 2023-08-25 21:46:07 +08:00
  • b32ea0978d [modify] move useless scripts to old dir gitea 2023-08-25 21:45:25 +08:00
  • d05c443552 [modify] add x-ui installation guide and docker image updating method gitea 2023-08-23 08:01:42 +08:00
  • 38b59e86c3 [modify] add operation with shutdown.sh gitea 2023-08-22 21:25:05 +08:00
  • 76c82ded84 [momdify] another way to find server local ip gitea 2023-08-22 21:24:14 +08:00
  • b7c656afd3 [add] manually shutdown server by testing file /opt/wd/99-Temp/shutdown gitea 2023-08-22 21:23:11 +08:00
  • 6e50da6f8d [modify] add comments about laptop lid gitea 2023-07-26 09:26:48 +08:00
  • 1ab7a327ca [modify] change calibre_pids location to source code folder gitea 2023-07-26 09:26:23 +08:00
  • aee4d3ca16 [modify] delete localip.sh from docker_alarm.sh, and rearrange exec sequence of init.sh, put jekyll related script at bottom gitea 2023-07-26 09:25:47 +08:00
  • d796401648 [modify] move localip.sh to old/ gitea 2023-07-26 09:24:07 +08:00
  • e0b5bfbdcd [omdify] make a copy of localip.txt to /opt/wd/99-Temp gitea 2023-07-24 15:54:59 +08:00
  • 41cfb25650 [omdify] add new rsync for syncthing gitea 2023-07-24 15:54:14 +08:00
  • 2b4d9f1bf5 [modify] copy restore.sh to syncthing everyday, and do a compression on 1st of every month gitea 2023-07-06 14:04:11 +08:00
  • 15362bfeea [mmodify] add gem source in China, and add more info about openwrt gitea 2023-07-05 21:01:23 +08:00
  • ea87853a7b [modify] due to possible reasons which will cause some task will not be executed, so change the sleep time and remove sleep time before localip.sh execution gitea 2023-07-05 20:59:05 +08:00
  • 94aba6a154 [mmodify] add localip.sh execution in this script, will executed every hour gitea 2023-07-05 20:57:44 +08:00
  • 77a475b51e [add] get local ip, and write it to /opt/wd/99-Temp/localip.txt gitea 2023-07-05 20:56:53 +08:00
  • 3c1609aa68 [modify] add openwrt to restore and gather all tasks which need to execute to init.sh gitea 2023-07-04 17:53:43 +08:00
  • 6c8bfaa252 [modify]: minor changes gitea 2023-06-30 22:00:09 +08:00