prepare v0.3.3
This commit is contained in:
parent
3cbfc9b9c1
commit
c43911fc77
|
@ -1,4 +1,8 @@
|
|||
# Changelog
|
||||
## v0.3.3 (9)
|
||||
- Update about section with download and changelog information.
|
||||
- Improve high-res preview scraping.
|
||||
- Fix potential crash on calendar intent.
|
||||
## v0.3.2 (8)
|
||||
- Add german translation.
|
||||
- Decrease MinSDK to 23 (Android 6.0).
|
||||
|
@ -24,7 +28,6 @@
|
|||
- Fixes for new design.
|
||||
- New button layout.
|
||||
- Improve input error display.
|
||||
|
||||
## v0.2.0 (3)
|
||||
- Fix for timezone calculation.
|
||||
- Material design Interface, will be improved further.
|
||||
|
|
|
@ -8,8 +8,8 @@ android {
|
|||
applicationId "com.akdev.nofbeventscraper"
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 29
|
||||
versionCode 8
|
||||
versionName "0.3.2"
|
||||
versionCode 9
|
||||
versionName "0.3.3"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
changelog_location="fastlane/metadata/android/en-US/changelogs"
|
||||
count_txt=`ls -r $changelog_location/*.txt | wc -l`
|
||||
count_tag=`git tag | wc -l`
|
||||
count_txt=$(ls -r $changelog_location/*.txt | wc -l)
|
||||
count_tag=$(git tag | wc -l)
|
||||
|
||||
if (( count_txt != count_tag )); then
|
||||
echo "Tag count and txt-file count not matching."
|
||||
|
@ -11,11 +11,11 @@ fi
|
|||
|
||||
echo "# Changelog" > CHANGELOG.md
|
||||
|
||||
for i in `seq $count_txt -1 1`
|
||||
for i in $(seq "$count_txt" -1 1)
|
||||
do
|
||||
tag=`git tag | sed "$i!d"`
|
||||
tag=$(git tag | sed "$i!d")
|
||||
|
||||
echo "## $tag ($i)" >> CHANGELOG.md
|
||||
cat $changelog_location/$i.txt >> CHANGELOG.md
|
||||
cat $changelog_location/"$i".txt >> CHANGELOG.md
|
||||
|
||||
done
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
- Fixes for new design.
|
||||
- New button layout.
|
||||
- Improve input error display.
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
- Update about section with download and changelog information.
|
||||
- Improve high-res preview scraping.
|
||||
- Fix potential crash on calendar intent.
|
Loading…
Reference in New Issue