From d6d0e65dd699730baaba44cdefb264cd2f892029 Mon Sep 17 00:00:00 2001 From: Athif Shaffy Date: Mon, 25 Feb 2019 06:34:49 +0530 Subject: [PATCH 1/2] Added bar=yes field for issue #5947 --- data/presets/fields/bar.json | 5 +++++ data/presets/presets/amenity/cafe.json | 5 +++-- data/presets/presets/amenity/restaurant.json | 5 +++-- data/presets/presets/tourism/hotel.json | 5 +++-- 4 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 data/presets/fields/bar.json diff --git a/data/presets/fields/bar.json b/data/presets/fields/bar.json new file mode 100644 index 000000000..b32cbc0d2 --- /dev/null +++ b/data/presets/fields/bar.json @@ -0,0 +1,5 @@ +{ + "key": "bar", + "type": "check", + "label": "Bar" +} \ No newline at end of file diff --git a/data/presets/presets/amenity/cafe.json b/data/presets/presets/amenity/cafe.json index d936a0a97..b096c8ced 100644 --- a/data/presets/presets/amenity/cafe.json +++ b/data/presets/presets/amenity/cafe.json @@ -22,7 +22,8 @@ "phone", "email", "fax", - "wheelchair" + "wheelchair", + "bar" ], "geometry": [ "point", @@ -37,4 +38,4 @@ "amenity": "cafe" }, "name": "Cafe" -} +} \ No newline at end of file diff --git a/data/presets/presets/amenity/restaurant.json b/data/presets/presets/amenity/restaurant.json index 94787e9c8..5f61f7d96 100644 --- a/data/presets/presets/amenity/restaurant.json +++ b/data/presets/presets/amenity/restaurant.json @@ -21,7 +21,8 @@ "phone", "email", "fax", - "wheelchair" + "wheelchair", + "bar" ], "geometry": [ "point", @@ -47,4 +48,4 @@ "amenity": "restaurant" }, "name": "Restaurant" -} +} \ No newline at end of file diff --git a/data/presets/presets/tourism/hotel.json b/data/presets/presets/tourism/hotel.json index 351637a41..e9158cd84 100644 --- a/data/presets/presets/tourism/hotel.json +++ b/data/presets/presets/tourism/hotel.json @@ -19,7 +19,8 @@ "phone", "email", "fax", - "wheelchair" + "wheelchair", + "bar" ], "geometry": [ "point", @@ -29,4 +30,4 @@ "tourism": "hotel" }, "name": "Hotel" -} +} \ No newline at end of file From 40e5c08c0826c5e885a161160985ef5a89790ebb Mon Sep 17 00:00:00 2001 From: Athif Shaffy Date: Mon, 25 Feb 2019 08:30:17 +0530 Subject: [PATCH 2/2] Added derived changes from npm run build --- data/presets.yaml | 3 +++ data/presets/fields.json | 1 + data/presets/presets.json | 6 +++--- data/taginfo.json | 1 + dist/locales/en.json | 3 +++ svg/fontawesome/fas-ambulance.svg | 2 +- svg/fontawesome/fas-archway.svg | 2 +- svg/fontawesome/fas-bacon.svg | 2 +- svg/fontawesome/fas-balance-scale.svg | 2 +- svg/fontawesome/fas-bell.svg | 2 +- svg/fontawesome/fas-blender.svg | 2 +- svg/fontawesome/fas-box.svg | 2 +- svg/fontawesome/fas-charging-station.svg | 2 +- svg/fontawesome/fas-cheese.svg | 2 +- svg/fontawesome/fas-chess-knight.svg | 2 +- svg/fontawesome/fas-couch.svg | 2 +- svg/fontawesome/fas-drumstick-bite.svg | 2 +- svg/fontawesome/fas-dumbbell.svg | 2 +- svg/fontawesome/fas-fire-extinguisher.svg | 2 +- svg/fontawesome/fas-fish.svg | 2 +- svg/fontawesome/fas-handshake.svg | 2 +- svg/fontawesome/fas-key.svg | 2 +- svg/fontawesome/fas-life-ring.svg | 2 +- svg/fontawesome/fas-long-arrow-alt-right.svg | 2 +- svg/fontawesome/fas-medkit.svg | 2 +- svg/fontawesome/fas-motorcycle.svg | 2 +- svg/fontawesome/fas-paint-roller.svg | 2 +- svg/fontawesome/fas-people-carry.svg | 2 +- svg/fontawesome/fas-pepper-hot.svg | 2 +- svg/fontawesome/fas-plane-departure.svg | 2 +- svg/fontawesome/fas-print.svg | 2 +- svg/fontawesome/fas-skating.svg | 2 +- svg/fontawesome/fas-skiing-nordic.svg | 2 +- svg/fontawesome/fas-skiing.svg | 2 +- svg/fontawesome/fas-sleigh.svg | 2 +- svg/fontawesome/fas-smoking.svg | 2 +- svg/fontawesome/fas-snowboarding.svg | 2 +- svg/fontawesome/fas-solar-panel.svg | 2 +- svg/fontawesome/fas-taxi.svg | 2 +- svg/fontawesome/fas-thermometer-three-quarters.svg | 2 +- svg/fontawesome/fas-volume-up.svg | 2 +- svg/fontawesome/fas-warehouse.svg | 2 +- svg/fontawesome/fas-wifi.svg | 2 +- 43 files changed, 49 insertions(+), 41 deletions(-) diff --git a/data/presets.yaml b/data/presets.yaml index 1c23448be..8c7051734 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -210,6 +210,9 @@ en: backrest: # backrest=* label: Backrest + bar: + # bar=* + label: Bar barrier: # barrier=* label: Type diff --git a/data/presets/fields.json b/data/presets/fields.json index bad0638ba..226b06d22 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -25,6 +25,7 @@ "atm": {"key": "atm", "type": "check", "label": "ATM"}, "attraction": {"key": "attraction", "type": "typeCombo", "label": "Type"}, "backrest": {"key": "backrest", "type": "check", "label": "Backrest"}, + "bar": {"key": "bar", "type": "check", "label": "Bar"}, "barrier": {"key": "barrier", "type": "typeCombo", "label": "Type"}, "basin": {"key": "basin", "type": "combo", "label": "Type"}, "bath/open_air": {"key": "bath:open_air", "label": "Open Air", "type": "check"}, diff --git a/data/presets/presets.json b/data/presets/presets.json index ec94020a3..856d5605c 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -65,7 +65,7 @@ "amenity/biergarten": {"icon": "maki-beer", "fields": ["name", "address", "building", "outdoor_seating", "brewery"], "moreFields": ["{amenity/bar}"], "geometry": ["point", "area"], "tags": {"amenity": "biergarten"}, "terms": ["beer", "bier", "booze"], "name": "Biergarten"}, "amenity/boat_rental": {"icon": "temaki-boating", "fields": ["name", "operator", "fee", "payment_multi"], "moreFields": ["address", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "boat_rental"}, "name": "Boat Rental"}, "amenity/bureau_de_change": {"icon": "maki-bank", "fields": ["name", "operator", "payment_multi", "currency_multi", "address", "building_area"], "moreFields": ["opening_hours", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["bureau de change", "money changer"], "tags": {"amenity": "bureau_de_change"}, "name": "Currency Exchange"}, - "amenity/cafe": {"icon": "maki-cafe", "fields": ["name", "cuisine", "address", "building_area", "outdoor_seating"], "moreFields": ["diet_multi", "takeaway", "delivery", "capacity", "opening_hours", "smoking", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["bistro", "coffee", "tea"], "tags": {"amenity": "cafe"}, "name": "Cafe"}, + "amenity/cafe": {"icon": "maki-cafe", "fields": ["name", "cuisine", "address", "building_area", "outdoor_seating"], "moreFields": ["diet_multi", "takeaway", "delivery", "capacity", "opening_hours", "smoking", "payment_multi", "internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair", "bar"], "geometry": ["point", "area"], "terms": ["bistro", "coffee", "tea"], "tags": {"amenity": "cafe"}, "name": "Cafe"}, "amenity/car_pooling": {"icon": "maki-car", "fields": ["name", "operator", "capacity", "address", "opening_hours", "lit"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_pooling"}, "name": "Car Pooling"}, "amenity/car_rental": {"icon": "maki-car-rental", "fields": ["name", "operator", "address", "opening_hours", "payment_multi"], "moreFields": ["brand", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_rental"}, "name": "Car Rental"}, "amenity/car_sharing": {"icon": "maki-car", "fields": ["name", "operator", "capacity", "address", "payment_multi", "supervised"], "moreFields": ["lit", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"amenity": "car_sharing"}, "name": "Car Sharing"}, @@ -147,7 +147,7 @@ "amenity/ranger_station": {"icon": "maki-ranger-station", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["visitor center", "visitor centre", "permit center", "permit centre", "backcountry office", "warden office", "warden center"], "tags": {"amenity": "ranger_station"}, "name": "Ranger Station"}, "amenity/recycling_centre": {"icon": "maki-recycling", "fields": ["name", "operator", "address", "building", "opening_hours", "recycling_accepts"], "moreFields": ["fee", "payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["bottle", "can", "dump", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling", "recycling_type": "centre"}, "reference": {"key": "recycling_type", "value": "*"}, "name": "Recycling Center"}, "amenity/recycling_container": {"icon": "maki-recycling", "fields": ["recycling_accepts", "collection_times"], "geometry": ["point", "area"], "terms": ["bin", "can", "bottle", "glass", "garbage", "rubbish", "scrap", "trash"], "tags": {"amenity": "recycling", "recycling_type": "container"}, "reference": {"key": "amenity", "value": "recycling"}, "name": "Recycling Container"}, - "amenity/restaurant": {"icon": "maki-restaurant", "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "outdoor_seating"], "moreFields": ["takeaway", "delivery", "capacity", "diet_multi", "smoking", "internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant"}, "name": "Restaurant"}, + "amenity/restaurant": {"icon": "maki-restaurant", "fields": ["name", "cuisine", "address", "building_area", "opening_hours", "outdoor_seating"], "moreFields": ["takeaway", "delivery", "capacity", "diet_multi", "smoking", "internet_access", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair", "bar"], "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant"}, "name": "Restaurant"}, "amenity/restaurant/american": {"icon": "maki-restaurant", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "coffee", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "american"}, "reference": {"key": "cuisine", "value": "american"}, "name": "American Restaurant"}, "amenity/restaurant/asian": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "asian"}, "reference": {"key": "cuisine", "value": "asian"}, "name": "Asian Restaurant"}, "amenity/restaurant/chinese": {"icon": "maki-restaurant-noodle", "geometry": ["point", "area"], "terms": ["bar", "breakfast", "cafe", "café", "canteen", "dine", "dining", "dinner", "drive-in", "eat", "grill", "lunch", "table"], "tags": {"amenity": "restaurant", "cuisine": "chinese"}, "reference": {"key": "cuisine", "value": "chinese"}, "name": "Chinese Restaurant"}, @@ -992,7 +992,7 @@ "tourism/gallery": {"icon": "maki-art-gallery", "fields": ["name", "operator", "address", "building_area", "opening_hours"], "moreFields": ["payment_multi", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "terms": ["art*", "exhibit*", "paint*", "photo*", "sculpt*"], "tags": {"tourism": "gallery"}, "name": "Art Gallery"}, "tourism/guest_house": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access"], "moreFields": ["smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "guest_house"}, "terms": ["B&B", "Bed and Breakfast"], "name": "Guest House"}, "tourism/hostel": {"icon": "maki-lodging", "fields": ["name", "operator", "address", "building_area", "rooms", "internet_access"], "moreFields": ["smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "hostel"}, "name": "Hostel"}, - "tourism/hotel": {"icon": "maki-lodging", "fields": ["name", "brand", "address", "building_area", "rooms", "internet_access"], "moreFields": ["operator", "smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "stars", "website", "phone", "email", "fax", "wheelchair"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"}, + "tourism/hotel": {"icon": "maki-lodging", "fields": ["name", "brand", "address", "building_area", "rooms", "internet_access"], "moreFields": ["operator", "smoking", "payment_multi", "internet_access/fee", "internet_access/ssid", "stars", "website", "phone", "email", "fax", "wheelchair", "bar"], "geometry": ["point", "area"], "tags": {"tourism": "hotel"}, "name": "Hotel"}, "tourism/information": {"icon": "maki-information", "fields": ["information", "operator", "address", "building_area"], "geometry": ["point", "vertex", "area"], "tags": {"tourism": "information"}, "name": "Information"}, "tourism/information/board": {"icon": "maki-information", "fields": ["name", "operator", "board_type", "direction"], "geometry": ["point", "vertex"], "tags": {"tourism": "information", "information": "board"}, "reference": {"key": "information", "value": "board"}, "name": "Information Board"}, "tourism/information/guidepost": {"icon": "maki-information", "fields": ["name", "elevation", "operator", "ref"], "moreFields": ["material"], "geometry": ["point", "vertex"], "terms": ["signpost"], "tags": {"tourism": "information", "information": "guidepost"}, "reference": {"key": "information", "value": "guidepost"}, "name": "Guidepost"}, diff --git a/data/taginfo.json b/data/taginfo.json index d348832c4..02e6f7de7 100644 --- a/data/taginfo.json +++ b/data/taginfo.json @@ -1104,6 +1104,7 @@ {"key": "artwork_type", "description": "🄵 Type"}, {"key": "atm", "description": "🄵 ATM"}, {"key": "backrest", "description": "🄵 Backrest"}, + {"key": "bar", "description": "🄵 Bar"}, {"key": "basin", "description": "🄵 Type"}, {"key": "bath:open_air", "description": "🄵 Open Air"}, {"key": "bath:sand_bath", "description": "🄵 Sand Bath"}, diff --git a/dist/locales/en.json b/dist/locales/en.json index b56759f68..148e172ea 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -2223,6 +2223,9 @@ "backrest": { "label": "Backrest" }, + "bar": { + "label": "Bar" + }, "barrier": { "label": "Type" }, diff --git a/svg/fontawesome/fas-ambulance.svg b/svg/fontawesome/fas-ambulance.svg index 1fa5eb96b..9f1713708 100644 --- a/svg/fontawesome/fas-ambulance.svg +++ b/svg/fontawesome/fas-ambulance.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-archway.svg b/svg/fontawesome/fas-archway.svg index 167181b7c..663af67e8 100644 --- a/svg/fontawesome/fas-archway.svg +++ b/svg/fontawesome/fas-archway.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-bacon.svg b/svg/fontawesome/fas-bacon.svg index ad6f37ff3..cd37eabfe 100644 --- a/svg/fontawesome/fas-bacon.svg +++ b/svg/fontawesome/fas-bacon.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-balance-scale.svg b/svg/fontawesome/fas-balance-scale.svg index 70e5cd4e2..6ac8e064c 100644 --- a/svg/fontawesome/fas-balance-scale.svg +++ b/svg/fontawesome/fas-balance-scale.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-bell.svg b/svg/fontawesome/fas-bell.svg index 8b6ff39d6..7599563d9 100644 --- a/svg/fontawesome/fas-bell.svg +++ b/svg/fontawesome/fas-bell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-blender.svg b/svg/fontawesome/fas-blender.svg index 0e15eb5c4..34a4dd211 100644 --- a/svg/fontawesome/fas-blender.svg +++ b/svg/fontawesome/fas-blender.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-box.svg b/svg/fontawesome/fas-box.svg index 97d769e60..da849c57c 100644 --- a/svg/fontawesome/fas-box.svg +++ b/svg/fontawesome/fas-box.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-charging-station.svg b/svg/fontawesome/fas-charging-station.svg index 10aae5d96..cf9a7226a 100644 --- a/svg/fontawesome/fas-charging-station.svg +++ b/svg/fontawesome/fas-charging-station.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-cheese.svg b/svg/fontawesome/fas-cheese.svg index 06154c543..e786e3851 100644 --- a/svg/fontawesome/fas-cheese.svg +++ b/svg/fontawesome/fas-cheese.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-chess-knight.svg b/svg/fontawesome/fas-chess-knight.svg index a31c71b04..12d41b828 100644 --- a/svg/fontawesome/fas-chess-knight.svg +++ b/svg/fontawesome/fas-chess-knight.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-couch.svg b/svg/fontawesome/fas-couch.svg index 2f2f86549..39b272e87 100644 --- a/svg/fontawesome/fas-couch.svg +++ b/svg/fontawesome/fas-couch.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-drumstick-bite.svg b/svg/fontawesome/fas-drumstick-bite.svg index 9c0cfe829..b7ca271ce 100644 --- a/svg/fontawesome/fas-drumstick-bite.svg +++ b/svg/fontawesome/fas-drumstick-bite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-dumbbell.svg b/svg/fontawesome/fas-dumbbell.svg index e7bacfd38..1d2030226 100644 --- a/svg/fontawesome/fas-dumbbell.svg +++ b/svg/fontawesome/fas-dumbbell.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-fire-extinguisher.svg b/svg/fontawesome/fas-fire-extinguisher.svg index 29f1d9615..054e9c503 100644 --- a/svg/fontawesome/fas-fire-extinguisher.svg +++ b/svg/fontawesome/fas-fire-extinguisher.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-fish.svg b/svg/fontawesome/fas-fish.svg index 80d5bf6e9..64d25a077 100644 --- a/svg/fontawesome/fas-fish.svg +++ b/svg/fontawesome/fas-fish.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-handshake.svg b/svg/fontawesome/fas-handshake.svg index 26442580c..faa861b3f 100644 --- a/svg/fontawesome/fas-handshake.svg +++ b/svg/fontawesome/fas-handshake.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-key.svg b/svg/fontawesome/fas-key.svg index 6307a19a6..5139e044f 100644 --- a/svg/fontawesome/fas-key.svg +++ b/svg/fontawesome/fas-key.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-life-ring.svg b/svg/fontawesome/fas-life-ring.svg index ccd0d0041..64a5d9923 100644 --- a/svg/fontawesome/fas-life-ring.svg +++ b/svg/fontawesome/fas-life-ring.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-long-arrow-alt-right.svg b/svg/fontawesome/fas-long-arrow-alt-right.svg index a2b44d34b..70c4b98ff 100644 --- a/svg/fontawesome/fas-long-arrow-alt-right.svg +++ b/svg/fontawesome/fas-long-arrow-alt-right.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-medkit.svg b/svg/fontawesome/fas-medkit.svg index 8405214e5..5fd252bd8 100644 --- a/svg/fontawesome/fas-medkit.svg +++ b/svg/fontawesome/fas-medkit.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-motorcycle.svg b/svg/fontawesome/fas-motorcycle.svg index 94811e288..6e41f7d6e 100644 --- a/svg/fontawesome/fas-motorcycle.svg +++ b/svg/fontawesome/fas-motorcycle.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-paint-roller.svg b/svg/fontawesome/fas-paint-roller.svg index 0696b018b..c34c1ce5b 100644 --- a/svg/fontawesome/fas-paint-roller.svg +++ b/svg/fontawesome/fas-paint-roller.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-people-carry.svg b/svg/fontawesome/fas-people-carry.svg index 935d1fb50..79676991d 100644 --- a/svg/fontawesome/fas-people-carry.svg +++ b/svg/fontawesome/fas-people-carry.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-pepper-hot.svg b/svg/fontawesome/fas-pepper-hot.svg index c796ae6d3..d6ec786e5 100644 --- a/svg/fontawesome/fas-pepper-hot.svg +++ b/svg/fontawesome/fas-pepper-hot.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-plane-departure.svg b/svg/fontawesome/fas-plane-departure.svg index 5fed596d4..ec485b6c0 100644 --- a/svg/fontawesome/fas-plane-departure.svg +++ b/svg/fontawesome/fas-plane-departure.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-print.svg b/svg/fontawesome/fas-print.svg index 38e4ca91e..df07bf98d 100644 --- a/svg/fontawesome/fas-print.svg +++ b/svg/fontawesome/fas-print.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-skating.svg b/svg/fontawesome/fas-skating.svg index aa80f7c2f..07f9d1e86 100644 --- a/svg/fontawesome/fas-skating.svg +++ b/svg/fontawesome/fas-skating.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-skiing-nordic.svg b/svg/fontawesome/fas-skiing-nordic.svg index efe3a9d59..dda08e203 100644 --- a/svg/fontawesome/fas-skiing-nordic.svg +++ b/svg/fontawesome/fas-skiing-nordic.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-skiing.svg b/svg/fontawesome/fas-skiing.svg index 75422fa8f..3079893dc 100644 --- a/svg/fontawesome/fas-skiing.svg +++ b/svg/fontawesome/fas-skiing.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-sleigh.svg b/svg/fontawesome/fas-sleigh.svg index 91ffea4e7..58d50b089 100644 --- a/svg/fontawesome/fas-sleigh.svg +++ b/svg/fontawesome/fas-sleigh.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-smoking.svg b/svg/fontawesome/fas-smoking.svg index b044e1e39..1926d276c 100644 --- a/svg/fontawesome/fas-smoking.svg +++ b/svg/fontawesome/fas-smoking.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-snowboarding.svg b/svg/fontawesome/fas-snowboarding.svg index 721620e03..7745aca63 100644 --- a/svg/fontawesome/fas-snowboarding.svg +++ b/svg/fontawesome/fas-snowboarding.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-solar-panel.svg b/svg/fontawesome/fas-solar-panel.svg index 6c637615d..2ccab4f01 100644 --- a/svg/fontawesome/fas-solar-panel.svg +++ b/svg/fontawesome/fas-solar-panel.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-taxi.svg b/svg/fontawesome/fas-taxi.svg index d81bc1f28..c12e6b98e 100644 --- a/svg/fontawesome/fas-taxi.svg +++ b/svg/fontawesome/fas-taxi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-thermometer-three-quarters.svg b/svg/fontawesome/fas-thermometer-three-quarters.svg index 9734bbc88..77d35fda4 100644 --- a/svg/fontawesome/fas-thermometer-three-quarters.svg +++ b/svg/fontawesome/fas-thermometer-three-quarters.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-volume-up.svg b/svg/fontawesome/fas-volume-up.svg index 7588f42d3..b7ec8e185 100644 --- a/svg/fontawesome/fas-volume-up.svg +++ b/svg/fontawesome/fas-volume-up.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-warehouse.svg b/svg/fontawesome/fas-warehouse.svg index c246f37ee..e94543bab 100644 --- a/svg/fontawesome/fas-warehouse.svg +++ b/svg/fontawesome/fas-warehouse.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/svg/fontawesome/fas-wifi.svg b/svg/fontawesome/fas-wifi.svg index bbe6efbbb..eb36744d6 100644 --- a/svg/fontawesome/fas-wifi.svg +++ b/svg/fontawesome/fas-wifi.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file