prakash1307 / siphon

Automatically exported from code.google.com/p/siphon
0 stars 0 forks source link

Badge Notifications #412

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I am a new user of the 2.3 beta, so I am not sure if this is a bug or a new 
feature request (sorry). I noticed that there are no badges (a count) 
indicating a missed call or VM on the homescreen icon. Is that a bug within 
IOS4 or is that a new feature request?

In any event, terrific app!

Original issue reported on code.google.com by brian_s1...@yahoo.com on 5 Jul 2010 at 5:40

GoogleCodeExporter commented 8 years ago
I might have jumped the gun on this request. I did some research and it appears 
that badge counts only worked via push in ios3. However, there is a new feature 
in ios4 that allows for local notifications (no push apn involved). Perhaps 
this request can be added to the ios4 multitasking issue currently being 
developed? Based on what I read, local notiifications in ios4 would allow for:

1) Badge count notification on HS icon
2) pop-up notification for incoming call, new voicmail...etc (as long as app is 
backgrounded)

As I said before, I really like this app. I have tried almost all VOIP apps out 
there and Siphon is nearly perfect! Thank you for all your hard work.

Original comment by brian_s1...@yahoo.com on 6 Jul 2010 at 2:39

GoogleCodeExporter commented 8 years ago
Since 2.3rc3, badge is display on icons Recents and Voicemail
They are not displayed on icon of application

Original comment by samuelv0...@gmail.com on 7 Jul 2010 at 7:50

GoogleCodeExporter commented 8 years ago
I am new on Siphon and have just made the version 2.3 work on the simulator. 
But I could not make the badge display on the Recents and Voicemail icons as 
mentioned in your comment 2. Can you help me to display the badge notification? 
I really like your work.

Original comment by buckingh...@googlemail.com on 18 Jun 2011 at 11:44

GoogleCodeExporter commented 8 years ago
I cannot see the badge notification on iPhone 3GS, iOS 4.2.1 with the 
compilation version. Also, the "Recent Calls" table has two colors. They are 
black for outgoing calls and red for incoming calls (in fact all others). The 
code in RecentsViewController.m shows that

  if (call.type == Dialled)
    label.textColor = [UIColor blackColor];
  else 
    label.textColor = [UIColor redColor];

It seems call.type==Missed is not used here and they are all call.type==Dialled 
(outgoing call) and call.type==Received (incoming call). I did try to add a 
color for call.type==Missed but the results are the same. Any suggestion to add 
a different color for missed calls in the "Recents" table ?

Original comment by kkp2...@gmail.com on 10 Jul 2011 at 2:48