Skip to content

Commit 6e43a34

Browse files
Merge pull request #2184 from plugdata-team/develop
Merge develop into main
2 parents ab8db68 + b411d51 commit 6e43a34

File tree

4,094 files changed

+534246
-126227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,094 files changed

+534246
-126227
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh
2+
3+
git config --global --add safe.directory /__w/plugdata/plugdata
4+
5+
FILE=$1
6+
INFO_FILE=${FILE}.txt
7+
GIT_HASH=$(git log -1 --format=%H)
8+
DATE=$(date -u +"%d-%m-%y %H:%M UTC")
9+
10+
cat > $INFO_FILE <<END_FILE
11+
$DATE
12+
$GIT_HASH
13+
END_FILE
14+
15+
exit 0

.github/scripts/package-Linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cp -r Plugins plugdata
66
cp README.md plugdata/README.md
77
cp LICENSE plugdata/LICENSE.txt
88

9-
# Create tar.gz with unique name for each distro
10-
tar -czvf plugdata-$1.tar.gz plugdata
11-
9+
# Create tar.xz with unique name for each distro
10+
tar -cvf - plugdata | xz -9 > $1
1211

12+
.github/scripts/generate-upload-info.sh $1

.github/scripts/package-Windows.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
X64BitMode=""
1+
VERSION=0.9.2
22

3-
if [[ $1 == "x64" ]]; then
3+
X64BitMode=""
4+
if [[ $1 == "plugdata-Win64.msi" ]]; then
45
X64BitMode="x64"
56
fi
67

7-
VERSION=0.9.1
8-
98
rm -f ./plugdata.wxs
109
cat > ./plugdata.wxs <<-EOL
1110
<?xml version="1.0"?>
@@ -173,7 +172,6 @@ cat > ./plugdata.wxs <<-EOL
173172
</Wix>
174173
EOL
175174

176-
177175
if [[ $X64BitMode == "x64" ]]; then
178176
"C:/Program Files (x86)/WiX Toolset v3.14/bin/candle" -arch x64 plugdata.wxs
179177
"C:/Program Files (x86)/WiX Toolset v3.14/bin/light" plugdata.wixobj -out plugdata-Installer.msi -ext WixUIExtension
@@ -184,6 +182,8 @@ else
184182
cp ".\plugdata-Installer.msi" ".\plugdata-Win32.msi"
185183
fi
186184

185+
.github/scripts/generate-upload-info.sh $1
186+
187187
# - Codesign Installer for Windows 8+
188188
# -"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\signtool.exe" sign /f "XXXXX.p12" /p XXXXX /d "plugdata Installer" ".\installer\plugdata Installer.exe"
189189

.github/scripts/package-macOS.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,16 @@ rm -r $PKG_DIR
155155
if [ -z "$AC_USERNAME" ]; then
156156
echo "No user name, skipping sign/notarize"
157157
# pretend that we signed the package and bail out
158-
mv ${PRODUCT_NAME}.pkg ${PRODUCT_NAME}-MacOS-$1.pkg
158+
mv ${PRODUCT_NAME}.pkg $1
159159
exit 0
160160
fi
161161

162162
# Sign installer
163-
productsign -s "Developer ID Installer: Timothy Schoen (7SV7JPRR2L)" ${PRODUCT_NAME}.pkg ${PRODUCT_NAME}-MacOS-$1.pkg
163+
productsign -s "Developer ID Installer: Timothy Schoen (7SV7JPRR2L)" ${PRODUCT_NAME}.pkg $1
164164

165165
# Notarize installer
166166
xcrun notarytool store-credentials "notary_login" --apple-id ${AC_USERNAME} --password ${AC_PASSWORD} --team-id "7SV7JPRR2L"
167-
xcrun notarytool submit ./plugdata-MacOS-$1.pkg --keychain-profile "notary_login" --wait
167+
xcrun notarytool submit $1 --keychain-profile "notary_login" --wait
168168
xcrun stapler staple "plugdata-MacOS-$1.pkg"
169+
170+
.github/scripts/generate-upload-info.sh $1

.github/scripts/upload-ftp.sh

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)