Don't have an account? Register now to chat, post, use our tools, and much more.
Latest Headlines
Online Users
There are 98 users online: 2 members, 65 guests and 31 bots. Members: Svenne. Bots: VoilaBot (2), Spinn3r (1), MSN/Bing (2), Magpie Crawler (4), VoilaBot (1), Googlebot (19), MSN/Bing (2).
RSS & Social Media
SAX
You must log in to view the SAX chat widget
|
| Author |
Message |
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 01:30:29 pm Post subject: Doors CS 7.0 Release Candidate 1 20 Aug 2010 |
|
|
Doors CS 7.0 Release Candidate (RC) 1 is here! This version is a super-stable, feature-rich, and nearly-complete build of the final Doors CS 7.0. Please test it thoroughly; if it passes everyone's tests, this is the final version that will be released on Wednesday, September 1st! The official description for this release:
Doors CS 7.0 is the ultimate shell and GUI for your TI graphing calculator. Run any BASIC or ASM program, including MirageOS, Ion, Doors CS, and nostub programs. Organize your programs into folders, edit program properties or programs directly from Doors CS, or use the HomeRun feature to run any program from the TI-OS homescreen. Doors CS is built to be extremely user-friendly, using a mouse-based interface to appeal to users used to using computers who are frustrated by the infinite menus one must navigate on a TI calculator. On the opposite end of the user spectrum, it includes myriad keyboard shortcuts so that those who prefer to use a keyboard to a mouse can quickly and efficiently move through Doors CS. Doors CS 7.0 contains full libraries for xLIB, Celtic III, PicArc, Omnicalc, and the new DCSB Libs; eliminate all your apps and replace them with Doors CS 7! This Release Candidate is a very stable, nearly-complete version of Doors CS 7.0.
A full listing of fixes and improvements over Doors CS 6.9 beta:
:: Myriad bug fixes and tweaks based on invaluable feedback from Cemetech members and Doors CS beta testers.
:: Addition of [ON][MODE] hook and multi-page scrolling feature.
:: Additional DCSB Lib features and bug-fixes.
:: Updated Doors CS 7 manual and SDK (both included in the zip below)
Again, please test this release for any and all bugs and weirdnesses. Please please also read the Manual for correctness, completeness, and clarity, and let me know what you think. If no issues are found, the next release will be Doors CS 7.0. If bugs are found, then a release candidate, Doors CS 7.0 RC 2, will be released before September 1 (ideally within a few days). Doors CS 7.0 will not be released until many testers give the RC a clean bill of health, so please test, test, test!
Download
Doors CS 7.0 Release Candidate 1
 _________________
 |
|
| Back to top |
|
|
souvik1997

Guru-in-Training

Joined: 19 Apr 2010 Posts: 2870
|
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 01:38:04 pm Post subject: |
|
|
| souvik1997 wrote: | | What are the additional dcsb features? |
:: sum(11) (aka RenderGUI) now accepts an additional argument specifying whether or not to copy the buffer to the LCD after rendering the GUI to the buffer.
:: sum(13) (aka GUIMenu) no longer causes odd glitches on the Homescreen if the programmer does not ClrHome afterwards.
:: A coordinate glitch I discovered with (aka GUIMenu), and crash bugs with sum(7) for GUIRScrollVert and GUIRScrollHoriz have been repaired. _________________

Last edited by KermMartian on 20 Aug 2010 05:25:00 pm; edited 1 time in total |
|
| Back to top |
|
|
alberthrocks
Power User

Joined: 29 Jul 2010 Posts: 403
|
Posted: 20 Aug 2010 01:39:11 pm Post subject: |
|
|
| KermMartian wrote: | | souvik1997 wrote: | | What are the additional dcsb features? |
:: sum(11) (aka RenderGUI) now accepts an additional argument specifying whether or not to copy the buffer to the LCD after rendering the GUI to the buffer.
:: sum(13) (aka GUIMenu) no longer causes odd glitches on the Homescreen if the programmer does not ClrHome afterwards.
:: A coordinate glitch I discovered with (aka GUIMenu), and crash bugs with sum(7) for GUIRScrollVert and GUIRScrollHoriz have been repaired. |
Hehe, my feature is here
Also - is this available in ASM too? |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 01:41:59 pm Post subject: |
|
|
Is which part available in ASM? RenderGUI or GUIMenu? And yes, there's your feature! Did you test it out yet? _________________
 |
|
| Back to top |
|
|
alberthrocks
Power User

Joined: 29 Jul 2010 Posts: 403
|
Posted: 20 Aug 2010 01:43:03 pm Post subject: |
|
|
RenderGUI, with the added feature.
And I will be testing it out shortly, no worries!  |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 01:44:15 pm Post subject: |
|
|
| alberthrocks wrote: | RenderGUI, with the added feature.
And I will be testing it out shortly, no worries!  | Nope, ASM programs must let the GUI be rendered. There's never been a request for anything else, because ASM programs can use GUIRCustoms, which are callback functions into the main program when the GUI gets rendered. That kinda nullifies a reason to not copy the buffer to the LCD.  _________________
 |
|
| Back to top |
|
|
alberthrocks
Power User

Joined: 29 Jul 2010 Posts: 403
|
Posted: 20 Aug 2010 01:47:05 pm Post subject: |
|
|
Ahh, nice
So does that mean I could hide the screen when it's rendered (in ASM), do what I need to do, then give control back to DCS? |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 01:50:27 pm Post subject: |
|
|
| alberthrocks wrote: | Ahh, nice
So does that mean I could hide the screen when it's rendered (in ASM), do what I need to do, then give control back to DCS? | Sort of. It means that Doors CS will start at the bottom of the topmost Groupmaster (GUIRNull, GUIRSmallWin, or GUIRLargeWin), render upwards until it finds your GUIRCustom, then wait until you return from the GUIRCustom call before finishing the render with anything above the GUIRCustom, and then copying the buffer to the LCD. _________________
 |
|
| Back to top |
|
|
souvik1997

Guru-in-Training

Joined: 19 Apr 2010 Posts: 2870
|
Posted: 20 Aug 2010 02:10:44 pm Post subject: |
|
|
I install TILP on my ubuntu laptop, so I am testing now!
The only thing I noticed was that when DCS first starts up, it _always_ from a particular page. On my calc, it is the page where I have DocDE7. This issue has existed since dcs 6.9, but I forgot to write a bug report for it  _________________ CALCnet Tournament-38%
deviantArt
 |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 02:12:01 pm Post subject: |
|
|
| souvik1997 wrote: | I install TILP on my ubuntu laptop, so I am testing now!
The only thing I noticed was that when DCS first starts up, it _always_ from a particular page. On my calc, it is the page where I have DocDE7. This issue has existed since dcs 6.9, but I forgot to write a bug report for it  | I think you're describing a feature, not a bug. Go to another page, quit, and re-enter Doors CS. Now does it start at that page? _________________
 |
|
| Back to top |
|
|
souvik1997

Guru-in-Training

Joined: 19 Apr 2010 Posts: 2870
|
Posted: 20 Aug 2010 02:14:26 pm Post subject: |
|
|
Yeah, but when I install dcs, it always starts from that page (like when I delete the DCS appvars) _________________ CALCnet Tournament-38%
deviantArt
 |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 02:20:17 pm Post subject: |
|
|
| souvik1997 wrote: | | Yeah, but when I install dcs, it always starts from that page (like when I delete the DCS appvars) | How odd! Which page is that? I bet I might know what the problem is... _________________
 |
|
| Back to top |
|
|
souvik1997

Guru-in-Training

Joined: 19 Apr 2010 Posts: 2870
|
Posted: 20 Aug 2010 02:21:01 pm Post subject: |
|
|
page 4 on my calc
Edit: this problem happens sporadically
Edit2: I think this problem is more of a migration issue form dcs 6.x to dcs 7 rc _________________ CALCnet Tournament-38%
deviantArt
 |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 02:31:05 pm Post subject: |
|
|
| souvik1997 wrote: | page 4 on my calc
Edit: this problem happens sporadically
Edit2: I think this problem is more of a migration issue form dcs 6.x to dcs 7 rc | As I suspected, I just didn't initialize the initial screen in the AppVar. It's a trivial fix; not enough to force a second Release Candidate in my opinion. Thanks for that, Souvik. Keep the bug reports (and non-bug-reports coming), gang! _________________
 |
|
| Back to top |
|
|
souvik1997

Guru-in-Training

Joined: 19 Apr 2010 Posts: 2870
|
Posted: 20 Aug 2010 02:37:04 pm Post subject: |
|
|
strangely, I can't get this bug to reproduce after i told you about it  _________________ CALCnet Tournament-38%
deviantArt
 |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 02:38:36 pm Post subject: |
|
|
| souvik1997 wrote: | strangely, I can't get this bug to reproduce after i told you about it  | That's ok, I still managed to track down the underlying reason and do something about it.  _________________
 |
|
| Back to top |
|
|
WhiteValkery
Power User

Joined: 07 Oct 2008 Posts: 493 Location: US
|
Posted: 20 Aug 2010 05:19:41 pm Post subject: |
|
|
cool!
downloading and testing now!  _________________ deseased....
oops.. i mean...
he left XD |
|
| Back to top |
|
|
KermMartian

Site Admin

Joined: 14 Mar 2005 Posts: 55762 Location: Earth, Sol, Milky Way
|
Posted: 20 Aug 2010 05:20:38 pm Post subject: |
|
|
| WhiteValkery wrote: | cool!
downloading and testing now!  | Superbulous! Let me know what you find. _________________
 |
|
| Back to top |
|
|
qazz42

Vampire Killer

Joined: 07 Apr 2010 Posts: 4177
|
Posted: 20 Aug 2010 07:30:18 pm Post subject: |
|
|
it seems fine, but one thing I want to test >.> _________________
 |
|
| Back to top |
|
|
|
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.
» Go to Registration page
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
© Copyright 2000-2013 Cemetech & Kerm Martian :: Page Execution Time: 0.043423 seconds.
|