Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ThingPulse/esp8266-oled-ssd1306
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.4.1
Choose a base ref
...
head repository: ThingPulse/esp8266-oled-ssd1306
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.5.0
Choose a head ref
  • 10 commits
  • 7 files changed
  • 3 contributors

Commits on Feb 28, 2024

  1. Configuration menu
    Copy the full SHA
    c59fe36 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    546fe9b View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. Fix drawLogBuffer for scrolling (#394)

    When logBuffer has logBufferMaxLines, the drawing needs to start shifted up by displayHeight % lineHeight so that the first line drops off a bit, and not the last. Now printing to display really just works.
    
    (I moved the `length++` and removed the `else` because both sides of the condition started with it.)
    ropg authored Mar 10, 2024
    Configuration menu
    Copy the full SHA
    7782bc3 View commit details
    Browse the repository at this point in the history
  2. Added drawLogBuffer(0,0) and display() at end of write() (#389)

    * Added drawLogBuffer(0,0) and display() at end of write()
    
    Now print, println and printf "just work", while display not refreshed every character when a string of characters is written, only at the end.
    
    * The assumption that chars are at most twice as high as they're wide was too optimistic
    
    * Remove the now unnecessary commands from DrawingDemo
    ropg authored Mar 10, 2024
    Configuration menu
    Copy the full SHA
    1da41d9 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Implement cls(), document Print functionality (#397)

    There was no previous way for the user to empty the logBuffer, cls() fixes that. 
    Also the documentation now explains the Print functionality and 
    how it relates to the rest of the functions.
    ropg authored Mar 11, 2024
    Configuration menu
    Copy the full SHA
    c0758b6 View commit details
    Browse the repository at this point in the history
  2. More printing and scrolling fixes (#395)

    * logBuffer now stores max line length
    * write() rewritten to discard all but \n past that length
    * buffer cannot fill up prematurely
    * write() partly rewritten for clarity, no more re-entry when full
    ropg authored Mar 11, 2024
    Configuration menu
    Copy the full SHA
    510b31a View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Minor clarification (#398)

    Explain where we deviate from what user might expect.
    ropg authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    344fb49 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2024

  1. More printing fixes (#399)

    * setLogBuffer needs to be re-called (and past buffer cleared) every time a `setFont` happens, as this changes the number of lines and chars. It now does not take arguments anymore and does things internally and is clearer about when it gives up.
    * calculation of shiftUp for when on last line was wrong
    
    * setLogBuffer() and drawLogBuffer()
    
    old versions with arguments deprecated, new versions protected.
    
    * Made no-op setLogBuffer return true to pass compiler error
    ropg authored Mar 17, 2024
    Configuration menu
    Copy the full SHA
    2ef5428 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

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

Commits on Mar 29, 2024

  1. Bump version

    marcelstoer committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    d3b23d0 View commit details
    Browse the repository at this point in the history
Loading