learning-credentials 0.2.2rc2__tar.gz → 0.2.3__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.
Files changed (45) hide show
  1. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/CHANGELOG.rst +7 -0
  2. {learning_credentials-0.2.2rc2/learning_credentials.egg-info → learning_credentials-0.2.3}/PKG-INFO +8 -1
  3. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.html +2 -2
  4. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/body.txt +2 -2
  5. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3/learning_credentials.egg-info}/PKG-INFO +8 -1
  6. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/pyproject.toml +1 -1
  7. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/LICENSE.txt +0 -0
  8. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/MANIFEST.in +0 -0
  9. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/README.rst +0 -0
  10. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/__init__.py +0 -0
  11. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/admin.py +0 -0
  12. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/apps.py +0 -0
  13. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/compat.py +0 -0
  14. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/conf/locale/config.yaml +0 -0
  15. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/exceptions.py +0 -0
  16. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/generators.py +0 -0
  17. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0001_initial.py +0 -0
  18. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0002_migrate_to_learning_credentials.py +0 -0
  19. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0003_rename_certificates_to_credentials.py +0 -0
  20. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0004_replace_course_keys_with_learning_context_keys.py +0 -0
  21. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0005_rename_processors_and_generators.py +0 -0
  22. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/0006_cleanup_openedx_certificates_tables.py +0 -0
  23. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/migrations/__init__.py +0 -0
  24. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/models.py +0 -0
  25. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/processors.py +0 -0
  26. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/settings/__init__.py +0 -0
  27. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/settings/common.py +0 -0
  28. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/settings/production.py +0 -0
  29. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/tasks.py +0 -0
  30. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/base.html +0 -0
  31. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/from_name.txt +0 -0
  32. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/head.html +0 -0
  33. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/templates/learning_credentials/edx_ace/certificate_generated/email/subject.txt +0 -0
  34. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/urls.py +0 -0
  35. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials/views.py +0 -0
  36. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials.egg-info/SOURCES.txt +0 -0
  37. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials.egg-info/dependency_links.txt +0 -0
  38. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials.egg-info/entry_points.txt +0 -0
  39. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials.egg-info/requires.txt +0 -0
  40. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/learning_credentials.egg-info/top_level.txt +0 -0
  41. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/setup.cfg +0 -0
  42. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/tests/test_generators.py +0 -0
  43. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/tests/test_models.py +0 -0
  44. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/tests/test_processors.py +0 -0
  45. {learning_credentials-0.2.2rc2 → learning_credentials-0.2.3}/tests/test_tasks.py +0 -0
@@ -16,6 +16,13 @@ Unreleased
16
16
 
17
17
  *
18
18
 
19
+ 0.2.3 - 2025-08-18
20
+
21
+ Modified
22
+ ========
23
+
24
+ * Certificate email template wording.
25
+
19
26
  0.2.2 - 2025-08-05
20
27
 
21
28
  Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: learning-credentials
3
- Version: 0.2.2rc2
3
+ Version: 0.2.3
4
4
  Summary: A pluggable service for preparing Open edX credentials.
5
5
  Author-email: OpenCraft <help@opencraft.com>
6
6
  License-Expression: AGPL-3.0-or-later
@@ -174,6 +174,13 @@ Unreleased
174
174
 
175
175
  *
176
176
 
177
+ 0.2.3 - 2025-08-18
178
+
179
+ Modified
180
+ ========
181
+
182
+ * Certificate email template wording.
183
+
177
184
  0.2.2 - 2025-08-05
178
185
 
179
186
  Added
@@ -5,7 +5,7 @@
5
5
  </p>
6
6
 
7
7
  <p>
8
- {% blocktrans %}We are happy to inform you that you have earned a certificate. You should feel very proud of the work you have done in this course. We congratulate you on your efforts and your learning.{% endblocktrans %}
8
+ {% blocktrans %}We are happy to inform you that you have earned a certificate. You should feel very proud of the work you have done in this program. We congratulate you on your efforts and your learning.{% endblocktrans %}
9
9
  </p>
10
10
 
11
11
  <p>
@@ -15,7 +15,7 @@
15
15
 
16
16
  <div>
17
17
  <div>
18
- {% blocktrans %}Thank you for choosing {{ platform_name }} for your learning journey. We look forward to seeing you in more courses in the future.{% endblocktrans %}
18
+ {% blocktrans %}Thank you for choosing {{ platform_name }} for your learning journey. We look forward to seeing you in more programs in the future.{% endblocktrans %}
19
19
  </div>
20
20
  </div>
21
21
 
@@ -2,12 +2,12 @@
2
2
 
3
3
  {% blocktrans %}Thank you for your participation in {{ course_name }} at {{ platform_name }}!{% endblocktrans %}
4
4
 
5
- {% blocktrans %}We are happy to inform you that you have earned a certificate. You should feel very proud of the work you have done in this course. We congratulate you on your efforts and your learning.{% endblocktrans %}
5
+ {% blocktrans %}We are happy to inform you that you have earned a certificate. You should feel very proud of the work you have done in this program. We congratulate you on your efforts and your learning.{% endblocktrans %}
6
6
 
7
7
  {% trans "To view and download your certificate, please click on the following link:" %}
8
8
 
9
9
  {{ certificate_link }}
10
10
 
11
- {% blocktrans %}Thank you for choosing {{ platform_name }} for your learning journey. We look forward to seeing you in more courses in the future.{% endblocktrans %}
11
+ {% blocktrans %}Thank you for choosing {{ platform_name }} for your learning journey. We look forward to seeing you in more programs in the future.{% endblocktrans %}
12
12
 
13
13
  {% endautoescape %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: learning-credentials
3
- Version: 0.2.2rc2
3
+ Version: 0.2.3
4
4
  Summary: A pluggable service for preparing Open edX credentials.
5
5
  Author-email: OpenCraft <help@opencraft.com>
6
6
  License-Expression: AGPL-3.0-or-later
@@ -174,6 +174,13 @@ Unreleased
174
174
 
175
175
  *
176
176
 
177
+ 0.2.3 - 2025-08-18
178
+
179
+ Modified
180
+ ========
181
+
182
+ * Certificate email template wording.
183
+
177
184
  0.2.2 - 2025-08-05
178
185
 
179
186
  Added
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "learning-credentials"
3
- version = "0.2.2-rc2"
3
+ version = "0.2.3"
4
4
  description = "A pluggable service for preparing Open edX credentials."
5
5
  dynamic = ["readme"]
6
6
  requires-python = ">=3.11"