Skip to content

Commit 5fa056b

Browse files
authored
Merge pull request #740 from coopdevs/develop
Release v5.1.0
2 parents 5999917 + fe5d93a commit 5fa056b

File tree

5 files changed

+13
-24
lines changed

5 files changed

+13
-24
lines changed

CONTRIBUTING.md

-17
This file was deleted.

README.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# TimeOverflow
2+
23
[![Build Status](https://github.com/coopdevs/timeoverflow/actions/workflows/ci.yml/badge.svg?branch=develop)](https://github.com/coopdevs/timeoverflow/actions)
34
[![Maintainability](https://api.codeclimate.com/v1/badges/f82c6d98a2441c84f2ef/maintainability)](https://codeclimate.com/github/coopdevs/timeoverflow/maintainability)
45
[![Test Coverage](https://api.codeclimate.com/v1/badges/f82c6d98a2441c84f2ef/test_coverage)](https://codeclimate.com/github/coopdevs/timeoverflow/test_coverage)
56

67
#### www.timeoverflow.org
78

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

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

100101
## Contributions
101102

102-
**Join our collaborators team!**
103+
Any kind of feedback, bug report, idea or enhancement are really appreciated.
104+
105+
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:
106+
107+
```
108+
bundle exec rspec
109+
```
103110

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

106113
## License
107114

app/mailers/organization_notifier.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def new_petition(petition)
2020
I18n.with_locale(locale) do
2121
mail(
2222
subject: 'New Application',
23-
to: organization.users.joins(:members).where(members: { manager: true }).pluck(:email).uniq
23+
bcc: organization.users.joins(:members).where(members: { manager: true }).pluck(:email).uniq
2424
)
2525
end
2626
end

app/views/application/_footer.html.erb

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
<div class="container">
33
<div class="row">
44
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-left-col">
5-
<a href="http://community.coopdevs.org/" target="_blank"><%= t('layouts.application.help') %></a>
5+
<a href="https://adbdt.org/contacta/" target="_blank"><%= t('layouts.application.help') %></a>
66
<%= link_to t('application.terms_conditions'), tnc_path, data: { target: '#modal', toggle: 'modal' } %>
77
</div>
88
<div class="col-xs-12 col-sm-2 col-md-2 col-lg-4 footer-center-col">
99
<%= render 'application/menus/language_switcher' %>
1010
</div>
1111
<div class="col-xs-12 col-sm-5 col-md-5 col-lg-4 footer-right-col">
12-
<a href="https://twitter.com/timeoverflow" target="_blank">Twitter</a>
1312
<a href="https://github.com/coopdevs/timeoverflow" target="_blank">Github</a>
1413
</div>
1514
</div>

app/views/pages/about.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"pages.about.empower-text-1",
4343
showmap_link: link_to(
4444
t("pages.about.empower-showmap"),
45-
"http://www.bdtonline.org",
45+
"https://adbdt.org/unete-a-un-banco-de-tiempo/",
4646
{ title: t("pages.about.empower-showmap-title") }
4747
)
4848
).html_safe %></p>

0 commit comments

Comments
 (0)