ideasbugs 0.7.0 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b3ee598ec8e5e5e5e67dddab875252edaea6f4a49101a311504d5d2d2b5f87c
4
- data.tar.gz: d7d9e57238759a532fb25a5d0cc0a6bde9b9385e0d301febe01fc092d3bfe418
3
+ metadata.gz: cce1a1dc7ff2b64ea5f41757e95a545c03041d3d11dd274c0327dd20a6fb60ae
4
+ data.tar.gz: d1a0bf5f32c10c2f38dedf207f702e1747a073eaba6b807fcec07bc75ba4b72b
5
5
  SHA512:
6
- metadata.gz: c51ddb0f3cf65ff0ee80370e8290d979380826d1d52b9a0b38f741e94535dcce2c9d0799c981dbd932aa57d24b3cd5a64385e0d3ebdf1402e8016cc5ea9f6764
7
- data.tar.gz: fecbfe047b325ee7d1e0f04336b23351e7191b06269ad8b6602557ec13151084a40cf16daa2d7e3a6491f2ad5904ccc73224e50628cf880f2ba090cc98a50212
6
+ metadata.gz: a1049237e7cd0ee30380ce490df1ade2e0b4680414bf94358d4596ff5878a21cfd77f3fb0a9df011b83caf6af80a0cd2a69bdcf5da762140aff4d6307c17873b
7
+ data.tar.gz: 45fc911aeaab024b8c0c06b86b85ba3161e501c9971c84310a3f42ae1e78f31e96125def02ef68780237c0b20ea99e67005e590b0ddbcefd3955979303a92771
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.7.1 (2026-07-30)
4
+
5
+ - Renamed the default admin dashboard title to `IdeasBugs` while keeping it
6
+ overridable through `ideasbugs.dashboard.title`.
7
+
3
8
  ## 0.7.0 (2026-07-27)
4
9
 
5
10
  - **Mobile keyboard-safe dialog.** On phones the full-screen dialog
@@ -1,4 +1,4 @@
1
- <h1><%= t('ideasbugs.dashboard.title', default: 'Feedback') %></h1>
1
+ <h1><%= t('ideasbugs.dashboard.title', default: 'IdeasBugs') %></h1>
2
2
 
3
3
  <div class="tabs">
4
4
  <% Ideasbugs::Feedback::STATUSES.each do |status| %>
@@ -1,5 +1,5 @@
1
1
  <div class="breadcrumb">
2
- <%= link_to t('ideasbugs.dashboard.title', default: 'Feedback'), root_path %>
2
+ <%= link_to t('ideasbugs.dashboard.title', default: 'IdeasBugs'), root_path %>
3
3
  / #<%= @feedback.id %>
4
4
  </div>
5
5
 
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
- <title><%= t('ideasbugs.dashboard.title', default: 'Feedback') %></title>
4
+ <title><%= t('ideasbugs.dashboard.title', default: 'IdeasBugs') %></title>
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1">
6
6
  <%= csrf_meta_tags %>
7
7
  <style>
@@ -27,7 +27,7 @@ en:
27
27
  in_review: "In review"
28
28
  resolved: "Resolved"
29
29
  dashboard:
30
- title: "Feedback"
30
+ title: "IdeasBugs"
31
31
  all_kinds: "All types"
32
32
  filter: "Filter"
33
33
  message: "Message"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ideasbugs
4
- VERSION = '0.7.0'
4
+ VERSION = '0.7.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ideasbugs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Shmarov