[PR #288] [CLOSED] Activating Open Collective #1490

Closed
opened 2026-02-25 22:40:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/floccusaddon/floccus/pull/288
Author: @monkeywithacupcake
Created: 5/11/2019
Status: Closed

Base: masterHead: opencollective


📝 Commits (10+)

  • 6b14409 Fix: Don't create two controllers
  • c6faf51 SyncProcess: Only sync bookmark if they really differ
  • ee76368 Move messages to message file for i18n
  • 8f02374 Update README: Add transifex link
  • 230dafa Add localization messages
  • 72de5af Add transifex widget
  • 8cf8256 README: Fix transifex widget
  • 50b517a Translate _locales/en/messages.json in ru
  • b2cc63b Translate _locales/en/messages.json in de
  • a6b7e41 Fix i18 in WebDAV adapter

📊 Changes

30 files changed (+2809 additions, -617 deletions)

View changed files

📝 .travis.yml (+16 -16)
📝 README.md (+42 -5)
_locales/de/messages.json (+242 -0)
_locales/en/messages.json (+242 -0)
_locales/fr/messages.json (+242 -0)
_locales/pt/messages.json (+242 -0)
_locales/ru/messages.json (+242 -0)
📝 manifest.json (+3 -1)
📝 package-lock.json (+574 -225)
📝 package.json (+14 -7)
📝 src/lib/Account.js (+2 -2)
📝 src/lib/Controller.js (+7 -5)
📝 src/lib/Crypto.js (+0 -6)
📝 src/lib/LocalTree.js (+1 -1)
📝 src/lib/Tree.js (+9 -7)
📝 src/lib/adapters/Caching.js (+26 -19)
📝 src/lib/adapters/Nextcloud.js (+21 -40)
📝 src/lib/adapters/NextcloudFolders.js (+204 -60)
📝 src/lib/adapters/WebDav.js (+27 -42)
📝 src/lib/browser-api.js (+1 -0)

...and 10 more files

📄 Description

Hi, I'm making updates for Open Collective. Either you or a supporter signed this repo up for Open Collective. This pull request adds backers and sponsors from your Open Collective https://opencollective.com/floccus ❤️

It adds two badges at the top to show the latest number of backers and sponsors. It also adds placeholders so that the avatar/logo of new backers/sponsors can automatically be shown without having to update your README.md. [more info]. See how it looks on this repo.
We have also added a postinstall script to let people know after npm|yarn install that you are welcoming donations (optional). [More info]
You can also add a "Donate" button to your website and automatically show your backers and sponsors there with our widgets. Have a look here: https://opencollective.com/widgets

P.S: As with any pull request, feel free to comment or suggest changes. The only thing "required" are the placeholders on the README because we believe it's important to acknowledge the people in your community that are contributing (financially or with code!).

Thank you for your great contribution to the open source community. You are awesome! 🙌
And welcome to the open collective community! 😊

Come chat with us in the #opensource channel on https://slack.opencollective.com - great place to ask questions and share best practices with other open source sustainers!


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/floccusaddon/floccus/pull/288 **Author:** [@monkeywithacupcake](https://github.com/monkeywithacupcake) **Created:** 5/11/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `opencollective` --- ### 📝 Commits (10+) - [`6b14409`](https://github.com/floccusaddon/floccus/commit/6b1440914bed3a60324ca70d3bf79e65c7a6f572) Fix: Don't create two controllers - [`c6faf51`](https://github.com/floccusaddon/floccus/commit/c6faf51f15e29d30b26b9466dc8774a123e78a1e) SyncProcess: Only sync bookmark if they really differ - [`ee76368`](https://github.com/floccusaddon/floccus/commit/ee76368fba20752d0d5f7a6d1dd638bfa77bd66c) Move messages to message file for i18n - [`8f02374`](https://github.com/floccusaddon/floccus/commit/8f02374f33f3c4e54e023d4cec50057e9fb948b9) Update README: Add transifex link - [`230dafa`](https://github.com/floccusaddon/floccus/commit/230dafafbd6f5fd16177a2d344bb2991ea34158e) Add localization messages - [`72de5af`](https://github.com/floccusaddon/floccus/commit/72de5afc103ade7218e389c2a55edcf53326caf9) Add transifex widget - [`8cf8256`](https://github.com/floccusaddon/floccus/commit/8cf8256298521e4ce5fb36154fe9677271b1aea1) README: Fix transifex widget - [`50b517a`](https://github.com/floccusaddon/floccus/commit/50b517ae980059ff95c69a7c753c3c202b185ea3) Translate _locales/en/messages.json in ru - [`b2cc63b`](https://github.com/floccusaddon/floccus/commit/b2cc63b2c7d2e35487b9eb37eea8452581c22a69) Translate _locales/en/messages.json in de - [`a6b7e41`](https://github.com/floccusaddon/floccus/commit/a6b7e41cb63755e88f29018e9e8fc5155bfe18d4) Fix i18 in WebDAV adapter ### 📊 Changes **30 files changed** (+2809 additions, -617 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+16 -16) 📝 `README.md` (+42 -5) ➕ `_locales/de/messages.json` (+242 -0) ➕ `_locales/en/messages.json` (+242 -0) ➕ `_locales/fr/messages.json` (+242 -0) ➕ `_locales/pt/messages.json` (+242 -0) ➕ `_locales/ru/messages.json` (+242 -0) 📝 `manifest.json` (+3 -1) 📝 `package-lock.json` (+574 -225) 📝 `package.json` (+14 -7) 📝 `src/lib/Account.js` (+2 -2) 📝 `src/lib/Controller.js` (+7 -5) 📝 `src/lib/Crypto.js` (+0 -6) 📝 `src/lib/LocalTree.js` (+1 -1) 📝 `src/lib/Tree.js` (+9 -7) 📝 `src/lib/adapters/Caching.js` (+26 -19) 📝 `src/lib/adapters/Nextcloud.js` (+21 -40) 📝 `src/lib/adapters/NextcloudFolders.js` (+204 -60) 📝 `src/lib/adapters/WebDav.js` (+27 -42) 📝 `src/lib/browser-api.js` (+1 -0) _...and 10 more files_ </details> ### 📄 Description Hi, I'm making updates for Open Collective. Either you or a supporter signed this repo up for Open Collective. This pull request adds backers and sponsors from your Open Collective https://opencollective.com/floccus ❤️ It adds two badges at the top to show the latest number of backers and sponsors. It also adds placeholders so that the avatar/logo of new backers/sponsors can automatically be shown without having to update your README.md. [[more info](https://github.com/opencollective/opencollective/wiki/Github-banner)]. See how it looks on [this repo](https://github.com/apex/apex#backers). We have also added a `postinstall` script to let people know after `npm|yarn install` that you are welcoming donations (optional). [[More info](https://github.com/OpenCollective/opencollective-cli)] You can also add a "Donate" button to your website and automatically show your backers and sponsors there with our widgets. Have a look here: https://opencollective.com/widgets P.S: As with any pull request, feel free to comment or suggest changes. The only thing "required" are the placeholders on the README because we believe it's important to acknowledge the people in your community that are contributing (financially or with code!). Thank you for your great contribution to the open source community. You are awesome! 🙌 And welcome to the open collective community! 😊 Come chat with us in the #opensource channel on https://slack.opencollective.com - great place to ask questions and share best practices with other open source sustainers! --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-25 22:40:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/floccus#1490
No description provided.