-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from QuantumPhysique/patch_rive
Enforce using lockfile and patch rive_common.
- Loading branch information
Showing
8 changed files
with
79 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# This file is intendet to patch packages from pub.dev | ||
# | ||
# Path rive_common to remove build-id | ||
RIVE_COMMON_VERSION="$(grep -A7 -P '^..rive_common' pubspec.lock | sed -E -n -e 's/^.*version:\ "([0-9.]+)"/\1/p')" | ||
|
||
# get path to pub_cache directory | ||
if [[ -v PUB_CACHE ]]; then | ||
PUB_PATH="$PUB_CACHE" | ||
else | ||
PUB_PATH="$HOME/.pub_cache" | ||
fi | ||
|
||
patch "${PUB_PATH}/hosted/pub.dev/rive_common-${RIVE_COMMON_VERSION}/premake5_rive_plugin.lua" "rive_common.patch" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- premake5_rive_plugin.lua 2023-11-08 21:16:37.466026217 +0100 | ||
+++ premake5_rive_plugin.lua 2023-11-08 21:36:12.735951780 +0100 | ||
@@ -101,7 +101,8 @@ | ||
linkoptions { | ||
'-Oz', | ||
'-g0', | ||
- '-flto' | ||
+ '-flto', | ||
+ '--build-id=None' | ||
} | ||
end | ||
filter {'system:macosx', 'options:arch=arm64'} | ||
@@ -452,7 +453,8 @@ | ||
linkoptions { | ||
'-Oz', | ||
'-g0', | ||
- '-flto' | ||
+ '-flto', | ||
+ '--build-id=None' | ||
} | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
0.4.2: | ||
- Versuche reproduzierbare Builds zu aktivieren | ||
|
||
0.4.1: | ||
- Geupdatete Abhängigkeiten | ||
- Proguardoptimierungen aufgesetzt | ||
|
||
0.4.0: | ||
- App Id wurde zu `de.quantumphysique.trale` geändert, updaten ist nicht möglich! | ||
- Aufnahmeprozess zu F-Droid gestartet | ||
- Geupdatete Abhängigkeiten und kleine UI Verbesserungen | ||
- Problem behoben um Links zu öffnen | ||
- Verbesserte Ticks für große Intervalle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
0.4.2: | ||
- Try to enable reproducible builds | ||
|
||
0.4.1: | ||
- Upgrade deps | ||
- Add Proguard optimizations | ||
|
||
0.4.0: | ||
- App id changed to `de.quantumphysique.trale`, upgrading is not possible! | ||
- Initialized F-Droid inclusion process | ||
- Upgrade dependencies and minor UI improvements | ||
- Fix missing permission to open links | ||
- Improved ticks for large intervals |