From 40e6eab42d1d0a8215992c76da5bb0701790f96f Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 22 Mar 2026 18:35:41 -0400 Subject: [PATCH] feat: shorten application titles in apps database and remove unused entries --- etc/apps.db | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/etc/apps.db b/etc/apps.db index fb47216..6f9a637 100644 --- a/etc/apps.db +++ b/etc/apps.db @@ -1,11 +1,11 @@ { [ "im_inventory_manager" ] = { - title = "Inventory Manager", + title = "Inv Manager", category = "Inventory", run = "inventoryManager.lua", }, [ "im_inventory_client" ] = { - title = "Inventory Display", + title = "Inv Display", category = "Inventory", run = "inventoryClient.lua", }, @@ -13,21 +13,11 @@ title = "Crafting Turtle", category = "Inventory", run = "craftingTurtle.lua", - requires = { turtle = true }, - }, - [ "im_dropper_controller" ] = { - title = "Dropper Controller", - category = "Inventory", - run = "dropperController.lua", + requires = "turtle", }, [ "im_web_bridge" ] = { - title = "Inventory Web Bridge", + title = "Inv Web Bridge", category = "Inventory", run = "inventoryWebBridge.lua", }, - [ "im_list_devices" ] = { - title = "List Devices", - category = "Inventory", - run = "listDevicesByType.lua", - }, }