Skip to content

Commit 61dbc36

Browse files
committed
version 2.0.0
1 parent de09f40 commit 61dbc36

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ displays sharing the same base code.
66
You should use, at least one of the subclasses (this file will be populated with the references) to be able to display some QR, choose the corresponding to
77
the hardware you have available.
88

9-
Each subclass have its own repository with its own dependencies. This library have not dependencies. Depending the dependencies you can choose one of the following approved subclasses, please visit the links to see the dependencies and hardware support:
9+
Each subclass have its own repository with its own dependencies. This library have not dependencies. Depending your hardware you can choose one of the following approved subclasses, please visit the links to see the dependencies and hardware support:
1010

1111
* QRcodeOled: https://github.com/yoprogramo/QRcodeOled
1212
* QRcode_ST7735: https://github.com/yoprogramo/QRcode_ST7735
@@ -16,6 +16,9 @@ Each subclass have its own repository with its own dependencies. This library ha
1616

1717
If you do not find match for your display model feel free to contribute with a new subclasss or file an Issue here.
1818

19+
## Breaking changes in version 2.0.0
20+
To avoid conflict with other libraries we have renamed the file qrcode.h to qrcodedisplay.h, so all the subclasses have to do the same change.
21+
1922
## Examples
2023

2124
### Oled

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "QRcodeDisplay",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"keywords": "qr code, ESP32, ESP8266, TFT display, OLED Display, E-ink display",
55
"description": "Base clase for generating QRCodes on ESP devices with different kind of displays",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=QRcodeDisplay
2-
version=1.0.0
2+
version=2.0.0
33
author=Jose Antonio Espinosa <[email protected]>
44
maintainer=Jose Antonio Espinosa <[email protected]>
55
sentence=Base code for displaying QRcodes on ESP based MCU with OLED, TFT or E-Ink displays

src/qrcode.cpp renamed to src/qrcodedisplay.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <Arduino.h>
2-
#include "qrcode.h"
2+
#include "qrcodedisplay.h"
33
#include "qrencode.h"
44

55

File renamed without changes.

0 commit comments

Comments
 (0)