|
#1
|
||||
|
||||
|
Background:
Samsung Tools is a program Written for my Visual Basic Class at school; with mainly the support of the P2 and P3. Creating this program has been very educational for me, but because I am the only one who has worked on it I am still ironing out lots of bugs so the release should be within the next month. The Program: Samsung Tools was created to see how much, function wise, I could get to Emodio, without being as buggy. The program was written in Visual Basic 2010, which goes to show that vb is a valid programming language. The only downside I had to using vb is that it is impossible to detect an MTP player; this program is based around UMS support (far superior in my mind). It is designed to save to the player if it is connected, or prompt a save dialog when it is not. Features: · Datacasts · Playlist Creator (.SPL) · Calendar Event Creator · Contact File Creator · Basic ID3 Tag Editing · Firmware region Changer · My Device Info (displays device’s firmware version and checks if it is latest) · P3 Tic-Tac Toe I am planning 2 major releases and maybe 1 bug fix (Not SET IN STONE!). Edit: All information is here: http://www.sites.google.com/site/samsungtools/ Last edited by R3998; 09-10-2011 at 10:03 PM. |
|
|
|||
|
|
|
#2
|
||||
|
||||
|
Hey,
That's a good initiative thank you ![]() I own almost every Samsung DAP so I'll be able to tell you which one has a SYSTEM.ver file (most of them if I remember well)
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
|
|
#3
|
||||
|
||||
|
@Lebellium Thanks!
Quote:
Example Samsung Tools Firmware Data File P2 5.10 P3 2.22 R1 3.07 R0 1.25 Q3 1.34 M1 1.35 Would you happen to know if all the SYSTEM.ver files use this Format: VER 2.22 EU MTP MODEL P3 DRM JA with the xx s varying for each player VER x.xx EU MTP MODEL XX DRM JA |
|
#4
|
||||
|
||||
|
Quote:
You program must not be case sensitive because sometimes it's System.ver, sometimes SYSTEM.VER etc Q3 (latest firmware is not 1.34, I forgot to update the All Samsung Firmwares thread, sorry )VER 1.37 EU MTP MODEL Q3 DRM JA R0: VER 1.25 EU MODEL YP-R0 DRM JA.NE U6: VER 1.09 EU MODEL YP-U6 DRM PD JA NE Q2: VER 1.23 EU MODEL YP-Q2 FWUP OK DRM JA.NE.PD R1: VER 3.07 EU 00 MODEL YP-R1 DRM JA.NE U5: VER 1.57 EU MODEL YP-U5 DRM PD JA NE S1: VER 1.15 KR MODEL TicToc DRM PD NE CP3: VER 2.10 EU UMS MODEL YP-CP3 DRM 0 P3: VER 2.22 EU MTP MODEL P3 DRM JA
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
Last edited by lebellium; 08-01-2011 at 06:31 AM. |
|
#5
|
||||
|
||||
|
@Lebellium Thanks, All above is implemented.
Quote:
Program is mostly complete, release should be in the next week. In the Mean Time (a few photos in HD): Home Screen ![]() Menu ![]() Datacasts ![]() Playlists ![]() ID3 Tag Editor ![]() My MP3 Player
|
|
#6
|
||||
|
||||
|
Weather? What does it do on the device exactly?
And for what country is it? (there are the same zip codes in several countries)
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
|
|
#7
|
||||
|
||||
|
@ Lebellium
Quote:
Ex. I input 90210 as a Zip Code I will Get _ Yahoo! Weather - Beverly Hills, CA Current Conditions: Currently: Fair Current Temperature: 62 F Today: Conditions: Sunny High: 82 F Low: 62 F Wind: Wind Speed: 0 mph Wind Direction: 0 Wind Chill: 62 F Atmosphere: Visibility: 6 mi Humidity: 90 % Pressure: 29.91 in Sunrise/Sunset: Sunrise: 6:05 am Sunset: 7:51 pm Data Retrieved: Thu, 04 Aug 2011 7:50 am PDT _ In regards to your question about the Zip Codes for Countries; It is for the most part for the USA because we have a "Zip Code" and the measurements aren't metric. Elsewhere there is postal codes (mostly the same thing). I have not tried postal codes for other countries, but i suspect they should work. Worst case you could find your own weather rss feed and put it in the custom feed area. |
|
#8
|
||||
|
||||
|
Its Done!
Thanks Lebellium All information is here: http://www.sites.google.com/site/samsungtools/ You can contact me for bug fixes by posting how you got there on my site (most direct and anonymous) or using the E-Mail all on the sites Help/Support page. Last edited by R3998; 09-10-2011 at 10:04 PM. |
|
#9
|
||||
|
||||
|
Cool
![]() I had a quick look at it, not tried all features yet but here are some bugs/problems you may fix -Mispelling for Tic Tac Toe (It's Tac, not Tack) -Tic Tac Toe AI a bit too stupid^^ : When you start on the left corner, then in the middle, you're sure to win everytime. -Latest firmware for Q3 is now 1.39. As 1.37 is still the latest in your database, it tells my Q3 is not up to date, what's wrong. You should add something that calculates if current fw version is more recent than yours or not. It should be quite easy as the biggest number in fw version is always the most recent. I mean 1.39 is necessarily more recent that 1.37 -Some 'back' or 'home' buttons are missing. For example when you're on "My mp3 player" window, you can't go back. -Tried sync datacasts with a Samsung Q3, the soft crashed. Maybe because the Q3 doesn't support datacasts (like the S1 for instance)
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
Last edited by lebellium; 08-13-2011 at 01:53 PM. |
|
#10
|
||||
|
||||
|
@ Lebellium
Quote:
Quote:
Quote:
Quote:
If someone knows something about Visual Basic 2010 and can tell me if this code is acceptable for: 1. Saving a file to a preprogrammed location if a mp3 player is connected 2. Prompting a save dialog if the player is unavailable Code:
FindDeviceDriveLetter() Dim strSaveFilePath AsString = (strDetectedDriveLetter + ":\Datacasts\" + strFileName + ".txt") If DetectedDriveLetterStatus = TrueThen strSaveFilePath = (strDetectedDriveLetter + ":\Datacasts\" + strFileName + ".txt") Else Dim Save AsNewSaveFileDialog Save.FileName = (strFileName) Save.Title = "Save Text File" Save.Filter = "Text File (*.txt)|*.txt|All files (*.*)|*.*" Save.InitialDirectory = strSaveFilePath intUserResponse = Save.ShowDialog() strSaveFilePath = Save.FileName() EndIf FindDeviceDriveLetter() is a sub that checks for SYSTEM.ver to see if the device is connected |
|
#11
|
||||
|
||||
|
Just To Let you know 1.01 is out with:
- Improved Tic-Tac Toe AI - More intuitive gui - more efficient code - latest FW Version Info Download: https://sites.google.com/site/samsun...edirects=0&d=1 |
|
#12
|
|||
|
|||
|
Quote:
My email: ptmails@126.com |
|
#13
|
||||
|
||||
|
"network restrictions" > Censorship (审查制度) you mean
![]() Here it is in attachment.
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
|
|
#14
|
|||
|
|||
|
Quote:
Anyway, thank you very much.
|
|
#15
|
||||
|
||||
|
Quote:
Quote:
Cool to see I have fans in China! By the way thanks for being the first person to post besides Lebellium; I was starting to think Lebellium was the only one interested in my program.Quote:
Attatched (Latest Files): Samsung Tools 1.01 (Main Program) ST Firmware Version Writer (writes .SFV files that are used to update the programs FW Version Databases) FW Version Update (Only for those with 1.00; 1.01 has latest data as of 8/22/2011) Follow Main Programs FAQ (In Manual) for updating Databases. |
|
#16
|
|||
|
|||
|
Quote:
|
|
#17
|
||||
|
||||
|
Version 2.00 is out
With - Improved Tic-Tac Toe AI - More efficient code - Latest FW Version Info - Extended .M3U Playlist Import - Settings Export/Restore http://www.sites.google.com/site/samsungtools/ Note: This may be one of the last releases so if you have found any bugs please, please tell me about them... Email: samsungtools at gmail.com (Wont Let me Post the @ part) Website (Anonymous): http://www.sites.google.com/site/sam...rt/found-a-bug Or post Below Last edited by R3998; 09-10-2011 at 10:09 PM. |
|
#18
|
||||
|
||||
|
Thanks
![]() Seems to work fine so far -Datacasts sync worked -Computer finally managed to win once at tic tac toe lol -Playlists work (you should add flac format to the extensions list so that people are not obliged to select "all files" instead) If you could add a M3U to SPL converter that would be very great ![]() However I'm still not convinced by the FW version checking system. Obviously the file will be outdated every 2 weeks (there are already the new F3, Z3 and R2, new fw for Q3 will be released soon etc) It's useless to update the Samsung Tools Firmware Data.sfv file for myself. The same for the user. He wants to know what is the latest fw version, he doesn't want to be obliged to update himself the file so that the software tells him his fw version is up to date. That doesn't make any sense. If would be better if your software checked the fw version online (for example a Samsung_Tools_Firmware Data.sfv file on a FTP server that you or me could update regularly).
__________________
I'm French^^ *GenerationMP3 Samsung Moderator*
|
|
#19
|
|||
|
|||
|
Quick question. What is tic tac toe? I know the game of 9 box, but we dont have that game in the P3... is that a flash? or a real game that u can play in?
Thank you for the .spl creator, LESS stressful, compared to the web version. I havent tried out the program out yet, just a little bit skeptic about it. Like what's the benefits of the calendar? (For instance, birthdays, can i see who's birthday on the screen or do i have to click on the widget to see the information?) What is MydeviceInfo? (What's the benefit of putting your serial in ur p3? I have serial on the back of my P3. Just not too sure...) ContactInfo, very good. The FW region changer, what's so good about that? (I have the KR one, and does that limits me get some other programs?) thank you again for creating this program. Thank you again for reading. -jumbjumb |
|
#20
|
||||||||
|
||||||||
|
@ Lebellium Thanks for your input
Quote:
Quote:
How did I Forget about FLAC!In Regards to the FW Update Conundrum: Quote:
Quote:
@ jumbjumb Quote:
Quote:
Quote:
Quote:
|
![]() |
| Tags |
| new program, program, samsung tools, samsung tools mp3, samsung tools p2 p3 |
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
All times are GMT -5. The time now is 02:15 AM.



















How did I Forget about FLAC!
Linear Mode
