yellowdog
|
|
October 29, 2013, 04:03:08 PM |
|
Does your embedded browser has "Same Origin Policy"?
I made my site to give json info to feed the app but i am afraid it will not work and have to implement jsonp.
I'll test myself tomorrow, but now i have some problems with my mac ox image and will download a new OSX 10.8.2.
Keep up the good work!
|
|
|
|
yellowdog
|
|
October 30, 2013, 01:46:21 PM |
|
Does your embedded browser has "Same Origin Policy"?
I made my site to give json info to feed the app but i am afraid it will not work and have to implement jsonp.
I'll test myself tomorrow, but now i have some problems with my mac ox image and will download a new OSX 10.8.2.
Keep up the good work!
It works. No need for jsonp.
|
|
|
|
hivewallet (OP)
|
|
October 30, 2013, 09:05:15 PM |
|
It works. No need for jsonp.
Sorry for the late reply and glad you figured it out!
|
|
|
|
hivewallet (OP)
|
|
October 31, 2013, 06:15:05 PM |
|
Note to all app developers: We have changed our GitHub URL! It is now: https://github.com/hivewalletIf you happen to spot any places around this forum (or elsewhere) where that needs to be changed, please let us know!
|
|
|
|
|
hivewallet (OP)
|
|
November 01, 2013, 10:39:48 AM |
|
Sweet, thanks. We'll test this out for a bit and then maybe bundle it if it all looks good?
|
|
|
|
yellowdog
|
|
November 01, 2013, 11:39:18 AM |
|
I've released my app for satoshirat, it's in your repo, and i've done today a major update.
check it out.
|
|
|
|
knowitnothing
|
|
November 01, 2013, 12:14:28 PM Last edit: November 01, 2013, 12:56:28 PM by knowitnothing |
|
Sweet, thanks. We'll test this out for a bit and then maybe bundle it if it all looks good? Absolutely, it would be excellent if you could report any problems you find. I expect deposits/withdrawals are working correctly, but if you or anyone else has any issues with that I will refund the deposit + some small amount for hitting a bug. How do you handle app updates ? Does the user need to download the newer version manually, is it re-packaged in the next hive release, or is there some other way ? If there's some other way, I've missed it. EDIT: added sentence about refund + bonus in case of bugs.
|
|
|
|
hivewallet (OP)
|
|
November 01, 2013, 12:42:07 PM |
|
Absolutely, it would be excellent if you could report any problems you find.
How do you handle app updates ? Does the user need to download the newer version manually, is it re-packaged in the next hive release, or is there some other way ? If there's some other way, I've missed it.
We will soon have an app repo to which you will be able to send us pull requests. We'll pull them, and the users will be able to download the updates automatically. For the time being we will bundle your updates up with our app, which is auto-updated every Monday. See here: https://github.com/hivewallet/hive-osx/issues/56By the way, you did a really nice job with this. It's extremely responsive.
|
|
|
|
knowitnothing
|
|
November 01, 2013, 01:00:35 PM |
|
Absolutely, it would be excellent if you could report any problems you find.
How do you handle app updates ? Does the user need to download the newer version manually, is it re-packaged in the next hive release, or is there some other way ? If there's some other way, I've missed it.
We will soon have an app repo to which you will be able to send us pull requests. We'll pull them, and the users will be able to download the updates automatically. For the time being we will bundle your updates up with our app, which is auto-updated every Monday. See here: https://github.com/hivewallet/hive-osx/issues/56By the way, you did a really nice job with this. It's extremely responsive. Alright, 1 week for updates looks good enough at least for now. Thanks about the app, I tried to make it responsive enough (but the table for Recent history needs some work regarding that). Congrats on the Hive app, I will see if I can contribute to its code too. Keep up the good work.
|
|
|
|
hivewallet (OP)
|
|
November 03, 2013, 11:58:18 AM |
|
Alright, 1 week for updates looks good enough at least for now.
Should we try to bundle on Monday?
|
|
|
|
knowitnothing
|
|
November 03, 2013, 02:36:57 PM |
|
Alright, 1 week for updates looks good enough at least for now.
Should we try to bundle on Monday? Ok, make sure you grab the latest version present there. I will be releasing an update today.
|
|
|
|
argov
|
|
November 03, 2013, 02:51:45 PM |
|
Nice work. I think I will test it soon (if I find some time )
|
Greetings
1JBwWnqwxGTtqchacyHuhdjWZhYYonBuDf and 19KXWjUZnNPatoMZoRiFMzJFWA7mxBRPX5
|
|
|
|
maco
|
|
November 04, 2013, 07:05:36 AM |
|
interesting
|
|
|
|
jsuder
Full Member
Offline
Activity: 145
Merit: 100
┗(°0°)┛
|
|
November 07, 2013, 02:33:30 PM |
|
FYI, if you need to detect that the app is opened inside Hive (as opposed to a normal web browser), I've added a custom user agent string - inside Hive, navigator.userAgent will now include "Hive/0.9" (or whatever the version is) at the end. I'd say there should be very few cases where the user agent will have to be checked in code, but it's there if you need it. (This is only available in testing releases now, see GitHub releases page.) I've also fixed the problem reported by @knowitnothing: There seems to be some problem regarding overwriting a running application, which causes the bitcoin object to disappear. I can reproduce this every time by doing the following:
1) Create your app X and run it inside Hive; 2) While it is running, overwrite it (i.e. open myappx.hiveapp and confirm the overwrite); 3) Right click and click on Reload; 4) Right click and click on Inspect; 5) The bitcoin object is gone
How to fix the missing bitcoin object: restart the app.
|
|
|
|
knowitnothing
|
|
November 07, 2013, 02:54:34 PM |
|
FYI, if you need to detect that the app is opened inside Hive (as opposed to a normal web browser), I've added a custom user agent string - inside Hive, navigator.userAgent will now include "Hive/0.9" (or whatever the version is) at the end. I'd say there should be very few cases where the user agent will have to be checked in code, but it's there if you need it. (This is only available in testing releases now, see GitHub releases page.)
I've also fixed the problem reported by @knowitnothing
Thanks for the work on Hive. I believe this custom useragent is only useful if you start accepting apps that only redirect to a site, are you planning to do that ? Or are you planning to include a mini-browser app inside hive ?
|
|
|
|
hivewallet (OP)
|
|
November 07, 2013, 08:52:32 PM |
|
Thanks for the work on Hive.
I believe this custom useragent is only useful if you start accepting apps that only redirect to a site, are you planning to do that ? Or are you planning to include a mini-browser app inside hive ?
We discourage it of course, but there may be some exceptions. And re: mini-browser app, there is no such plan, no.
|
|
|
|
hivewallet (OP)
|
|
November 09, 2013, 05:48:24 PM |
|
I've released my app for satoshirat, it's in your repo, and i've done today a major update.
check it out.
Oh wow, we totally missed this, sorry yellowdog! https://github.com/hivewallet/hiveapp-satoshiratCan you please post a screenshot here so that it stands out more? Thanks!
|
|
|
|
yellowdog
|
|
November 13, 2013, 01:03:58 PM |
|
I've released my app for satoshirat, it's in your repo, and i've done today a major update.
check it out.
Oh wow, we totally missed this, sorry yellowdog! https://github.com/hivewallet/hiveapp-satoshiratCan you please post a screenshot here so that it stands out more? Thanks! Some pics, thx!
|
|
|
|
|