mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2025-01-13 16:16:31 +00:00
Update WallPaper to print full task caller report.
Increase CTask.wallpaper_data from STR_LEN to 4096.
This commit is contained in:
parent
dd21cff146
commit
5ff6487615
7 changed files with 8 additions and 5 deletions
BIN
build/AUTO.ISO
BIN
build/AUTO.ISO
Binary file not shown.
|
@ -56,7 +56,7 @@ else
|
||||||
mount_vdisk
|
mount_vdisk
|
||||||
echo "Copying vdisk root to src..."
|
echo "Copying vdisk root to src..."
|
||||||
cp -r $TMPMOUNT/* ../src
|
cp -r $TMPMOUNT/* ../src
|
||||||
rm ../src/Boot/BootMHD2.BIN.C
|
rm ../src/Boot/BootMHD2.BIN
|
||||||
if [ -d $TMPMOUNT/HTML ]
|
if [ -d $TMPMOUNT/HTML ]
|
||||||
then
|
then
|
||||||
echo "Copying HTML docs to docs/..."
|
echo "Copying HTML docs to docs/..."
|
||||||
|
|
|
@ -81,8 +81,6 @@ $WW,1$$FG,5$$TX+CX,"TODO"$$FG$
|
||||||
* Good spell checker.
|
* Good spell checker.
|
||||||
* Good Bible search.
|
* 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"$().
|
* Bible ranges in $LK,"BibleVerse",A="MN:BibleVerse"$().
|
||||||
|
|
||||||
* $LK,"::/Demo/Games/FlatTops.ZC"$ is torpedo, not bombs.
|
* $LK,"::/Demo/Games/FlatTops.ZC"$ is torpedo, not bombs.
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
$WW,1$$FG,5$$TX+CX,"ChangeLog"$$FG$
|
$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$
|
$IV,1$----01/28/22 02:22:37----$IV,0$
|
||||||
* Raised version number to 1.10.
|
* Raised version number to 1.10.
|
||||||
* Removed .C suffix on non-executable binary files.
|
* Removed .C suffix on non-executable binary files.
|
||||||
|
|
|
@ -13,7 +13,7 @@ CTask *sys_winmgr_task,
|
||||||
U8 *rev_bits_table; //Table with U8 bits reversed
|
U8 *rev_bits_table; //Table with U8 bits reversed
|
||||||
CDate local_time_offset;
|
CDate local_time_offset;
|
||||||
F64 *pow10_I64,
|
F64 *pow10_I64,
|
||||||
sys_os_version = 1.10;
|
sys_os_version = 1.11;
|
||||||
|
|
||||||
CAutoCompleteDictGlobals acd;
|
CAutoCompleteDictGlobals acd;
|
||||||
CAutoCompleteGlobals ac;
|
CAutoCompleteGlobals ac;
|
||||||
|
|
|
@ -4014,7 +4014,7 @@ public class CTask //The Fs segment register points to current CTask.
|
||||||
|
|
||||||
U8 task_title[STR_LEN],
|
U8 task_title[STR_LEN],
|
||||||
task_name[TASK_NAME_LEN],
|
task_name[TASK_NAME_LEN],
|
||||||
wallpaper_data[STR_LEN],
|
wallpaper_data[4096],
|
||||||
|
|
||||||
title_src, border_src,
|
title_src, border_src,
|
||||||
text_attr, border_attr;
|
text_attr, border_attr;
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue