diff -Naur extrecmenu-1.1.org/Makefile extrecmenu-1.1/Makefile --- extrecmenu-1.1.org/Makefile 2007-07-31 11:01:34.000000000 -0400 +++ extrecmenu-1.1/Makefile 2008-08-30 09:54:12.000000000 -0400 @@ -1,7 +1,7 @@ ############################################################################### # # uncomment if you use the pin-plugin and want to protect your recordings -#WITHPINPLUGIN=1 +WITHPINPLUGIN=1 # ############################################################################### diff -Naur extrecmenu-1.1.org/mymenurecordings.c extrecmenu-1.1/mymenurecordings.c --- extrecmenu-1.1.org/mymenurecordings.c 2007-10-24 13:29:46.000000000 -0400 +++ extrecmenu-1.1/mymenurecordings.c 2008-10-03 11:51:29.000000000 -0400 @@ -196,7 +196,7 @@ else if(MoveCutterThread->IsCutting(filename)) titlebuffer << char(132); else if(Recording->IsNew() && !mysetup.PatchNew) - titlebuffer << '*'; + titlebuffer << '!'; else if(!Recording->IsNew() && mysetup.PatchNew) titlebuffer << char(128); else titlebuffer << ' '; @@ -231,7 +231,7 @@ ostringstream strbuf; strbuf << setw(3) << setfill(' ') << right << (int)(statbuf.st_size/12000) << "'"; - titlebuffer << myStrReplace(strbuf.str(),' ',char(131)) << '\t'; + titlebuffer << myStrReplace(strbuf.str(),' ',char(32)) << '\t'; } else { @@ -248,7 +248,7 @@ buffer+="'"; while(buffer.length()<=3) - buffer.insert(0,1,char(131)); + buffer.insert(0,1,char(32)); titlebuffer << buffer << '\t';