-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version, decoder and encoder updates, cleanup, and license addition
- Loading branch information
Showing
45 changed files
with
89 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
# 3.27.16 | ||
|
||
- Adding License | ||
- [libflirc] translate spelling fixes, cleanup, and error checks | ||
- [libflirc] add delete index into libflirc | ||
- [libflirc] fix missing 'k' in flirc_util record command | ||
- [libflirc] flirc header documentation update | ||
- [libflirc] bug fixes | ||
- [libflirc] pre-processor fixes for ll.h | ||
- [libir] GAP25 protocol edition with decoding and transmission | ||
- [libir] fix to create pronto code with unknown code | ||
- [libir] ensure we create a hash when no IR code is found | ||
- [libir] fix NEC32 wrong description | ||
- [libir] corrects apple NEC detection | ||
- [libir] IR documentation cleanup | ||
- [libir] ensure we create a similar hash as flirc_usb | ||
- [libir] Nokia encoder and transmit | ||
- [libir] Nokia 12/24/32 decoder | ||
- [ir] IR example code cleanup | ||
- [flirc_util] adding delete_index | ||
|
||
# 3.27.15 | ||
|
||
- [libir] Denonk decoder and encoder support | ||
- [libir] Example code cleanup | ||
- [libir] Flirc Protocol support | ||
- [libir] Iterative approach for more accurate detection | ||
- [libir] Log fixes | ||
- [libir] MCE Build fix | ||
- [libir] NEC Should fail on count mismatch | ||
- [libir] MCE build fix | ||
- [libir] NEC should fail on count mismatch | ||
- [libir] NEC48 encoder and decoder support | ||
- [libir] NECext and NEC protocol detection fix | ||
- [libir] Nokia 12/24/32 decoder and encoder support | ||
- [libir] Panasonic Encoder Fixes | ||
- [libir] Panasonic encoder fixes | ||
- [libir] RC6 decoder fixes | ||
- [libir] RC6 encoder support | ||
- [libir] Win64 Addition | ||
- [libir] Win64 addition | ||
- [libir] XMP updates | ||
- [libir] XMP Should fail on count mismatch | ||
- [libflirc] Win64 Addition | ||
- [libir] XMP should fail on count mismatch | ||
- [libflirc] Win64 addition |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# License | ||
|
||
Copyright (c) 2024 Flirc Inc. | ||
|
||
All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to use the Software solely in conjunction with Flirc manufactured hardware in commercial environments, subject to the following conditions: | ||
|
||
1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
2. The Software may not be used, copied, modified, merged, published, distributed, sublicensed, or sold except as permitted by this license. | ||
3. The Software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages, or other liability, whether in an action of contract, tort, or otherwise, arising from, out of, or in connection with the Software or the use or other dealings in the Software. | ||
4. Any use of the Software outside of the specified commercial environment with Flirc manufactured hardware is strictly prohibited. | ||
|
||
For further information, please contact Flirc Inc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Linux_arm |
Binary file not shown.
Binary file renamed
BIN
+547 KB
libs/Linux_arm/libflirc.so.3.27.15 → libs/Linux_arm/libflirc.so.3.27.16
100755 → 100644
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,6 +135,7 @@ enum rc_proto { | |
RC_PROTO_NEC_APPLE, | ||
RC_PROTO_NEC_REPEAT, | ||
RC_PROTO_PANASONIC, | ||
RC_PROTO_GAP, | ||
}; | ||
|
||
/** | ||
|