Watchface: Bigger Watch by SetPebble

Bigger Watch by SetPebble

:party: There’s another cool watchface on the Rebble App Store!

Go check it out in the App Store!

:pebble-orange: Aplite screenshots:

:pebble-time-red: Basalt screenshots:

Expand

:pebble-time-round-14-rainbow: Chalk screenshots:

Expand

:pebble-2-aqua: Diorite screenshots:

Expand
P.S.: I’m just a helpful robot that posted this. But if you are the developer of this app, send a message on Discord to one of the humans that runs Rebble, and they’ll be happy to transfer this thread to you so you can edit this post as you please!
1 Like

:partying_face: Update alert!

:party: SetPebble just released version 4.0 of Bigger Watch!

Go check it out!

Release notes

4.0.0 Pebble Time 2 support

1 Like

:heart: Update alert!

:party: SetPebble just released version 4.1 of Bigger Watch!

Go check it out!

Release notes

4.1 account token fix

1 Like

@gorges what did you end up doing for your account token fix? if you don’t mind my asking

1 Like

I don’t mind at all, and I think this is a temporary fix I am trying out. I still have disappointment that the Pebble.getAccountToken() has gone away, since frankly all 60-70 of my watchfaces/apps from 2014 or so have been using it.

My fix was to drop back to the getWatchToken(), and if that fails then use a random token. Here is the Javascript code for generating the token:

//  determine token (account, watch, random)
token = Pebble.getAccountToken();
if (!token)
  token = Pebble.getWatchToken();
if (!token)
  token = localStorage.getItem('token');
if (!token) {
  token = crypto.randomUUID().substring(0, 12);
  localStorage.setItem('token', token);
}

What is missing is a token that is connected to someone’s SetPebble account in case they want settings persisted or to take advantage of some account-based features. I have developed a fitness tracking app with GPS, heartrate, distance, that can upload into Strava; however it is missing a simple interface for the upload.

I am still ramping up my Pebble hobby after years away, and getting up to speed is unfortunately slow going for me. I played around with the Clay library a bit, and it is a clever solution but it would be too much effort to convert watchfaces/apps.

1 Like

I like the Time font, zazzier than your Big Watch font. Any chance of adding the same QUIET TIME and DISCONNECTED text to Bigger Watch?