mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Pebble: pass dev_settings=true to rebble store url, do enable pbw downloads in browser
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
* Pebble: Add support for installing dual slot firmware
|
||||
* Pebble: Add support for pull to refresh for pebble health data
|
||||
* Pebble: Fix Pebble [Core 2 Duo / Time 2 / 2 Round] BLE pairing
|
||||
* Pebble: pass dev_settings to rebble store url, do enable pbw downloads in browser
|
||||
* Prevent crash on devices without GPS
|
||||
* Recognize Thunderbird for Android as email and ignore its summary notifications
|
||||
* Sony WF-1000XM5: Enable further capabilities
|
||||
|
||||
+1
-1
@@ -726,7 +726,7 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||
return true;
|
||||
} else if (itemId == R.id.appmanager_app_openinstore) {
|
||||
boolean appStoreAllowed = GBApplication.getPrefs().getBoolean("pref_key_internethelper_allow_pebble_appstore", false);
|
||||
final String url = "https://apps.rebble.io/en_US/search/" + ((selectedApp.getType() == GBDeviceApp.Type.WATCHFACE) ? "watchfaces" : "watchapps") + "/1/?native=true&query=" + Uri.encode(selectedApp.getUUID().toString());
|
||||
final String url = "https://apps.rebble.io/en_US/search/" + ((selectedApp.getType() == GBDeviceApp.Type.WATCHFACE) ? "watchfaces" : "watchapps") + "/1/?native=true&dev_settings=true&query=" + Uri.encode(selectedApp.getUUID().toString());
|
||||
if (GBApplication.hasDirectInternetAccess() || (appStoreAllowed && InternetHelperSingleton.INSTANCE.ensureInternetHelperBound())) {
|
||||
final Intent startIntent = new Intent(getContext().getApplicationContext(), RebbleAppStoreActivity.class);
|
||||
startIntent.putExtra(DeviceService.EXTRA_URI, url);
|
||||
|
||||
Reference in New Issue
Block a user