Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 3 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
## 1.0.21 (unreleased)


- Update to Relstorage 4.2.1
- Simplify and make mxdev config explicit
- Add collective.casestudy to mxdev, pin 1.0.0b1 for testing/production.
- Add zodbpack utility container.
- Add maintenance scripts.
- Add maintenance scripts.
- Add docs to use local filestorage, add make install for backend.
- Deployment fixes for frontend, use newer linux base image for frontend.
- Fix several frontend jsx template issues and warnings.
- Updated Volto to 16.34.1

- Add new sponsorship level

## 1.0.20 (2025-06-25)

- Remove unused blocks: author, breadcrumbs, image_columns, linked_items, pagemetadata, text, text4. [davisagli]


## 1.0.19 (2025-04-20)

- Also add DB_PORT in live stack file. [fredvd]
- Also add DB_PORT in live stack file. [fredvd]
- Update stack config version. [fredvd]


## 1.0.18 (2025-04-19)

- Update Database connection live & redeploy GHA workflows. [fredvd]
Expand All @@ -31,10 +28,8 @@

- Update Database connection CI parameters testing. [fredvd]


## 1.0.17 (2024-12-10)


- Add link to newsletter subscribe to footer. [Adityaadpandey]

- Pin cookiecutter-zope-instance version in backend/Makefile. [fredvd]
Expand All @@ -51,12 +46,10 @@

- Add recurrence index to catalog.xml [fredvd]


## 1.0.16 (2024-02-23)

- Rereleased to get a tagged version deployed on docker swarm


## 1.0.15 (2024-02-23)

- Use relstorage 4.0.0 and psycopg2 2.9.9. [fredvd]
Expand All @@ -83,7 +76,6 @@

- Update to Volto 16.25.0 [davisagli]


## 1.0.13 (2023-10-09)

---
Expand Down
2 changes: 1 addition & 1 deletion backend/src/ploneorg/src/ploneorg/vocabularies/sponsors.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
def types_vocabulary(context):
"""Vocabulary of sponsorship types."""
terms = []
for token in ["premium", "standard", "basic", "university"]:
for token in ["platinum", "premium", "standard", "basic", "university"]:

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I thought we decided to remove university, and move it over to community recognition, since most universities can't make donations?

From a marketing and sales perspective, "basic" and "standard" are kind of boring. With a new Sponsorship program, it might be time for a complete change in marketing strategy. It would be interesting to change to all the values to the precious metals of bronze, silver, gold, and platinum. Everybody gets a participation medal and they're all precious, instead of boring standard or basic.

One other thing, too. Consider the word "Sponsor" implies giving money in exchange for goods or services, which has tax implications. In the US, most nonprofits have shifted toward the term "Supporter" or "Donor", which removes that implication. Supporter also sounds nicer. Compare "I'm supporting the Plone Foundation" to "I'm sponsoring the Plone Foundation".

terms.append(SimpleTerm(token, token, token.title()))
return SimpleVocabulary(terms)