1. 23 4月, 2018 2 次提交
  2. 21 4月, 2018 1 次提交
  3. 20 4月, 2018 1 次提交
  4. 11 3月, 2018 1 次提交
  5. 30 1月, 2018 1 次提交
  6. 23 11月, 2017 1 次提交
  7. 12 11月, 2017 1 次提交
  8. 09 11月, 2017 1 次提交
  9. 30 10月, 2017 3 次提交
  10. 28 10月, 2017 2 次提交
  11. 27 10月, 2017 1 次提交
  12. 23 10月, 2017 2 次提交
  13. 22 10月, 2017 1 次提交
  14. 19 10月, 2017 2 次提交
  15. 18 10月, 2017 2 次提交
  16. 17 10月, 2017 3 次提交
  17. 16 10月, 2017 2 次提交
  18. 13 10月, 2017 2 次提交
  19. 09 10月, 2017 4 次提交
  20. 08 10月, 2017 2 次提交
    • Huan (李卓桓)'s avatar
      use WECHATY_HEAD env var to control headless · 691209a6
      Huan (李卓桓) 提交于
      691209a6
    • Huan (李卓桓)'s avatar
      Replace WebDriver by Puppeteer (#790) (#860) · a8e4c1e4
      Huan (李卓桓) 提交于
      REFACTOR
      ----------------
      
      ### 1. Use Chrome Puppeteer to control WebWechat.
      
      All codes related with WebDriver/Selenium had been removed.
      
      1. This makes the logic simple: no server, no https endpoint, no WebSocket anymore;
      1. Removed lots of Classes, like `PuppetWebServer`, `PuppetWebBrowser`,  `PuppetWebBrowserDriver`, `ssl-pem` and `PUppetWebBrowserCookie` ;
      1. Removed all the `Xvfb` packages and settings;
      
      ### 2. Upgrade CircleCI from v1 to v2.
      
      Nothing changed except all the YAML syntax of the CircleCI configuration file.
      
      Workflows look very good, maybe set it up later.
      
      ### 3. Dockerfile switch from `alpine` to `node:7` image
      
      The size increased hugely. However, this will let us feel better if we want to add more and more packages into our Docker Image: Debian has better support to the packaging ecosystem.
      
      ### 4. Drop Node.js v6 support
      
      No special reasons, it's just tooold.
      
      ### 5. Use `blue-tape` to do unit testing, with Typing support.
      
      Do not use AVA anymore, do not wait for TAP anymore. They all support TypeScript not well.
      
      ### 6. Separate source code related with `watchdog` to a new NPM module.
      
      It's modulized very well and can be used as needed everywhere: https://github.com/zixia/watchdog
      
      ### 7. Created a new module `RxQueue` for `throttle` / `debounce` / `delay` tasks.
      
      Consider publishing a solo NPM module in the future.
      
      ### 8. Arrange all the WEB JSON data structure
      
      Save them into a single file: `schema.ts`
      
      ### 9. A new Class for manage Wechaty Profile
      
      Use it to `new Profile('botName')` and `save()`/`load()`/`get()`/`set` etc.
      a8e4c1e4
  21. 02 10月, 2017 3 次提交
    • Huan (李卓桓)'s avatar
      log body when json exception (#846) · 867a15f8
      Huan (李卓桓) 提交于
      867a15f8
    • Huan (李卓桓)'s avatar
      workaround for #846 · d8040f88
      Huan (李卓桓) 提交于
      d8040f88
    • 杉木树下's avatar
      fix(*): Support for send 25Mb+ files (#771) · 43200033
      杉木树下 提交于
      * fix(*): Support for send 25Mb+ files
      
      1. Upload a file larger than 25Mb.
      2. Limit the upload file to no more than 100Mb.
      3. According to webwxapp perfect upload processing.
      4. Increase the upload and handling of upload exceptions.
      
      * refactor(*): add support download file and send it again
      
      1. add MediaMessage.saveFile() , used to save attachment
      2. Refactor MediaMessage.forward(), support send to Room and Contact
      array, add support download big file and send it again.
      
      * fix(*): fix reuse data
      
      * dev code
      
      * fix(message): Remove support for foward 25Mb+ files in forward()
      
      Because webWx restrictions, more than 25 MB of files can not be
      downloaded, it can not be forwarded.
      
      * fix: fix send files after restart
      
      Closes 777
      
      * feat(MediaMessage): support forward their own upload 25Mb+ file
      
      * style: clean code
      
      * docs: Modify forward support 25Mb+ file descrption
      
      * fix: fix after upload file,display is cancel button
      
      * clean code
      
      * refactor(MediaMessage): Modify saveFile() return Promise<void>
      
      * clean code
      43200033
  22. 05 9月, 2017 2 次提交