diff --git a/application/config/bands.php b/application/config/bands.php index 8364814c..eb87208b 100644 --- a/application/config/bands.php +++ b/application/config/bands.php @@ -1,4 +1,4 @@ "144300000", 'DATA'=>"144370000", 'CW'=>"144050000"), + '1.25m'=>array( + 'SSB'=>"222100000", + 'DATA'=>"222100000", + 'CW'=>"222100000"), '70cm'=>array( 'SSB'=>"432200000", 'DATA'=>"432088000", 'CW'=>"432050000"), + '33cm'=>array( + 'SSB'=>"902100000", + 'DATA'=>"902100000", + 'CW'=>"902100000"), '23cm'=>array( 'SSB'=>"1296000000", 'DATA'=>"1296138000", diff --git a/application/models/Bands.php b/application/models/Bands.php index 69d4ee48..a56faaf0 100644 --- a/application/models/Bands.php +++ b/application/models/Bands.php @@ -13,10 +13,12 @@ class Bands extends CI_Model { "15m"=>0, "12m"=>0, "10m"=>0, - "6m" =>0, - "4m" =>0, - "2m" =>0, + "6m"=>0, + "4m"=>0, + "2m"=>0, + "1.25m"=>0, "70cm"=>0, + "33cm"=>0, "23cm"=>0, "13cm"=>0, "9cm"=>0, diff --git a/application/views/contesting/index.php b/application/views/contesting/index.php index d875b0d0..051557a4 100644 --- a/application/views/contesting/index.php +++ b/application/views/contesting/index.php @@ -77,16 +77,18 @@ + - - - + + + + diff --git a/application/views/qso/edit_ajax.php b/application/views/qso/edit_ajax.php index e474504b..df61a033 100644 --- a/application/views/qso/edit_ajax.php +++ b/application/views/qso/edit_ajax.php @@ -105,17 +105,20 @@ + - - - + - + + + + + @@ -141,17 +144,19 @@ + - - - + + + + diff --git a/application/views/qso/index.php b/application/views/qso/index.php index 627ec1cb..61758b69 100755 --- a/application/views/qso/index.php +++ b/application/views/qso/index.php @@ -108,16 +108,18 @@ + - - - + + + + @@ -223,16 +225,18 @@ + - - - + + + + diff --git a/assets/js/radiohelpers.js b/assets/js/radiohelpers.js index 2d56b40d..102038d8 100644 --- a/assets/js/radiohelpers.js +++ b/assets/js/radiohelpers.js @@ -37,9 +37,15 @@ function frequencyToBand(frequency) { else if(result >= 144000000 && result <= 148000000) { return '2m'; } + else if(result >= 219000000 && result <= 225000000) { + return '1.25m'; + } else if(result >= 430000000 && result <= 440000000) { return '70cm'; } + else if(result >= 902000000 && result <= 928000000) { + return '33cm'; + } else if(result >= 1200000000 && result <= 1600000000) { return '23cm'; }