Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v5.1.0 #740

Merged
merged 4 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
17 changes: 0 additions & 17 deletions CONTRIBUTING.md

This file was deleted.

13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# TimeOverflow

[![Build Status](https://github.com/coopdevs/timeoverflow/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/coopdevs/timeoverflow/actions)
[![Maintainability](https://api.codeclimate.com/v1/badges/f82c6d98a2441c84f2ef/maintainability)](https://codeclimate.com/github/coopdevs/timeoverflow/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/f82c6d98a2441c84f2ef/test_coverage)](https://codeclimate.com/github/coopdevs/timeoverflow/test_coverage)

#### www.timeoverflow.org

:bank: :hourglass: Time Bank management system. [Learn more about Time Banks](http://www.bdtonline.org/).
🏦 ⌛ Time Bank management system. [Learn more about Time Banks](http://www.bdtonline.org/).

TimeOverflow is a software developed in an altruistic way to offer a system that
facilitates the interaction of the members and the management of the Time Banks.
Expand Down Expand Up @@ -99,9 +100,15 @@ In order to configure the application you can use the following ENV variables:

## Contributions

**Join our collaborators team!**
Any kind of feedback, bug report, idea or enhancement are really appreciated.

To contribute, just fork the repo, hack on it and send a pull request. Don't forget to add tests for behaviour changes and run the test suite:

```
bundle exec rspec
```

:point_right: Further information [here](CONTRIBUTING.md).
👉 Further information in our [Wiki](https://github.com/coopdevs/timeoverflow/wiki).

## License

Expand Down
2 changes: 1 addition & 1 deletion app/mailers/organization_notifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def new_petition(petition)
I18n.with_locale(locale) do
mail(
subject: 'New Application',
to: organization.users.joins(:members).where(members: { manager: true }).pluck(:email).uniq
bcc: organization.users.joins(:members).where(members: { manager: true }).pluck(:email).uniq
)
end
end
Expand Down
3 changes: 1 addition & 2 deletions app/views/application/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-left-col">
<a href="http://community.coopdevs.org/" target="_blank"><%= t('layouts.application.help') %></a>
<a href="https://adbdt.org/contacta/" target="_blank"><%= t('layouts.application.help') %></a>
<%= link_to t('application.terms_conditions'), tnc_path, data: { target: '#modal', toggle: 'modal' } %>
</div>
<div class="col-xs-12 col-sm-2 col-md-2 col-lg-4 footer-center-col">
<%= render 'application/menus/language_switcher' %>
</div>
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-right-col">
<a href="https://twitter.com/timeoverflow" target="_blank">Twitter</a>
<a href="https://github.com/coopdevs/timeoverflow" target="_blank">Github</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/pages/about.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"pages.about.empower-text-1",
showmap_link: link_to(
t("pages.about.empower-showmap"),
"http://www.bdtonline.org",
"https://adbdt.org/unete-a-un-banco-de-tiempo/",
{ title: t("pages.about.empower-showmap-title") }
)
).html_safe %></p>
Expand Down
Loading