-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small bug-fix with Store class retrieve
- Loading branch information
1 parent
d3c935f
commit d4397d7
Showing
4 changed files
with
24 additions
and
22 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
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,20 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.module.cache" name="cache" version="1.0.0" provider-name="fraser"> | ||
<addon id="script.module.cache" name="cache" version="1.0.1" provider-name="fraser"> | ||
<requires> | ||
<import addon="xbmc.python" version="2.26.0"/> | ||
</requires> | ||
<extension point="xbmc.python.module" library="lib"/> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">Simple HTTP Cache using sqlite3</summary> | ||
<description lang="en_GB">Stores cached data in sqlite3.Blobs. Calculates lifetime, freshness as virtual | ||
columns. | ||
Obeys cache control directives, immutable, no-store, etc. Supports etag, last_modified, etc for validation. | ||
Can be used as a generic key/blob data store when used without directives | ||
<description lang="en_GB">Stores cached data in sqlite3.Blobs. Calculates lifetime, freshness as virtual columns. | ||
Obeys cache control directives, immutable, no-store, etc. Supports etag, last_modified, etc for validation. | ||
Can be used as a generic key/blob data store when used without directives | ||
</description> | ||
<license>MIT</license> | ||
<platform>all</platform> | ||
<email>fraser.chapman@gmail.com</email> | ||
<source>https://github.com/FraserChapman/script.module.cache</source> | ||
<news>v1.0.0 (17-6-19) - Initial version</news> | ||
<news>v1.0.1 (6-7-19) - Small bug-fix with Store class retrieve</news> | ||
</extension> | ||
</addon> |
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 +1,2 @@ | ||
v1.0.1 - Small bug-fix with Store class retrieve | ||
v1.0.0 - Initial version |
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