Skip to content

Commit f341aab

Browse files
authored
Merge pull request #586 from Floppy/gif-and-svg
Scan and show GIF and SVG image formats
2 parents a8facb2 + c4c9d9e commit f341aab

File tree

5 files changed

+8
-3
lines changed

5 files changed

+8
-3
lines changed

app/controllers/model_files_controller.rb

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ def show
1515
format.mix { send_file_content }
1616
format.png { send_file File.join(@library.path, @model.path, @file.filename) }
1717
format.jpeg { send_file File.join(@library.path, @model.path, @file.filename) }
18+
format.svg { send_file File.join(@library.path, @model.path, @file.filename) }
19+
format.gif { send_file File.join(@library.path, @model.path, @file.filename) }
1820
end
1921
end
2022

app/helpers/application_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def renderable?(format)
2727

2828
def image?(format)
2929
case format
30-
when "jpg", "png"
30+
when "jpg", "jpeg", "png", "svg", "gif"
3131
true
3232
else
3333
false

config/formats.yml

+3
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ shared:
99
images:
1010
- jpg
1111
- png
12+
- jpeg
13+
- gif
14+
- svg

spec/jobs/library_scan_job_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
end
1111

1212
it "generates a case-insensitive pattern for files" do
13-
expect(LibraryScanJob.file_pattern).to eq "*.{stl,STL,obj,OBJ,3mf,3MF,blend,BLEND,mix,MIX,ply,PLY,jpg,JPG,png,PNG}"
13+
expect(LibraryScanJob.file_pattern).to eq "*.{stl,STL,obj,OBJ,3mf,3MF,blend,BLEND,mix,MIX,ply,PLY,jpg,JPG,png,PNG,jpeg,JPEG,gif,GIF,svg,SVG}"
1414
end
1515

1616
it "can scan a library directory" do

spec/jobs/model_scan_job_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
context "but no scanned files" do
1717
it "generates a case-insensitive pattern for files" do
18-
expect(ModelScanJob.file_pattern).to eq "*.{stl,STL,obj,OBJ,3mf,3MF,blend,BLEND,mix,MIX,ply,PLY,jpg,JPG,png,PNG}"
18+
expect(ModelScanJob.file_pattern).to eq "*.{stl,STL,obj,OBJ,3mf,3MF,blend,BLEND,mix,MIX,ply,PLY,jpg,JPG,png,PNG,jpeg,JPEG,gif,GIF,svg,SVG}"
1919
end
2020

2121
it "can scan a library directory" do

0 commit comments

Comments
 (0)