1. 02 Nov, 2021 2 commits
    • Fletcher Porter's avatar
      Move the cmake submodule checkout command to a new line · 2b3d66fe
      Fletcher Porter authored
      Presently, if you forget to initialize the git submodules before
      running cmake, there'll be a helpful message that reminds you to do so.
      However, on narrow terminals (e.g. 80 wide) there's a word wrap that
      includes a new line in the middle of the git command, precluding easy
      copy-paste.  This moves the entire git command to its own line to avoid
      such tragedies.
      
      Before:
      
      ```
      CMake Error at CMakeLists.txt:59 (message):
        Git submodule externals/inih/inih not found.  Please run: git submodule
        update --init --recursive
      ```
      
      After:
      
      ```
      CMake Error at CMakeLists.txt:59 (message):
        Git submodule externals/inih/inih not found.  Please run:
      
        git submodule update --init --recursive
      ```
      2b3d66fe
    • bunnei's avatar
      Merge pull request #7227 from vonchenplus/fix_memory_leak_v2 · b118fa86
      bunnei authored
      Fix memory leak v2
      b118fa86
  2. 01 Nov, 2021 2 commits
  3. 31 Oct, 2021 1 commit
  4. 30 Oct, 2021 5 commits
  5. 29 Oct, 2021 8 commits
  6. 28 Oct, 2021 5 commits
  7. 27 Oct, 2021 4 commits
  8. 25 Oct, 2021 2 commits
  9. 24 Oct, 2021 5 commits
  10. 23 Oct, 2021 6 commits