This commit is contained in:
2025-11-21 23:23:22 -08:00
parent 7ab50da2af
commit dda1cfc18f
3 changed files with 26 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
project(ke C) # Specify C language explicitly
set(CMAKE_C_STANDARD 99)
set(KE_VERSION "0.9.3")
set(KE_VERSION "1.0.0")
# Add executable
add_executable(ke main.c)

16
LICENSE Normal file
View File

@@ -0,0 +1,16 @@
Copyright (c) 2011-2020 Kyle Isom <kyle@imap.cc>
Permission to use, copy, modify, and distribute this software for
any purpose with or without fee is hereby granted, provided that
the above copyright notice and this permission notice appear in all
copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA
OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.

9
README.txt Normal file
View File

@@ -0,0 +1,9 @@
ke: kyle's text editor
This is a wordstar-inspired text editor. I wrote it mostly
in February of 2020; it's my main git editor now so it gets
used fairly often.
See the man page for more info.
Released under an ISC license.