View Single Post
Old 06-16-2016, 01:56 PM   #9
encol
Evangelist
encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.encol ought to be getting tired of karma fortunes by now.
 
Posts: 416
Karma: 765432
Join Date: Apr 2016
Location: Italy
Device: Kindle PW3 5.8.5.0.1
Quote:
Originally Posted by geekmaster View Post
Check out the battery pecentage icon change in the KUAL extension. Not sure if title can contain unicode/utf-8 "icon" characters -- worth a try (though it may vary with font, default language, or firmware version).
in the script there is this check:
Code:
	# Broken on FW >= 5.5.x
	fw_is_supported="false"
	kpver="$(grep '^Kindle 5' ${ROOT}/etc/prettyversion.txt 2>&1)"
	khminver="$(echo ${kpver} | sed -n -r 's/^(Kindle)([[:blank:]]*)([[:digit:]]*)(\.)([[:digit:]]*)([[:digit:].]*)(.*?)$/\5/p')"
	if [ ${khminver} -lt 5 ] ; then
		fw_is_supported="true"
	fi

	if [ "${fw_is_supported}" == "false" ] ; then
		eips_print_bottom_centered "unsupported on your FW version, aborting" 0
		exit 1
	fi
it seems that new fws are not supported
encol is offline   Reply With Quote