prepare v0.3.3

This commit is contained in:
akaessens 2020-08-31 21:25:29 +02:00
parent 3cbfc9b9c1
commit c43911fc77
5 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,8 @@
# Changelog # 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) ## v0.3.2 (8)
- Add german translation. - Add german translation.
- Decrease MinSDK to 23 (Android 6.0). - Decrease MinSDK to 23 (Android 6.0).
@ -24,7 +28,6 @@
- Fixes for new design. - Fixes for new design.
- New button layout. - New button layout.
- Improve input error display. - Improve input error display.
## v0.2.0 (3) ## v0.2.0 (3)
- Fix for timezone calculation. - Fix for timezone calculation.
- Material design Interface, will be improved further. - Material design Interface, will be improved further.

View File

@ -8,8 +8,8 @@ android {
applicationId "com.akdev.nofbeventscraper" applicationId "com.akdev.nofbeventscraper"
minSdkVersion 23 minSdkVersion 23
targetSdkVersion 29 targetSdkVersion 29
versionCode 8 versionCode 9
versionName "0.3.2" versionName "0.3.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }

View File

@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
changelog_location="fastlane/metadata/android/en-US/changelogs" changelog_location="fastlane/metadata/android/en-US/changelogs"
count_txt=`ls -r $changelog_location/*.txt | wc -l` count_txt=$(ls -r $changelog_location/*.txt | wc -l)
count_tag=`git tag | wc -l` count_tag=$(git tag | wc -l)
if (( count_txt != count_tag )); then if (( count_txt != count_tag )); then
echo "Tag count and txt-file count not matching." echo "Tag count and txt-file count not matching."
@ -11,11 +11,11 @@ fi
echo "# Changelog" > CHANGELOG.md echo "# Changelog" > CHANGELOG.md
for i in `seq $count_txt -1 1` for i in $(seq "$count_txt" -1 1)
do do
tag=`git tag | sed "$i!d"` tag=$(git tag | sed "$i!d")
echo "## $tag ($i)" >> CHANGELOG.md echo "## $tag ($i)" >> CHANGELOG.md
cat $changelog_location/$i.txt >> CHANGELOG.md cat $changelog_location/"$i".txt >> CHANGELOG.md
done done

View File

@ -1,4 +1,3 @@
- Fixes for new design. - Fixes for new design.
- New button layout. - New button layout.
- Improve input error display. - Improve input error display.

View File

@ -0,0 +1,3 @@
- Update about section with download and changelog information.
- Improve high-res preview scraping.
- Fix potential crash on calendar intent.