getdown_alt_java8_max_version = 01089999
getdown_alt_java11_min_version = 11000000
getdown_alt_java11_max_version =
-#getdown_alt_java11_txt_multi_java_location = [windows-amd64] /getdown/jre/windows-jre11.jar,[linux-amd64] /getdown/jre/linux-jre11.jar,[mac os x] /getdown/jre/macos-jre11.jar
-install4j_utils_dir = utils/install4j
install4j_images_dir = utils/channels/develop/images
install4j_mac_icons_file = jalview_develop_logo.icns
install4j_windows_icons_file = jalview_develop_logo.ico
-app_name=Jalview Develop
-about_logo=Jalview_Develop_Logo.png
-taskbar_icon=JalviewLogo_Huge.png
-default_channel_appbase=https://www.jalview.org/getdown/release/11
+channel.app_name=Jalview
+channel.banner=images/jalview_banner.png
+channel.logo.512=images/jalview_logo-512.png
+channel.logo.256=images/jalview_logo-256.png
+channel.logo.128=images/jalview_logo-128.png
+channel.logo.64=images/jalview_logo-64.png
+channel.logo.48=images/jalview_logo-48.png
+channel.logo.32=images/jalview_logo-32.png
+channel.logo.16=images/jalview_logo-16.png
+channel.rotatable_logo.48=images/rotatable_jalview_logo-48.png
+channel.default_appbase=https://www.jalview.org/getdown/develop/11
--- /dev/null
+# These properties will be read into the build.gradle REPLACING any properties with the same name in gradle.properties
+# BEFORE local_properties is read
+# The purpose of this is to change cosmetic/themed items, and use the channel specific channels_properties file in Jalview
+getdown_images_dir = utils/channels/release/images
+getdown_background_image = jalview_getdown_background.png
+getdown_instant_background_image = jalview_getdown_background_initialising.png
+getdown_error_background = jalview_getdown_background_error.png
+getdown_progress_image = jalview_getdown_progress_bar.png
+getdown_mac_dock_icon = jalview_logo.icns
+getdown_icon = jalview_logo.png
+getdown_txt_allow_offline = true
+getdown_txt_max_concurrent_downloads = 10
+getdown_txt_ui.install_error = https://www.jalview.org/faq/getdownerror
+install4j_images_dir = utils/channels/release/images
+install4j_mac_icons_file = jalview_logo.icns
+install4j_windows_icons_file = jalview_logo.ico
+install4j_png_icon_file = jalview_logo.png
This script uses the utilities convert (ImageMagick) and png2icns (icnsutils) which should be installed and in the path.
Note that for some reason ICNS files should not contain a 64x64 pixel version of a logo, so the script removes this
as png2icns complains if it finds one!
+
+### Rotatable icon with white background
+
+This icon is used by the web services progress window, with the rotating Jalview logo.
+It requires some small margin of white pixels around the logo to enable antialiasing around the edge of the logo.
+You can make one form a 48x48 transparent logo with
+```
+convert jalview_logo-48.png -gravity center -background white -extent 60x60 rotatable_jalview_logo-48.png
+```