Notices


Reply
Thread Tools
Posts: 187 | Thanked: 514 times | Joined on Nov 2014
#531
I'm not sure it does for every minor version, but for major versions they seem to release in sync, and the firmwares are only available once you've upgraded the app.

At a complete guess though this might be because they're implementing new protocols (e.g. the speech thing, and now health), and once it's settled down maybe it'll be different.
 

The Following User Says Thank You to MikeHG For This Useful Post:
smoku's Avatar
Posts: 1,716 | Thanked: 3,007 times | Joined on Dec 2009 @ Warsaw, Poland
#532
When in doubt Use the source, Luke... ;-)
https://github.com/smokku/pebble/blo...irmware.cpp#L8

Pebble App gets the latest available firmware from http://pebblefw.s3.amazonaws.com/pebble/.../latest.json so it is always up to the latest version published by Pebble company. No magic in use there. When Pebble company pushes new firmware to AWS, pebbled will have it available. No sooner, no later.

(pebbled upgrade may be required only, when a new Pebble model hits the market - pebbled needs to know how is it codenamed and where to fetch its latest.json from.)
__________________
smoku @xiaoka.com (SMTP/XMPP) ...:.:....:... pebbled . Poky Fish : sixaxis . psx4m . uae4all
Jolla Phone post-mortem . . . . . . . . . . -> 1+1 VGN-UX390N
 

The Following 3 Users Say Thank You to smoku For This Useful Post:
Bundyo's Avatar
Posts: 4,708 | Thanked: 4,649 times | Joined on Oct 2007 @ Bulgaria
#533
Mine is also stuck on 3.6. Pebble app is not though
__________________
Technically, there are three determinate states the cat could be in: Alive, Dead, and Bloody Furious.
 

The Following 2 Users Say Thank You to Bundyo For This Useful Post:
Feathers McGraw's Avatar
Posts: 654 | Thanked: 2,368 times | Joined on Jul 2014 @ UK
#534
Originally Posted by smoku View Post
Pebble App gets the latest available firmware from http://pebblefw.s3.amazonaws.com/pebble/.../latest.json so it is always up to the latest version published by Pebble company. No magic in use there. When Pebble company pushes new firmware to AWS, pebbled will have it available. No sooner, no later.
v2.8 seems to be out for the Pebble Time Steel, are you saying they have released it via their Android and iOS apps but not made it available on that server?
 

The Following User Says Thank You to Feathers McGraw For This Useful Post:
Posts: 287 | Thanked: 862 times | Joined on Dec 2015
#535
Originally Posted by smoku View Post
When in doubt Use the source, Luke... ;-)
https://github.com/smokku/pebble/blo...irmware.cpp#L8
Looks like that only checks for v3 firmware if the hardware id starts with 'snowy_'. Are those the Pebble Times?
 

The Following User Says Thank You to abranson For This Useful Post:
ajack's Avatar
Posts: 288 | Thanked: 175 times | Joined on Oct 2010 @ Petaling Jaya, Selangor, Malaysia
#536
Hi guys,

I am not sue if you are aware of a project called RockWork that is a Pebble app for Ubuntu Touch. It's open source and almost hitting v1.0. Pebble is involved in that project so should work properly on all watches from original OG to the PTR.

I think that is the best source for documentation, etc.
__________________
Visit my blog at http://lifewithmaemo.blogspot.com or my website at http://www.renegade-uiq.com
 

The Following 3 Users Say Thank You to ajack For This Useful Post:
smoku's Avatar
Posts: 1,716 | Thanked: 3,007 times | Joined on Dec 2009 @ Warsaw, Poland
#537
Originally Posted by ajack View Post
I am not sue if you are aware of a project called RockWork that is a Pebble app for Ubuntu Touch.
Yup. It is a rewrite of pebbled. You can see that if you follow the codebase from revision 1. ;-)
As with a long tradition of Ubuntu apps it does not credit the authors of code being rewritten. ;-)

Originally Posted by ajack View Post
I think that is the best source for documentation, etc.
Nope.
The best source for Pebble documentation are official libpebble and libpebble2.
__________________
smoku @xiaoka.com (SMTP/XMPP) ...:.:....:... pebbled . Poky Fish : sixaxis . psx4m . uae4all
Jolla Phone post-mortem . . . . . . . . . . -> 1+1 VGN-UX390N
 

The Following 6 Users Say Thank You to smoku For This Useful Post:
ajack's Avatar
Posts: 288 | Thanked: 175 times | Joined on Oct 2010 @ Petaling Jaya, Selangor, Malaysia
#538
Originally Posted by smoku View Post
Yup. It is a rewrite of pebbled. You can see that if you follow the codebase from revision 1. ;-)
As with a long tradition of Ubuntu apps it does not credit the authors of code being rewritten. ;-)



Nope.
The best source for Pebble documentation are official libpebble and libpebble2.
I've been told by Pebble representative that some components in libpebble and libpebble2 are deprecated.

Anyway, I'll try your app on my Jolla Phone...
__________________
Visit my blog at http://lifewithmaemo.blogspot.com or my website at http://www.renegade-uiq.com
 

The Following User Says Thank You to ajack For This Useful Post:
Posts: 287 | Thanked: 862 times | Joined on Dec 2015
#539
Originally Posted by abranson View Post
Looks like that only checks for v3 firmware if the hardware id starts with 'snowy_'. Are those the Pebble Times?
Looks like the string to the URL has to be 'release-v3.8' to pick up the latest releases, for all Pebble models. There's a migration firmware to install first though if you're below v3.0.0.
 

The Following 2 Users Say Thank You to abranson For This Useful Post:
javispedro's Avatar
Posts: 2,355 | Thanked: 5,249 times | Joined on Jan 2009 @ Barcelona
#540
Originally Posted by smoku View Post
Yup. It is a rewrite of pebbled. You can see that if you follow the codebase from revision 1. ;-)
As with a long tradition of Ubuntu apps it does not credit the authors of code being rewritten. ;-)
That is actually a tradition of most "app-store-first" platforms. I have plenty of experience here with the Nokia/Ovi store.... and "rewrite" is being too generous here.

That said, we cannot really compete with a full-time employee working on it. "Rewriting" it back from their version should be considered an option. For me at least it looks easier than writing a store UI.

They also removed support for the pre-3.0 firmware on the original models, btw.

Originally Posted by smoku View Post
The best source for Pebble documentation
Sadly no, their "documentation"/implementation is far from complete. Like every other smartwatch, I had to sniff their protocol out, otherwise I still wouldn't know how to upload a binary. Almost nothing of BlobDB is documented there.

The best source for documentation at this point is pebbled, and the fact that Ubuntu guys decided to rip it off entirely and even Pebble employees themselves are using parts of it now should be kind of proof...
 

The Following 9 Users Say Thank You to javispedro For This Useful Post:
Reply

Tags
pebble, pebble time, pebbled


 
Forum Jump


All times are GMT. The time now is 16:00.