refactor: rename core.search to core.stringhelpers
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-10 19:07:13 +00:00
parent 587177f6bb
commit 80f30d8e69
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ uses
proc.mgr,
proc.types,
core.strings,
core.search,
core.stringhelpers,
core.gfx.fileicons,
io.syslog,
debug.tracer,
+1 -1
View File
@@ -61,7 +61,7 @@ uses
driver.video.lvgl,
driver.storage.types,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
debug.tracer,
core.util, arch.x86.util,
+1 -1
View File
@@ -39,7 +39,7 @@ uses
driver.storage.types,
driver.storage.filedispatch,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
io.stdio,
debug.tracer,
+2 -2
View File
@@ -84,7 +84,7 @@ uses
driver.storage.mgr,
driver.storage.test,
core.strings,
core.search,
core.stringhelpers,
io.syslog,
driver.exp.testdriver,
proc.testprocs,
@@ -328,7 +328,7 @@ begin
{ Run unit tests }
boot.splash.update(65, 'Running test suite...');
core.strings.UnitTest;
core.search.UnitTest;
core.stringhelpers.UnitTest;
driver.bus.usb.types.UnitTest;
driver.bus.usb.core.UnitTest;
boot.splash.update(70, 'Running test suite...');
@@ -1,5 +1,5 @@
{
Core->Search - Reusable file-oriented search, sort, and format utilities.
Core->StringHelpers - Reusable file-oriented search, sort, and format utilities.
Provides:
- getFileExtension: zero-copy extension extraction
@@ -9,7 +9,7 @@
@author(Aaron Hance <ah@aaronhance.me>)
}
unit core.search;
unit core.stringhelpers;
interface
+1 -1
View File
@@ -14,7 +14,7 @@ interface
uses
core.strings,
core.search;
core.stringhelpers;
const
{ File-type icon PUA constants (U+E000..E078) — rendered by asuro_icons_* }
@@ -62,7 +62,7 @@ implementation
uses
driver.storage.vfs, driver.storage.types, memory.heap, core.strings,
core.search, debug.tracer, io.syslog, core.util, arch.x86.util;
core.stringhelpers, debug.tracer, io.syslog, core.util, arch.x86.util;
type
THandlerEntry = record