MX 2 лет назад
Родитель
Сommit
c675c67abc
3 измененных файлов с 8 добавлено и 2 удалено
  1. 1 1
      .drone.yml
  2. 3 0
      CHANGELOG.md
  3. 4 1
      parse_api_ver.sh

+ 1 - 1
.drone.yml

@@ -110,7 +110,7 @@ steps:
         - publish/*.tgz
         - publish/*.zip
       title: ${DRONE_TAG}
-      note: changelog.md
+      note: CHANGELOG.md
       checksum:
         - md5
         - sha1

+ 3 - 0
CHANGELOG.md

@@ -0,0 +1,3 @@
+# Flipper Application Files (FAPs)
+## This release contains almost all working apps for flipper zero
+

+ 4 - 1
parse_api_ver.sh

@@ -8,7 +8,10 @@ while read entry status name type params
 do
 	if [ "$entry" == "Version" ]; then
 		echo "API: $name"
-		echo "Apps build for Unleashed FW with API version: $name" > changelog.md
+		echo '' >> CHANGELOG.md
+		echo "Apps build for Unleashed FW with API version: $name" >> CHANGELOG.md
+		echo '' >> CHANGELOG.md
+		echo "Extra pack = all apps / Base pack = apps that was in UL by default" >> CHANGELOG.md
 		break;
 	fi
 done < $FILE