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: arduino-libraries/ArduinoGraphics
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.1.2
Choose a base ref
...
head repository: arduino-libraries/ArduinoGraphics
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.1.3
Choose a head ref
  • 13 commits
  • 9 files changed
  • 6 contributors

Commits on Mar 19, 2024

  1. Bump geekyeggo/delete-artifact from 4 to 5 (#43)

    Bumps [geekyeggo/delete-artifact](https://github.com/geekyeggo/delete-artifact) from 4 to 5.
    - [Release notes](https://github.com/geekyeggo/delete-artifact/releases)
    - [Changelog](https://github.com/GeekyEggo/delete-artifact/blob/main/CHANGELOG.md)
    - [Commits](GeekyEggo/delete-artifact@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: geekyeggo/delete-artifact
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Mar 19, 2024
    Configuration menu
    Copy the full SHA
    e0928da View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Remove superfluous blank lines from documentation

    Previously, the documentation contained a large number of unnecessary blank lines.
    
    Since these serve no purpose and give the source content an unprofessional and sloppy appearance, they are removed.
    per1234 committed May 28, 2024
    Configuration menu
    Copy the full SHA
    bdfd504 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    df7a773 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    96b58bb View commit details
    Browse the repository at this point in the history
  4. Fix typos in documentation

    per1234 committed May 28, 2024
    Configuration menu
    Copy the full SHA
    a3e7f1e View commit details
    Browse the repository at this point in the history
  5. Merge pull request #44 from per1234/fix-typos

    Fix typos in documentation
    per1234 authored May 28, 2024
    Configuration menu
    Copy the full SHA
    7709e46 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2024

  1. Allow the fixed fonts to be scaled up.

    On larger displays, the two built in fonts are almost invisible.
    One possible solution is to supply some larger fonts.
    
    Another approach is to do, like several TFT display drivers do and allow you to scale the system fixed fonts up to a larger size.  Decided this was the easiest approach, and did a quick implementation of it.  Like the Adafruit displays, I allowed you to set different scale factors for X and Y.
    
    I added a scaledBitmap function which is a modified version of the current bitmap function.  I also changed all of the text functions to use it.  I left the unscalled version of the API, although I have it simply call the scaled version with scales 1 and 1, as since these methods are virtual, potentially some other subclasses might use and/or implement their own version.
    
    Updated the textFontWidth and textFontHeight to multiply  the height * the scale as
    the one example sketch here needs it.
    
    I also updated the sketch to scale the canvas to take the font size into account.
    This appears to work with the changes and
    
    I have not used or tested the scroll code.  Its sizing should be updated teh same way
    the test sketch was with the changes with the textFontWidth and textFontHeight changes
    
    Update api.md
    
    Forgot to update the AsciiDraw example sketch
    
    Code Review requested changes
    
    _textsize_x -> _textSizeX  (ditto for y)
    setTextSize() -> textSize()
    
    scaledBitmap -> bitmap with the extra parameters with defaults
    KurtE committed Sep 2, 2024
    Configuration menu
    Copy the full SHA
    0ea3666 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #45 from KurtE/text_size

    Allow the fixed fonts to be scaled up.
    leonardocavagnis authored Sep 2, 2024
    Configuration menu
    Copy the full SHA
    4241408 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Configuration menu
    Copy the full SHA
    676f83c View commit details
    Browse the repository at this point in the history
  2. Update src/ArduinoGraphics.h to remove unnecessary comment

    Co-authored-by: Leonardo Cavagnis <45899760+leonardocavagnis@users.noreply.github.com>
    OmarAli3 and leonardocavagnis committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    04aa61b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4572a10 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2024

  1. Merge pull request #16 from OmarAli3/clearPoint

    add function to clear specific point
    leonardocavagnis authored Sep 5, 2024
    Configuration menu
    Copy the full SHA
    e6eea60 View commit details
    Browse the repository at this point in the history
  2. Update library.properties

    Release v1.1.3.
    leonardocavagnis authored Sep 5, 2024
    Configuration menu
    Copy the full SHA
    5696697 View commit details
    Browse the repository at this point in the history
Loading