prune_captcha 1.18.6__tar.gz → 1.18.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/PKG-INFO +2 -1
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/README.md +1 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/apps.py +1 -1
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha.egg-info/PKG-INFO +2 -1
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/pyproject.toml +1 -1
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/MANIFEST.in +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/__init__.py +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/static/prune_captcha/css/captcha.css +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/static/prune_captcha/js/captcha.js +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/templates/prune_captcha/captcha.html +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/utils.py +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha.egg-info/SOURCES.txt +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha.egg-info/dependency_links.txt +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha.egg-info/requires.txt +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha.egg-info/top_level.txt +0 -0
- {prune_captcha-1.18.6 → prune_captcha-1.18.7}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.18.
|
3
|
+
Version: 1.18.7
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -126,6 +126,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
|
|
126
126
|
|
127
127
|
| Version | Date | Notes |
|
128
128
|
| ------- | ---------- | ---------------------------------- |
|
129
|
+
| 1.18.7 | 2025-05-28 | PUZZLE_HINT_TEXT fix |
|
129
130
|
| 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
|
130
131
|
| 1.18.5 | 2025-05-23 | ValueError fixed |
|
131
132
|
| 1.18.4 | 2025-05-23 | deleted var |
|
@@ -108,6 +108,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
|
|
108
108
|
|
109
109
|
| Version | Date | Notes |
|
110
110
|
| ------- | ---------- | ---------------------------------- |
|
111
|
+
| 1.18.7 | 2025-05-28 | PUZZLE_HINT_TEXT fix |
|
111
112
|
| 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
|
112
113
|
| 1.18.5 | 2025-05-23 | ValueError fixed |
|
113
114
|
| 1.18.4 | 2025-05-23 | deleted var |
|
@@ -11,7 +11,7 @@ class DjangoPuzzleConfig(AppConfig):
|
|
11
11
|
raise ImproperlyConfigured(
|
12
12
|
"prune_captcha: vous devez définir PUZZLE_IMAGE_STATIC_PATH dans settings.py"
|
13
13
|
)
|
14
|
-
if not hasattr(settings, "PUZZLE_HINT_TEXT
|
14
|
+
if not hasattr(settings, "PUZZLE_HINT_TEXT"):
|
15
15
|
raise ImproperlyConfigured(
|
16
16
|
"prune_captcha: vous devez définir PUZZLE_HINT_TEXT dans settings.py"
|
17
17
|
)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: prune_captcha
|
3
|
-
Version: 1.18.
|
3
|
+
Version: 1.18.7
|
4
4
|
Summary: A tool to protect formulaire from spam.
|
5
5
|
Author-email: Arnout <bastien@prune.sh>
|
6
6
|
Project-URL: Made_by, https://prune.sh/
|
@@ -126,6 +126,7 @@ Important: You must import the static files (css, js) present in "prune_captcha/
|
|
126
126
|
|
127
127
|
| Version | Date | Notes |
|
128
128
|
| ------- | ---------- | ---------------------------------- |
|
129
|
+
| 1.18.7 | 2025-05-28 | PUZZLE_HINT_TEXT fix |
|
129
130
|
| 1.18.6 | 2025-05-28 | added PUZZLE_HINT_TEXT |
|
130
131
|
| 1.18.5 | 2025-05-23 | ValueError fixed |
|
131
132
|
| 1.18.4 | 2025-05-23 | deleted var |
|
@@ -26,7 +26,7 @@ classifiers = [
|
|
26
26
|
keywords = ["captcha", "django", "code-quality"]
|
27
27
|
urls = {Made_by = "https://prune.sh/"}
|
28
28
|
name = "prune_captcha"
|
29
|
-
version = "1.18.
|
29
|
+
version = "1.18.7"
|
30
30
|
description = "A tool to protect formulaire from spam."
|
31
31
|
readme = "README.md"
|
32
32
|
dependencies = [
|
File without changes
|
File without changes
|
{prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/static/prune_captcha/css/captcha.css
RENAMED
File without changes
|
{prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/static/prune_captcha/js/captcha.js
RENAMED
File without changes
|
{prune_captcha-1.18.6 → prune_captcha-1.18.7}/prune_captcha/templates/prune_captcha/captcha.html
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|