1
0
Fork 0
forked from gitea/nas

Merge remote-tracking branch 'parent/stable-4.3' into upstream-20241005

This commit is contained in:
KMY 2024-10-05 09:02:38 +09:00
commit cc857e57c6
132 changed files with 775 additions and 312 deletions

View file

@ -38,6 +38,20 @@ def find_used_icons
end
end
Rails.root.join('config', 'navigation.rb').open('r') do |file|
pattern = /material_symbol\('(?<icon>[^']*)'\)/
file.each_line do |line|
match = pattern.match(line)
next if match.blank?
# navigation.rb only uses 400x24 icons, per material_symbol() in
# app/helpers/application_helper.rb
icons_by_weight_and_size[400] ||= {}
icons_by_weight_and_size[400][24] ||= Set.new
icons_by_weight_and_size[400][24] << match['icon']
end
end
icons_by_weight_and_size
end