From b239e227bd2e0203271f057a7001cfa3afa9f7ac Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Mon, 8 Jun 2020 16:13:08 -0500 Subject: [PATCH] Change rotators to standard version format and promote a few to stable --- dummy/netrotctl.c | 4 ++-- dummy/rot_dummy.c | 4 ++-- rigs/kit/pcrotor.c | 2 +- rotators/amsat/if100.c | 2 +- rotators/ars/ars.c | 4 ++-- rotators/celestron/celestron.c | 2 +- rotators/cnctrk/cnctrk.c | 2 +- rotators/easycomm/easycomm.c | 6 +++--- rotators/ether6/ether6.c | 2 +- rotators/fodtrack/fodtrack.c | 2 +- rotators/gs232a/gs232.c | 8 ++++---- rotators/gs232a/gs232a.c | 8 ++++---- rotators/gs232a/gs232b.c | 2 +- rotators/heathkit/hd1780.c | 2 +- rotators/ioptron/rot_ioptron.c | 2 +- rotators/m2/rc2800.c | 2 +- rotators/meade/meade.c | 2 +- rotators/prosistel/prosistel.c | 2 +- rotators/rotorez/rotorez.c | 12 ++++++------ rotators/sartek/sartek.c | 2 +- rotators/spid/spid.c | 6 +++--- rotators/ts7400/ts7400.c | 2 +- 22 files changed, 40 insertions(+), 40 deletions(-) diff --git a/dummy/netrotctl.c b/dummy/netrotctl.c index 08fd3393d..d99e0fe33 100644 --- a/dummy/netrotctl.c +++ b/dummy/netrotctl.c @@ -341,9 +341,9 @@ const struct rot_caps netrotctl_caps = ROT_MODEL(ROT_MODEL_NETROTCTL), .model_name = "NET rotctl", .mfg_name = "Hamlib", - .version = "0.3", + .version = "20200528.0", .copyright = "LGPL", - .status = RIG_STATUS_BETA, + .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_OTHER, .port_type = RIG_PORT_NETWORK, .timeout = 2000, diff --git a/dummy/rot_dummy.c b/dummy/rot_dummy.c index 05ce0717a..e79254555 100644 --- a/dummy/rot_dummy.c +++ b/dummy/rot_dummy.c @@ -275,9 +275,9 @@ const struct rot_caps dummy_rot_caps = ROT_MODEL(ROT_MODEL_DUMMY), .model_name = "Dummy", .mfg_name = "Hamlib", - .version = "0.2", + .version = "20200310.0", .copyright = "LGPL", - .status = RIG_STATUS_BETA, + .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZEL, .port_type = RIG_PORT_NONE, diff --git a/rigs/kit/pcrotor.c b/rigs/kit/pcrotor.c index 250436f43..16343f62f 100644 --- a/rigs/kit/pcrotor.c +++ b/rigs/kit/pcrotor.c @@ -116,7 +116,7 @@ const struct rot_caps pcrotor_caps = ROT_MODEL(ROT_MODEL_PCROTOR), .model_name = "PcRotor", .mfg_name = "WA6UFQ", - .version = "0.1", + .version = "20081013.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/amsat/if100.c b/rotators/amsat/if100.c index ad265c771..60d65898d 100644 --- a/rotators/amsat/if100.c +++ b/rotators/amsat/if100.c @@ -105,7 +105,7 @@ const struct rot_caps if100_rot_caps = ROT_MODEL(ROT_MODEL_IF100), .model_name = "IF-100", .mfg_name = "AMSAT", - .version = "0.1", + .version = "20110531.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/ars/ars.c b/rotators/ars/ars.c index 614c49355..7c89691b4 100644 --- a/rotators/ars/ars.c +++ b/rotators/ars/ars.c @@ -714,7 +714,7 @@ const struct rot_caps rci_azel_rot_caps = ROT_MODEL(ROT_MODEL_RCI_AZEL), .model_name = "ARS RCI AZ&EL", .mfg_name = "EA4TX", - .version = "0.2", + .version = "20200112.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZEL, /* AZ&EL units */ @@ -748,7 +748,7 @@ const struct rot_caps rci_az_rot_caps = ROT_MODEL(ROT_MODEL_RCI_AZ), .model_name = "ARS RCI AZ", .mfg_name = "EA4TX", - .version = "0.1", + .version = "20200112.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZIMUTH, /* AZ-only unit */ diff --git a/rotators/celestron/celestron.c b/rotators/celestron/celestron.c index 8c6b70bd0..4028b03cb 100644 --- a/rotators/celestron/celestron.c +++ b/rotators/celestron/celestron.c @@ -230,7 +230,7 @@ const struct rot_caps nexstar_rot_caps = ROT_MODEL(ROT_MODEL_NEXSTAR), .model_name = "NexStar", // Any Celestron starting with version 1.2 .mfg_name = "Celestron", - .version = "0.1", + .version = "20110821.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/cnctrk/cnctrk.c b/rotators/cnctrk/cnctrk.c index 49298bcdf..d74c62fe2 100644 --- a/rotators/cnctrk/cnctrk.c +++ b/rotators/cnctrk/cnctrk.c @@ -62,7 +62,7 @@ const struct rot_caps cnctrk_rot_caps = ROT_MODEL(ROT_MODEL_CNCTRK), .model_name = "CNCTRK", .mfg_name = "CNCTRK", - .version = "0.1", + .version = "20191220.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/easycomm/easycomm.c b/rotators/easycomm/easycomm.c index a38a9700c..0d565e91a 100644 --- a/rotators/easycomm/easycomm.c +++ b/rotators/easycomm/easycomm.c @@ -445,7 +445,7 @@ const struct rot_caps easycomm1_rot_caps = ROT_MODEL(ROT_MODEL_EASYCOMM1), .model_name = "EasycommI", .mfg_name = "Hamlib", - .version = "0.4", + .version = "20191206.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_OTHER, @@ -481,7 +481,7 @@ const struct rot_caps easycomm2_rot_caps = ROT_MODEL(ROT_MODEL_EASYCOMM2), .model_name = "EasycommII", .mfg_name = "Hamlib", - .version = "0.4", + .version = "20191206.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_OTHER, @@ -527,7 +527,7 @@ const struct rot_caps easycomm3_rot_caps = ROT_MODEL(ROT_MODEL_EASYCOMM3), .model_name = "EasycommIII", .mfg_name = "Hamlib", - .version = "0.4", + .version = "20191206.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/ether6/ether6.c b/rotators/ether6/ether6.c index 21d837815..20aa66afd 100644 --- a/rotators/ether6/ether6.c +++ b/rotators/ether6/ether6.c @@ -309,7 +309,7 @@ const struct rot_caps ether6_rot_caps = ROT_MODEL(ROT_MODEL_ETHER6), .model_name = "Ether6 (via ethernet)", .mfg_name = "DG9OAA", - .version = "0.1", + .version = "20200106.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_FLAG_AZIMUTH, diff --git a/rotators/fodtrack/fodtrack.c b/rotators/fodtrack/fodtrack.c index e8245bfe1..cab6f246b 100644 --- a/rotators/fodtrack/fodtrack.c +++ b/rotators/fodtrack/fodtrack.c @@ -141,7 +141,7 @@ const struct rot_caps fodtrack_rot_caps = ROT_MODEL(ROT_MODEL_FODTRACK), .model_name = "Fodtrack", .mfg_name = "XQ2FOD", - .version = "0.2", + .version = "20200107.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/gs232a/gs232.c b/rotators/gs232a/gs232.c index eabda1ae5..a28864023 100644 --- a/rotators/gs232a/gs232.c +++ b/rotators/gs232a/gs232.c @@ -243,7 +243,7 @@ const struct rot_caps gs232_generic_rot_caps = ROT_MODEL(ROT_MODEL_GS232_GENERIC), .model_name = "GS-232 Generic", .mfg_name = "Various", - .version = "20200424", + .version = "20200424.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZEL, @@ -279,7 +279,7 @@ const struct rot_caps amsat_lvb_rot_caps = ROT_MODEL(ROT_MODEL_LVB), .model_name = "LVB Tracker", .mfg_name = "AMSAT", - .version = "0.1", + .version = "20200424.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_AZEL, @@ -316,7 +316,7 @@ const struct rot_caps st2_rot_caps = ROT_MODEL(ROT_MODEL_ST2), .model_name = "GS232/ST2", .mfg_name = "FoxDelta", - .version = "0.1", + .version = "20200424.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_AZEL, @@ -354,7 +354,7 @@ const struct rot_caps f1tetracker_rot_caps = ROT_MODEL(ROT_MODEL_F1TETRACKER), .model_name = "GS232/F1TE Tracker", .mfg_name = "F1TE", - .version = "0.1", + .version = "20200424.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/gs232a/gs232a.c b/rotators/gs232a/gs232a.c index 766918255..8d8685877 100644 --- a/rotators/gs232a/gs232a.c +++ b/rotators/gs232a/gs232a.c @@ -298,7 +298,7 @@ const struct rot_caps gs23_rot_caps = ROT_MODEL(ROT_MODEL_GS23), .model_name = "GS-23", .mfg_name = "Yaesu/Kenpro", - .version = "20200424", + .version = "20200505.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_AZEL, @@ -334,9 +334,9 @@ const struct rot_caps gs232_rot_caps = ROT_MODEL(ROT_MODEL_GS232), .model_name = "GS-232", .mfg_name = "Yaesu/Kenpro", - .version = "0.1", + .version = "20200605.0", .copyright = "LGPL", - .status = RIG_STATUS_BETA, + .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZEL, .port_type = RIG_PORT_SERIAL, .serial_rate_min = 150, @@ -370,7 +370,7 @@ const struct rot_caps gs232a_rot_caps = ROT_MODEL(ROT_MODEL_GS232A), .model_name = "GS-232A", .mfg_name = "Yaesu", - .version = "0.5", + .version = "20200505.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/gs232a/gs232b.c b/rotators/gs232a/gs232b.c index dc7822568..a33e1ecd2 100644 --- a/rotators/gs232a/gs232b.c +++ b/rotators/gs232a/gs232b.c @@ -320,7 +320,7 @@ const struct rot_caps gs232b_rot_caps = ROT_MODEL(ROT_MODEL_GS232B), .model_name = "GS-232B", .mfg_name = "Yaesu", - .version = "20200531", + .version = "20200531.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/heathkit/hd1780.c b/rotators/heathkit/hd1780.c index 6b40c37eb..f8d3ca347 100644 --- a/rotators/heathkit/hd1780.c +++ b/rotators/heathkit/hd1780.c @@ -67,7 +67,7 @@ const struct rot_caps hd1780_rot_caps = ROT_MODEL(ROT_MODEL_HD1780), .model_name = "HD 1780 Intellirotor", .mfg_name = "Heathkit", - .version = "0.1", + .version = "20200112.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/ioptron/rot_ioptron.c b/rotators/ioptron/rot_ioptron.c index 7a5387279..bcdbc1a88 100644 --- a/rotators/ioptron/rot_ioptron.c +++ b/rotators/ioptron/rot_ioptron.c @@ -306,7 +306,7 @@ const struct rot_caps ioptron_rot_caps = ROT_MODEL(ROT_MODEL_IOPTRON), .model_name = "iOptron", .mfg_name = "iOptron", - .version = "0.1", + .version = "20191209.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/m2/rc2800.c b/rotators/m2/rc2800.c index 7bc8eeafc..2f7927e44 100644 --- a/rotators/m2/rc2800.c +++ b/rotators/m2/rc2800.c @@ -365,7 +365,7 @@ const struct rot_caps rc2800_rot_caps = ROT_MODEL(ROT_MODEL_RC2800), .model_name = "RC2800", .mfg_name = "M2", - .version = "0.1.1", + .version = "20200107.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/meade/meade.c b/rotators/meade/meade.c index f76f570dd..3c9ea81d6 100644 --- a/rotators/meade/meade.c +++ b/rotators/meade/meade.c @@ -459,7 +459,7 @@ const struct rot_caps meade_caps = ROT_MODEL(ROT_MODEL_MEADE), .model_name = "LX200/Autostar", .mfg_name = "Meade", - .version = "20200531", + .version = "20200531.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/prosistel/prosistel.c b/rotators/prosistel/prosistel.c index 34b647c67..3d0f80b8c 100644 --- a/rotators/prosistel/prosistel.c +++ b/rotators/prosistel/prosistel.c @@ -261,7 +261,7 @@ const struct rot_caps prosistel_rot_caps = ROT_MODEL(ROT_MODEL_PROSISTEL), .model_name = "Prosistel D", .mfg_name = "Prosistel", - .version = "0.5", + .version = "20191219.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZIMUTH, diff --git a/rotators/rotorez/rotorez.c b/rotators/rotorez/rotorez.c index fac6995fe..015c21654 100644 --- a/rotators/rotorez/rotorez.c +++ b/rotators/rotorez/rotorez.c @@ -134,7 +134,7 @@ const struct rot_caps rotorez_rot_caps = ROT_MODEL(ROT_MODEL_ROTOREZ), .model_name = "Rotor-EZ", .mfg_name = "Idiom Press", - .version = "2010-02-14", + .version = "20100214.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_OTHER, @@ -179,7 +179,7 @@ const struct rot_caps rotorcard_rot_caps = ROT_MODEL(ROT_MODEL_ROTORCARD), .model_name = "RotorCard", .mfg_name = "Idiom Press", - .version = "2010-02-14", + .version = "20100214.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_OTHER, @@ -223,9 +223,9 @@ const struct rot_caps dcu_rot_caps = ROT_MODEL(ROT_MODEL_DCU), .model_name = "DCU-1/DCU-1X", .mfg_name = "Hy-Gain", - .version = "2010-08-23", + .version = "20100823.0", .copyright = "LGPL", - .status = RIG_STATUS_UNTESTED, + .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_OTHER, .port_type = RIG_PORT_SERIAL, .serial_rate_min = 4800, @@ -267,7 +267,7 @@ const struct rot_caps erc_rot_caps = ROT_MODEL(ROT_MODEL_ERC), .model_name = "ERC", .mfg_name = "DF9GR", - .version = "2010-08-23b", /* second revision on 23 Aug 2010 */ + .version = "20100823.2", /* second revision on 23 Aug 2010 */ .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_OTHER, @@ -309,7 +309,7 @@ const struct rot_caps rt21_rot_caps = ROT_MODEL(ROT_MODEL_RT21), .model_name = "RT-21", .mfg_name = "Green Heron", - .version = "2014-09-14", + .version = "20140914.0", .copyright = "LGPL", .status = RIG_STATUS_ALPHA, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/sartek/sartek.c b/rotators/sartek/sartek.c index 50023a448..11c52cf36 100644 --- a/rotators/sartek/sartek.c +++ b/rotators/sartek/sartek.c @@ -56,7 +56,7 @@ const struct rot_caps sartek_rot_caps = ROT_MODEL(ROT_MODEL_SARTEK1), .model_name = "SARtek-1", .mfg_name = "SARtek", - .version = "0.2", + .version = "20061007.0", .copyright = "LGPL", .status = RIG_STATUS_UNTESTED, .rot_type = ROT_TYPE_OTHER, diff --git a/rotators/spid/spid.c b/rotators/spid/spid.c index a528639e2..cf62f76f7 100644 --- a/rotators/spid/spid.c +++ b/rotators/spid/spid.c @@ -453,7 +453,7 @@ const struct rot_caps spid_rot1prog_rot_caps = ROT_MODEL(ROT_MODEL_SPID_ROT1PROG), .model_name = "Rot1Prog", .mfg_name = "SPID", - .version = "1.0", + .version = "20191208.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZIMUTH, @@ -490,7 +490,7 @@ const struct rot_caps spid_rot2prog_rot_caps = ROT_MODEL(ROT_MODEL_SPID_ROT2PROG), .model_name = "Rot2Prog", .mfg_name = "SPID", - .version = "1.0", + .version = "20191208.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZEL, @@ -527,7 +527,7 @@ const struct rot_caps spid_md01_rot2prog_rot_caps = ROT_MODEL(ROT_MODEL_SPID_MD01_ROT2PROG), .model_name = "MD-01/02 (ROT2 mode)", .mfg_name = "SPID", - .version = "1.0", + .version = "20191208.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rot_type = ROT_TYPE_AZEL, diff --git a/rotators/ts7400/ts7400.c b/rotators/ts7400/ts7400.c index 408786851..140e7ba34 100644 --- a/rotators/ts7400/ts7400.c +++ b/rotators/ts7400/ts7400.c @@ -275,7 +275,7 @@ const struct rot_caps ts7400_rot_caps = ROT_MODEL(ROT_MODEL_TS7400), .model_name = "ts7400", .mfg_name = "LA7LKA", - .version = "0.1", + .version = "20200113.0", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rot_type = ROT_TYPE_AZEL,