Notices


Reply
Thread Tools
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#441
WIKI updated with more details about the CHECKSUM issues

As per earlier experiences, there has also been an issue with big fonts leading "Import/Export Exported Instance" Buttons to move out of the screen and become invisible.

Crippled Advanced Dialog Box


Correct Advanced Dialog Box


As per the WIKI, Buttons needed for Import and Export of Instance Data are 14 and 15

Buttons 8 & 9 are for Import/Export of Command Data
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following 2 Users Say Thank You to No!No!No!Yes! For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#442
One more thingie...
Try to avoid use of "\n" newline in beecon command:
Code:
if [ $QBW_EXEC_REASON == "QBW_TIMER_UPDATE" ] ; then  \n  if [ "$QBW_REMEMBER_ME" = locked ] ; then\n    ...
Proper way to deal with complex one-liner shell statements is the ";" semicolon character (this is an abstract example for QBW On Desktop Dialer Widget):
Code:
DIALER_QBW_ID=id15;DIGIT="*    +";case $QBW_HOTSPOT_PRESS in [0147]) DIGIT="*" ;; [369]) DIGIT="+" ;; *) exit 0 ;; esac; if [ "$QBW_EXEC_REASON" != "QBW_CLICK" ];then exit 0;fi; DIALLED=`run-standalone.sh dbus-send --session --print-reply --type=method_call --dest=oh.no.more.qbw /oh/no/more/qbw$DIALER_QBW_ID oh.no.more.qbw.get_current_results_text | tail -1 | cut -d\\" -f2`; if [ "$DIALLED" == "DIAL NUMBER" ] ;then DIALLED=""; fi; run-standalone.sh dbus-send --session --type=method_call --dest=oh.no.more.qbw /oh/no/more/qbw$DIALER_QBW_ID oh.no.more.qbw.exec string:"echo \\"$DIALLED\\"\\"$DIGIT\\""
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following 2 Users Say Thank You to No!No!No!Yes! For This Useful Post:
Posts: 47 | Thanked: 11 times | Joined on Oct 2009 @ Ireland
#443
[request] Is it possible to add rotate functionality to the widget, similar to dr.launcher? So the widget icons rotate (not the actual desktop)
 
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#444
Originally Posted by dandiesel View Post
[request] Is it possible to add rotate functionality to the widget, similar to dr.launcher? So the widget icons rotate (not the actual desktop)
Ciao, it is now possible only for text labels (both Command Title and Results angles).
For rotated icons I suggest you use paint proggie and save a rotated copy of the Icon then programmatically use normal or rotated one. (use "click hot spots" on widget to change orientation by issuing dbus-send set_param_string commands to programmatically change layout of the widget and icons to use.

Maybe in next releases that will be possible by directly hooking QBW to DBUS orientation signals and providing programmatic notification for that ... but this is future for now
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following 2 Users Say Thank You to No!No!No!Yes! For This Useful Post:
No!No!No!Yes!'s Avatar
Posts: 700 | Thanked: 846 times | Joined on Nov 2009
#445
@techie
i spent some time on your OC QBW... I have another suggestion for a possibile optimization of the script ...
instead of changing QBW icons/images via dbus-send commands, why not use the beecon exit status features and images indexing
Also alpha transparency could be used in images masks to obtain cool effects for the final widget.

See Poker Dice Roller or O'clocker for example.
__________________
Have a look at Queen BeeCon Widget (WIKI) Customizable and flexible widget-based multi-instance monitoring, alerting and interactive tool for the N900
Please provide comments and feedback for having QBW supported and enhanced further - (DONATE) - v1.3.3devel / v1.3.3testing / v1.3.3extras
 

The Following 2 Users Say Thank You to No!No!No!Yes! For This Useful Post:
Posts: 427 | Thanked: 160 times | Joined on Nov 2009
#446
hmm i had the program crash while creating a new snippet, and ALL of my beecons suddenly disappeared off of my desktops! is there a quick fix to restore them?
__________________
Please vote for the following bug:
Media player should play audio tracks continuously (gapless playback)
 
Posts: 208 | Thanked: 220 times | Joined on Apr 2010
#447
Originally Posted by No!No!No!Yes! View Post
One more thingie...
Try to avoid use of "\n" newline in beecon command:
Actually I was editing the code on the device itself with indentation so it inserted \n automatically, I didn't.Will get rid of it if it makes a difference.

i spent some time on your OC QBW... I have another suggestion for a possibile optimization of the script ...
instead of changing QBW icons/images via dbus-send commands, why not use the beecon exit status features and images indexing
Also alpha transparency could be used in images masks to obtain cool effects for the final widget.

See Poker Dice Roller or O'clocker for example.
Thank You for your time! I looked at the above examples and must admit that is a smart way, I didn't know the app could read images based on index extensions, the more I learn of the capabilities of this app the more it impresses me and intrigues me how much work you put into this,kudos to you! (btw dd is a scary command esp since the first explanatory example I stumbled upon was
if=: /dev/zero: of=:/dev/hda: )
Will work on implementing your suggestions.
Another thing, although I try my best that minimum statements have to be executed, there is no conclusive statistical reading that I can check, so can you please possibly point me to some tool that I can use to compare how much optimized is one set of code to another.

I noticed that the the rollem deck has a boundary when pressed but I couldn't figure how it was done as there is no other image for it.So how is this done?And what is meant by alpha transparency?

Also No!No!No!Yes! can you check (maybe after you get back) if there is an issue with setting timer update interval using dbus.
It seems 0 (timer disable) can't be set but other values do(haven't checked all) including 9 (custom with interval 0 sec also works).And yes I did do reset_rearm_timer
__________________
With Linux-powered N900..ANYTHING is possible
 

The Following User Says Thank You to techie For This Useful Post:
Posts: 208 | Thanked: 220 times | Joined on Apr 2010
#448
@moepda
Although I was reluctant to do it, mainly because I have no way to know yet how much effect the size of code (even small) will have on memory, I still have modded it to your liking.Although I haven't tested it thoroughly it probably would work
Attached Files
File Type: txt snippet_OCCP_min+batt.txt (5.1 KB, 137 views)
__________________
With Linux-powered N900..ANYTHING is possible
 

The Following 2 Users Say Thank You to techie For This Useful Post:
moepda's Avatar
Posts: 334 | Thanked: 118 times | Joined on Apr 2010 @ United Kingdom
#449
cheers techie your a star !!! will test and report back how it goes so to keep you informed
 
Posts: 376 | Thanked: 36 times | Joined on Jun 2010
#450
howcan i write a command for reboot??
 
Reply


 
Forum Jump


All times are GMT. The time now is 17:41.