Compare commits

20 Commits

Author SHA1 Message Date
Max
88c24062b1 Update programs/games/solitare/solitare.asm
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m19s
Build system / Build (pull_request) Successful in 9m33s
2026-03-04 19:04:41 +00:00
Max
8f499f78d5 Upload files to "programs/games/solitare"
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m13s
Build system / Build (pull_request) Successful in 10m44s
Final version of game
2026-03-04 17:23:46 +00:00
Max
5f4b293767 Upload files to "programs/games/solitare"
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 52s
Build system / Build (pull_request) Successful in 16m52s
FIX adding score
2026-03-03 11:28:08 +00:00
Max
0efc35f8b2 Upload files to "programs/games/solitare"
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 27s
Build system / Build (pull_request) Successful in 16m46s
Add KOSfuncs.inc
2026-03-02 22:02:21 +00:00
Max
836735d28c Update programs/games/solitare/solitare.asm
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 23s
Build system / Build (pull_request) Successful in 16m51s
2026-03-02 19:11:11 +00:00
Max
dd15125384 Upload files to "programs/games/solitare"
Some checks failed
Build system / Build (pull_request) Failing after 3s
Build system / Check kernel codestyle (pull_request) Successful in 26s
V1.5 windows mode
2026-03-02 19:06:54 +00:00
Max
5a47b26aeb Delete programs/games/solitare/solitare.asm
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 54s
Build system / Build (pull_request) Failing after 1m40s
2026-03-02 19:05:36 +00:00
Max
e1320d573f Upload files to "programs/games/solitare"
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 20s
Build system / Build (pull_request) Successful in 16m35s
New version, Pixel clipping on edge od screen
2026-03-01 13:56:52 +00:00
Max
c9484c2f9b Delete programs/games/solitare/solitare.asm
Some checks failed
Build system / Build (pull_request) Failing after 39s
Build system / Check kernel codestyle (pull_request) Successful in 1m17s
2026-03-01 13:55:03 +00:00
Max
848719b5c1 Upload files to "programs/games/solitare"
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 24s
Build system / Build (pull_request) Successful in 16m21s
Refactored version of CARD game
2026-03-01 12:30:28 +00:00
Max
e2b3ccf541 Delete programs/games/solitare/solitare.asm
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 58s
Build system / Build (pull_request) Failing after 1m38s
2026-03-01 12:28:31 +00:00
Max
932a0fed7d Update programs/games/solitare/solitare.asm
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 21s
Build system / Build (pull_request) Successful in 16m19s
2026-02-27 20:09:48 +00:00
Max
7cb981914d Update programs/games/solitare/solitare.asm
Some checks failed
Build system / Build (pull_request) Failing after 5s
Build system / Check kernel codestyle (pull_request) Successful in 28s
2026-02-27 19:23:44 +00:00
79f8b27cfe games/solitaires: add to image build
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 23s
Build system / Build (pull_request) Successful in 16m30s
2026-02-27 21:08:05 +02:00
8d55a1cfc8 games/solitaries: fix build, part 2
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m28s
Build system / Build (pull_request) Successful in 9m35s
2026-02-27 20:55:35 +02:00
Taldariner
eb686f3083 Merge branch 'max-patch-1' of https://git.kolibrios.org/Max/kolibrios into max-patch-1
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 23s
Build system / Build (pull_request) Failing after 33s
2026-02-27 20:51:04 +02:00
Taldariner
756fa8dd66 apps/solitaires: fix build, translate comments to English 2026-02-27 20:50:04 +02:00
Max
4495fd5981 Update programs/games/Tupfile.lua
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 21s
Build system / Build (pull_request) Successful in 16m31s
2026-02-27 18:39:23 +00:00
Max
593ae0bd7f Upload files to "programs/games"
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 29s
Build system / Build (pull_request) Failing after 1m36s
Hi, this is a simple solitaire game project.
2026-02-27 18:19:32 +00:00
Max
b464de6265 Upload files to "programs/games"
Some checks failed
Build system / Check kernel codestyle (pull_request) Has been cancelled
Build system / Build (pull_request) Has been cancelled
2026-02-27 11:10:19 +00:00
3 changed files with 1417 additions and 0 deletions

View File

@@ -506,6 +506,7 @@ tup.append_table(img_files, {
{"GAMES/TANKS", VAR_PROGS .. "/games/tanks/tanks"},
{"GAMES/TETRIS", VAR_PROGS .. "/games/tetris/tetris"},
{"GAMES/C4", VAR_PROGS .. "/games/c4/c4"},
{"GAMES/SOLITARE", VAR_PROGS .. "/games/solitare/solitare"},
{"LIB/ARCHIVER.OBJ", VAR_PROGS .. "/fs/kfar/trunk/kfar_arc/kfar_arc.obj"},
{"LIB/BOX_LIB.OBJ", VAR_PROGS .. "/develop/libraries/box_lib/trunk/box_lib.obj"},
{"LIB/BUF2D.OBJ", VAR_PROGS .. "/develop/libraries/buf2d/trunk/buf2d.obj"},

View File

@@ -0,0 +1,7 @@
if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir())
tup.rule("echo lang fix " .. ((tup.getconfig("LANG") == "") and "en_US" or tup.getconfig("LANG")) .. " > %o", {"lang.inc"})
tup.rule("solitare.asm", FASM .. " %f %o " .. tup.getconfig("KPACK_CMD"), "solitare")

File diff suppressed because it is too large Load Diff