Skip to content

Commit

Permalink
Merge pull request #26 from lbussy/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
lbussy authored Mar 18, 2021
2 parents 7a8028c + 46e41b5 commit e58bb36
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.piolibdeps
.vscode
*.code-workspace
src/*.ino

# Prerequisites
*.d
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 Lee C. Bussy
Copyright (c) 2019-2021 Lee C. Bussy

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion examples/Basic/Basic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/*
MIT License
Copyright (c) 2019-2020 Lee C. Bussy
Copyright (c) 2019-2021 Lee C. Bussy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 12 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ LCBUrl KEYWORD1
# Methods and Functions (KEYWORD2)
#######################################

getIPUrl KEYWORD2
setUrl KEYWORD2
getUrl KEYWORD2
getScheme KEYWORD2
Expand All @@ -21,11 +22,22 @@ getPassword KEYWORD2
getHost KEYWORD2
getPort KEYWORD2
getAuthority KEYWORD2
getIPAuthority KEYWORD2
getPath KEYWORD2
getAfterPath KEYWORD2
getQuery KEYWORD2
getFragment KEYWORD2

# Utility functions

isMDNS KEYWORD2
getIP KEYWORD2
isValidIP KEYWORD2
labelCount KEYWORD2
isANumber KEYWORD2
isValidLabel KEYWORD2
isValidHostName KEYWORD2

#######################################
# Instances (KEYWORD2)
#######################################
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"dependencies": {},
"version": "1.1.3",
"version": "1.1.4",
"frameworks": "arduino",
"platforms": "*"
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=LCBUrl
version=1.1.3
version=1.1.4
author=Lee Bussy <[email protected]>
maintainer=Lee Bussy <[email protected]>
sentence=A library to manipulate URL strings
Expand Down
2 changes: 1 addition & 1 deletion src/LCBUrl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/*
MIT License
Copyright (c) 2019-2020 Lee C. Bussy
Copyright (c) 2019-2021 Lee C. Bussy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 2 additions & 3 deletions src/LCBUrl.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/*
MIT License
Copyright (c) 2019-2020 Lee C. Bussy
Copyright (c) 2019-2021 Lee C. Bussy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -28,6 +28,7 @@
*/

// Ensure this library description is only included once

#ifndef _LCBURL_H
#define _LCBURL_H

Expand All @@ -44,8 +45,6 @@
#include <string.h>
#include <Arduino.h>

#include <ArduinoLog.h> // DEBUG

// Library interface description
class LCBUrl
{
Expand Down

0 comments on commit e58bb36

Please sign in to comment.