diff --git a/.gitignore b/.gitignore index f7ffaeb..5bb0a9e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ *.exe -*.psd \ No newline at end of file +*.psd diff --git a/faq.html b/faq.html index 5a47c59..5356670 100644 --- a/faq.html +++ b/faq.html @@ -111,6 +111,6 @@ - + - \ No newline at end of file + diff --git a/guide.html b/guide.html index 8c1bf9f..d656c85 100644 --- a/guide.html +++ b/guide.html @@ -72,9 +72,9 @@ - + - + - \ No newline at end of file + diff --git a/index.html b/index.html index a86b4c4..8e7905a 100644 --- a/index.html +++ b/index.html @@ -85,8 +85,8 @@

nothing here :(

- + - + - \ No newline at end of file + diff --git a/js/current-films.js b/js/current-films.js index c0953cb..8afcc26 100644 --- a/js/current-films.js +++ b/js/current-films.js @@ -233,7 +233,7 @@ var currentfilms = [ "description": "panchromatic film, could be Orwo N74+", "launched": 2022, "datasheet": "", - "lomography": "", + "lomography": "https://www.lomography.com/films/871974092-kiki-pan-320/photos", "flickr": "https://www.flickr.com/search/?media=photos&text=%22Kiki%20Pan%20320%22", "image": "cfp-kiki-pan-320-135.png" }, @@ -3892,4 +3892,4 @@ var currentfilms = [ "flickr": "https://www.flickr.com/search/?media=photos&text=%22Yodica%20Vega%22", "image": "yodica-vega-135.png" } -] \ No newline at end of file +] diff --git a/js/discontinued-films.js b/js/discontinued-films.js index de86ca8..70e8095 100644 --- a/js/discontinued-films.js +++ b/js/discontinued-films.js @@ -305,4 +305,4 @@ var discontinuedfilms = [ "flickr": "https://www.flickr.com/search/?media=photos&text=%22Street%20Candy%20ATM%20400%22", "image": "street-candy-atm-400-135.png" } -] \ No newline at end of file +] diff --git a/js/guide.js b/js/guide.js index ecd64c4..d430365 100644 --- a/js/guide.js +++ b/js/guide.js @@ -813,4 +813,4 @@ var guide = [ } ] } -] \ No newline at end of file +] diff --git a/js/script-faq.js b/js/script-faq.js index 3287b5b..d524e6b 100644 --- a/js/script-faq.js +++ b/js/script-faq.js @@ -15,4 +15,4 @@ Vue.createApp({ document.querySelector('body').classList.remove('dark'); } } -}).mount('#faq'); \ No newline at end of file +}).mount('#faq'); diff --git a/js/script-guide.js b/js/script-guide.js index fa2de6f..21c1f81 100644 --- a/js/script-guide.js +++ b/js/script-guide.js @@ -72,4 +72,4 @@ Vue.createApp({ document.querySelector('body').classList.remove('dark'); } } -}).mount('#guide'); \ No newline at end of file +}).mount('#guide'); diff --git a/js/script-index.js b/js/script-index.js index 01a5726..af8d8f8 100644 --- a/js/script-index.js +++ b/js/script-index.js @@ -16,7 +16,8 @@ Vue.createApp({ return this.currentfilms.filter(function (film) { const name = film.name.toLowerCase(); const description = film.description.toLowerCase(); - const matches = (searchTerm) => name.includes(searchTerm) || description.includes(searchTerm); + const company = film.company.toLowerCase(); + const matches = (searchTerm) => name.includes(searchTerm) || description.includes(searchTerm) || company.includes(searchTerm); return searchTerms.every(matches); }); } else { @@ -97,4 +98,4 @@ Vue.createApp({ document.querySelector('body').classList.remove('dark'); } } -}).mount('#app'); \ No newline at end of file +}).mount('#app'); diff --git a/js/script-random.js b/js/script-random.js index 1208ec3..4e7e3f4 100644 --- a/js/script-random.js +++ b/js/script-random.js @@ -40,4 +40,4 @@ Vue.createApp({ document.querySelector('body').classList.remove('dark'); } } -}).mount('#random'); \ No newline at end of file +}).mount('#random'); diff --git a/manifest.webmanifest b/manifest.webmanifest index c6abbad..c84c303 100644 --- a/manifest.webmanifest +++ b/manifest.webmanifest @@ -17,4 +17,4 @@ "type": "image/png" } ] -} \ No newline at end of file +} diff --git a/random.html b/random.html index ce34736..aa9da23 100644 --- a/random.html +++ b/random.html @@ -71,8 +71,8 @@ - + - + - \ No newline at end of file + diff --git a/readme.md b/readme.md index 0b73f34..990b1c6 100644 --- a/readme.md +++ b/readme.md @@ -6,4 +6,4 @@ A database of currently available 35mm, 110 and medium format film stocks. This repository contains all the source code for the website to allow for easier collaboration. -The website can be found at [https://analogfilm.space](https://analogfilm.space) \ No newline at end of file +The website can be found at [https://analogfilm.space](https://analogfilm.space) diff --git a/scripts/broken-links.py b/scripts/broken-links.py index 10905e1..a884769 100644 --- a/scripts/broken-links.py +++ b/scripts/broken-links.py @@ -15,4 +15,3 @@ for film in films: print(film['name'] + ' ✓') except: print(film['name'] + ' ✗ - ' + film['lomography']) -