@fboes/aerofly-data 1.2.1 → 1.3.0
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.
- package/.editorconfig +20 -0
- package/.eslintrc.json +2 -8
- package/.prettierignore +1 -2
- package/CHANGELOG.md +5 -1
- package/data/aircraft-liveries.json +273 -1050
- package/data/aircraft.json +22 -177
- package/data/aircraft.md +41 -41
- package/data/airport-coordinates.json +7682 -0
- package/data/airport-coordinates.json.d.ts +3 -0
- package/data/airport-list.json +12 -14
- package/data/airports-unmatched.md +2 -0
- package/data/airports.geojson +80 -122
- package/dist/index.html +72 -113
- package/dist/styles.css +60 -0
- package/get-aircraft.js +14 -49
- package/get-airports.js +26 -38
- package/icons/README.md +15 -15
- package/index.js +6 -12
- package/package.json +1 -1
- package/src/aircraft-functions.js +9 -33
package/.editorconfig
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# EditorConfig is awesome: https://editorconfig.org
|
|
2
|
+
|
|
3
|
+
# top-most EditorConfig file
|
|
4
|
+
root = true
|
|
5
|
+
|
|
6
|
+
[*]
|
|
7
|
+
end_of_line = lf
|
|
8
|
+
insert_final_newline = true
|
|
9
|
+
trim_trailing_whitespace = true
|
|
10
|
+
charset = utf-8
|
|
11
|
+
indent_style = space
|
|
12
|
+
indent_size = 2
|
|
13
|
+
max_line_length = 120
|
|
14
|
+
|
|
15
|
+
[*.html]
|
|
16
|
+
max_line_length = 720
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
[*.{md,svg}]
|
|
20
|
+
trim_trailing_whitespace = false
|
package/.eslintrc.json
CHANGED
|
@@ -3,11 +3,7 @@
|
|
|
3
3
|
"es2021": true,
|
|
4
4
|
"node": true
|
|
5
5
|
},
|
|
6
|
-
"extends": [
|
|
7
|
-
"eslint:recommended",
|
|
8
|
-
"eslint-config-prettier",
|
|
9
|
-
"plugin:jsdoc/recommended-error"
|
|
10
|
-
],
|
|
6
|
+
"extends": ["eslint:recommended", "eslint-config-prettier", "plugin:jsdoc/recommended-error"],
|
|
11
7
|
"parserOptions": {
|
|
12
8
|
"ecmaVersion": "latest",
|
|
13
9
|
"sourceType": "module"
|
|
@@ -16,7 +12,5 @@
|
|
|
16
12
|
"jsdoc/require-param-description": 0,
|
|
17
13
|
"jsdoc/require-returns-description": 0
|
|
18
14
|
},
|
|
19
|
-
"plugins": [
|
|
20
|
-
"jsdoc"
|
|
21
|
-
]
|
|
15
|
+
"plugins": ["jsdoc"]
|
|
22
16
|
}
|
package/.prettierignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.0] - 2025-10-15
|
|
9
|
+
|
|
10
|
+
- Added Mapbox map
|
|
11
|
+
|
|
8
12
|
## [1.2.1] - 2025-09-23
|
|
9
13
|
|
|
10
14
|
- Added new aircraft
|
|
@@ -27,4 +31,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
27
31
|
|
|
28
32
|
## [1.0.0] - 2025-05-18
|
|
29
33
|
|
|
30
|
-
- Initial release
|
|
34
|
+
- Initial release
|