RingtoneManager
Author: ultrashot
Description: Simple application to select a ringtone from your music collection. Supports music preview on finger holding.
v2.0:
Cut function
Background art attaching
Updated UI.
v1.1:
no more DRM content in the list
changed filtering mechanism
Must work on full unlocked ROMs and WP7 Root Tools-unlocked ROMs.
Redistribution in form of custom roms is currently prohibited.
Another Ultrashoot master-piece!
Homebrew FTW! Well done!
Heathcliff74
thanks for another great wp7 addon/tool. bigbusiness
oh.....so sweeeeeeeeeeeet.....one of the great apps......i was waiting for this.
thanks for sharing
cheers
Thank you very much my friend for big jobs :good:
As always, an excellent app Thanks man !
Once again thanks Max for great job:good:
Amazing !!!!!!!!!!!!!!!!!!! THX (+)
@ultrashot - Can you do that installed itself in the settings? THX
Must have wp7 app again!!!
Working good!
Request : We should be able to select a part of the song as a loop
Budniu said:
Amazing !!!!!!!!!!!!!!!!!!! THX (+)
@ultrashot - Can you do that installed itself in the settings? THX
Click to expand...
Click to collapse
External apps cannot be uninstalled when they are in settings, so for XDA releases I prefer making them normal apps.
ultrashot said:
External apps cannot be uninstalled when they are in settings, so for XDA releases I prefer making them normal apps.
Click to expand...
Click to collapse
Ok, THX.
ultrashot said:
External apps cannot be uninstalled when they are in settings, so for XDA releases I prefer making them normal apps.
Click to expand...
Click to collapse
Thx for this app !
Just for the records:
sideloaded apps (which have been installed in the settings menu) you can uninstall with Windows Phone Power Tools, you just have to know the GUID or if you have deployed them with that tool you will see their names instead of the GUID...
You can uninstall that app by WindowsPhoneDeviceManager from Julien Schapman: http://forum.xda-developers.com/showthread.php?t=965788
Budniu said:
You can uninstall that app by WindowsPhoneDeviceManager from Julien Schapman: http://forum.xda-developers.com/showthread.php?t=965788
Click to expand...
Click to collapse
This is possible, too.....
I talk in general. If I added app to settings, my pm box will be fulfilled with questions "how to delete".
Wondering when anyone develops Uninstaller using my ApplicationAPI
ultrashot said:
I talk in general. If I added app to settings, my pm box will be fulfilled with questions "how to delete".
Wondering when anyone develops Uninstaller using my ApplicationAPI
Click to expand...
Click to collapse
Ok.
2 Questions:
1. When is it allowed to cook your app into a custom rom ?
2. Do you plan to add a cut function ?
Checking it out now cheers, p.s I love xdas click for qa code makes installing xaps a breeeze
Edit:got excited when I saw all my zune tracks on there. They dont work though it lets you install the ringtone but it doesnt play in the settings menu. Any chance these will one day work or is the drm a show stopper
contable said:
Ok.
2 Questions:
1. When is it allowed to cook your app into a custom rom ?
2. Do you plan to add a cut function ?
Click to expand...
Click to collapse
1) Later, once it is debugged and finalized. There will be some extra improvements for custom roms.
2) For now I don't have such plans.
meandu229 said:
Checking it out now cheers, p.s I love xdas click for qa code makes installing xaps a breeeze
Edit:got excited when I saw all my zune tracks on there. They dont work though it lets you install the ringtone but it doesnt play in the settings menu. Any chance these will one day work or is the drm a show stopper
Click to expand...
Click to collapse
DRM is a showstopper, yes.
ultrashot said:
1) Later, once it is debugged and finalized. There will be some extra improvements for custom roms.
2) For now I don't have such plans.
DRM is a showstopper, yes.
Click to expand...
Click to collapse
Cheers for reply could you possibly look at not showing them in the list.. Thanks for your work
meandu229 said:
Cheers for reply could you possibly look at not showing them in the list.. Thanks for your work
Click to expand...
Click to collapse
update 1.1 is in the first post.
Related
Mango allows us to put things in the settings hub. This is pretty easy to achieve, just go to your project, open your WMAppManifest.xml and add this on the <App>-tag:
Code:
HubType="268435456"
Now deploy your xap to emulator or to a real device. You can find it under the Settings-menu.
Tested & works on Mango Emulator and on Samsung Omnia 7 (Mango RTM)
To change the description see this post: link.
this can get interesting. ill check it out.
can we create another app hub called APPs and put all the apps there instead of having it populated in a long list in the programs list?
lemonspeakers said:
can we create another app hub called APPs and put all the apps there instead of having it populated in a long list in the programs list?
Click to expand...
Click to collapse
I have no idea, but I'd say we can't. Someone needs to find out what that HubType number means
Interesting. Though, once it is installed, how is it uninstalled? A tap&hold on the option in settings shows nothing... so is there another way?
prjkthack said:
Interesting. Though, once it is installed, how is it uninstalled? A tap&hold on the option in settings shows nothing... so is there another way?
Click to expand...
Click to collapse
You need XAP with the same app id that does not go to the settings hub, just deploy it and uninstall
jessenic said:
I have no idea, but I'd say we can't. Someone needs to find out what that HubType number means
Click to expand...
Click to collapse
Possibly it's a bitmask? Not that that really clears anything up, but 268435456 is 10000000000000000000000000000 in binary.
jessenic said:
You need XAP with the same app id that does not go to the settings hub, just deploy it and uninstall
Click to expand...
Click to collapse
Interesting. Gotcha. Slightly annoying implementation. But then again, I guess most devs aren't supposed to use this hubtype anyway.
Any idea on how to customize the description text that appears below the entry in the settings menu? I tried looking, but I can't find any lines or strings that seem to have any effect.
abledanger said:
Possibly it's a bitmask? Not that that really clears anything up, but 268435456 is 10000000000000000000000000000 in binary.
Click to expand...
Click to collapse
That's right. It seems only two bits are using - first and last (music hub integration). I've tried 536870911, but nothing changes.
prjkthack said:
Any idea on how to customize the description text that appears below the entry in the settings menu? I tried looking, but I can't find any lines or strings that seem to have any effect.
Click to expand...
Click to collapse
Yeh, I've been wandering about that too.
prjkthack said:
Any idea on how to customize the description text that appears below the entry in the settings menu? I tried looking, but I can't find any lines or strings that seem to have any effect.
Click to expand...
Click to collapse
I made a project template for you, just open it in visual studio and it has samples for customizing the text. 2 ways to do it, in WMAppManifest and in code, just look at my sample it is very easy.
Slacker is on the Music Hub and it shows HubType="1" in the manifest. Non-music hub apps just don't have any HubType in the manifest.
jessenic said:
I made a project template for you, just open it in visual studio and it has samples for customizing the text. 2 ways to do it, in WMAppManifest and in code, just look at my sample it is very easy.
Click to expand...
Click to collapse
Works great. This is very cool!
BTW, How do you uninstall a setting?
---------- Post added at 06:14 PM ---------- Previous post was at 06:11 PM ----------
Qtek8020User said:
Works great. This is very cool!
BTW, How do you uninstall a setting?
Click to expand...
Click to collapse
jessenic said:
You need XAP with the same app id that does not go to the settings hub, just deploy it and uninstall
Click to expand...
Click to collapse
Uhm... Just polishing my glasses here
thesecondsfade said:
Slacker is on the Music Hub and it shows HubType="1" in the manifest. Non-music hub apps just don't have any HubType in the manifest.
Click to expand...
Click to collapse
Settings list uses HubType too.
Yes, I am aware that this entire topic is about that. I was mentioning it because it was not mentioned before in the discussion about the Music Hub.
Hey, mate thanks for your tutorial.
But I'm still quite confused, cuz I can basicaly just change the tile title within WMAppManifest in order to change the gray discription in your sample app, but when I do it upon my own app, it doesnt shows up....
e.g I change the official youtube app, added HubType=xxx, and edited WMAppManifest, change the tile title into "sample discription", but this text dosent shows up below the big settings entry name.
Could u tell me how to do that by only changing the WMAppManifest.xml file? w/o re-assembling dll files. Thanks
Guys how to place xap in settings->bluetooth ??
what set in HubType="" ?
WojtasXda said:
Guys how to place xap in settings->bluetooth ??
what set in HubType="" ?
Click to expand...
Click to collapse
I think it is not possible that you ask.
it is possible but i dont know how
WojtasXda said:
it is possible but i dont know how
Click to expand...
Click to collapse
It is possible to put xap in (settings >> bluetooth)?
Me, I never saw its.
Currently I am building and shortly will be done with my Facebook Metro App for Windows 8 and the idea is to have 2 UI's.
1). Full Screen w/Most Features.
2). Half-Sized w/Basic features so you can use your favorite App's while still accessing your Facebook features, feed and etc.
Question is, what would YOU want added to either UI?
Well u should post some pictures of the program so we can see what it has and hasnt so we can give you opinions When its really upload it and i will test it for sure
After or on Tuesday, I can share the design as I am scheduled with a MS Engineer to help my App have the final touches and tested as well and hopefully first Facebook App in the Store.
Also thanks for responding.
gogobaba said:
Well u should post some pictures of the program so we can see what it has and hasnt so we can give you opinions When its really upload it and i will test it for sure
Click to expand...
Click to collapse
Feature request
Please implement off line messages because the Messaging app won't let you send them
Looking forward to FBMetro! (Suggestion to call it MetroBook instead! )
Do half-sized mean Snapped mode?
midoBB said:
Please implement off line messages because the Messaging app won't let you send them
Click to expand...
Click to collapse
Offline messages? As in check for personal messages and grab them and save them for no-connection viewing and respond while offline and when/if connection available automatically send?
DJCrapsody said:
Looking forward to FBMetro! (Suggestion to call it MetroBook instead! )
Do half-sized mean Snapped mode?
Click to expand...
Click to collapse
Well FBMetro is really just the project name, Facebook already has an App registered as Facebook Metro.
The half-sized mode is in fact the snapped mode... I have included old-SS of which the actual App does not represent anymore as of my meeting with my Microsoft sponsor who wouldn't permit me to go any further with the design, even though I was nowhere near done lol.
Note: Job Discovery is my other App for Win8 and is actually currently a free WP7 App. In the photo you can see that my Facebook App can be used by other Developers to post information from their App using my pre-established Auth to the end-users Facebook Account. Yes, they can actually implement my App to be used by theirs.
nice, where can I get it?
It's coming, very soon!
and here is my idea....
as you may know in our country (iran) we can't access FACE.BOOK...we have to use v.p.n and other pro.xy apps...
it'll be gr8 if you add setting to your app so that we can add pro.xy and these kind of things...(especially pro.xy...)
thanks...
mido-mido said:
and here is my idea....
as you may know in our country (iran) we can't access FACE.BOOK...we have to use v.p.n and other pro.xy apps...
it'll be gr8 if you add setting to your app so that we can add pro.xy and these kind of things...(especially pro.xy...)
thanks...
Click to expand...
Click to collapse
Windows Store isn't even available for Iran... Doubt you can even get this app...
mido-mido said:
and here is my idea....
as you may know in our country (iran) we can't access FACE.BOOK...we have to use v.p.n and other pro.xy apps...
it'll be gr8 if you add setting to your app so that we can add pro.xy and these kind of things...(especially pro.xy...)
thanks...
Click to expand...
Click to collapse
I never thought of that... I will absolutely be sure to add it to the TODO List.
DJCrapsody said:
Windows Store isn't even available for Iran... Doubt you can even get this app...
Click to expand...
Click to collapse
Legally? Probably not... How he/she or anyone obtains it? Well, as long as they obtain it is all I care about :].
lseidman said:
Legally? Probably not... How he/she or anyone obtains it? Well, as long as they obtain it is all I care about :].
Click to expand...
Click to collapse
By default, it is installed with Windows 8. There ARE bypasses that will be released though... :fingers-crossed:
DJCrapsody said:
By default, it is installed with Windows 8. There ARE bypasses that will be released though... :fingers-crossed:
Click to expand...
Click to collapse
Indeed true, I keep figuring out hacks for Windows 8, just released a how to video... World of opportunities lol.
question
hy. I just want to know, when it will be available? could we download it from windows store? I'm a really big METRO UI fan, and I would be happy if I can use facebook in this way.
and of course sorry for my bed english
Cool App!!
I am actually working with someone from Microsoft to get the App Certified, I had to really redo A LOT of the UI as they have made the standards really rough.
Right when it's ready, I will immediately provide the link.
Thanks for your interest!
bazsi44 said:
hy. I just want to know, when it will be available? could we download it from windows store? I'm a really big METRO UI fan, and I would be happy if I can use facebook in this way.
and of course sorry for my bed english
Click to expand...
Click to collapse
Thank you!
Mebin Robin said:
Cool App!!
Click to expand...
Click to collapse
Any more screenshots?
Just made a little tool to make ring tones from the music you have stored on your phone.
It's alpha-stage and needs "some" improvement.
known issues:
- doesn't work on samsung devices
- some songs can not be saved if the start time is 0 seconds (just move the left marker 1 pixel to the right)
- if you load a song after changing the splitter marker the labels showing wrong informations about the time/duration
- play/pause button doesn't work correctly
Not working on Samsung focus. It just crashes.
lsguntu said:
Not working on Samsung focus. It just crashes.
Click to expand...
Click to collapse
Got some PMs from other Samsung users with the same issue.
On my LG E900 everything works fine.
Can users with HTC devices post their experience ?
It does not work on hd7. Just preview song and when I tap on save button nothing changes.
amir-m89 said:
It does not work on hd7. Just preview song and when I tap on save button nothing changes.
Click to expand...
Click to collapse
So the preview does work ?
Interesting, because everything after choosing the song is done with official APIs
ne0cr0n said:
Just made a little tool to make ring tones from the music you have stored on your phone.
It's alpha-stage and needs some improvement.
Only works on rooted devices.
Click to expand...
Click to collapse
Any reason you need a rooted device? Our Bluemanager which access the Music files does not require a rooted device. Just curious..
monotheist said:
Any reason you need a rooted device? Our Bluemanager which access the Music files does not require a rooted device. Just curious..
Click to expand...
Click to collapse
Yep, that's right, I thought you have to grant privileges in wp root tools but just noticed it works without.
When I used the SDK to access the artist pictures with my app mpatool them it doesn't work without changing the policies. maybe the new SDK version changed something ?
ne0cr0n said:
So the preview does work ?
Interesting, because everything after choosing the song is done with official APIs
Click to expand...
Click to collapse
Yes, preview works and the app does not crash but after saving, the song does not add to ringtone list.
View attachment 1333228 View attachment 1333229
omnia w/windowbreak+roottools/---> can not be opened, it does not work!
ne0cr0n said:
Yep, that's right, I thought you have to grant privileges in wp root tools but just noticed it works without.
When I used the SDK to access the artist pictures with my app mpatool them it doesn't work without changing the policies. maybe the new SDK version changed something ?
Click to expand...
Click to collapse
If you want i can investigate for you the crashes etc, and fix it.
I wonder - why to do app, if identical is already from 17 july ?
http://forum.xda-developers.com/showthread.php?t=1779049
Budniu said:
I wonder - why to do app, if identical is already from 17 july ?
http://forum.xda-developers.com/showthread.php?t=1779049
Click to expand...
Click to collapse
I didn't know about the project from ultrashot.
My app allows trimming and has a different method for song selecting. So what...
Ok, ok man. Only I ask, congratulation for your app and respect for your hard work.
0.2 alpha did not open on my omnia w
mikaelel said:
0.2 alpha did not open on my omnia w
Click to expand...
Click to collapse
Can you install this xap and check if you can start it ?
Edit: xap removed - test successful
ne0cr0n said:
Can install this xap and check if you can start it ?
Click to expand...
Click to collapse
I have the same problem with my OMNIA 7: the app crashes directly after starting....
The test xap is starting but when I press on "click to browse" the app terminates.
contable said:
I have the same problem with my OMNIA 7: the app crashes directly after starting....
The test xap is starting but when I press on "click to browse" the app terminates.
Click to expand...
Click to collapse
OK, thanks. The app is supposed to crash when clicking " click to browse" because I removed the music providing model from the code. Normally the model loads the data on app start to reduce the time between clicking and showing the library content. Now I know where the bug is located and I can search deeper.
ne0cr0n said:
OK, thanks. The app is supposed to crash when clicking " click to browse" because I removed the music providing model from the code. Normally the model loads the data on app start to reduce the time between clicking and showing the library content. Now I know where the bug is located and I can search deeper.
Click to expand...
Click to collapse
What library are you using for Splitting the mp3 files?
click the icon of the application does not start, does not give any effect
Hi folks,
This small utility allows to mod the bing search page with your background, disable auto update of the background and write the copyright for your image or remove it if you prefer.
This app work on all interop unlocked phone with WP7 Root Tools.
0.1
Initial Release
0.2
Added a button to clear the textbox
Added a button to remove custom image
0.2.3
Some optimization
New icon
Rules for code sharing:
1) If you want release your version of this app you must post also here the xap and the new code source.
2) If you create a new app based on this add "Based on Bing Configurator" in the app.
Thanks to:
Heathcliff74 for his root tools sdk
ofir54321 and Lidanh for Bazaar
You can find the newest version on Bazaar.
The source code is attached in this post.
is it possible to get back the original bing image? how to?
znial said:
is it possible to get back the original bing image? how to?
Click to expand...
Click to collapse
if you don't set on bing sync when the bing image will updated this replace your background
ty
it is perfect
very nice app
(in the landscape mode the image does not change)
znial said:
ty
it is perfect
very nice app
(in the landscape mode the image does not change)
Click to expand...
Click to collapse
yes in landscape don't change because for the resolution, perhaps I can implement the function for select the image from media library and so we can resize also for the landscape mode
Thanks nick, really nice app.
version 0.2 released
little update released
What I'd like is a Bing launch app (see signature). What are the chances of that?
Whatdoyaknow said:
What I'd like is a Bing launch app (see signature). What are the chances of that?
Click to expand...
Click to collapse
Excuse me but I don't understand what you want
Nickg. said:
Excuse me but I don't understand what you want
Click to expand...
Click to collapse
An app that will launch Bing
Whatdoyaknow said:
An app that will launch Bing
Click to expand...
Click to collapse
yes is possible by hone tile, but I don't understand why you can't use the search button
Nickg. said:
yes is possible by hone tile, but I don't understand why you can't use the search button
Click to expand...
Click to collapse
On a HD2 we use search button for "focus down" in the "camera trick" to reduce battery drain i.e. hit camera button, then video, then focus down and battery drain is reduced from -400 to -6
Bing Laucher
here you are
Bing Launcher
Nickg. said:
here you are
Click to expand...
Click to collapse
That is really terrific - works great thanks very much :fingers-crossed:
I've adjusted the display name (etc) to put a space between the words i.e. "Bing Launcher". I think it looks better. I've attached it - hope you don't mind.
I'll load it on the HD2 forum later when I get a chance - with your acknowledgement and a link here
Cheers
Whatdoyaknow said:
That is really terrific - works great thanks very much :fingers-crossed:
I've adjusted the display name (etc) to put a space between the words i.e. "Bing Launcher". I think it looks better. I've attached it - hope you don't mind.
I'll load it on the HD2 forum later when I get a chance - with your acknowledgement and a link here
Cheers
Click to expand...
Click to collapse
perfect!
i install this app
but it crash when i open the app
i did set trust
hd2 pdaimatejam v8.5
if this app work for anyone please tell the name of rom
s.m.hosein said:
i install this app
but it crash when i open the app
i did set trust
hd2 pdaimatejam v8.5
if this app work for anyone please tell the name of rom
Click to expand...
Click to collapse
Bing Laucher works perfectly for me on hd2 pdaimatejam v7.8 8.5
Thanks for the apps! I've used the bing configurator for awhile now but it has stopped working for me. It will no longer let me change the picture. I've uninstalled it and reinstalled it but nothing. I've also tried the new release and it still won't work. I'm running a fully unlocked HTC HD7 with a custom 7.8 rom. Even though the rom is fully unlocked, I tried trusting it in WP7 Root Tools but still nothing. Any ideas? Thanks!
Good work......
I Like it.......
XAP Hosting
Sharing WP apps always has been awkward. often are there questions like: "where should I upload it?", "how do I update my app?","whats happens if I do update it?" and "do I need to replace all my links to the app with the link to the updated app?".
XAP Hosting tries to answer all those questions. :good:
with XAP Hosting you can showcase your homebrew app like never before, you never have to update links because it will always point to the newest version!
Check it out!
http://xap.eaterofcorps.es/
Register at: http://xap.eaterofcorps.es/registration.php
NOTE: Chrome, Firefox and Opera only supported (Opera has visual glitches)
Regards EaterOfCorpses.
reserved
Reserved (2)
reserverd (3)
Nice and quite interesting, I will test this for sure.
Thanks
dotcompt said:
Nice and quite interesting, I will test this for sure.
Thanks
Click to expand...
Click to collapse
Cool, Thanks
If you find a bug or want a new sort image dont Hesitate to contact me, because I like feedback
Regards,
Eater
It is just me or registration is not working anymore?
"We dont know you, creating your file
We couldn't add you check your name(from your Xap),username or publisher name(from your Xap)"
dotcompt said:
It is just me or registration is not working anymore?
"We dont know you, creating your file
We couldn't add you check your name(from your Xap),username or publisher name(from your Xap)"
Click to expand...
Click to collapse
no, but I was updating it, did you get it to work?
I added the email adress field because people were uploading hacked software what can cause problems :|
But It should work now
Also you're in the database
EaterOfCorpses said:
no, but I was updating it, did you get it to work?
I added the email adress field because people were uploading hacked software what can cause problems :|
But It should work now
Also you're in the database
Click to expand...
Click to collapse
Still not working so I am probably using a wrong password.
Is it possible to delete my data from the database so I can start it over?
Thanks
dotcompt said:
Still not working so I am probably using a wrong password.
Is it possible to delete my data from the database so I can start it over?
Thanks
Click to expand...
Click to collapse
Yes Sir, I will do it now
Your username was about, lol, I will try to create a better registration form and such after buolding the api
Will you add a possibility to browse the supplied XAPs? That would be really awesome And you said you're building an API, I could help you with making a WP app so it's possible to browse and install directly from the phone in an easy way
Hope this goes well cause this could be a really good store. I see a lot of possibilities here
Regards
Izaac
Yes that's right tbh I quited working on the api, and started working on a decent Control Panel,
But the api is online (search + product)
Let me explain them
Search api is
Code:
http://xap.eaterofcorps.es/api/search.php?q=search[&limit=20][&start=10]
Result is something like
Code:
{"Status":"Ok","Results":[{"id":"1","AuthorId":"1","ProductID":"{2cd4d774-5cde-4a5a-8097-17b6bb90b37a}","Title":"Reg Backup.","Description":"Let you take backup's of your registry"},{"id":"2","AuthorId":"3","ProductID":"{4843e329-7ad4-47ba-9dbd-6d1fbcec8482}","Title":"\u684c\u9762\u4e16\u754c\u65f6\u949f","Description":"\u628a\u65f6\u949f\u56fa\u5b9a\u5230\u684c\u9762\nWindowsphone\u4e4b\u5bb6\uff0cWPDT\u6c49\u5316\u7ec4\uff0chttp:\/\/wp.feng91.com \nsmalolo\u5fae\u535a\uff1ahttp:\/\/weibo.com\/smalolo"},{"id":"3","AuthorId":"4","ProductID":"{8a90a399-351c-45cd-b820-af8c7503cf47}","Title":"RoadPilot Mobile","Description":"Sample description"},{"id":"6","AuthorId":"6","ProductID":"{43f6a3d5-6e12-48ff-94f2-e387730022fb}","Title":"Devstore8","Description":"Homebrew Development"},{"id":"7","AuthorId":"7","ProductID":"{f41adcf8-5029-4df7-945d-78d3dc33fd5e}","Title":"@AppResLib.dll,-100","Description":"Advanced Configuration Tool"},{"id":"8","AuthorId":"8","ProductID":"{ecbd885e-81a5-4bb3-a003-a59af9878844}","Title":"LEO Advanced","Description":"LEO Advanced for WP7"},{"id":"11","AuthorId":"23","ProductID":"{9ffdd6db-602e-4c67-8232-4b028ea4b1d1}","Title":"Weather","Description":"Sample description"},{"id":"12","AuthorId":"52","ProductID":"{d154a04b-d3ad-47dd-bfc9-a1022e409af6}","Title":"@AppResLib.dll,-100","Description":"HTC Connected Media"},{"id":"13","AuthorId":"53","ProductID":"{0387b7ba-f3c0-4c39-8686-bfa81b77b7e2}","Title":"Metro Theme","Description":"Modded Themes for WP7"},{"id":"14","AuthorId":"69","ProductID":"{9d4659cd-4036-47af-b5af-c1d842c21541}","Title":"Crosscut","Description":"Sample description"},{"id":"15","AuthorId":"69","ProductID":"{8cc2d32c-0585-45ed-8a47-911d11bca41f}","Title":"Nokia Xpress Beta","Description":"Provides fast web browsing"},{"id":"16","AuthorId":"69","ProductID":"{e8abf95f-cc53-e011-854c-00237de2db9e}","Title":"XDA-Developers","Description":"XDA.COM Client"},{"id":"17","AuthorId":"6","ProductID":"{6b8d9a35-ae49-42de-8c2e-6e6a03a32f5f}","Title":"Start","Description":"Sample description"},{"id":"19","AuthorId":"6","ProductID":"{e75a62f4-2002-4c93-94c6-269dc9fe7565}","Title":"Spot on","Description":"Sample description"},{"id":"20","AuthorId":"6","ProductID":"{af2b38c2-e921-4c2c-b658-ccd4439a6ee0}","Title":"lockWidgets","Description":"Sample description"},{"id":"21","AuthorId":"6","ProductID":"{b8097390-1f0e-4c33-a440-b9e6bd7efd38}","Title":"WP7 Root Tools","Description":"Root Access for Windows Phone 7"},{"id":"22","AuthorId":"6","ProductID":"{09125ea9-95de-469a-aedc-22e35389ab0a}","Title":"SMSBackup","Description":"A small app to backup and restore your sms"},{"id":"23","AuthorId":"6","ProductID":"{63baf355-cb84-412a-b391-f78805ceb964}","Title":"Supreme Shortcuts","Description":"Customize and create most shotcuts for your phone"},{"id":"24","AuthorId":"6","ProductID":"{e3732df4-129d-4546-91ba-e96cc429fdfe}","Title":"@AppResLib.dll,-100","Description":"Battery status app with live tile and battery history."},{"id":"25","AuthorId":"6","ProductID":"{5b594f78-a744-4f8a-85d2-f0f55f411832}","Title":"Folders","Description":"Sample description"}],"Total":46,"Start":0,"Limit":20}
Status is type of return ok is ok error is error
Results are the results
Total is the total amount of items that matched the query
limit is the limit
start is where is from which item it is returned
I post the product api soon
Product api:
Code:
http://xap.eaterofcorps.es/api/product.php?id=1
Return is:
Code:
{"id":"1","title":"Reg Backup.","description":"Let you take backup's of your registry","author":{"id":"1","name":"EaterOfCorpses","publisher":"EaterOf Corp.","username":"EaterOfCorpses"},"productId":"{2cd4d774-5cde-4a5a-8097-17b6bb90b37a}","Status":"Ok","LatestXap":{"id":"6","title":"Reg Backup.","version":"1.2.0.0","description":"Let you take backup's of your registry","publisher":"EaterOf Corp.","path":"http:\/\/xap.eaterofcorps.es\/2CD4D774-5CDE-4A5A-8097-17B6BB90B37A\/1.2.0.0.xap"},"DownloadCount":"176"}
Everything explains himself
LatestXap is the latest version uploaded with all the data
Also there is an author api
Code:
xap.eaterofcorps.es/api/author/1
xap.eaterofcorps.es/api/author/1/products
And yes go wild make a app for it thats the whole thing
Cannot upload XAPs in the last couple of days. Anyone have this issue?
Thanks
Sent from my Lumia 920 using Board Express
It seems to be a general issue by the hoster (cant also upload anything to http://yourimagehosting.net )
Im gonna contact them now
EaterOfCorpses said:
It seems to be a general issue by the hoster (cant also upload anything to http://yourimagehosting.net )
Im gonna contact them now
Click to expand...
Click to collapse
Everything is up again
Seems like the db users where messed up
Updating XAP Hosting
It's been a while but,
Im updating XAP Hosting and focusing on a nice looking GUI
so here are the first early snapshots of the new update
Screenshot #1
Screenshot #2
Greetings
Eater.
Updated post and site! with new design! enjoy <3