Skip to content

Commit

Permalink
Merge pull request #138 from akiko-pusu/develop
Browse files Browse the repository at this point in the history
Update version to 0.1.4
  • Loading branch information
akiko-pusu authored Jul 9, 2020
2 parents 23e0d67 + 32cdd29 commit c795a44
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,13 @@ Then, you can configure and activate this plugin.

## Changelog

### 0.1.4

Code refactoring and maintenance release.

- Bugfix: The link to assigned to me is not displayed. (#136)
- Update Portuguese Brazil translation. (contributed by @adrianobr)

### 0.1.3

Code refactoring and maintenance release.
Expand Down
6 changes: 3 additions & 3 deletions app/views/issue_badge/_issue_badge_contents.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@

<% if @error_message.blank? %>
<div class="footer">
<% if @query.present? %>
<%= link_to _project_issues_path(@query.project, { query_id: @query.id })do %>
<% if @query.present? && @query&.id.present? %>
<%= link_to _project_issues_path(@query.project, { query_id: @query.id }), title: @query.name do %>
<%= l(:label_query) %>
<% end %>
<% else %>
<%= link_to issues_path(set_filter: 1, assigned_to_id: 'me', sort: 'priority:desc,updated_on:desc') do %>
<%= link_to issues_path(set_filter: 1, assigned_to_id: 'me', sort: 'priority:desc,updated_on:desc'), title: t(:label_assigned_to_me_issues) do %>
<%= l(:label_assigned_to_me_issues) %>
<% end %>
<% end %>
Expand Down
8 changes: 7 additions & 1 deletion config/locales/pt-BR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,11 @@ pt-BR:
title_issue_badge: Tarefas Badge
label_issue_badge: Mostar o número de tarefas atribuídos com badge.
label_activate_for_all_users: Mostrar tarefas para todos os usuários
label_enabled_polling: Habilitar atualização (Intervalo de 60 sec.
label_enabled_polling: Habilitar atualização (Intervalo de 60 sec.
label_show_assigned_to_group: Incluir as tarefas associadas aos meus grupos
label_badge_order: Ordem de listagem
label_badge_order_oldest: "Antigas %{value} tarefas"
label_badge_order_newest: "Novas %{value} tarefas"
label_use_custom_query: Usar consultas personalizadas
invalid_query_id: Inválida consulta personálizada.
label_number_to_display: Número da tarefa exibida no pop-up
2 changes: 1 addition & 1 deletion init.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def issue_badge_version_message(original_message = nil)
name 'Redmine Issue Badge plugin'
author 'Akiko Takano'
description 'Plugin to show the number of assigned issues with badge on top menu.'
version '0.1.3'
version '0.1.4'
url 'https://github.com/akiko-pusu/redmine_issue_badge'
author_url 'http://twitter.com/akiko_pusu'
requires_redmine version_or_higher: '4.0'
Expand Down

0 comments on commit c795a44

Please sign in to comment.