Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2019-2023 TinyGo Authors. All rights reserved.
Copyright (c) 2019-2025 TinyGo Authors. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

[![Build](https://github.com/tinygo-org/tinydraw/actions/workflows/build.yml/badge.svg?branch=dev)](https://github.com/tinygo-org/tinydraw/actions/workflows/build.yml)

TinyDraw is a package for drawing primitives on [TinyGo](https://tinygo.org/) displays. It is heavily based on the [Adafruit GFX library](https://github.com/adafruit/Adafruit-GFX-Library).
TinyDraw is a package for drawing primitives on [TinyGo](https://tinygo.org/) displays. It is heavily influenced by the [Adafruit GFX library](https://github.com/adafruit/Adafruit-GFX-Library).

![example](https://raw.githubusercontent.com/tinygo-org/tinydraw/master/example.png)

This package is experimental and may change in the future. It has not been optimized for speed or memory usage (yet).

## License

[This project is licensed](./LICENSE) under the BSD 3-clause license, just like the [Go project](https://golang.org/LICENSE) itself.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module tinygo.org/x/tinydraw

go 1.24

require tinygo.org/x/drivers v0.32.0
require tinygo.org/x/drivers v0.34.0

require github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 h1:El6M4kTTCOh6aBiKaUGG7oYTSPP8MxqL4YI3kZKwcP4=
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510/go.mod h1:pupxD2MaaD3pAXIBCelhxNneeOaAeabZDe5s4K6zSpQ=
tinygo.org/x/drivers v0.32.0 h1:qz7MRR1ZBIUhWC6kc4XuVNPr2+mUT8m7QJwA+Jji4IU=
tinygo.org/x/drivers v0.32.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk=
tinygo.org/x/drivers v0.34.0 h1:lw8ePJeUSn9oICKBvQXHC9TIE+J00OfXfkGTrpXM9Iw=
tinygo.org/x/drivers v0.34.0/go.mod h1:ZdErNrApSABdVXjA1RejD67R8SNRI6RKVfYgQDZtKtk=
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ package tinydraw
// for support purposes.
//
// Update this value before release of new version of software.
const Version = "0.4.0"
const Version = "0.5.0"