1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-23 16:25:22 +03:00

Replace API versions by constants

This commit is contained in:
Miguel Angel Mulero Martinez 2020-10-15 08:47:55 +02:00
parent 7fcc9efc72
commit fd35031e6f
25 changed files with 315 additions and 301 deletions

View file

@ -1,5 +1,17 @@
'use strict';
const API_VERSION_1_31 = '1.31.0';
const API_VERSION_1_32 = '1.32.0';
const API_VERSION_1_33 = '1.33.0';
const API_VERSION_1_34 = '1.34.0';
const API_VERSION_1_35 = '1.35.0';
const API_VERSION_1_36 = '1.36.0';
const API_VERSION_1_37 = '1.37.0';
const API_VERSION_1_38 = '1.38.0';
const API_VERSION_1_39 = '1.39.0';
const API_VERSION_1_40 = '1.40.0';
const API_VERSION_1_41 = '1.41.0';
const API_VERSION_1_42 = '1.42.0';
const API_VERSION_1_43 = '1.43.0';
const API_VERSION_1_44 = '1.44.0';