@jjlmoya/utils-drones 1.20.0 → 1.22.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/package.json +2 -2
- package/src/category/index.ts +14 -6
- package/src/category/seo.astro +1 -1
- package/src/entries.ts +13 -1
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/drone-battery-c-rating-calculator/bibliography.astro +17 -0
- package/src/tool/drone-battery-c-rating-calculator/bibliography.ts +16 -0
- package/src/tool/drone-battery-c-rating-calculator/component.astro +192 -0
- package/src/tool/drone-battery-c-rating-calculator/controller.ts +225 -0
- package/src/tool/drone-battery-c-rating-calculator/dom-views.ts +119 -0
- package/src/tool/drone-battery-c-rating-calculator/drone-battery-c-rating-calculator.css +300 -0
- package/src/tool/drone-battery-c-rating-calculator/entry.ts +27 -0
- package/src/tool/drone-battery-c-rating-calculator/evaluator.ts +37 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/de.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/en.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/es.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/fr.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/id.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/it.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/ja.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/ko.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/nl.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/pl.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/pt.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/ru.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/sv.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/tr.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/i18n/zh.ts +192 -0
- package/src/tool/drone-battery-c-rating-calculator/index.ts +10 -0
- package/src/tool/drone-battery-c-rating-calculator/logic.test.ts +84 -0
- package/src/tool/drone-battery-c-rating-calculator/logic.ts +112 -0
- package/src/tool/drone-battery-c-rating-calculator/seo.astro +16 -0
- package/src/tool/drone-battery-c-rating-calculator/storage.ts +19 -0
- package/src/tool/drone-battery-c-rating-calculator/ui.ts +43 -0
- package/src/tools.ts +3 -1
package/src/tools.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { ANTENNA_LENGTH_CALCULATOR_TOOL } from './tool/antenna-length-calculator
|
|
|
4
4
|
import { GPS_COORDINATES_CONVERTER_TOOL } from './tool/gps-coordinates-converter/index';
|
|
5
5
|
import { DRONE_POWER_ANALYZER_TOOL } from './tool/drone-power-analyzer/index';
|
|
6
6
|
import { GSD_FLIGHT_PLANNER_TOOL } from './tool/gsd-flight-planner/index';
|
|
7
|
+
import { DRONE_BATTERY_C_RATING_CALCULATOR_TOOL } from './tool/drone-battery-c-rating-calculator/index';
|
|
7
8
|
import type { ToolDefinition } from './types';
|
|
8
9
|
|
|
9
10
|
export const ALL_TOOLS: ToolDefinition[] = [
|
|
@@ -12,6 +13,7 @@ export const ALL_TOOLS: ToolDefinition[] = [
|
|
|
12
13
|
GPS_COORDINATES_CONVERTER_TOOL,
|
|
13
14
|
DRONE_POWER_ANALYZER_TOOL,
|
|
14
15
|
GSD_FLIGHT_PLANNER_TOOL,
|
|
16
|
+
DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
|
|
15
17
|
];
|
|
16
18
|
|
|
17
19
|
export {
|
|
@@ -20,5 +22,5 @@ export {
|
|
|
20
22
|
GPS_COORDINATES_CONVERTER_TOOL,
|
|
21
23
|
DRONE_POWER_ANALYZER_TOOL,
|
|
22
24
|
GSD_FLIGHT_PLANNER_TOOL,
|
|
25
|
+
DRONE_BATTERY_C_RATING_CALCULATOR_TOOL,
|
|
23
26
|
};
|
|
24
|
-
|