redmineup 1.0.8 → 1.0.9

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: '08acb095c1f949aee4c07b3cb4a9ff4c39ee22047d02108cc776f6f9a5a332c7'
4
- data.tar.gz: 7639a6bb42193a8f9b274bb588e47f726e3be608c0ba789dc3c5ec7ce870f063
3
+ metadata.gz: 785a28d029a642ecf01ce919e3c4590b2e393bec640da155fb289eef8aedd1b9
4
+ data.tar.gz: 4fcb6f8c483751c3a110adbcadc6d2ad78191b0204fc1178623d03b968a50e3b
5
5
  SHA512:
6
- metadata.gz: 386b10e29e1a3b77520fc92b7e1b5837336d57bec75ef7fd129ecf7dd8cd4e64c0cae5424dec169ff4e5ca2ae5dc378ac984973c5fd2eed982f9c7e8a76812d5
7
- data.tar.gz: 164fa573d77747b767fdee953beec2c0c9c373bb7366a6426bbe5efbc6c741a608326402dccb348e1c499d545e6b26fb6e8008306b0ce39633d1b6530c313d88
6
+ metadata.gz: bf9f8165edb02007ef48a4f8cb56a3f89d60f11fdf771706037b701d1da24017933a057961bc941e19a2afa96affcd269341b14b5443cb76d39c34dff4c5553a
7
+ data.tar.gz: fdc12c196149feb894ab2b02e46d0c216007e40adb9982e121ec208a80a1e5fa9ce77dbc66430ec54a806b9c87cc855a8d12fa0539db1bc539dcc33cf072b392
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0"?>
2
+ <svg xmlns="http://www.w3.org/2000/svg" class="icon--sprite">
3
+ <defs>
4
+ <symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" id="icon--money">
5
+ <path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M16 6m-5 0a5 3 0 1 0 10 0a5 3 0 1 0 -10 0" /><path d="M11 6v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M11 10v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M11 14v4c0 1.657 2.239 3 5 3s5 -1.343 5 -3v-4" /><path d="M7 9h-2.5a1.5 1.5 0 0 0 0 3h1a1.5 1.5 0 0 1 0 3h-2.5" /><path d="M5 15v1m0 -8v1" />
6
+ </symbol>
7
+ </defs>
8
+ </svg>
@@ -1,8 +1,7 @@
1
- .icon-redmineup-money {
1
+ #admin-menu a.icon-redmineup-money:not(:has(svg)) {
2
2
  background-image: url(../images/money.png);
3
3
  }
4
4
 
5
-
6
5
  /***** Calendar *****/
7
6
  ul.cal {
8
7
  list-style: none;
data/doc/CHANGELOG CHANGED
@@ -4,6 +4,11 @@ Redmine UP gem - general functions for plugins (tags, vote, viewing, currency)
4
4
  Copyright (C) 2011-2025 Kirill Bezrukov (RedmineUP)
5
5
  https://www.redmineup.com/
6
6
 
7
+ == 2025-02-04 v1.0.9
8
+
9
+ * Added regex_replace Liquid filter
10
+ * Added svg icons for Redmine 6
11
+
7
12
  == 2025-01-31 v1.0.8
8
13
 
9
14
  * Fixed compatibility patch for Redmine < 5
@@ -40,7 +40,9 @@ module Redmineup
40
40
  Redmine::MenuManager.map(:admin_menu).push(:redmineup_money,
41
41
  { controller: 'redmineup', action: 'settings', id: 'money' },
42
42
  caption: :label_redmineup_money,
43
- html: { class: 'icon icon-redmineup-money' })
43
+ html: { class: 'icon icon-redmineup-money' },
44
+ icon: 'money',
45
+ plugin: :redmineup)
44
46
 
45
47
  end
46
48
 
@@ -38,6 +38,16 @@ module Redmineup
38
38
  Digest::MD5.hexdigest(input) unless input.blank?
39
39
  end
40
40
 
41
+ def regex_replace(str, regex_search, value_replace)
42
+ regex = /#{regex_search}/
43
+ return str.gsub(regex, value_replace)
44
+ end
45
+
46
+ def regex_replace_once(str, regex_search, value_replace)
47
+ regex = /#{regex_search}/
48
+ return str.sub(regex, value_replace)
49
+ end
50
+
41
51
  # example:
42
52
  # {{ "http:://www.example.com?key=hello world" | encode }}
43
53
  #
@@ -1,3 +1,3 @@
1
1
  module Redmineup
2
- VERSION = '1.0.8'
2
+ VERSION = '1.0.9'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redmineup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - RedmineUP
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-31 00:00:00.000000000 Z
11
+ date: 2025-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -112,6 +112,7 @@ files:
112
112
  - Gemfile
113
113
  - README.md
114
114
  - Rakefile
115
+ - app/assets/images/icons.svg
115
116
  - app/assets/images/money.png
116
117
  - app/assets/images/vcard.png
117
118
  - app/assets/javascripts/Chart.bundle.min.js.bak