Update WallPaper to print full task caller report.

Increase CTask.wallpaper_data from STR_LEN to 4096.
This commit is contained in:
TomAwezome 2022-02-13 22:11:46 -05:00
parent dd21cff146
commit 5ff6487615
7 changed files with 8 additions and 5 deletions

Binary file not shown.

View file

@ -56,7 +56,7 @@ else
mount_vdisk
echo "Copying vdisk root to src..."
cp -r $TMPMOUNT/* ../src
rm ../src/Boot/BootMHD2.BIN.C
rm ../src/Boot/BootMHD2.BIN
if [ -d $TMPMOUNT/HTML ]
then
echo "Copying HTML docs to docs/..."

View file

@ -81,8 +81,6 @@ $WW,1$$FG,5$$TX+CX,"TODO"$$FG$
* Good spell checker.
* Good Bible search.
* Can $LK,"MEM_EXTRA_HASH2_PAGS",A="MN:MEM_EXTRA_HASH2_PAGS"$ be just one?
* Bible ranges in $LK,"BibleVerse",A="MN:BibleVerse"$().
* $LK,"::/Demo/Games/FlatTops.ZC"$ is torpedo, not bombs.

View file

@ -1,4 +1,9 @@
$WW,1$$FG,5$$TX+CX,"ChangeLog"$$FG$
$IV,1$----02/13/22 21:44:55----$IV,0$
* Raised version number to 1.11.
* Updated $LK+PU,"WallPaper",A="FF:::/System/WallPaper.ZC,k = TaskCaller"$ to print full task caller report.
* Increased $LK+PU,"CTask.wallpaper_data",A="FF:::/Kernel/KernelA.HH,wallpaper_data"$ size from $LK+PU,"STR_LEN",A="MN:STR_LEN"$ to 4096.
$IV,1$----01/28/22 02:22:37----$IV,0$
* Raised version number to 1.10.
* Removed .C suffix on non-executable binary files.

View file

@ -13,7 +13,7 @@ CTask *sys_winmgr_task,
U8 *rev_bits_table; //Table with U8 bits reversed
CDate local_time_offset;
F64 *pow10_I64,
sys_os_version = 1.10;
sys_os_version = 1.11;
CAutoCompleteDictGlobals acd;
CAutoCompleteGlobals ac;

View file

@ -4014,7 +4014,7 @@ public class CTask //The Fs segment register points to current CTask.
U8 task_title[STR_LEN],
task_name[TASK_NAME_LEN],
wallpaper_data[STR_LEN],
wallpaper_data[4096],
title_src, border_src,
text_attr, border_attr;

Binary file not shown.