From 0784fec5f54024c1f6e523ae451a78cb3aa87610 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 28 Mar 2022 05:02:32 -0500 Subject: [PATCH] what?! --- TODO.md | 15 --------------- amongus/RtMidiConfigUninstall.cmake.in | 21 --------------------- 2 files changed, 36 deletions(-) delete mode 100644 TODO.md delete mode 100644 amongus/RtMidiConfigUninstall.cmake.in diff --git a/TODO.md b/TODO.md deleted file mode 100644 index 256b81d1..00000000 --- a/TODO.md +++ /dev/null @@ -1,15 +0,0 @@ -# to-do for 0.6 - -- **auto-backup. please.** -- non-monospaced fonts in pattern editor -- panning macro -- pitch macro -- sample editor - - keybinds - - don't allow editing samples that aren't 8/16-bit - - maybe an hex editor -- piano/input pad -- MIDI input -- all the systems -- Also confused as to why after playing a row with Ctrl-Enter, you are locked out of moving the cursor outside of +/- 1 position and THEN typing something places it under the actual cursor, and not the ghost cursor. it seems like just a way to get "please can we play rows" people to be quiet because it's otherwise effectively useless -- edit latch! and maybe separate edit masks diff --git a/amongus/RtMidiConfigUninstall.cmake.in b/amongus/RtMidiConfigUninstall.cmake.in deleted file mode 100644 index db894b3f..00000000 --- a/amongus/RtMidiConfigUninstall.cmake.in +++ /dev/null @@ -1,21 +0,0 @@ -if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") -endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - -file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) -string(REGEX REPLACE "\n" ";" files "${files}") -foreach(file ${files}) - message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") - if(EXISTS "$ENV{DESTDIR}${file}") - exec_program( - "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" - OUTPUT_VARIABLE rm_out - RETURN_VALUE rm_retval - ) - if(NOT "${rm_retval}" STREQUAL 0) - message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") - endif(NOT "${rm_retval}" STREQUAL 0) - else(EXISTS "$ENV{DESTDIR}${file}") - message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") - endif(EXISTS "$ENV{DESTDIR}${file}") -endforeach(file)