Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Undo caused crash when inserting newline at the end of text #32

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open

Commits on Jun 14, 2018

  1. Configuration menu
    Copy the full SHA
    0061860 View commit details
    Browse the repository at this point in the history
  2. Text input cursor only visible when hovering over the text. Text only…

    … reacting to clicks when pointing at the text.
    
    Now auto scrolling up and down when dragging cursor outside the text area.
    Rasa0 committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    5f2bf49 View commit details
    Browse the repository at this point in the history
  3. Added a save index, used in combination with the undo buffer, to mark…

    … the text as dirty. Useful for being able to save to file.
    Rasa0 committed Jun 14, 2018
    Configuration menu
    Copy the full SHA
    bec5eff View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2018

  1. Added a breakpoint bar, with actual breakpoints, instead of just line…

    … highlight
    
    Added the abillity to toggle breakpoints.
    Added a breakpoints changed callback.
    Rasa0 committed Jun 15, 2018
    Configuration menu
    Copy the full SHA
    337ea5d View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2018

  1. Configuration menu
    Copy the full SHA
    e4a6449 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'srcMaster'

    Rasa0 committed Jun 16, 2018
    Configuration menu
    Copy the full SHA
    fc786b1 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2018

  1. Added GetBreakpoints method

    Rasa0 committed Jun 17, 2018
    Configuration menu
    Copy the full SHA
    42d6cda View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2018

  1. Added a statement marker

    Rasa0 committed Jun 20, 2018
    Configuration menu
    Copy the full SHA
    eca6275 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2018

  1. Configuration menu
    Copy the full SHA
    1185d11 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2018

  1. Configuration menu
    Copy the full SHA
    5318637 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2018

  1. Configuration menu
    Copy the full SHA
    5ba51c3 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2018

  1. Configuration menu
    Copy the full SHA
    be0e232 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2018

  1. Configuration menu
    Copy the full SHA
    72c3b8e View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2018

  1. Initial Lexer implementation

    Rasa0 committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    673874c View commit details
    Browse the repository at this point in the history
  2. Fixed some off by one errors.

    Fixed missing check for keywords starting with 'e'
    Lexer now colors the code as it runns.
    Now lexing numbers aswell
    Rasa0 committed Jul 24, 2018
    Configuration menu
    Copy the full SHA
    f874cac View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2018

  1. Replaced "string start end" to "string" in lexer tokens

    Now putting the name in name tokens
    Now putting message in malformed number token
    Rasa0 committed Jul 30, 2018
    Configuration menu
    Copy the full SHA
    508e0ea View commit details
    Browse the repository at this point in the history

Commits on Jul 31, 2018

  1. Long comment and long strings are now lexed in a single go. Comments …

    …aren't added as a token anymore
    Rasa0 committed Jul 31, 2018
    Configuration menu
    Copy the full SHA
    91681d5 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2018

  1. Configuration menu
    Copy the full SHA
    43b07b8 View commit details
    Browse the repository at this point in the history
  2. Initial Parser implementation

    Rasa0 committed Aug 4, 2018
    Configuration menu
    Copy the full SHA
    7fd88e7 View commit details
    Browse the repository at this point in the history
  3. Fixed. Forlist tried to consume colon instead of comma. Function stat…

    …e didn't initialize isVararg, causing all functions to be vararg
    Rasa0 committed Aug 4, 2018
    Configuration menu
    Copy the full SHA
    845094b View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2018

  1. Configuration menu
    Copy the full SHA
    cbc3730 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    78f7d0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    201e113 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2018

  1. Configuration menu
    Copy the full SHA
    2d97705 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8a096a6 View commit details
    Browse the repository at this point in the history
  3. Added callbacks for requesting the value of globals, locals and upval…

    …ues.
    
    Shows the values when variables are hovered now.
    Now using a constant instead of magical value of -1 to indicate when program counter is disabled
    Rasa0 committed Aug 6, 2018
    Configuration menu
    Copy the full SHA
    ee3a8d2 View commit details
    Browse the repository at this point in the history
  4. Update README.md

    Rasa0 authored Aug 6, 2018
    Configuration menu
    Copy the full SHA
    a350599 View commit details
    Browse the repository at this point in the history