Skip to content

Commit

Permalink
V2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
woheller69 committed Dec 28, 2023
1 parent fa10172 commit d58d968
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
| [<img src="https://github.com/woheller69/audio-analyzer-for-android/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.audio_analyzer_for_android/) |[<img src="https://github.com/woheller69/lavatories/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.lavatories/) | [<img src="https://github.com/woheller69/TimeLapseCamera/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.TimeLapseCam/) |
| **Arity** | **omWeather** | **solXpect** |
| [<img src="https://github.com/woheller69/arity/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.arity/) | [<img src="https://github.com/woheller69/omweather/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.omweather/) | [<img src="https://github.com/woheller69/solXpect/blob/main/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.solxpect/) |
| **gptAssist** | | |
| [<img src="https://github.com/woheller69/gptassist/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.gptassist/) | | |
| **gptAssist** | **dumpSeeker** | **huggingAssist** |
| [<img src="https://github.com/woheller69/gptassist/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.gptassist/) | [<img src="https://github.com/woheller69/dumpseeker/blob/main/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.dumpseeker/) | [<img src="https://github.com/woheller69/huggingassist/blob/master/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.hugassist/) |
| **FREE Browser** | | |
| [<img src="https://github.com/woheller69/browser/blob/newmaster/fastlane/metadata/android/en-US/images/icon.png" width="50">](https://f-droid.org/packages/org.woheller69.browser/) | | |

# Gas Prices Germany

Expand All @@ -35,7 +37,7 @@ The data is provided via the Tankerkönig API under the Creative Commons license

## License

This app is licensed under the GPLv3.
This app is licensed under the GPLv3, © woheller69.

The app also uses:
- Data is provided via the Tankerkönig API (www.tankerkönig.de) under Creative-Commons-Licence “CC BY 4.0”, <a href='http://creativecommons.org/licenses/by-sa/4.0/'>Creative Commons licence CC BY-SA 4.0</a>
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "org.woheller69.spritpreise"
minSdkVersion 26
targetSdkVersion 33
versionCode 24
versionName "2.4"
versionCode 25
versionName "2.5"

buildConfigField "String", "DEFAULT_API_KEY", "\"${project.findProperty("prop1")}\""
buildConfigField "String", "UNPATCHED_API_KEY", "\"OTgxMjBmODAtNzYwNy0zOTQxLTI3NGUtMDE5MGI0NDg2NmZh\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
import org.osmdroid.config.Configuration;
import org.osmdroid.tileprovider.tilesource.TileSourceFactory;
import org.osmdroid.util.GeoPoint;
import org.osmdroid.views.CustomZoomButtonsController;
import org.osmdroid.views.MapView;
import org.osmdroid.views.overlay.CopyrightOverlay;
import org.osmdroid.views.overlay.Marker;
Expand Down Expand Up @@ -209,6 +210,8 @@ public void onLongItemClick(View view, int position) {
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
if (sp.getBoolean("pref_map",true)) {
holder.map.setVisibility(View.VISIBLE);
holder.map.setMultiTouchControls(true);
holder.map.getZoomController().setVisibility(CustomZoomButtonsController.Visibility.NEVER);

Configuration.getInstance().load(context, PreferenceManager.getDefaultSharedPreferences(context));
holder.map.setTileSource(TileSourceFactory.MAPNIK);
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/de-DE/changelogs/25.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Gestensteuerung anstelle von +/- für Zoom
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/25.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Multi touch control instead of +/- for zoom

0 comments on commit d58d968

Please sign in to comment.