mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-02-06 22:54:47 +01:00
Compare commits
No commits in common. "d9f9fb51db3538b941f442187c6f5e2958287884" and "f14ebe9a0d24af3e9ae597f4a80d0a352b0f6082" have entirely different histories.
d9f9fb51db
...
f14ebe9a0d
@ -21,8 +21,8 @@ android {
|
||||
applicationId "eu.toldi.infinityforlemmy"
|
||||
minSdk 21
|
||||
targetSdk 33
|
||||
versionCode 129
|
||||
versionName "0.1.0"
|
||||
versionCode 128
|
||||
versionName "0.0.8"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
javaCompileOptions {
|
||||
annotationProcessorOptions {
|
||||
|
@ -204,9 +204,6 @@ public class InstanceInfoActivity extends BaseActivity {
|
||||
protected void applyCustomTheme() {
|
||||
coordinatorLayout.setBackgroundColor(mCustomThemeWrapper.getBackgroundColor());
|
||||
applyAppBarLayoutAndCollapsingToolbarLayoutAndToolbarTheme(appBarLayout, null, toolbar);
|
||||
mStatisticsCardView.setCardBackgroundColor(mCustomThemeWrapper.getCardViewBackgroundColor());
|
||||
mDescriptionCardView.setCardBackgroundColor(mCustomThemeWrapper.getCardViewBackgroundColor());
|
||||
mAdminsCardView.setCardBackgroundColor(mCustomThemeWrapper.getCardViewBackgroundColor());
|
||||
mUsersImageView.setColorFilter(mCustomThemeWrapper.getPrimaryTextColor(), PorterDuff.Mode.SRC_IN);
|
||||
mCommunitiesImageView.setColorFilter(mCustomThemeWrapper.getPrimaryTextColor(), PorterDuff.Mode.SRC_IN);
|
||||
mPostsImageView.setColorFilter(mCustomThemeWrapper.getPrimaryTextColor(), PorterDuff.Mode.SRC_IN);
|
||||
|
@ -1,20 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# get the latest two tags
|
||||
tags=$(git tag --sort=-creatordate | head -n 2)
|
||||
|
||||
# split tags into an array
|
||||
tag_array=($tags)
|
||||
|
||||
# check if there are enough tags
|
||||
if [ ${#tag_array[@]} -lt 2 ]; then
|
||||
echo "Not enough tags in the repository. Need at least two tags."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# get the latest two tags
|
||||
latest_tag=${tag_array[0]}
|
||||
second_latest_tag=${tag_array[1]}
|
||||
|
||||
# extract short hashes and full commit messages without pager
|
||||
git --no-pager log --pretty=format:"%h - %B" $second_latest_tag..$latest_tag
|
Loading…
x
Reference in New Issue
Block a user