Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Textadept/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ TMPDIR=/mnt/us/KFPM-Temporary
mkdir -p "$TMPDIR"

# Download + Extract
curl -fSL --progress-bar -o "$TMPDIR/textadept.zip" https://github.com/kbarni/textadept-kindle/releases/latest/download/textadept_gtk+term.zip
curl -fSL --progress-bar -o "$TMPDIR/textadept.zip" https://github.com/kbarni/textadept-kindle/releases/latest/download/textadept.zip
unzip -q "$TMPDIR/textadept.zip" -d /mnt/us

# Cleanup
Expand Down
3 changes: 2 additions & 1 deletion Textadept/uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

set -e

rm -rf /mnt/us/textadept11
rm -rf /mnt/us/textadept
rm -rf /mnt/us/extensions/textadept
rm /mnt/us/documents/textadept.sh

exit 0
15 changes: 15 additions & 0 deletions Wordgrinder/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh

set -e

TMPDIR=/mnt/us/KFPM-Temporary
mkdir -p "$TMPDIR"

# Download + Extract
curl -fSL --progress-bar -o "$TMPDIR/wordgrinder.zip" https://github.com/kbarni/wordgrinder/releases/latest/download/wordgrinder.zip
unzip -q "$TMPDIR/wordgrinder.zip" -d /mnt/us

# Cleanup
rm -rf "$TMPDIR"

exit 0
8 changes: 8 additions & 0 deletions Wordgrinder/uninstall.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

set -e

rm -rf /mnt/us/wordgrinder
rm /mnt/us/documents/wordgrinder.sh

exit 0
17 changes: 13 additions & 4 deletions registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
{
"name": "LARKPlayer",
"uri": "LARKPlayer",
"description": "LARK Is a M4B Audiobook Reader for Kindles",
"description": "LARK Is a Free Audiobook Reader for Kindles",
"author": "Barna",
"ABI": ["hf"],
"dependencies": [],
Expand Down Expand Up @@ -210,9 +210,18 @@
"uri": "Textadept",
"description": "A Desktop-Grade Text Editor For Kindle",
"author": "Barna",
"ABI": ["hf"],
"dependencies": ["kTerm"],
"tags": ["DEVELOPMENT", "PRODUCTIVITY"]
"ABI": ["hf", "sf"],
"dependencies": ["kTerm","KindleHIDPassthrough"],
"tags": ["DEVELOPMENT", "PRODUCTIVITY", "EDITORS"]
},
{
"name": "Wordgrinder",
"uri": "Wordgrinder",
"description": "The Writer's Word Processor",
"author": "Barna",
"ABI": ["hf", "sf"],
"dependencies": ["kTerm","KindleHIDPassthrough"],
"tags": ["PRODUCTIVITY", "EDITORS"]
},
{
"name": "KUAL",
Expand Down