Skip to content

Commit

Permalink
update changelog, translations, screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Helium314 committed Jan 1, 2024
1 parent 38742aa commit e324577
Show file tree
Hide file tree
Showing 18 changed files with 183 additions and 90 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Functionality added in SCEE is considerably less tested than what you might be u

F-Droid releases of SCEE make use of reproducible builds, so releases on F-Droid and GitHub are signed with the same keys. This means you can switch between GitHub and F-Droid releases anytime without needing to uninstall first.

F-Droid anti-feature, non-free network: SCEE uses map tiles provided by [jawg](https://www.jawg.io), and optionally [aerial / satellite imagery](https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer) by [Esri](https://www.esri.com).
__F-Droid anti-feature__ _non-free network_: SCEE uses map tiles provided by [jawg](https://www.jawg.io), and optionally [aerial / satellite imagery](https://server.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer) by [Esri](https://www.esri.com).

## Translations
Translations for strings added in SCEE can be done [using Weblate](https://translate.codeberg.org/projects/scee/).
You will need an account to update translations and add languages. Add the language you want to translate to in _Languages_ -> _Manage translated languages_ in the top menu bar.

## Permissions
SCEE asks for two more permissions than StreetComplete: `ACCESS_BACKGROUND_LOCATION` and `POST_NOTIFICATIONS`. Both are used only in an experimental feature to notify about nearby quests when the app is in the background.
SCEE asks for two more permissions than StreetComplete: `ACCESS_BACKGROUND_LOCATION` and `POST_NOTIFICATIONS`. Both are requested and used only in feature to notify about nearby quests while the app is in the background.

## Differences to StreetComplete
* Non-optional differences to StreetComplete
Expand Down Expand Up @@ -151,7 +151,7 @@ SCEE asks for two more permissions than StreetComplete: `ACCESS_BACKGROUND_LOCAT
Database and preferences files are compatible with StreetComplete, so if you have root privileges you can transfer them in either direction.

## Contributing quests
The original [contributing guidelines](#contributing) are still valid, but note that the [guidelines for contributing a quest](QUEST_GUIDELINES.md) have been significantly relaxed:
The original [contributing guidelines](README_StreetComplete.md#contributing) are still valid, but note that the [guidelines for contributing a quest](QUEST_GUIDELINES.md) have been significantly relaxed:
* Creating, moving and deleting nodes is possible
* Inserting nodes into a way is not (yet) possible
* Guidelines are useful suggestions, but not enforced
Expand Down Expand Up @@ -183,3 +183,6 @@ Furthermore SCEE adds new answers leading to such a changeset comment:
* There are further "quest types" (though neither quests nor overlays, they are identified in `StreetComplete:quest_type` changeset tag)
* _TagEdit_: may modify any tag
* _AddNode_: adds nodes, free floating or part of ways, (may change tags of existing way node instead of inserting a new one under some circumstances)

## Screenshots
<img src="metadata/en-US/images/phoneScreenshots/screenshot1.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot2.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot3.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot4.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot5.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot6.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot7.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot8.png" width="240"/>
3 changes: 0 additions & 3 deletions README_StreetComplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ To make the app easy to use, quests are limited to those answerable by asking si

* See the [latest release notes](https://github.com/streetcomplete/StreetComplete/releases).

## Screenshots
<img src="metadata/en-US/images/phoneScreenshots/screenshot1.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot2.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot3.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot4.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot5.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot6.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot7.png" width="240"/> <img src="metadata/en-US/images/phoneScreenshots/screenshot8.png" width="240"/>

## Download

[<img src="https://play.google.com/intl/en_us/badges/images/generic/en_badge_web_generic.png" alt="Get it on Google Play" height="80">](https://play.google.com/store/apps/details?id=de.westnordost.streetcomplete)[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/packages/de.westnordost.streetcomplete/)[<img src="https://user-images.githubusercontent.com/663460/26973090-f8fdc986-4d14-11e7-995a-e7c5e79ed925.png" alt="Download APK from GitHub" height="80">](https://github.com/streetcomplete/StreetComplete/releases/latest)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import de.westnordost.streetcomplete.util.buildGeoUri
import de.westnordost.streetcomplete.util.ktx.nowAsEpochMilliseconds
import de.westnordost.streetcomplete.util.ktx.toLatLon
import de.westnordost.streetcomplete.util.ktx.toast
import de.westnordost.streetcomplete.util.logs.Log
import de.westnordost.streetcomplete.util.math.distanceTo
import de.westnordost.streetcomplete.util.math.enclosingBoundingBox
import org.koin.android.ext.android.inject
Expand Down Expand Up @@ -148,11 +149,10 @@ class NearbyQuestMonitor : Service(), LocationListener, KoinComponent {
latDiff * latDiff + lonDiff * lonDiff
}
val notification = getQuestFoundNotification(quests.size, closest)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU
&& ActivityCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) != PackageManager.PERMISSION_GRANTED)
this.toast("Quests found, but no notification permission") // should not happen, not worth a string resource
else
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU || ActivityCompat.checkSelfPermission(this, Manifest.permission.POST_NOTIFICATIONS) == PackageManager.PERMISSION_GRANTED)
NotificationManagerCompat.from(this).notify(FOUND_NOTIFICATION_ID, notification)
else
Log.i("NearbyQuestMonitor", "Quests found, but no notification permission")
}

// not overriding those causes crashes on Android 10 (only?)
Expand Down
9 changes: 8 additions & 1 deletion app/src/main/res/raw/changelog_ee.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
56.0: |
<ul>
<li>Add quests for guidepost elevation, name and ref by @qugebert (#477, #503) and for guidepost sports by @mcliquid (#496)</li>
<li>Update translations (thanks to Mr-Update, @mcliquid, SomeTr, Funmorning46, @ERYpTION), added Norwegian Nynorsk (thanks to bre</li>
<li>Crash fixes, minor improvements</li>
</ul>
55.1: |
<ul>
<li>Add a bunch of quests by @mcliquid: street cabinet type (#470), shelter type (#473), brewery (#475), via ferrata scale (#480), piste ref (#487), piste difficulty (#489), piste lit (#495), trail visibility (#486), barrier locked (#490)</li>
<li>Add barrier height quest, by @wielandb (#483)</li>
<li>Add quest for map type and map size, by @wielandb (#482)</li>
<li>Upgrade and extend service building quest, by @mcliquid (#464)</li>
<li>Update translations (thanks to gallegonovato, @mcliquid, someTr, m-martin), added Danish (thanks to @ERYpTION)</li>
<li>Update translations (thanks to gallegonovato, @mcliquid, SomeTr, m-martin), added Danish (thanks to @ERYpTION)</li>
<li>Bug fixes and minor improvements</li>
</ul>
Expand Down
12 changes: 12 additions & 0 deletions app/src/main/res/values-da/strings_ee.xml
Original file line number Diff line number Diff line change
Expand Up @@ -153,4 +153,16 @@
<string name="pref_quest_monitor_title">Giv besked om nærliggende opgaver</string>
<string name="quest_monitor_permission_warning">Tilladelse til baggrundsplacering er påkrævet, for at overvågningen af nærliggende opgaver kan fungere</string>
<string name="quest_tree_genus_title">Hvilken slægt eller art tilhører dette træ\?</string>
<string name="quest_settings_eligible_highways">Angiv motorveje, der er tilgængelige til denne opgave, adskilt af komma</string>
<string name="quest_settings_sidewalk_cycleway_distance_message">Indstil minimumsafstanden fra separate stier, hvis den er lavere, vil opgaven ikke blive vist</string>
<string name="pref_quest_settings_preset_title">Forudindstillede opgaveindstillinger</string>
<string name="quest_settings_sidewalk_distance_button">Afstand</string>
<string name="import_export_custom_overlays_select">Vælg overlejringer til eksport</string>
<string name="pref_quest_settings_preset_summary">Hvis aktiveret, er opgaveindstillingerne kun gyldige for den aktuelle opgaveforudindstilling</string>
<string name="quest_settings_what_to_edit">Hvad skal indstilles?</string>
<string name="quest_settings_max_roof_levels">Maksimal værdi for (bygningsetager) minus (tagetager) for den opgave, der skal vises</string>
<string name="quest_settings_level_more">Læger og mange flere punkter i bygninger med flere etager</string>
<string name="quest_settings_level_title">Vis denne opgave for:</string>
<string name="quest_settings_max_steps_length">Maksimal længde af trin i meter for at opgaven vises</string>
<string name="quest_settings_level_default">Butikker og lignende i indkøbscentre (standard)</string>
</resources>

0 comments on commit e324577

Please sign in to comment.