mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-10 12:30:53 -04:00

- Bigger fonts - System colors - Code refactoring to make UI flexible and more readable - Move from ISO to IMG - Add to main menu, add to desktop instead of Calc, remove from App+ - Localization to all system languages - Source code file is now UTF-8 Co-authored-by: Burer <burer@kolibrios.org> Reviewed-on: https://git.kolibrios.org/KolibriOS/kolibrios/pulls/189 Reviewed-by: Max Logaev <maxlogaev@proton.me> Co-authored-by: Kiril Lipatov <lipatov.kiril@gmail.com> Co-committed-by: Kiril Lipatov <lipatov.kiril@gmail.com>
6 lines
300 B
Lua
6 lines
300 B
Lua
if tup.getconfig("NO_FASM") ~= "" then return end
|
|
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
|
|
tup.include(HELPERDIR .. "/use_fasm.lua")
|
|
tup.rule("calcplus.asm", FASM .. " -dlang=" .. tup.getconfig("LANG") .. " %f %o" .. tup.getconfig("KPACK_CMD"), "%B")
|
|
|