Skip to content
  1. Nov 02, 2021
    • 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. Nov 01, 2021
  3. Oct 31, 2021
  4. Oct 30, 2021
  5. Oct 29, 2021
  6. Oct 28, 2021
  7. Oct 27, 2021
  8. Oct 25, 2021
  9. Oct 24, 2021
  10. Oct 23, 2021
Loading