X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;fp=build.gradle;h=1cccc682efca2f76cbd49541334eeab3aa790d99;hb=50721af283710cf622e5c68bd826a87cf223948a;hp=e99272c3c997f7bee9ddfd86308ca765de286aee;hpb=5cbf62291e9f90ece7a76cfc9b5c8f3bf23646a2;p=jalview.git diff --git a/build.gradle b/build.gradle index e99272c..1cccc68 100644 --- a/build.gradle +++ b/build.gradle @@ -1374,6 +1374,18 @@ task copyInstall4jTemplate { e.'@createChecksums' = "true" } + // find largest @id value + def maxId = 0 + /* NOT WORKING + install4jConfigXml.'**'.each { element -> + if ( element.'@id' != null && element.'@id'.toInteger() > maxId ) { + maxId = element.'@id'.toInteger() + } + } + */ + maxId = 10000 + def idCount = maxId + 1 + // put file association actions where placeholder action is def install4jFileAssociationsText = install4jFileAssociationsFile.text def fileAssociationActions = new XmlParser().parseText("${install4jFileAssociationsText}") @@ -1382,6 +1394,9 @@ task copyInstall4jTemplate { def parent = a.parent() parent.remove(a) fileAssociationActions.each { faa -> + if ( faa.'@id' != null ) { + faa.'@id' = idCount++ + } parent.append(faa) } // don't need to continue in .any loop once replacements have been made @@ -1393,8 +1408,29 @@ task copyInstall4jTemplate { // NB we're deleting the /other/ one! // Also remove the examples subdir from non-release versions def customizedIdToDelete = "PROGRAM_GROUP_RELEASE" + def macosArchive = install4jConfigXml.'**'.macosArchive.find { ma -> ma.'@customizedId' == "MACOS_DISK_IMAGE" } + def examplesFolderPlaceholder = macosArchive.topLevelFiles.file.find { f -> f.'@file' == "EXAMPLES_FOLDER_PLACEHOLDER" } if (CHANNEL=="RELEASE") { customizedIdToDelete = "PROGRAM_GROUP_NON_RELEASE" + + // add all of examples folder + def tlf = examplesFolderPlaceholder.parent() + tlf.remove(examplesFolderPlaceholder) + def examplesFiles = fileTree(file(examples_dir)).findAll { f -> f.isFile() } + examplesFiles.each { f -> + def relativeFile = file(examples_dir).toPath().relativize(f.toPath()) + tlf.append( new XmlParser().parseText( + "" + ) ) + } + // let's see if we can add the snazzy Jalview Folder icon and Volume icon. Note the weird filename + tlf.append( new XmlParser().parseText( + "" + ) ) + tlf.append( new XmlParser().parseText( + "" + ) ) + } else { // remove the examples subdir from Full File Set def files = install4jConfigXml.files[0] @@ -1403,11 +1439,12 @@ task copyInstall4jTemplate { def mountPoint = files.mountPoints.mountPoint.find { mp -> mp.'@root' == root.'@id' } def dirEntry = files.entries.dirEntry.find { de -> de.'@mountPoint' == mountPoint.'@id' && de.'@subDirectory' == "examples" } dirEntry.parent().remove(dirEntry) + // remove Examples folder from DMG + examplesFolderPlaceholder.parent().remove(examplesFolderPlaceholder) } install4jConfigXml.'**'.action.any { a -> if (a.'@customizedId' == customizedIdToDelete) { - def parent = a.parent() - parent.remove(a) + a.parent().remove(a) return true } } @@ -1480,6 +1517,7 @@ task installers(type: com.install4j.gradle.Install4jTask) { 'WINDOWS_APPLICATION_ID': install4jWinApplicationId, 'MACOS_DS_STORE': install4jDSStore, 'MACOS_DMG_BG_IMAGE': install4jDMGBackgroundImage, + 'EXAMPLES_FOLDER': install4j_examples_folder, 'INSTALLER_NAME': install4jInstallerName, 'INSTALL4J_UTILS_DIR': install4j_utils_dir, 'GETDOWN_WEBSITE_DIR': getdown_website_dir,