From 1aa4bd4045afd3361283c5492d3da9ca4aeb7b2e Mon Sep 17 00:00:00 2001 From: Humdinger Date: Wed, 11 Sep 2024 17:49:13 +0200 Subject: [PATCH] QuickLaunch: Release v1.5 Needs Haiku beta5 (or nightly). * Moved the QuickLaunch binary directly into /system/apps. An alert will prompt the user to adjust their Shortcuts perferences. * Moved documentation into /system/documentation hierarchy. * Added "Open Shortcuts preferences" button to Setup window as convenience. * Improved color management, esp. for dark themes. * Update translations, thanks all translators! * Added Australian English translation * Added Norwegian translation, thanks Johan Wagenheim! * Added Latin American Spanish translation, thanks cafeina, victroniko, OscarL! --- ...unch-1.4.recipe => quicklaunch-1.5.recipe} | 20 +++++++++---------- 1 file changed, 9 insertions(+), 11 deletions(-) rename haiku-apps/quicklaunch/{quicklaunch-1.4.recipe => quicklaunch-1.5.recipe} (66%) diff --git a/haiku-apps/quicklaunch/quicklaunch-1.4.recipe b/haiku-apps/quicklaunch/quicklaunch-1.5.recipe similarity index 66% rename from haiku-apps/quicklaunch/quicklaunch-1.4.recipe rename to haiku-apps/quicklaunch/quicklaunch-1.5.recipe index 21e34fb75..170f44fe1 100644 --- a/haiku-apps/quicklaunch/quicklaunch-1.4.recipe +++ b/haiku-apps/quicklaunch/quicklaunch-1.5.recipe @@ -9,13 +9,12 @@ by hitting RETURN. ESC quits QuickLaunch. It's recommended to set a key combo to start QuickLaunch with Haiku's \ Shortcuts preferences." HOMEPAGE="https://github.com/humdingerb/quicklaunch" -COPYRIGHT="2010-2019 Humdinger" +COPYRIGHT="2010-2024 Humdinger" LICENSE="MIT" REVISION="1" -srcGitRev="22b3d18cce177d57006a884788167eecaa43d74d" -SOURCE_URI="https://github.com/humdingerb/quicklaunch/archive/$srcGitRev.tar.gz" -CHECKSUM_SHA256="bd2bb7eeaedc66c29426716080f3d83debc021e28998f85f7af7534cb38fc7aa" -SOURCE_DIR="quicklaunch-$srcGitRev" +SOURCE_URI="https://github.com/humdingerb/quicklaunch/archive/v$portVersion.tar.gz" +CHECKSUM_SHA256="4c3d75b99d3c28bb841614984630c3c643ecbfa223c3908e16d69cb417442cc7" +SOURCE_DIR="quicklaunch-$portVersion" ARCHITECTURES="all" @@ -47,12 +46,11 @@ BUILD() INSTALL() { - quicklaunchDir=$appsDir/QuickLaunch - mkdir -p $quicklaunchDir + mkdir -p $appsDir - cp -af QuickLaunch $quicklaunchDir - cp -af ReadMe.html $quicklaunchDir - cp -r images $quicklaunchDir + mkdir -p $appsDir $docDir + cp -r documentation/* $docDir/ - addAppDeskbarSymlink $quicklaunchDir/QuickLaunch + cp QuickLaunch $appsDir + addAppDeskbarSymlink $appsDir/QuickLaunch }