Skip to content

Commit 7871d5b

Browse files
authored
Add notion of versions (#403)
Close #399. Close #349
1 parent 7266852 commit 7871d5b

File tree

8 files changed

+43
-0
lines changed

8 files changed

+43
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### Checklist
2+
3+
- [ ] Read the [CONTRIBUTING document](https://github.com/monicahq/monica/blob/master/CONTRIBUTING.md) before submitting your PR.
4+
- [ ] If the PR is related to an issue or fix one, don't forget to indicate it.
5+
- [ ] Make sure that the change you propose is the smallest possible.
6+
- [ ] Screenshots are included if the PR changes the UI.
7+
- [ ] Tests added for this feature/bug.
8+
- [ ] [CHANGELOG](https://github.com/monicahq/monica/blob/master/CHANGELOG) entry added, if necessary, under `UNRELEASED`.
9+
- [ ][CONTRIBUTORS](https://github.com/monicahq/monica/blob/master/CONTRIBUTORS) entry added, if necessary.
10+
- [ ] Indicate `[wip]` in the title of the PR it is is not final yet. Remove `[wip]` when ready. Otherwise the PR will be considered complete and rejected if it's not working.

CHANGELOG

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
UNRELEASED CHANGES:
2+
3+
-
4+
5+
RELEASED VERSIONS:
6+
7+
v0.1.0 - 2017-06-26
8+
-------------------
9+
10+
* First official release. We'll now follow this structure. If you self host, we highly recommend that you check the latest tag instead of pulling from master.
11+
12+
2017-06-24
13+
----------
14+
15+
Improvements:
16+
* On the people's tab, filters are now placed above the table.
17+
118
2017-06-22
219
----------
320

config/monica.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,15 @@
7878
'paid_plan_friendly_name' => env('PAID_PLAN_FRIENDLY_NAME', null),
7979
'paid_plan_id' => env('PAID_PLAN_ID', null),
8080
'paid_plan_price' => env('PAID_PLAN_PRICE', null),
81+
82+
/*
83+
|--------------------------------------------------------------------------
84+
| Version of the application that you run
85+
|--------------------------------------------------------------------------
86+
|
87+
| This is used to indicate which version of Monica you are running. You
88+
| should not change this setting yourself.
89+
|
90+
*/
91+
'app_version' => '0.1.0',
8192
];

resources/lang/en/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'footer_release' => 'Release notes',
2626
'footer_newsletter' => 'Newsletter',
2727
'footer_source_code' => 'Monica on GitHub',
28+
'footer_version' => 'Version: :version',
2829

2930
'breadcrumb_dashboard' => 'Dashboard',
3031
'breadcrumb_list_contacts' => 'List of contacts',

resources/lang/fr/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'footer_release' => 'Notes de version (en)',
2626
'footer_newsletter' => 'Infolettre (en)',
2727
'footer_source_code' => 'Monica on GitHub',
28+
'footer_version' => 'Version: :version',
2829

2930
'breadcrumb_dashboard' => 'Tableau de bord',
3031
'breadcrumb_list_contacts' => 'Liste de contacts',

resources/lang/pt-br/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'footer_release' => 'Notas de versão',
2626
'footer_newsletter' => 'Newsletter',
2727
'footer_source_code' => 'Monica on GitHub',
28+
'footer_version' => 'Version: :version',
2829

2930
'breadcrumb_dashboard' => 'Painel',
3031
'breadcrumb_list_contacts' => 'Lista de contatos',

resources/lang/ru/app.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
'footer_release' => 'Примечания к выпуску',
2626
'footer_newsletter' => 'Рассылка',
2727
'footer_source_code' => 'Monica on GitHub',
28+
'footer_version' => 'Version: :version',
2829

2930
'breadcrumb_dashboard' => 'Обзор',
3031
'breadcrumb_list_contacts' => 'Список контактов',

resources/views/partials/footer.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<li><a href="https://tinyletter.com/monicahq">{{ trans('app.footer_newsletter') }}</a></li>
99
<li><a href="https://monicahq.com/changelog">{{ trans('app.footer_release') }}</a></li>
1010
<li><a href="https://github.com/monicahq/monica">{{ trans('app.footer_source_code') }}</a></li>
11+
<li>{{ trans('app.footer_version', ['version' => config('monica.app_version')]) }}</li>
1112
</ul>
1213
</div>
1314
</div>

0 commit comments

Comments
 (0)