maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread (https://talk.maemo.org/showthread.php?t=45388)

James_Littler 2011-01-02 12:25

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
1 Attachment(s)
it gets to here, says root shell enabled, then exits terminal.

If I go root then run the script it works perfectly.
Maybe if I put root as the first command.

James_Littler 2011-01-02 13:16

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
right, got it

Code:

#!/bin/sh

sudo ifconfig wlan0 down;
sudo iwconfig wlan0 mode Monitor;
sudo ifconfig wlan0 up;

exit;

does the trick

stevomanu 2011-01-02 15:12

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by James_Littler (Post 909745)
right, got it

Code:

#!/bin/sh

sudo ifconfig wlan0 down;
sudo iwconfig wlan0 mode Monitor;
sudo ifconfig wlan0 up;

exit;

does the trick

how would you get it back to normal after apllying this , good idea thanks !

James_Littler 2011-01-02 16:45

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
swap Moritor for Managed to get back to managed mode.

I've put the call to load the driver
sh pathToFile.load.sh

as the first command of the monitor mode beecon so it loads the driver then switches to monitor mode.

stevomanu 2011-01-02 17:44

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by James_Littler (Post 909872)
swap Moritor for Managed to get back to managed mode.

I've put the call to load the driver
sh pathToFile.load.sh

as the first command of the monitor mode beecon so it loads the driver then switches to monitor mode.


just need to get driver installed now then will all be good cheers .

dr_frost_dk 2011-01-11 00:32

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
I was wondering if it is possible to use $QBW_WIDTH to make a beecon that changes size, it's for my custom battery meter which now just displays V and % battery (REAL %) - see my battery test thread: page #1 post #3

It would be cool to make a small QBW that changes size and maybe also color depending on my custom % reading.

_My % reading is based on a discharge test i did and is the same as the official graphs on LiPo capacity by voltage.

For the battery beecon i could be made with 100 pixels, 1 for every % and maybe 10 pixels for a battery icon (so you know what it is :))

No!No!No!Yes! 2011-01-11 10:25

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by dr_frost_dk (Post 917406)
I was wondering if it is possible to use $QBW_WIDTH to make a beecon that changes size, it's for my custom battery meter which now just displays V and % battery (REAL %) - see my battery test thread: page #1 post #3

It would be cool to make a small QBW that changes size and maybe also color depending on my custom % reading.

_My % reading is based on a discharge test i did and is the same as the official graphs on LiPo capacity by voltage.

For the battery beecon i could be made with 100 pixels, 1 for every % and maybe 10 pixels for a battery icon (so you know what it is :))

Have a look at this and see if it fits:
http://talk.maemo.org/showthread.php...ery#post817934

$QBW_WIDTH is wrong way to go.
Real more customizable alternative is to play with widWidth and widHeight through set_param_double DBUS method. See http://wiki.maemo.org/Queen_BeeCon_W..._QBW_over_DBUS for details.

dr_frost_dk 2011-01-12 16:51

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
have decided to go with an easier approach.
as the battery % meter is right now it is a little dull and can be "hard" to read.

So this is what i want to do:
Change the background color to match the different levels of charge so it goes from green to red.

but how do i do it, i have tried to include snippetExtBgRGB in my script but it does nothing or gives an error....

does nothing:
'snippetExtBgRGB #<ffff><0000><0000>
gives error
snippetExtBgRGB=#<ffff><0000><0000>

No!No!No!Yes! 2011-01-12 19:43

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by dr_frost_dk (Post 918833)
have decided to go with an easier approach.
as the battery % meter is right now it is a little dull and can be "hard" to read.

So this is what i want to do:
Change the background color to match the different levels of charge so it goes from green to red.

but how do i do it, i have tried to include snippetExtBgRGB in my script but it does nothing or gives an error....

does nothing:
'snippetExtBgRGB #<ffff><0000><0000>
gives error
snippetExtBgRGB=#<ffff><0000><0000>

If you just need 5 background colors or less:
Make qbw a beecon [1=Beecon]
http://wiki.maemo.org/images/thumb/4...px-Snap193.jpg

Show background [1=No]:
http://wiki.maemo.org/images/thumb/5...px-Snap031.png

Blank Images [1,4,7,10,13]
Change Background Color at will [3,6,9,12,15]
http://wiki.maemo.org/images/thumb/7...px-Snap201.jpg

Have your command/script exit with -1,0,1,2,3 exit status according to battery charge level.

dr_frost_dk 2011-01-12 22:38

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
That works if i use exit code.....But im having a hard time to get it to work since im using AWK, heres a line from the script, where would i put the 'exit 1' code?

echo $x | awk '{if ($1 > 3900 && $1 <= 4050) printf "%1.3fV - %3.1f", $1 / 1000, 70 + ($1 - 3900) / 10}'

i have tried many different ways but cant seem to get it to use exit code......

No!No!No!Yes! 2011-01-13 09:11

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by dr_frost_dk (Post 919081)
That works if i use exit code.....But im having a hard time to get it to work since im using AWK, heres a line from the script, where would i put the 'exit 1' code?

echo $x | awk '{if ($1 > 3900 && $1 <= 4050) printf "%1.3fV - %3.1f", $1 / 1000, 70 + ($1 - 3900) / 10}'

i have tried many different ways but cant seem to get it to use exit code......

You have solved ... I guess?!

dr_frost_dk 2011-01-13 10:38

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
kind off, used a more basic code "sh", not so elegant but it gets the job done.

Side Question:
why is the sh in the N900 terminal not "advanced" enough to use
Code:

if [[ $x -ge 3660 && $x -lt 3800 ]];then
as in my new beecon V1.2 i had to use
Code:

if [ $x -ge 3660 ];then if [ $x -lt 3800 ];then
which is kinda stupid double work.... and that's why i used AWK instead, and of course i still use AWK because it is easier to calculate in and can make it look "pretty" with #.### and ###.# like the old qbasic way (print using), sadly that's my only programming language i am a custom to since i started in about 1994, before that C64 :D
Code:

if [ $x -ge 3660 ];then if [ $x -lt 3800 ];then
echo $x | awk '{printf "%1.3fV - %3.1f", $1 / 1000, 15 + ($1 - 3660) / 4}{print "%"}'
exit 1
fi;fi

But the new V1.2 really helps to get a quick overview of the battery level, with the colors
BLUE - (85% - 100%) - Full charge
GREEN - (50% - 85%) - Still good
YELLOW - (15% - 50%) - Getting Low
ORANGE - (5% - 15%) - Start thinking about finding your charger
RED - (0% - 5%) - I told you to find that charger!!!

Next Version maybe with voice control so that it screams at you when it is low :D

No!No!No!Yes! 2011-01-13 10:53

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by dr_frost_dk (Post 919392)
kind off, used a more basic code "sh", not so elegant but it gets the job done.

Side Question:
why is the sh in the N900 terminal not "advanced" enough to use
Code:

if [[ $x -ge 3660 && $x -lt 3800 ]];then
as in my new beecon V1.2 i had to use
Code:

if [ $x -ge 3660 ];then if [ $x -lt 3800 ];then
:D

cond1 -a cond2 True if both cond1 and cond2 are true.
cond1 -o cond2 True if either cond1 or cond2 is true.

Have a look at this for further references

dr_frost_dk 2011-01-13 11:05

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Nice :), V1.2 will be soon replaced with V1.3

Thank you so much.
The code would not work, the one with && worked in ubuntu terminal so i thought i would be the same in maemo terminal.
But i just have to use -a instead of &&

Battery thread updated

dr_frost_dk 2011-01-13 23:23

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
a little problem have arrived.....

i cannot get the blue color on since i can't figure out how to get "exit code -1", if i use
Code:

exit -1
it gives exit code 2???

how do i use exit code -1?

the color now gets orange when charge is over 85%......

dr_frost_dk 2011-01-14 08:58

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
BUMP.

Anybody knows the exact command to get exit code -1

No!No!No!Yes! 2011-01-14 09:28

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by dr_frost_dk (Post 920069)
BUMP.

Anybody knows the exact command to get exit code -1

awk '{exit -1}'

however -1 is used to return some system error condition, so expect some extra output to be displayed

dr_frost_dk 2011-01-14 09:52

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
awk didn't work, it just crashed my hildon-desktop and now i have to add ALL my widgets again, it's good that they know their position

well im just going to use 4 colors, but thats ok
so now it's:
GREEN
YELLOW
ORANGE
RED

James_Littler 2011-01-15 10:39

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Sorry for jumping in guys but I need a bit of help.

How do I start a terminal session with a command and leave it running?
e.g. how would I create a widget to open xterminal then run 'sudo kernel-config show' and leave the window open?

Thanks

seasharkvvv 2011-01-16 22:00

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
hi im having trouble getting day and night beecon working. it looks great and i would really like it working. i didnt understand step 2. ccredit to the devlopers.

cheers, 1st post,,day 1 of getting new n900,,wanted to get the best widget :P after getting an amzing loopable wallpaper :( :P

i will no longer be a noob soon :cool:

No!No!No!Yes! 2011-01-17 09:31

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by seasharkvvv (Post 921851)
hi im having trouble getting day and night beecon working. it looks great and i would really like it working. i didnt understand step 2. ccredit to the devlopers.

cheers, 1st post,,day 1 of getting new n900,,wanted to get the best widget :P after getting an amzing loopable wallpaper :( :P

i will no longer be a noob soon :cool:

Post and Instructions are now actualized and working... please check them again and proceed accordingly.

Ciao.

seasharkvvv 2011-01-17 15:42

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
it still doesnt work :(
i cant wait for it to work it'll be immense
this is what I get [!?7f00]
Mon Jan 17 15:42:39 GMT 2011
DAY AND NIGHT
Image not found

No!No!No!Yes! 2011-01-18 16:15

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Queen BeeCon Widget release 1.3.3 is now in extras-devel
Partial Change Log follows... (Full Change Log in the WIKI)
Code:

queen-beecon (1.3.3)

  * New: -   
  * Changed: For further readability, QBW Logger now outputs "¶"=chr$(182) instead of "\n"=newlines inside log strings. Only last newline is outputted untranslated.
  * Bugfixing: Widget Assertion failed on QBW startup and Animation Stop; fixed
  * Bugfixing: System Proxies fetching/clearing logic bugged (again!); fixed
  * Bugfixing: No proper reset in DBUS Monitor INIT/DEINIT logic; fixed

queen-beecon (1.3.2)

  * New: -   
  * Changed: Enabling logger verbosity in Logger Verbosity Button in Advanced Settings and Tools Dialog Box enables logging if not enabled on startup by touchlogfile     
  * Changed: Logger timestamps are now printed in ISO 8601 encoded string, relative to the Coordinated Universal Time (UTC)
  * Bugfixing: Version was not displaying in About Box because of font too big; fixed

queen-beecon (1.3.1)

  * New: -   
  * Changed: -
  * Bugfixing: Incorrect error "error enabling QBW_SUBSYSTEM_TIMER" report in TIMER subsystem rearm

queen-beecon (1.3)

  * New: Ability to sense Phone Orientation and execute scripts accordingly + Relevant configuration parameters (updOnOrientation)
  * New: Phone Orientation Parameter Variables substitution for using with scripts which hold $QBW_ORIENTATION_MODE, $QBW_ORIENTATION_STAND, $QBW_ORIENTATION_FACE, $QBW_ORIENTATION_X, $QBW_ORIENTATION_Y, $QBW_ORIENTATION_Z
  * New: Ability to sense GPS/Location information and execute scripts accordingly + Relevant configuration parameters (GPSsettings)
  * New: GPS/Location Parameter Variables substitution for using with scripts which hold $QBW_LOCATION_FIX current position FIX in string form
  * New: Added option to wrap text results and relevant configuration parameter resWrapLongLines
  * New: New about box in Advanced Settings dialog Box with Application Name, Description, Version, Buttons for "Visit website" "Report bug" "Donate", Copyright info
  * New: Added confirmation in Command Deletion Dialog Box
  * New: Added the possibility to completely hide widget and display only the animation when updating (useful for example to draw on-click/press FX frames and visual feedback to buttons)
  * New: Parameter Variables substitution for using with scripts which holds the current X position of QBW widget ($QBW_POSITION_X); useful for dynamic update/processing of widget according to its position on screen 
  * New: Parameter Variables substitution for using with scripts which holds the current Y position of QBW widget ($QBW_POSITION_Y); useful for dynamic update/processing of widget according to its position on screen 
  * New: Implementation of toggle for multi-click support (quicker click response if disabled); with relevant settings & configuration parameter "multiClick" 
  * New: Implementation of DBUS methods: reset_rearm_connection
  * New: Implementation of DBUS methods: reset_rearm_location
  * New: Implementation of DBUS methods: reset_rearm_orientation
  * New: Implementation of DBUS methods: reset_rearm_dbus_monitor
  * Changed: Complete QBW icons restyle!!!
  * Changed: Changed some settings sensitivity logic according to enablement of relevant function
  * Changed: Command Input Buffer in Advanced Settings Dialog Box now accepts linebreaks in the input for improved command readability
  * Changed: Progress Animation is now not shown if widget is set to invisible
  * Changed: @connection events now have their management subsystem and gets activated only for instances requiring it
  * Changed: Changed logger verbosity @connection event
  * Changed: Restyle in Update Policy Settings
  * Changed: UI Restyle in Advanced Settings and Tools Dialog Box 
  * Changed: UI Restyle in Widget Size Settings 
  * Changed: UI Restyle in Widget Positioning Settings 
  * Changed: More verbosity for Pango Markup Language inconsistencies notification (Now instance id and offending command title are displayed)
  * Changed: Optimization in wakeup/sleep logic (better error management and notifications)
  * Bugfixing: Instance parameters related to commands (instanceTitle, instanceCmd) where not poperly updated when edited both in Advanced Dialog Box and in Command Add/Edit/Delete dialog box; fixed
  * Bugfixing: Network connection/disconnection logic; fixed
  * Bugfixing: In Advanced Dialg Box, export of command not in list caused SEGFAULT; fixed

queen-beecon (1.2)

  * New: All work and no play makes No!No!No!Yes! a dull boy - Release Candidate to Extras (1.0.53 -> 1.2)   
  * Changed: All work and no play makes No!No!No!Yes! a dull boy - Release Candidate to Extras (1.0.53 -> 1.2)
  * Bugfixing: All work and no play makes No!No!No!Yes! a dull boy - Release Candidate to Extras (1.0.53 -> 1.2)

queen-beecon (1.0.53)

  * New: Parameter Variables substitution for using with scripts which holds the current width of QBW widget ($QBW_WIDTH); useful for dynamic recalculation of click hotspots
  * New: Parameter Variables substitution for using with scripts which holds the current height of QBW widget ($QBW_HEIGHT); useful for dynamic recalculation of click hotspots
  * New: Parameter Variables substitution for using with scripts which holds the exit status of the last previous executed command ($QBW_PREVIOUS_EXIT_STATUS)
  * New: Added new Network Connection Event condition (NETWORK__PASSTHROUGH) which will trigger the execution of command at every Network Related event. Management of the connection event status will be completely delegated to the command through $QBW_IS_CONNECTED and $QBW_EXEC_REASON=="QBW_CONNECTION_EVENT" Parameter Variables substitution. 
  * Changed: Optimized "cancel on exec in progress" logic 
  * Bugfixing: Some network connection status change issues; fixed

queen-beecon (1.0.52)

  * New: In Command and Instance import in Advanced Settings and Tools Dialog Box, command title is now checked for existence, if existent "+"s are appendend till name is unique 
  * New: In Add/Edit Command Dialog box, command title is now checked for existence, if existent, user is now asked for unique name 
  * Changed: - 
  * Bugfixing: Both in Settings and in Advanced Settings and Tools Dialog Box, Command Selection button was not correctly re-populated after operations on commands list (add/delete/import); fixed

queen-beecon (1.0.51)

  * New: Added Reset/Truncate Logfile action to Logger Verbosity Button in Advanced Settings and Tools Dialog Box
  * Changed: - 
  * Bugfixing: -

queen-beecon (1.0.5)

  * New: Possibility to directly modify the "rememberMe" parameter from the output of the executed command (without using the DBUS interface which is much slower) for using with scripts which need to hold/manipulate status or persistency information. Just echo the following string (which will not be displayed) as output of your command "QBW_REMEMBER_ME(<content to be remembered>)" no angle brackets; escape "close round bracket" like this "\)" to store it as ")"
  * Changed: Extended warning message in case of inconsistent Pango Markup Language output ("QBW Warning! Possible Pango Markup Language inconsistent/unterminated Tag!") 
  * Changed: Extended warning message in case of inconsistent/non-UTF-8 output in TestDrive output Buffer ("QBW Warning! Expected/Shown Command Output mismatch. Possible charset different from UTF-8!") 
  * Bugfixing: QBW re-enable on double-click logic bugged; fixed

queen-beecon (1.0.4)

  * New: Implemented the possibility to have the Progress Animation displayed at widget click X,Y coordinates; with relevant configuration parameter "progressAnimationAtClickXY" 
  * New: Implemented the possibility to hide the background Canvas on click both for Beecons and Snippets with relevant configuration parameter "hideClickCanvas" 
  * Changed: Some optimizations in QBW at startup, expecially for instances with execute @startup flag; should speed up widget appearance
  * Changed: Checks for obsolete instances in configuration file moved to Advanced Settings and Tools Dialog; check is performed upon entering.
  * Changed: Some optimizations in progress icon animation logic
  * Changed: Some optimization in multiple-clicks management
  * Bugfixing: Command output for Test Drive in Advanced Settings and Tools Dialog still buggy and not displaying complete output; fixed
  * Bugfixing: Logic for multiple clicks count was a bit bugged; fixed
  * Bugfixing: DBUS Signal emission at end of command execution was misplaced ; fixed
  * Bugfixing: Logging info incorrect for timeout seconds count function GetSeconds; fixed

queen-beecon (1.0.3)

  * New: Added button to change Logger Verbosity in Advanced Settings and Tools Dialog Box
  * New: Implementation of Command and Results image orientation angle (w/ relevant configuration parameters)
  * New: Added edit box in Settings Dialog for "rememberMe" value. Can now be initialized also from widget and not only via DBUS method 
  * New: Parameter Variables substitution for using with scripts which holds the number of times a QBW was pressed/clicked: $QBW_CLICKS_COUNT; useful for handling single/double/triple... clicks and behave accordingly (Tested up to 12 ... :) )
  * New: Parameter Variables substitution for using with scripts which hold X and Y coordinates where a QBW was pressed/clicked: $QBW_CLICK_X, $QBW_CLICK_Y; useful for handling different arbitrary/dynamic hotspots on widgets via launched shell scripts
  * Changed: Now QBW instances with status disabled/minimized (black small 60x60 inactive sleeping bee icon) are enable again on double-click and non on single-click
  * Bugfixing: TestDrive in Advanced Settings and Tools Dialog Box was not fetching the whole command output; fixed 
  * Bugfixing: Typos in "Edit Cmd" Dialog Box title; fixed 
  * Bugfixing: Not proper memory deallocation of some strings parameter in Settings Dialog; fixed   

queen-beecon (1.0.2)

  * Source Modules: Changed architecture of source module ... now split into single modules according to QBW subfunctions ... expect some sneaky regressions!!!
  * New: Parameter Variables substitution for using with scripts which holds Network Connection status: $QBW_IS_CONNECTED (true=QBW Instance is connected to the network (either WLAN or GPRS) false=QBW Instance is NOT connected to the network (either WLAN or GPRS))
  * Changed: In Settings Dialog Box changed "Custom(")" to "Custom(Secs)" for custom timer label
  * Changed: In Advanced Settings and Tools Dialog Box it's now possible to scroll dialog both vertically and horizontally. So all buttons will be accessible even if you have big fonts
  * Changed: In Advanced Settings and Tools Dialog Box added more checks for Import Instance/Command Data (It should now be more restrictive on Import Data consistency/congruency)
  * Bugfixing: System Proxy fetching logic bugged; fixed
  * Bugfixing: reset_rearm_timer DBUS method call was not disabling timer when timer update was disabled; fixed
  * Bugfixing: set_param_uint32 DBUS method call had problems if values = 0; fixed

queen-beecon (1.0.0.1)

  * New: Nothing - Release Candidate to Extras (0.1.9.9 -> 1.0.0.1)   
  * Changed: Nothing - Release Candidate to Extras (0.1.9.9 -> 1.0.0.1)
  * Bugfixing: Nothing - Release Candidate to Extras (0.1.9.9 -> 1.0.0.1)


Usual WARNINGS apply to extras-devel material


Update should also address serious DBUS Monitor problems pointed out by Psioneer HERE

Feel free to experiment with all extended features and please report bugs and experiences or feature requests here.
Please, report any problem or crash during installation/upgrade if they still persist
Have fun!!!
http://i.imgur.com/UMVtO.png

NightShift79 2011-01-18 20:23

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
You see any chance to make QBW multilanguage?
I would start making a german translation if you can make it possible.
*.po files or *.ts files ?

No!No!No!Yes! 2011-01-18 21:39

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by NightShift79 (Post 923280)
You see any chance to make QBW multilanguage?
I would start making a german translation if you can make it possible.
*.po files or *.ts files ?

Good point ... I'd ask the community, through a poll thread, if interested people mass is worth the effort.
Could you point me to relevant multilanguage development documentation?
Thanks.

No!No!No!Yes! 2011-01-18 22:02

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by No!No!No!Yes! (Post 923343)
Good point ... I'd ask the community, through a poll thread, if interested people mass is worth the effort.
Could you point me to relevant multilanguage development documentation?
Thanks.

OK, poll thread created HERE

Schturman 2011-01-19 06:16

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hello
Ppl, maybe someone can help me create two commands that can do:
1) switch BT "ON" and connect 3G and activate specific custom profile of messenger "Availability".

2) switch BT "OFF" and disconnect 3G and activate default "OFFLINE" profile of messenger "Availability".

I read the wiki for phone control, but I'm not programmer and I still need help to create this 2 command lines..
Thanks

arvind 2011-01-20 09:47

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hello
Is it possible to make Contacts shortcut with QBW:
1. Using picture selected in contacts. I update my contacts with Hermes so many times pictures are updated auto. So is it possible that QBW shortcut uses contacts image so it displays updated pictures.
2. Resizing the shortcut with QBW to fit 25 shortcuts on a desktop screen.
3. Clicking the shortcut should call the default no. of the contact.

Existing contacts shortcuts are big and I can pull only 14 contacts on a desktop screen.

Thanks in advance. :)
Regards
Arvind

No!No!No!Yes! 2011-01-20 10:17

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by arvind (Post 924441)
Hello
Is it possible to make Contacts shortcut with QBW:
1. Using picture selected in contacts. I update my contacts with Hermes so many times pictures are updated auto. So is it possible that QBW shortcut uses contacts image so it displays updated pictures.
2. Resizing the shortcut with QBW to fit 25 shortcuts on a desktop screen.
3. Clicking the shortcut should call the default no. of the contact.

Existing contacts shortcuts are big and I can pull only 14 contacts on a desktop screen.

Thanks in advance. :)
Regards
Arvind

If you can find a command in x-term or shell which can do 1. and 3. then answer is yes

arvind 2011-01-20 18:52

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Hmm.. Sir I am a total noob with no knowledge of Linux.
My main idea was to add 24 contacts shortcuts. Other features i.e. No.1&3, if implemented would be more useful.
Do you think is it possible to have simpler QBW contacts shortcut with image and call function?
if yes, can you help me making 24 contact shortcuts :)
Thanks in advance and kind regards,
Arvind

kent_autistic 2011-01-23 09:26

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
hey, i need a widget that shows the image in this link: http://weather.is.kochi-u.ac.jp/SE/00Latest.jpg

how do i go about it? thanks!

cloud596 2011-01-23 13:47

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
@No1No!No!Yes1 how to make signal indicator using qbw.
from 1 to 5 nice if you can help me.
hm one thing I want to make one widget that can everytime I tap. it will change to 2g or 3g nice if you can help me.
I want to make a home screen look alike symbian miss my n97 but that device really slow only using for call.

No!No!No!Yes! 2011-01-23 17:11

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by kent_autistic (Post 926571)
hey, i need a widget that shows the image in this link: http://weather.is.kochi-u.ac.jp/SE/00Latest.jpg

how do i go about it? thanks!

Make sure you have package wget installed
Use THIS as a template.
After you have imported the Beecon, change the url in the command (Edit Cmd button) according to your link:

No!No!No!Yes! 2011-01-23 17:17

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by cloud596 (Post 926697)
@No1No!No!Yes1 how to make signal indicator using qbw.
from 1 to 5 nice if you can help me.
hm one thing I want to make one widget that can everytime I tap. it will change to 2g or 3g nice if you can help me.
I want to make a home screen look alike symbian miss my n97 but that device really slow only using for call.

This page can help with commands for both functions.

http://wiki.maemo.org/Queen_BeeCon_W...N.2FOFF_Button
This link can help for 2G/3G button

Raif 2011-01-23 20:13

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Could someone please point me to file location where i can manualy remove a widget.

I was messing with an old clock widget and was converting to a large phone button, appended the correct command but unfortunatley forgot to change the update properties therefore it start the phone app everytime the desktop is active !!!!!!

No!No!No!Yes! 2011-01-23 20:16

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by Raif (Post 926914)
Could someone please point me to file location where i can manualy remove a widget.

I was messing with an old clock widget and was converting to a large phone button, appended the correct command but unfortunatley forgot to change the update properties therefore it start the phone app everytime the desktop is active !!!!!!

http://wiki.maemo.org/Queen_BeeCon_Widget#Startup

Raif 2011-01-23 20:45

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by No!No!No!Yes! (Post 926916)

Thanks for the quick reply, all sorted now :)

Also thanks for an awesome app!

[DarkGUNMAN] 2011-01-24 13:30

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
I'd like to offer a suggestion to improve QBW. Based on my experience with flipclock and the number of widgets reqiuerd to run it and in which order they need to appear above/below/beside each other, could you please include a group/ungroup option so a complicated collection of qbw widgets can be organised, then treated as a single contained widget by the system?

No!No!No!Yes! 2011-01-24 14:35

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Quote:

Originally Posted by [DarkGUNMAN] (Post 927354)
I'd like to offer a suggestion to improve QBW. Based on my experience with flipclock and the number of widgets reqiuerd to run it and in which order they need to appear above/below/beside each other, could you please include a group/ungroup option so a complicated collection of qbw widgets can be organised, then treated as a single contained widget by the system?

Sorry ... there are currently limitations in the Hildon-Home plugins architecture which cannot be easily circumvented, further, documentation is very limited and time to figure out things by reversing sources does not fit in my current scheduling.

However, flipclock setup is just a one-shot operation and instructions are very thorough and detailed.

This is the price for extreme flexibility :)

NightShift79 2011-01-25 23:01

Re: [Announce] Queen BeeCon Widget: Super powerful and customizable Widget Generation Engine - Official Thread
 
Anyone who could tell me how I can make an "CallerID On/Of Widget" with QBW ?


All times are GMT. The time now is 13:52.

vBulletin® Version 3.8.8