viuavm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Viuavm-commits] [SCM] Viua VM branch platformy-technologiczne created.


From: git
Subject: [Viuavm-commits] [SCM] Viua VM branch platformy-technologiczne created. v0.9.0-2673-gd887581
Date: Tue, 31 Mar 2020 21:54:07 +0200 (CEST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Viua VM".

The branch, platformy-technologiczne has been created
        at  d887581838f231a6c32c5424e4345fb1fddfa3de (commit)

- Log -----------------------------------------------------------------
commit d887581838f231a6c32c5424e4345fb1fddfa3de
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 20:33:44 2020 +0200

    Moving pointer up and down works
    
    It still needs to be clamped so that it does not go below 0 or exceed
    the size of the directory listing vector.

commit d0bc13e27648690686c9a15f8a35740313f1c32b
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 20:33:06 2020 +0200

    More useful debugging disassembly output
    
    Report absolute and relative address of each instruction in debug mode.

commit 4635610196a050080260ca3a5a771caca3fd70a6
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 20:32:42 2020 +0200

    Fix: report bad address in self-jumps

commit 2a4f00f09b58f12ee2aca69c5b38023c7e31f7a5
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:59:43 2020 +0200

    Be nice and clear the screen after exiting

commit 8b7923a3fd4664565885253b8495b530ecb1e32c
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:59:04 2020 +0200

    Refresh and quit work in raw tty mode

commit e938aff3a45ba96da8dc4b493b367be4622e2934
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:50:08 2020 +0200

    Use the impl-pattern
    
    The impl-pattern is splitting an actor into two functions:
    
    - a fronting function that client code calls
    - an implementing (impl) function that does the actual work
    
    The fronting function sets up the state and environment for the impl
    function.

commit a65a7aaf9639df9601936c10a6ccf2582835c658
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:45:29 2020 +0200

    Refresh and quit work

commit feb89f8df65fe28614100fc3a3d8bfa84ad46e21
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:43:17 2020 +0200

    Hitting "q" correctly shuts down the system

commit 151f0dde54ef03a5f21dfed732a5252b4abb24c1
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:30:59 2020 +0200

    Input shuts down display

commit 1ef3791fbb363d7d1e6fe87e6d8abecd8df342c8
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:23:01 2020 +0200

    Basic input actor

commit a40ffcc16d4a1d8518230b8938f2f8710d5ad89b
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:06:41 2020 +0200

    Mark sections of the code

commit fb827e62b9459e73e293c8abcb66efae9b096168
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:05:53 2020 +0200

    Set tty to sane defaults after exiting

commit 659916ca0f5d114c111fb95ed0cee8fc5d806f74
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 19:04:51 2020 +0200

    Implement streq instruction

commit 7c766bbe17a425d821b8a5dd494cee4f281617cc
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 18:11:07 2020 +0200

    Fix: correctly handle void target in draw instructions

commit 8998656b3b8a5ce2c8b1913d3debe2c1a8e3d197
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 17:56:57 2020 +0200

    Update displayed data

commit 090150a602c10c33b1f1454e6035eb2bf7ce1c71
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 17:56:21 2020 +0200

    Fix: check frame arity for tailcall instructions

commit 296c9b6d27d337be3111352367922e5c1c1567e5
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 17:41:31 2020 +0200

    Move body-making code to a separate function

commit 4fa3dcda1e91bff56fce5aa0422ecb7c68de01e2
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 10:11:02 2020 +0200

    Row and column indexes are 1-based in terminal

commit 2c37df2e4720f3b5a7d02201678708674943727a
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 10:10:42 2020 +0200

    Allow highlighting selected item in tree view

commit 55f76a8c65d063cb15276565eeb20e21fb4cba91
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 10:01:11 2020 +0200

    Clear screen and reset cursor before each display redraw
    
    This will make it easier to manage the output.

commit 05641cc5dd89fb2d61d0f575f396cd47528ce0f1
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 09:59:54 2020 +0200

    Use new string decoding function
    
    The new version is able to decode \ooo (octal) and \xhh (hex) sequences.

commit e0fa1c285888a0a0be45e6a7e877420062327eef
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 08:43:07 2020 +0200

    Introduce state to the display actor
    
    It will be needed to track pointer on the tree view.

commit 33e06e80d4fe2f021f8aa120bacff4df4cedece1
Author: Marek Marecki <address@hidden>
Date:   Tue Mar 31 08:38:43 2020 +0200

    Add tree-view display actor
    
    This will be the user interface actor responsible for drawing on the
    screen. It will react to messages sent to it by other actors and modify
    screen content appropriately.

commit 8e71ef8e8e84e0b5f143b2ed38b22c92cf22b5c5
Author: Marek Marecki <address@hidden>
Date:   Mon Mar 30 20:51:06 2020 +0200

    Lister program

commit 7280c6ac48ad634070698e0ece28b2f26240396a
Author: Marek Marecki <address@hidden>
Date:   Mon Mar 30 20:50:27 2020 +0200

    WIP

commit 0bec5b2aa660c58d5c0e8273ae651ab0cd4c2294
Author: Marek Marecki <address@hidden>
Date:   Mon Mar 30 19:57:49 2020 +0200

    Cursor movement

commit bf5ac92db4dad548583fa2e5f688e3ca6f3014b0
Author: Marek Marecki <address@hidden>
Date:   Mon Mar 30 09:36:36 2020 +0200

    Reading a directory (example)

commit 55ed8b0f3b3a3991c65b3271635575f99aec1cff
Author: Marek Marecki <address@hidden>
Date:   Mon Mar 30 09:11:53 2020 +0200

    Scope misc examples in their own directory

-----------------------------------------------------------------------


hooks/post-receive
-- 
Viua VM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]