From 246112d68feb37c57188d914e57a488a826a7304 Mon Sep 17 00:00:00 2001 From: hummypkg Date: Tue, 26 Mar 2013 19:11:13 +0000 Subject: [PATCH] new channelicons + nocase sort git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1502 2a923420-c742-0410-a762-8d5b09965624 --- CONTROL/control | 4 ++-- var/mongoose/html/browse/index.jim | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTROL/control b/CONTROL/control index b1398b1..5560a03 100644 --- a/CONTROL/control +++ b/CONTROL/control @@ -1,9 +1,9 @@ Package: webif Priority: optional Section: web -Version: 0.13.3-3 +Version: 0.13.3-4 Architecture: mipsel Maintainer: af123@hummypkg.org.uk -Depends: webif-channelicons(>=1.0.4-1),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73-1),jim-cgi(>=0.7),jim-binary,service-control(>=1.2),busybox(>=1.20.2-1),lsof,epg(>=1.0.10),hmt(>=1.1.13),ssmtp,anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.2),smartmontools,tmenu(>=1.05),ffmpeg,id3v2 +Depends: webif-channelicons(>=1.0.5),mongoose(>=3.0-7),jim(>=0.73-1),jim-oo,jim-sqlite3(>=0.73-1),jim-cgi(>=0.7),jim-binary,service-control(>=1.2),busybox(>=1.20.2-1),lsof,epg(>=1.0.13),hmt(>=1.1.13),ssmtp,anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.0.2),webif-charts(>=1.2),stripts(>=1.1.2),smartmontools,tmenu(>=1.05),ffmpeg,id3v2 Suggests: Description: An evolving web interface for the Humax. diff --git a/var/mongoose/html/browse/index.jim b/var/mongoose/html/browse/index.jim index 182ec5b..5ed35ac 100755 --- a/var/mongoose/html/browse/index.jim +++ b/var/mongoose/html/browse/index.jim @@ -308,7 +308,7 @@ proc s_time {a b} { set files [readdir -nocomplain $dir] switch $order { 1 { set files [lsort -command s_time $files] } - default { set files [lsort $files] } + default { set files [lsort -nocase $files] } } foreach file $files { entry "$dir/$file" }