forked from KolibriOS/kolibrios
2ec87d22f7
WebView 1.8b: - key scroll by up and down lists 12 pixels instead of 1 - open app with param when href="" contains '|' symbol, example: href="/sys/tmpdisk|a0" Eolite 3.96b: - fix sorting - an option to highlight odd lines - copy path to clipboard by clicking on path bar - rewrite the code related to device an folder update: so this change removed unnecessary refreshes - add refresh when /kolibrios mounted IconEdit 0.57b: - improve color gradient block - press Delete key when smth selected fill selection by color2 and resents selection - impove window appearance when the dark skin is set - fix a stupid but issue which made impossible to open non-square images - fix an issue that wrong zoom number displayed Notes 0.8: - reworking, work in progress - delete binary Sysmon 0.87: - minor visible improvement in progress bars TmpDisk 0.67a: - deny users to shoot in the foot: show forbid message on /tmp0 deletion git-svn-id: svn://kolibrios.org@7422 a494cfbc-eb01-0410-851d-a64ba20cac60
37 lines
966 B
C
37 lines
966 B
C
#define MEMSIZE 4096*15
|
|
#include "..\lib\strings.h"
|
|
#include "..\lib\mem.h"
|
|
#include "..\lib\io.h"
|
|
#include "..\lib\copyf.h"
|
|
|
|
#include "..\lib\patterns\restart_process.h"
|
|
//#include "..\lib\added_sysdir.c";
|
|
|
|
void main()
|
|
{
|
|
//SetAdditionalSystemDirectory("kolibrios", abspath("install/kolibrios")+1);
|
|
io.run("/sys/tmpdisk", "a0");
|
|
pause(50);
|
|
|
|
io.del("/sys/docpack");
|
|
|
|
copyf(abspath("rd"), "/sys");
|
|
copyf(abspath("kos"), "/kolibrios");
|
|
copyf(abspath("tmp"), "/tmp0/1");
|
|
|
|
KillProcessByName("@icon", MULTIPLE);
|
|
KillProcessByName("@taskbar", SINGLE);
|
|
KillProcessByName("@docky", SINGLE);
|
|
|
|
RunProgram("/sys/@icon", NULL);
|
|
RunProgram("/sys/@taskbar", NULL);
|
|
RunProgram("/sys/@docky", NULL);
|
|
|
|
io.run("/sys/media/kiv", "\\S__/kolibrios/res/Wallpapers/deink.png");
|
|
//notify("'KolibriNext\nInstall complete'-tO");
|
|
ExitProcess();
|
|
}
|
|
|
|
void Operation_Draw_Progress(dword filename) { debug("copying: "); debugln(filename); }
|
|
|
|
stop: |