[Q] No trafficcounter/netcounter for WP7 available? - HD2 Windows Phone 7 Themes and Apps

Hey Again!
I´m wondering if I´m not able to use the searchfunction in a useful way (*g*) or if it´s just the fact that WP7 is still a baby...
There´s no NetCounter (Data Traffic Counter) available for WP7, right? Doesn´t this fact bother anyone except me? I would really appreciate monitoring my traffic due to the fact my data volume is limited (500 mb)...
Any ideas?

Need this also!
I also need a net counter / usage counter for Wp7, as currently, i have no idea how much data i am using?
Anyone?

I think this is hard to realise. Due to the architecture of Windows Phone 7 you cannot run an application, like a traffic analyzer in the background.For example you download an app from the marketplace, you have to run the traffic counter AND the marketplace app.
But I`m not sure, though....

Any sort of 3rd party data counter would need multitasking. WP7 will have multitasking in Q3 2011. So no data counters until then
I guess MS made the OS with unlimited data plans in mind...

I´m not quiet sure, but as far as I know there aren´t REAL unlimited data plans available here in europe, are they? In the very most cases it is some kind of a flatrate but with bandwith restriction after 250mb-5GB of usage (amount depends on provider & plan)

Exactly. But you can look online how much traffic you have used an how much minutes you have left. I think most people here in germany don't need a traffic counter.

Patric1972 said:
Exactly. But you can look online how much traffic you have used an how much minutes you have left. I think most people here in germany don't need a traffic counter.
Click to expand...
Click to collapse
I can´t check anything online, my provider doesn´t support such a service...so in this case: not true! (sorry ) I really do NEED a counter...

Ok, I got your point...
I think there's no other way as to wait for mango update in Q3/2011.

Mango is on phone, traffic counter?

Related

cellGPS for Windows Mobile? Upload GSM cell-id on periodic basis to HTTP server?

I'm looking for a simple application that will run in the background, and send the current GSM/UTMS cell-id to a web server on a periodic basis (via HTTP GET).
Basically a program like cellGPS (http://www.vikinggames.hu/product.php?id=11) but for Windows Mobile. I don't really care about GPS info, since that just sucks power (and doesn't work indoors).
What I'm trying to do here is enable my home automation system to know where I am, without sucking my phone's battery to death (especially since GPS won't work indoors). GSM/UTMS cell-id is 'close enough' for me.
The application would just hit a webserver on my home machine with the current cell-id (http://webserver.com/receiver.php?cellid=4233-23) on a definable period. My own app on my webserver would record that data into a database. I can then go back and use that data to let my home auto system know "hey, Justin's almost home, turn on the HVAC, lights, etc".
It needs to be able to run in the background, no annoying icons on the screen, and start up on phone reset.
I figure since it's just sending the cell-id (which is always available), it would be rather efficient and not use much battery power (especially since I usually leave Activesync on "instant" so the data connection is usually up anyway).
Other extensions to this would let my server update twitter/facebook/etc with "Justin's at ... home/work/etc now.".
Any ideas?
wow this would be a great aplication
Two programs come to mind.... Comm Mgr Pro and rk-Location Switch.
I have not really played with these two programs much, but they do Cell tower based switching and might include some of the other features you require (but I do have to admit that they do not have all the features you want).
Dale Lane posted some c# code to programmatically get the cellID of the current tower.
The rest is pretty simple - a place to enter the url and then periodically issue HTTP GET requests.
I guess I could try to cook up something when I have some time.
Well I went and coded a sample app anyway. It just reads the current tower info at the specified interval. Is this the information that you require?
Just extract the zip to the device and run the .exe.
Note: It requires .NET Compact Framework 2.0
this sounds pretty cool. remember that cellid information is good for triangulating to about 1000 meters. you can get "justin's on his way home, turn on the AC" but probably not "justin's in the shower, begin youtube upload"
newb5000 said:
Well I went and coded a sample app anyway. It just reads the current tower info at the specified interval. Is this the information that you require?
Just extract the zip to the device and run the .exe.
Note: It requires .NET Compact Framework 2.0
Click to expand...
Click to collapse
Works great! even though this topic was supposed to be on logging it to a web database, I am not too keen on that since data charges are expensive. I would be more interested in an internal database where I can simply attach a "friendly name", say the location of the site (ie. corner of main and first st.) to some cell sites (or a group of sites) in the internal database. Similar to what nicetrack used to do on previous WM versions. http://forum.xda-developers.com/showthread.php?t=320055
newb5000 said:
Well I went and coded a sample app anyway. It just reads the current tower info at the specified interval. Is this the information that you require?
Just extract the zip to the device and run the .exe.
Note: It requires .NET Compact Framework 2.0
Click to expand...
Click to collapse
I will check as soon as I get my Kaiser back -- I managed to shatter the screen over the weekend. doh. This sounds EXACTLY like what I'm looking for.
Someone else mentioned data charges, which I don't care about, since I'm on unlimited data (AT&T won't even sell the things without the unlimited data plan now).
Actually, I still have my older TyTN somewhere. Let me dig it up and give this a try.
jasonchan said:
Works great! even though this topic was supposed to be on logging it to a web database, I am not too keen on that since data charges are expensive. I would be more interested in an internal database where I can simply attach a "friendly name", say the location of the site (ie. corner of main and first st.) to some cell sites (or a group of sites) in the internal database. Similar to what nicetrack used to do on previous WM versions. http://forum.xda-developers.com/showthread.php?t=320055
Click to expand...
Click to collapse
There's a program that sort of does this now, called Trackme -- but it only does GPS as far as I know. Adding DB code would probably add a whole lot of complexity (and CPU power).
I'm sure it's doable, though, but I would hope it wouldn't be in this app. I have enough crap running in the background eating precious CPU cycles.
I wish I had a Windows machine to do development on. I'm Mac/Linux only, and don't have access to Visual Studio anymore.. I wrote an app to do this for the iPhone, but it can't run in the background due to SDK limitations. It's annoying that Microsoft hasn't made the WinMo SDK work on other platforms (although I guess Apple is doing that with the iPhone, so I don't have much room to talk).
The "goal" of this desired application is to be as lightweight as possible and offload all processing to a real computer. My phone doesn't need to do all of the work.
I can't imagine this would use much bandwidth, anyway. Even if you updated every five minutes, that's far less than 50kb per day, assuming a 64 byte URL + all HTTP and TCP headers. It'd add up to around 1.5 megabytes a month. I'd bet it'd be closer to 800-900kb/month. That's nothing compared to email/etc traffic. I would hope EU/etc carriers aren't so bad that 1.5mb a month would put you over a limit...
jasonchan said:
Works great! even though this topic was supposed to be on logging it to a web database, I am not too keen on that since data charges are expensive. I would be more interested in an internal database where I can simply attach a "friendly name", say the location of the site (ie. corner of main and first st.) to some cell sites (or a group of sites) in the internal database. Similar to what nicetrack used to do on previous WM versions. http://forum.xda-developers.com/showthread.php?t=320055
Click to expand...
Click to collapse
I tested it yesterday when driving home from work. Tower changes were very frequent during my drive home. But lets say that a HTTP GET request (depending on the length of the URL) is on average 100 bytes. Lets say in a day you switch towers 200 times. That would result in just under 20 kilobytes of data usage in a day. I actually calculated this for myself because I also initially thought that one would get a large bill at the end of the month for data usage, but it would seem that this isn't the case.
One could also limit the web requests to only "bookmarked" Cell IDs.
I like the idea of the original poster even though I cannot see how I could use it personally, since I do not have a home automation system.
Regarding more friendly names - I remember that I had set it up on one of my first phones to receive cell broadcast messages from the towers which included the tower friendly name. Haven't tried since, though.
The data that is made available in Windows Mobile is the following:
http://msdn.microsoft.com/en-us/library/aa921533.aspx
Don't see any friendly names of towers though
I thought of adding a "bookmark" button so that one can bookmark the current Cell ID (and possibly assign a friendly name) but this would be very awkward while driving (and the frequent tower changes).
Google has a database with Cell IDs and uses them in Google Maps but good luck getting a copy of their database
norelidd said:
this sounds pretty cool. remember that cellid information is good for triangulating to about 1000 meters. you can get "justin's on his way home, turn on the AC" but probably not "justin's in the shower, begin youtube upload"
Click to expand...
Click to collapse
Hah!
I only need 1000 meter resolution. GPS is definitely more accurate, but it would kill the battery in 6 hours flat.
Maybe when the third generation of GPS sats start going up in a few years, GPS receivers will use less power (since the sats will be much more powerful and supposedly will reach inside most buildings).. but that's 2015 at the earliest. Who knows what HTC/etc will come out with by then.
jmat said:
I will check as soon as I get my Kaiser back -- I managed to shatter the screen over the weekend. doh. This sounds EXACTLY like what I'm looking for.
Someone else mentioned data charges, which I don't care about, since I'm on unlimited data (AT&T won't even sell the things without the unlimited data plan now).
Actually, I still have my older TyTN somewhere. Let me dig it up and give this a try.
Click to expand...
Click to collapse
Only saw your post after I posted mine.
There aren't any web requests yet though, I just wanted to confirm that I was on the right track (through you testing it ). I'm willing to give it a bash because I'll learn something through the process.
Some questions arise:
Should the app dial a connection automatically, or just not send out requests if there is no active connection?
Still need to figure out how to get it to run in the background properly
I'm wondering how it should function if the phone is in standby
newb5000 said:
I tested it yesterday when driving home from work. Tower changes were very frequent during my drive home. But lets say that a HTTP GET request (depending on the length of the URL) is on average 100 bytes. Lets say in a day you switch towers 200 times. That would result in just under 20 kilobytes of data usage in a day. I actually calculated this for myself because I also initially thought that one would get a large bill at the end of the month for data usage, but it would seem that this isn't the case.
One could also limit the web requests to only "bookmarked" Cell IDs.
I like the idea of the original poster even though I cannot see how I could use it personally, since I do not have a home automation system.
Regarding more friendly names - I remember that I had set it up on one of my first phones to receive cell broadcast messages from the towers which included the tower friendly name. Haven't tried since, though.
The data that is made available in Windows Mobile is the following:
http://msdn.microsoft.com/en-us/library/aa921533.aspx
Don't see any friendly names of towers though
I thought of adding a "bookmark" button so that one can bookmark the current Cell ID (and possibly assign a friendly name) but this would be very awkward while driving (and the frequent tower changes).
Google has a database with Cell IDs and uses them in Google Maps but good luck getting a copy of their database
Click to expand...
Click to collapse
Tower switching will happen quite fast in big populated areas. That's why I was just going for every few minutes and not "as the tower changes".
It's too bad the towers don't "advertise" their GPS coordinates along with the other tower data. It seems like that would have been really easy to stick in the UMTS standard.
I'm surprised Google hasn't open sourced that database, or at least made an API library for it. Afterall, their users are the ones who discovered it all, not them -- Google Maps just records GPS coordinates + cell IDs and uploads them when you run the Google Maps location. I've seen that app upload several hundred kb during some runs.
Going back to the 'post on switch' thing. That might be a neat option -- to send a GET on every tower switch.. I'm going back and forth in my head on if that's a good idea or not. It'd be interesting to see how that hits battery life, though. (Since I have ActiveSync with "always push" enabled, I bet it doesn't make much of a difference).
First beta
Hi guys,
Apologies for the delay - I've been terribly busy.
I managed to create the app so it's ready for testing.
Attached is the cab file. The app consists of two components - the configuration utility and the service. The service is responsible for making the web requests and is launched at startup. You can use the configuration utility to adjust the settings as well as monitor what the service is doing.
The service will automatically dial your data connection when a web update is necessary, but it can also work via WiFi - although I don't see why you would use it via WiFi. It also supports websites that require Windows Authentication (Kerberos or NTLM should work, but do test it).
I think the app should be pretty self explanatory, but please do post if you have any questions or experience any problems.
FIY - the last error (if there is one) is stored in a log file located in:
Program Files\CellID Updater\cidlog.txt
Hope you like it!
EDIT: An update is available on the next page. I'm leaving this attachment as is just for reference purposes, but you should download the one on the next page.
CommMgrPro is creating a very big database automatically with operatorID-Cell/LAC-GPS coords sent (automatically) by the users (they can track their movements in realtime with googlemaps). Obviously GPS coords are only sent by GPS enabled devices. You can change the URL where the data is posted (HTTP GET) to point your site and I can give you a free license. Currently 3000 cells registed with gps coords and growing as the users moves....
Dani
newb5000 said:
Hi guys,
Apologies for the delay - I've been terribly busy.
I managed to create the app so it's ready for testing.
Attached is the cab file. The app consists of two components - the configuration utility and the service. The service is responsible for making the web requests and is launched at startup. You can use the configuration utility to adjust the settings as well as monitor what the service is doing.
The service will automatically dial your data connection when a web update is necessary, but it can also work via WiFi - although I don't see why you would use it via WiFi. It also supports websites that require Windows Authentication (Kerberos or NTLM should work, but do test it).
I think the app should be pretty self explanatory, but please do post if you have any questions or experience any problems.
FIY - the last error (if there is one) is stored in a log file located in:
Program Files\CellID Updater\cidlog.txt
Hope you like it!
Click to expand...
Click to collapse
Hey all - my first post.
I must say, it's outstandingly honorable that you share your skills with us. So good.. (haven't installed the tool yet, hope it's no virus or tv-on/off-switcher)
One question @jmat: How do you process the cellid once it is http'd to your server? Is there a webservice that maps cell-ids to gps?
Frouk
frouk said:
I must say, it's outstandingly honorable that you share your skills with us. So good.. (haven't installed the tool yet, hope it's no virus or tv-on/off-switcher)
Click to expand...
Click to collapse
Thanks and no, it's not a virus / trojan / <insert something bad here>
One thing I forgot to mention is that if the device goes into standby, the service will be "paused". Then, when the device comes out of standby, the service will resume where it left off. I'm not sure whether this is acceptable behaviour for the app, but I considered the alternative - preventing the device from going into standby will drain the battery very quickly. So you would choose when the service should send out updates by taking your device out of standby.
Another thing: you can configure how often the service checks for a new tower and whether it should send out an update if the tower is different or the same since the last check.
I'm still wondering how I can put this app to good use, personally. I don't have a home automation system and I don't need to be tracked by anyone at home. Any ideas on what other uses this app could have?
newb5000 said:
Thanks and no, it's not a virus / trojan / <insert something bad here>
One thing I forgot to mention is that if the device goes into standby, the service will be "paused". Then, when the device comes out of standby, the service will resume where it left off. I'm not sure whether this is acceptable behaviour for the app, but I considered the alternative - preventing the device from going into standby will drain the battery very quickly. So you would choose when the service should send out updates by taking your device out of standby.
Another thing: you can configure how often the service checks for a new tower and whether it should send out an update if the tower is different or the same since the last check.
I'm still wondering how I can put this app to good use, personally. I don't have a home automation system and I don't need to be tracked by anyone at home. Any ideas on what other uses this app could have?
Click to expand...
Click to collapse
The configuration is just perfect - that way one can decide when to update just by letting the device go to sleep or not. Another thing: am I right that this app will never be as accurate as Google maps "my location"? It uses triangular approximation with more than one cell-id, right? I experienced it to be very accurate, even being on the train it exactly locates my position, amazing.
I personally intend to use such kind of app for reality/virtuality games where website visitors can track something or someone on the web and then go outside into the real world and do something or meet someone.
But jmats' idea is also amazing.
Cell name
Years ago I had Ericsson R320 (BTW great phone). It showed cell name e.g. "city centre" on the screen besides op name. I dug up my eric from the closet and this option still works. It would be great to have this as a today plugin Do you know something like that?
Handy Use of App
newb5000 said:
I'm still wondering how I can put this app to good use, personally. I don't have a home automation system and I don't need to be tracked by anyone at home. Any ideas on what other uses this app could have?
Click to expand...
Click to collapse
Maybe you could mount a web server in your home pc (pretty simple) and track your device if it gets lost or stolen... It would be nice to recover your $700dlls phone right.

Redirect with wireless tether possible?

Hi all!
I'm a happy g1 user, who often use the wireless tether for root users-app. Really like this app, I think its one of the best for android.
On my study places theres no public wifi point, so no wireless internet access.
I have a limited data plan, so I can go online(if its urgent) while "studying" .
I enabled the access control, otherwise the other ones would consume my traffic volume in a few days
My question is:
Would it be possible to make an redirect for the other people, who connect to my phone?
I mean, when they open the browser and try to google ^^ they would be redirected to a page on my phone/or a redirect to my laptop?
It would be great to give them some infos for e.g. an running ircserver.
If someone has a idea, how to do that, I would be really happy
Greetings, scheich
You would have to rewrite the iptables rules used by tether, but yes, definitely possible. Why though? Wouldn't it be better to just keep them out entirely?
scheich said:
Hi all!
I'm a happy g1 user, who often use the wireless tether for root users-app. Really like this app, I think its one of the best for android.
On my study places theres no public wifi point, so no wireless internet access.
I have a limited data plan, so I can go online(if its urgent) while "studying" .
I enabled the access control, otherwise the other ones would consume my traffic volume in a few days
My question is:
Would it be possible to make an redirect for the other people, who connect to my phone?
I mean, when they open the browser and try to google ^^ they would be redirected to a page on my phone/or a redirect to my laptop?
It would be great to give them some infos for e.g. an running ircserver.
If someone has a idea, how to do that, I would be really happy
Greetings, scheich
Click to expand...
Click to collapse
Hmm, year sure, but I think it would be interesting to chat "offline" with each other, and talk about stuff of the course.
Thx for the info about the iptables, I will take a look at it.

Removal of 3G download limit

Hello,
If anyone starts WP8 "jailbreaking" it would be nice to find a way to increase the Cellular Data download size limit. It's quite annoying to have it limited to 20MB.
If anyone finds a solution, please post it here. I will try to find also a solution but I am not that good in WP hacking
mmuntean2 said:
Hello,
If anyone starts WP8 "jailbreaking" it would be nice to find a way to increase the Cellular Data download size limit. It's quite annoying to have it limited to 20MB.
If anyone finds a solution, please post it here. I will try to find also a solution but I am not that good in WP hacking
Click to expand...
Click to collapse
I download yesterday 21MB (Pandas vs Ninjas) and after 39MB (Pandas vs Ninjas 2) without any problem on my Lumia 820. :good:
Nothing size limit on the "Cellular Data" download with "Orange CH". :good:
mmuntean2 said:
Hello,
If anyone starts WP8 "jailbreaking" it would be nice to find a way to increase the Cellular Data download size limit. It's quite annoying to have it limited to 20MB.
If anyone finds a solution, please post it here. I will try to find also a solution but I am not that good in WP hacking
Click to expand...
Click to collapse
i dont thk it is limited,i have downloaded a file at lest 60mb
RE: limit
Well I have tried yesterday to download a 65MB file and not chance, kept saying it needs WiFi, could be a limit from my operator?
In WP7, this limit was imposed by the operator. I fully expect it is the same on WP8.
We did discover how to change the limit on WP7, but it required accessing the filesystem. So far as I know, nobody has managed this on WP8 yet.
GoodDayToDie said:
In WP7, this limit was imposed by the operator. I fully expect it is the same on WP8.
We did discover how to change the limit on WP7, but it required accessing the filesystem. So far as I know, nobody has managed this on WP8 yet.
Click to expand...
Click to collapse
Is there anything equivalent to rooting or jailbreaking and modifying the system like on Android and iOS? I just got an 8X yesterday and it's my first Windows phone.
For WP7 there are several types of unlocks although a Full Unlock regularly requires you to flash a CustomROM which is not possible for some Devices.
As for WP8 devices there currently are only official developer unlocks that are still heavily restricted in changing the system. At the moment none of the WP8 device's security has been broken, we'll have to wait. The whole system changed underneath so what Devs know about WP7 won't help them too much here.

full access to the internet from semi restricted network??

hey guys
i got usb tethering reverse through an app from google play and it is ok but there is an issue facing me that is how to get full access to the internet from my work PC through my mobile as the company i work for has hiden or banned entertainment sites such as facebook ,youtube,4shared,mediafire,...etc
and every time i share my pc internet connection to my mobile and type for example facebook.com that message comes (u have no access to faceboo.com) but other non_entertainmental sites such as news sites cnn,bbc are ok
is there any body facing that issue with me?
what to do ??is there any program for proxy or these stuffs will help
thank u in advance
jjojo525 said:
what to do ??
Click to expand...
Click to collapse
Get a new job or talk with your boss about your "problem" and he might help you with getting a new job.
ThaiDai said:
Get a new job or talk with your boss about your "problem" and he might help you with getting a new job.
Click to expand...
Click to collapse
sorry,it was better that u did not respond to my post
jjojo525 said:
hey guys
i got usb tethering reverse through an app from google play and it is ok but there is an issue facing me that is how to get full access to the internet from my work PC through my mobile as the company i work for has hiden or banned entertainment sites such as facebook ,youtube,4shared,mediafire,...etc
and every time i share my pc internet connection to my mobile and type for example facebook.com that message comes (u have no access to faceboo.com) but other non_entertainmental sites such as news sites cnn,bbc are ok
is there any body facing that issue with me?
what to do ??is there any program for proxy or these stuffs will help
thank u in advance
Click to expand...
Click to collapse
Network restrictions is a common thing in the workplace and bypassing these restrictions can have severe consequences (e.g. you might lose your job).
The restrictions differ from company to company and largely depend on how they are implemented, so there isn't really a sure-fire "Here's what to do if you want to access Facebook, etc."
Because this isn't a phone problem, there isn't really anything that you can do.
You only have 2 options.
1. Get friendly with the IT department to see if they can lift some restrictions (risky and unlikely)
2. Use your own mobile data
little-vince said:
Network restrictions is a common thing in the workplace and bypassing these restrictions can have severe consequences (e.g. you might lose your job).
The restrictions differ from company to company and largely depend on how they are implemented, so there isn't really a sure-fire "Here's what to do if you want to access Facebook, etc."
Because this isn't a phone problem, there isn't really anything that you can do.
You only have 2 options.
1. Get friendly with the IT department to see if they can lift some restrictions (risky and unlikely)
2. Use your own mobile data
Click to expand...
Click to collapse
thank u dear

A list of features that lacks in Windows phone 8

Hi everybody, I would like to make a list of those features that lacks on windows phone, even if we are only at very early stages, maybe with the arrive of unlocks some of them could be added, in future..If you have any suggestions I can edit the list
P.S. I consider the GDR3 improvements alredy achieved (like a decent task manager, FM radio..)
-A FILE MANAGER
(yeah, I know that on the market already exists something, but they are definetly FAR from a real file manager. Anyway nokia/microsoft said that in the next months would come out http://www.tuttowindowsphone.net/wp-content/uploads/2013/08/nokia-lumia-file-manager.jpg , we will see..)
-FLASH PLAYER
(on windows RT exists and works, as in future the WP8 kernel would be almost the same of WinRT, probably we will se it..or at least I hope so)
-LIVE TILE TOOGLE
(Right now we have only shortcuts to settings, would be more useful if the live tile would act directly as a toogle. Maybe someone will give it an attempt :fingers-crossed: )
-A NOTIFICATION LED
(some phones does have the windows logo acting as a led, BUT it works only to notify some battery status (a bit useless..). If it should be used as a proper notification led would be amazing..or at least the camera flashlight could be used for that (ok, this is a desperate suggestion LoL)
-COSTUMIZABLE RINGTONES AND ALERTS RELATED TO THE APP
(A different sound for whatsapp, sms and e-mail. I personally use the phone at 90% in vibration/silent mode, But I know that it could be useful)
-A CUSTOMIZABLE LOCKSCREEN
(I mean lock-patterns and some other useful features..I mean, windows phone 8 lockscreen can be used better, you know..)
-A QUICK WAY TO MANUALLY ADJUST SCREEN BRIGHTNESS
Sometimes the Authomatic sensors don't work well and is necessary to switch the brightness manually.
-A BETTER PUSH NOTIFICATIONS MANAGEMENT (thank's to @Life'sGood for reporting and to @GoodDayToDie for explainations)
Sometimes are delayed
This really belongs in General; it is neither a question (or answer) nor related to troubleshooting.
With that said...
The only thing really standing in the way of an on-device file browser is the need for somebody to write it, but that doesn't mean it'll be worth much to do so right now; until I or somebody else gets more permissions working (ideally, all of them), the amount of the file system which is readable (never mind writable) is extremely small from an app's perspective. To get an idea of what I mean, take a look at my Webserver Native Access app - the all-capabilities version, if you have a Samsung phone - and see for yourself just how little of the system is accessible.
Even completely leaving aside the permissions issue (ha!), Flash player support is somewhat unlikely. First of all, it struggles a little even on the Surface RT, which has nearly twice the CPU power of any WP8 model right now (GDR3 opens the path for quad-core WP devices, but they aren't here yet). Second, the kernel may be the same but the user-space libraries are not; a lot of system components that Flashplayer depends on are probably missing from WP8.
Believe me, such toggles have been attempted, and they will go on being attempted. It'll happen eventually...
Some phones actually have a notification LED, even. There are (unofficial) APIs that could probably be used to control it, too... I wouldn't hold your breath on this one, though. In any case, you won't get colors unless there's actual multiple color elements there to work with; the best you could di is different flash/fade patterns.
Update 3 (GDR3) brings some additional controls over notifications. However, I believe you're right that they still don't offer per-app sounds (though you can set the sound for apps, as a class, I think).
Lock patterns are pretty darn weak and easy to break, but in general I agree with the concept of having more control over the lock screen, and additional features.
Not a problem that I've had, but I can see how it could be. This probably falls under the toggle tiles request, actually; have the ability to create tiles that increase or decrese the brightness.
Sorry for the bad section, I was looking at the same moment at general section and at Q&A and I chose the wrong browser tab, my fault (don't know how to change section)
Anyway thank you for the reply I think that the main problem for indipendent developers is time, because every 18 months windows stops the support on the actual OS and switches to another new (WP8 support is planned to be killed in july 2014, after that it will be an update to extend "phone life" of 6 months, in total: 2 years). After that date will come out another OS but nobody knows if it will be "similar" to WP8 or something totally different (probably the latter option)..and everything probably would start from the scratch. I think that all the OSs producers are making BIG efforts to make you change phones after exately two years LoL
P.S. When I talk about brightness control, I can't figure out how a live tile could directly make it (swiping on it?), it can only turn on/off. My idea was that could be useful something like a swipe on the status bar on the top of the screen, like cyanogenmod does (I don't want to compare android to windows because they are totally a different concept, so I generally don't want to mention functions present in other OSs that could be ported, IMHO it's quite useless thinking in this way.) but I suppose that this is quite impossible on a programmative side :s
You'd have two (small) tiles for brightness control, one to increase and the other to decrease. It would be a little messy and would need to go in significant steps, but it's possible.
I think it's not a bad idea I've just found out that on offical WP8 site exists a section dedicated at suggestions about features to add to windows phone, and many pepole voted on that site..but Microsoft NEVER listened to them LoL probably the task manager improvement in GDR3 will be the first feature accepted by Microsoft from that lists. Anyway the requests on the officiale site are quite the same on my post (file manager is STRONGLY requested)..nobody is asking for flash player or for led notification (quite strange IMHO but that's it).
P.s. any idea about how to reach bootloader (I'm talking about ativ s)? I suppose that with a simple boot is impossible, even pressing a combination of buttons will not work..
There have been multiple items implemented from uservoice, although the custom SMS tones and application closing are certainly notable for having been long-requested and taking until now to be provided.
No idea on the bootloader. I haven't been looking for it in particular, though; not my area of interest.
Technically, you can implement a media stream source to support flash (i believe there is one already on the interwebz).
However, flash is really not meant for mobile devices (which is why very few mobile OSes support flash out of the box), because it wasn't intended to be used on devices with such low computing power. So even if you were to have a flash player, you wouldn't be able to do much with it until your battery drops dead or your phone starts turning into plastic(or aluminum in some cases) soup.
There is also an increasing abuse of flash advertisement all over the internet (which is bad from many points of view), which hurt mobile internet browsing quite a lot on devices with flash support. I just wish google & adobe would stop supporting this dark ages format and move on to HTML 5
Yeah but..just to make a famous example, look at youtube. Many videos are locked down for mobile devices. Combining a flash player and a browser that supports desktop as user agent, you can go beyond this limit. Ok, the result is that it works quite bad, but at least it works..
gigsaw said:
Yeah but..just to make a famous example, look at youtube. Many videos are locked down for mobile devices. Combining a flash player and a browser that supports desktop as user agent, you can go beyond this limit. Ok, the result is that it works quite bad, but at least it works..
Click to expand...
Click to collapse
I don't think that the format (flash) is the problem here, you can always watch these videos with an unofficial app, like Metrotube or Tunetube. And I doubt they use some kind of flash player, it's just not allowed on mobile devices by the uploader/youtube I think.
To the OP, what do you mean with "features that lacks in Windows phone 8", something MS should fix or hackers should provide as features? Because a file manager would completely be against windows phone's locked OS, every app is sandboxed and can't access other app's storage, which has its reasons for security. A file manager will never be possible, except for th case they change the whole OS. On iOS, it's pretty much the same, and with a jailbreak you get a file manager (if you want to). And you can brick the whole system, can make apps crash or even modify them, which would cause a lot of trouble for Microsoft.
I have to try those unofficial apps, I've never considered to use them Regarding the lacking of features I mean that with a system well locked down like WP8 is, I think that microsoft should put more effort to provide some features that nowdays are considered basic (you know, a notification led is useful and doesn't require any particular effort from microsoft or manufacters. Even (real) toogglers are essential but they are not in here..don't know why ) Of course I understand that not all the features can be provided by microsoft due to security reasons, and here comes developers' work
P.S. regarding file manager I suppose that, if it will would ever come out, would have been thanks to developers, but as I said in OP, nokia probably would provide it. Don't know if it's true, but let's see what comes next! Some hours ago at Abu Dhabi, at lumia phablet presentation, came encouraging signals to encrease the number of the apps for windows phone. Ok, it doesn't mean anything and Personally I don't use instagram but more apps means more people that will adopt WP8..and more people will call more developers (hopefully) and micosoft ecosystem would finally start (even if there's to solve the "problem" of Windows RT/Windows Phone, first).
As you said even iOS is closed-source but (even if I don't like making comparisons between OSs because they aren't meant to work in the same way) I think that the interest in that platfom made possible to create the powerful mobile substrate, to make even heavy modifications to the system.
But even without moddings, I mean..iOS now has quite al the essential features that a phone requires (quick and real toogglers, a camera flash that tries to act as a notification led..ok, not a file manager but it has a download folder, a quite "useful" lockscreen, battery percentage..), so IMHO is quite usable out of the box because apple now provides many of the basic features expected to be on a phone. So I think that for apple devices jailbreaking is not as necessary as was in the past. WP8 on the contrary strongly needs a jailbreak because is not a fully mature OS..
ANOTHER FEATURE THAT LACKS (IMHO): the new versions of office are not as useful as office 2010 in windows mobile. Who remembers WM, office 2010 was so similar at the desktop version (even fonts could be changed and added!!!)..but since then, the most part of features disappeared, so office mobile stopped being as useful as it was before for business people nobody will care about that (developers can't do anything for this, and microsoft will never provide those features..but I miss it. So I didn't put this in the list because it's more a "personal" thing.
And I was thinking that even a windows phone with the stylus would be useful especially with one note, that on PCs and tablets is ready to be used with a stylus and I found this fantastic. But even this is a "personal" desire that will never come LoL
::facepalm::
snickler said:
::facepalm::
Click to expand...
Click to collapse
Why? I don't think I'm that wrong, there's no real possibility to have a fully featured file manager on WP, is it?
th0mas96 said:
Why? I don't think I'm that wrong, there's no real possibility to have a fully featured file manager on WP, is it?
Click to expand...
Click to collapse
In my inner eyes i see next user/professional developer asking if there was a patch to adjust screen brightness to personal needs in more than just the dictated three steps.
Answer: Buy an other phone or program your own OS.
A very simple feature is missing, App update notifications from Store.
WP8 now doesn't seems to be telling me when the apps on my phone has been updated unless I went to look for them. Its only then that the tile shows 1 update available. HELLO???!!!
So that means I have to list out the apps I've downloaded and look for each and every single one of their updates?
How can Microsoft and OP miss this one out?
And my clock isn't synced even if I set it to auto, sometimes it jumps AM/PM or even months!
Life'sGood said:
A very simple feature is missing, App update notifications from Store.
WP8 now doesn't seems to be telling me when the apps on my phone has been updated unless I went to look for them. Its only then that the tile shows 1 update available. HELLO???!!!
So that means I have to list out the apps I've downloaded and look for each and every single one of their updates?
How can Microsoft and OP miss this one out?
And my clock isn't synced even if I set it to auto, sometimes it jumps AM/PM or even months!
Click to expand...
Click to collapse
Added in OP
@Life'sGood and @gigsaw: That's a problem with your phone, not the OS as a whole. I guarantee you that WP8 fully supports app update notifications and clock sync. If yours doesn't, that's a problem with your phone, specifically. Blaming Microsoft for it is nonsense and won't help you fix the problem.
Now, as for fixing the problem... do you have an active SIM card in the phone? If so, does it have a data connection? That's most logical reason I can think of for the app update notifications to not appear; no connectivity when the phone tries to check. The clock can sync off the towers as well (also needs a SIM, I suspect) but it can also sync off GPS satellites (which have extraordinarily accurate clocks, and broadcast time signals that anything with a GPS receiver can pick up even if it can't get an accurate locations fix).
The most likely solution, honestly, is to hard-reset your phone. You might want to call support or take the phone in to a Microsoft store or something first, though; hard-reset will wipe the data (though that's most likely what they'll tell you to do anyhow).
GoodDayToDie said:
@Life'sGood and @gigsaw: That's a problem with your phone, not the OS as a whole. I guarantee you that WP8 fully supports app update notifications and clock sync. If yours doesn't, that's a problem with your phone, specifically. Blaming Microsoft for it is nonsense and won't help you fix the problem.
Now, as for fixing the problem... do you have an active SIM card in the phone? If so, does it have a data connection? That's most logical reason I can think of for the app update notifications to not appear; no connectivity when the phone tries to check. The clock can sync off the towers as well (also needs a SIM, I suspect) but it can also sync off GPS satellites (which have extraordinarily accurate clocks, and broadcast time signals that anything with a GPS receiver can pick up even if it can't get an accurate locations fix).
The most likely solution, honestly, is to hard-reset your phone. You might want to call support or take the phone in to a Microsoft store or something first, though; hard-reset will wipe the data (though that's most likely what they'll tell you to do anyhow).
Click to expand...
Click to collapse
Please let me explain why I though it was microsoft's fault: I had an WP7 with a different SIM (but same phone number) and those problems were there for almost Every app I had to update and clock often changed hour. After that I had an Android, at least with date and time no problem..with store of course I can't say after a year of android I switched back to WP8 and the market/time problems happened only a couple of times..but I thought that was something wrong in my phone because here on xda nobody has never talked about it. But I notoced that even whatsapp sometimes misses or delays some notifications with wp8 (with android never happened), and, at least in my country, this is a common problem with many users that complain abouth that, so at least for whatsapp I'm sure it's not my problem. I contacted the support of whatsapp and they said to me, if I remember well, that whatsapp notifications pass trough Microsoft servers, so in their opinion the fault of this problem was microsoft's. So I was thinking that even the other problems are related with Microsoft server's sync..so when another user said to have almost same problem As mine (but As I said, with WP8 happened to me only a couple of times, I don't know if other user has those problems more often), I convinced myself about my theory LoL of course I can imagine I am totally wrong because I don't know how those syncs works and if they work alla in the same way..what do you think about it? Before re-editing the OP I wanted to explain to you the whole situaton because you have for sure better knowledge about that
Push notifications for apps are completely different from update notifications. The latter are polled for, by the OS, at pre-determined times and without the app in question being involved at all; you'll get the update notifications even if you've never run it.
That said, push notifications on WP (7 or 8) are not as quick or reliable as on Android, it's true. The battery impact of push-using apps is lower, though.
Thank's, anyway I will hard reset my device. I have just realized right now that if the glance screen could be ported in future on other devices, a led notification becomes useless (of course, I don't know what is the battery impact on an AMOLED screen..and it's VERY important)
GoodDayToDie said:
@Life'sGood and @gigsaw: That's a problem with your phone, not the OS as a whole. I guarantee you that WP8 fully supports app update notifications and clock sync. If yours doesn't, that's a problem with your phone, specifically. Blaming Microsoft for it is nonsense and won't help you fix the problem.
Now, as for fixing the problem... do you have an active SIM card in the phone? If so, does it have a data connection? That's most logical reason I can think of for the app update notifications to not appear; no connectivity when the phone tries to check. The clock can sync off the towers as well (also needs a SIM, I suspect) but it can also sync off GPS satellites (which have extraordinarily accurate clocks, and broadcast time signals that anything with a GPS receiver can pick up even if it can't get an accurate locations fix).
The most likely solution, honestly, is to hard-reset your phone. You might want to call support or take the phone in to a Microsoft store or something first, though; hard-reset will wipe the data (though that's most likely what they'll tell you to do anyhow).
Click to expand...
Click to collapse
afaik i'm not seeing these features. I did a hard reset but I've yet to see the Nokia Camera, network+ (call filter) update.
I googled and found out this is a system wide issue with almost everybody having this issue. So does a half f'ed apple still counted as an apple?
App update notification this feature is simply not available.
I have a SIM and data connection for my 1020, on Wifi most of the time. Clock doesn't sync at all neither.

Categories

Resources