Due to my sheet music page’s popularity (it has over %60 of the page views on this site!) and because I didn’t set up comments for pages on the main site, this page is for you to tell me what you think about my transcriptions and compositions. If you like my work, want to suggest a song to transcribe, or just want to tell me something, please leave a comment!
Monthly Archives: September 2010
Network Issues Resolved!
2010Up until yesterday, I could not make or edit long posts. After talking with the campus network admins here, they discovered a firewall component that was generating false positives and blocking my posts. With it fixed, I can once again post things!
Here’s an update on the things I’m working on/have planned. This is most likely in the order they’ll be completed.
- An Opera Unite service that serves a purpose similar to Firefox’s BarTab extension.
- Part 2 of my post on extending Aero Glass in a WPF application.
- Separate the parser/evaluator from the UI thread in GlassCalc
- Build a WordPress 3.0 compatible theme and rework site navigation.
Another Small Update
2010I still haven’t figured out the network problem, but it looks like POST requests involving 2000+ 1500+ characters get blocked.
This is mostly a bugfix release, but I’ve added one handy function: The delete command can now delete multiple variables/functions at once. You can now use expressions like delete x y f() g()
. The parser is also more lenient, so delete f(
will delete f(). Download the new release from the GlassCalc software page or just run the auto-updater.
Since the changelog page is big and my stupid network won’t let me edit big posts, here’s the changelog for this version:
Sorry, the changelog is too big. T_T
Crash Fix
2010I’ll have to keep this short, because there’s some sort of network monster here that eats all of my long posts.
There was a bug in 1.30.1 and lower that caused a crash on startup if GlassCalc was set to save history items and the saved history contained a semicolon. This is now fixed. If you can start GlassCalc without it crashing, the updater should pick up the new version. Otherwise, download the new version (still 1.30) from the GlassCalc software page.
Bugfixes!
2010I uploaded GlassCalc 1.30 a few days ago, but a combination of strange network problems and lack of time has kept me from writing about until now. Thanks to the most bizarre network error I have ever seen, I cannot update the changelog page, but I can update everything else. Until I get some help from the campus network people, I’ll post the changes here.
This version mostly fixes a number of bugs. The inverse trig functions were all completely wrong. I promise I will never again blindly copy-paste code without testing it. There are also a number of fixes for non-default multiplication signs. I’ve also added a delete function, which is just another alias for unset, and undefine.
I am currently rewriting the parser code to separate it from the UI thread. This means GlassCalc will no longer freeze while performing long calculations like solve, and I can implement things like evaluating as you type. I have very little knowledge about multi-threaded applications, so the process is long, hard, and completely unlike what those of you with dirty minds are now thinking about. You can check the roadmap to see what else I am working on.
Aug 29, 2010: v1.30.1
- Fixed a problem with uppercase E not being recognized in exponential notation. This also fixed a problem with very large/small scale factors.
Aug 26, 2010: v1.30
- Fixed inverse trig functions (they were broken thanks to blind copy-paste. I’ve implemented unit tests to help keep this from happening again)
- Non-default multiplication sign gets proper syntax highlighting
- Syntax highlighting preview now uses correct multiplication sign
- Non-default multiplication sign will now trigger “ans” autocompletion.
- sinh and cosh now work with degree angles.
- factorial now works on negative numbers
- Added arccos, arcsin, arctan… aliases for acos, asin, atan…
- Added atan2(y,x). This is actually an alias for atan(y,x).
- You can no longer define functions with the same name as aliases.
- Added delete command as another alias for unset and undefine
- UI fixes. Clicking to the left of a result now selects it. Input box background color is once-again changeable.