Просмотр исходного кода

Update ipset url United kingdom + changelog

Jaap Marcus 3 лет назад
Родитель
Сommit
4bd699834c
2 измененных файлов с 12 добавлено и 2 удалено
  1. 10 0
      CHANGELOG.md
  2. 2 2
      web/templates/pages/add_firewall_ipset.html

+ 10 - 0
CHANGELOG.md

@@ -1,6 +1,16 @@
 # Changelog
 All notable changes to this project will be documented in this file.
 
+## [1.6.11] - Service release 
+
+### Bugfixes
+
+- Update Ipverse url for United Kingdom (#2962)
+
+### Dependencies
+
+- Update Rainloop to 1.17.0 (#2957)
+
 ## [1.6.10] - Service release 
 
 ### Security

+ 2 - 2
web/templates/pages/add_firewall_ipset.html

@@ -99,8 +99,8 @@
 
 <script>
 	var country_iplists = [
-		<?php 
-			$country = array('ca' => 'Canada', 'cn' => 'China', 'fr' => 'French', 'de' => 'Germany', 'in' => 'India', 'nl' => 'Netherlands', 'ro' => 'Romania', 'ru' => 'Russia', 'es' => 'Spain', 'ch' => 'Switzerland', 'tr' => 'Turkey', 'ua' => 'Ukraine',  'uk' => 'United Kingdom', 'us' => 'United States');
+		<?php
+			$country = array('ca' => 'Canada', 'cn' => 'China', 'fr' => 'French', 'de' => 'Germany', 'in' => 'India', 'nl' => 'Netherlands', 'ro' => 'Romania', 'ru' => 'Russia', 'es' => 'Spain', 'ch' => 'Switzerland', 'tr' => 'Turkey', 'ua' => 'Ukraine',  'gb' => 'United Kingdom', 'us' => 'United States');
 			foreach($country as $iso =>$name){
 				echo '{name: "[IPv4] Country - '.$name.'",	source:"https://raw.githubusercontent.com/ipverse/rir-ip/master/country/'.$iso.'/ipv4-aggregated.txt"},'."\n";
 			}