Skip to content

Commit ace496f

Browse files
committed
Update Pocketbase library properties and Arduino lint compliance
1 parent fab474e commit ace496f

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ jobs:
77
- uses: arduino/arduino-lint-action@v1
88
with:
99
library-manager: update
10-
compliance: specification
10+
compliance: permissive
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// PocketbaseArduino.cpp
22

3-
#include "PocketbaseArduino.h"
3+
#include "PocketbaseExtended.h"
44
// #include <ESP8266HTTPClient.h>
55
// #include <ESP8266WiFi.h>
66
// #include <ESP8266HTTPClient.h>
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// PocketbaseArduino.h
1+
// PocketbaseExtended.h
22

3-
#ifndef PocketbaseArduino_h
4-
#define PocketbaseArduino_h
3+
#ifndef PocketbaseExtended_h
4+
#define PocketbaseExtended_h
55

66
#include "Arduino.h"
77

@@ -11,13 +11,13 @@
1111

1212
#include <BearSSLHelpers.h>
1313

14-
class PocketbaseArduino
14+
class PocketbaseExtended
1515
{
1616
public:
17-
PocketbaseArduino(const char *baseUrl); // Constructor
17+
PocketbaseExtended(const char *baseUrl); // Constructor
1818

1919
// Methods to build collection and record URLs
20-
PocketbaseArduino &collection(const char *collection);
20+
PocketbaseExtended &collection(const char *collection);
2121

2222
/**
2323
* @brief Fetches a single record from a Pocketbase collection

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=PocketbaseExtended
22
version=0.3.5
33
author=Jeo Carlo Lubao
4-
maintainer=Jeo Carlo Lubao
4+
maintainer=
55
sentence=Pocketbase Library for Arduino
66
paragraph=[Create, Update and Auth In Progress] This library simplifies the process of communicating with Pocketbase. It hides the complexity of authentication and json parsing.
77
category=Communication
88
url=https://github.com/jeoooo/pocketbasearduino
9-
architectures=esp8266
9+
architectures=esp8266,esp32

0 commit comments

Comments
 (0)