topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 19, 2024, 7:02 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pigeonlips [ switch to compact view ]

Pages: prev1 [2] 3next
26
Ecaradec's Software / Re: Qatapult
« on: February 23, 2012, 04:59 PM »
quick suggestion too - hope you dont mind.

In another launcher i used (executor) it separated the results list by what it called group which is your cats. This would be nice so that when i search for something say 'word' i can easily distinguish what it is. IE

APPLICATION
word
WINDOW
word - some open document
WEBSITE
help using MS WORD


27
Ecaradec's Software / Re: Qatapult
« on: February 23, 2012, 03:31 PM »
yeah it works for me. I did have to use the full path to the import.vbs script and set the working dir to be the location of the sqlite3.exe.

Qatapult doesn't seems to know what to do with thoses types

not sure what you mean. I did get the 'import bookmarks' verb in the middle pane and it ran ok. I did have to select a bookmark in the web cat first.

I'm also working on a better more simple (but maybe more helpful) plugin where you can add or delete an entry from the website.db

The problem is that need to use 4 panes to get all the details for the row:

any entry in website (cat) > add bookmark (verb) > Name > URL

it would be sweet if qataplut knew that anything in the first pane that starts with http:// is a website and inherits the verb for website type. Then i could do this.

http://some.url > Add bookmark > Name

at the moment i added an entry called new (no URL) to work around, but i still need to use 4 panes or present a dialogue to add the name. I was hoping to avoid this as it always seems a little bolt on when i have to come out of qatapult to complete an action.

 

28
Ecaradec's Software / Re: Qatapult
« on: February 22, 2012, 09:35 PM »
yeah. In a nutshell,

VB script scraps the bookmarks file for Chrom(e|ium) looking for the name and the URL.

it strips out duff charators that cause some problems for SQLite and outputs the results into a text file in the %TEMP% folder that's formated into a sql query.

Then sqlite3.exe (bunddled commandlite tool for SQLite) runs the script and inserts data.

There are some limitations. I'm busy at the mo - but will put out another post (hopefully with some improvments) and a detailed explaination soon.

Much love.


29
Ecaradec's Software / Re: Qatapult
« on: February 21, 2012, 09:00 PM »
@ewemoa

don't think its portable. Sorry!

30
Ecaradec's Software / Re: Qatapult
« on: February 21, 2012, 07:53 PM »
Ok big disclaimer. This is very rough.

very very rough.

Its to import bookmarks from chromium.

You'll probably need to change the plugins.xml and also i have only tested on win xp with chromium.

It *should* add a rule to import all your bookmarks from chromium. If your a google chrome user you can possibly change line 13 in the import.vbs


Next steps are to make it work nicly, then to add support for firefox.

Firefox (from what i remember) uses SQLite too so this may be much easier.

all the same - enjoy.

31
Ecaradec's Software / Re: Qatapult
« on: February 20, 2012, 05:46 PM »
@ewemoa
* If there had been problems, investigation might have been easier than working with a compiled version too as I've found being able to examine and modify source and test the results often helps in such situations.
.....
asdasd

I like the simplicity of the complied version. But i agree with all your points. I'll always include the .ahk file in the plugins folder. asdasd - guess i shouldnt be sticking strings in the script that for testing :) - lol If i wasnt compiling this wouldnt have happened!

I had to train my patience a bit to try this out as I tried to download it to soon after downloading the changetext plugin

sorry - first hit on google. Not sure how to upload an attachment to donationcode. Seems like the best place to put it so i'm glad your changing an re uploading them here. Thanks.


            
primitive one-off timer plugin.

nice thanks. "12:30 > Timer > lunch" :D\
It would be very nice to combine that timer plugin with snarl

:) - i'm a big fan of snarl. It comes with a small app called heysnarl that you can use to quick and easy leverage the api. For the timer app you could play around with this. Not tested yet but i'm sure it will work.

I have used snarl with other scripts i've written a ton of times. Normal approch for me passing in a arg for the "displaytype" and an case statement to run the notification in a msgbox, TrayTip, or Snarl.

If you want to play around with snarl : Add this bit at the top of the script:
notificationtimeout :=30
HeySnarlLocation :=path\to\heysnarl.exe ; change this to the path to hey snarl app exe

then in the TimeUp label use this:

  ; register with snarl
run "%HeySnarlLocation%" "register?app-sig=app/timer&title="Qataplut Timer"
; display definition
run "%HeySnarlLocation%" "notify?app-sig=app/timer&title="Qataplut Timer"&text="%MessageStr%"&timeout="%notificationtimeout%""
; unregister with snarl
run "%HeySnarlLocation%" "unregister?app-sig=app/timer&title="Qataplut Timer"
SoundBeep
Return







@ecaradec
the results pane now won't go further than the right side of Qatapult and center under each position of the cursor

I know its only cosmetic but i think it makes the app look nicer! Thanks.

By the way if you need to get an old version they are all available here : http://emmanuelcaradec.com/qatapult/bin

thanks :D

Do you have an idea of Catalog you'd like to write, or is it just an idea ?

* I'd like to try my hand at a paste bin type cat. IE a cat that has predifend text strings that can be pasted into the currently focused app. Think Email signatures, etc.

* also a plugin to get my bookmarks from my browser and add this to the website

Unfortunately my coding skills in a real languge are none existent. Outside a little autohotkey, vbs, python, i'm usless.

-----------------------------------------
 
is the number under the item in the drop down the weighting for relavence? just curious.

Thanks

32
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 07:50 PM »
with the new version.

tested and rockin
-------------------------

> reload works sweet as a nut.
> skin support works will.

not working
------------------

> Open verb seems to be called test.

> send to back produces 'Error at line 1 - Line text: MZ(odd char) Error: This line doest not contain a recognized action
>>> thats the plugins fault though. Maybe the hwnd thats passed in has changed somehow?

> just noticed. If you paste into a pane and hit ' to add to it (or edit it in any way) the ' is added to the text. do the same with . and it works great. suspect that you just need to exclude ' aswell as . ?

> humm - only just noticed that i can not start an application with this version due to the open being gone. Opps  :D

Going back to the old version for now.

PS - please dont let all this feedback stop the regular updates! I love the updates.

33
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 06:11 PM »
Sometimes the ui seems to loose the focus of the keyboard for me. Is that the same bug you have ?

figured out how to get this to happen.

> summon qatapult (input should be blank)
> do nothing, wait for blank drop down to appear
> begin typing (list starts to load items), item appears in pane
> try arrow down.                                                                         <--------------Heres the problem - Shouldnt work (at least not for me)
                                                                                                                       Also you can tab to the next pane and back. List should still not work
> hit esc - list goes away.
> hit down - you can now select from the list.

He who hesitates........ Hardly a showstopper - just FYI.

34
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 05:37 PM »
also another go with a skin



another-skin-attempt.7z - 95.4 KB

this ones doesn't work so nice with the white text. Didn't notice it until it was done.

35
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 05:25 PM »
Thanks. I've just been compiling my scripts. Not sure if that's a bad thing.

Heres another one i have been using a bit. I'm a bad speller and a fan of having aspell at my fingers everywhere!

ChangeText - changetext.zip - 266.5 KB

   You can modify the text (assuming is editable) and change it to
      be uppercase IE (some text = SOME TEXT)
      be lowercase IE (SOME TEXT = some text)
      be titlecase IE (some text = Some Text)
      spell check using aspell

Tried to make it nice and self contained like your plugins.

I use the spell bit so much i have a shortcut to the app called spell that passes in "spell" as an arg. This way no matter where i am i can just summon qatapult and type spell [enter] rather than ' <tab> modify text <tab> spell

I saw enzo change the case (it was built in i think) and thought it would be handy. I was the first real example i saw of launcher give the impression it was doing something than run an application.

enjoy.


36
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 03:57 PM »
QatapultAHKPluginBuilder - i see now. Returns the results to Qatapult for the calculator!

Nice.


37
Ecaradec's Software / Re: Qatapult
« on: February 15, 2012, 03:19 PM »
@ecaradec

Been looking forward to this all night (saw the post yesterday).

quit - works very nice for me. Its instant now. No more messing about with the task manager.

catalogue - So i guess the whole catalogue thing makes much more sense to me now i can use it. I see the point that it nicly limits the results. Works very nice I can see why your focusing on it. Cannot wait to preform actions with it.

The window (catalog) one only ships with the send to back and for me it doesn't do anything.

I have some questions on the cats. Whats the Text one for . I was thinking snipits of text that could be stored.  That would be sweet for pasting signatures.
  • 'some text <TAB> add to text cat
  • text (catalog)  <RIGHT> Kind Regards, Ian <TAB> paste
If its not this, can we get this,  :P

Why a cat for verbs - just curious.

Also i like the web cat.  be nice to have a verb to add to the web db. ie

https://www.donation....php?topic=29595.100 <TAB> add to web catalog

also i think theres a difference between websites i'd like to open (like a book mark to this page) and a website i'd search (like google, amazon). How about a flag in website.db for 'wantsearch' or something to distinguish between what shows in the website cat and the search with verb) - again just a thought.

Hidden windows works well now too. Thanks!


My only real gripe with the cats is that i get a little lost in it now. Sometimes i forget i'm in a cat and forget to hit right to get back into the rest of the results. Happens mostly if i tab to the next pane and back, or tab to the next pane and cancel, Then bring qataplut back up.  You could show the name of the cat at the top where updating index is. Just a thought. Sure i'll get the hang of it - bet its second nature to QS users, and i guess i'm way to use to the single text mode of FARR, executor etc.

PS - most excellent update to the version.


Also some things I've noticed,

* Select a text file in explorer.exe then [Current Selected <TAB> Edit] doesn't seem to work any more. Not sure when this happened.

* sometimes i can not use the arrow down. Hitting ESC once then arrow down seems to make this work. This was happening to me before this version. Doents happen often and can not replicate the steps. Just FYI. Will post again if i find out how to do this.

@ewemoa

downloaded and ran the QatapultAHKPluginBuilder.zip. I have no idea how to use it or what its for! lol. I'll look over the ahk code to find out.

downloading the calculate now. Have really been missing this from FARR.


38
Ecaradec's Software / Re: Qatapult
« on: February 14, 2012, 02:53 PM »
Do you mean the indexing of drives takes forever OR the indexing of files on drives. I have a tons of drives at work and the indexing of drives is quite fast...

I mean network shares. I have a good god dam lot of them (more than you could believe). It is supper fast at getting them all. Still a very long time for anything though. I don't notice when its done but for the first hour of use its updating at least. Its also very intrusive which is nice. it only causes a problem when i'm restarting Q regularly. If it wasn't for all the messing around with the plugins and skins i wouldn't find it a problem at all.

39
Ecaradec's Software / Re: Qatapult
« on: February 14, 2012, 10:40 AM »
I updated winpult-mod with some name and icon suggestions.

Thanks, I like it.  8)

Toggle on top ? never knew you could do that so easily, A very nice addition.
Icons = look so much better and tons more descriptive. Thanks.

with some name and icon suggestions.

bummer. I was hopping that you meant the name for the plugin. winpult is lame......

The names for the action are much clearer now, show hide was not very descriptive of what it did. Plus hide and min sound like the same idea from a users perspective. Much better choice of words. Fancy giving it a better name. At first i thought it was fun idea to end all my plugins with 'pult' (like launchys plugins foxy, calcy etc) but now i see it again, its not as funny as i thought!

May be ecaradec will make skins more like plugins...

a quick win for skining maybe is to define a directory to look for the background.png, background3.png, focus.png etc in the settings.xml and have a folder called skins?


Also i'd love a ini/xml file that includes the height, width, x, y for the controls. This way i'd get much closer to the full showcase skin. That sounds like a lot of extra work though and i'm not sure how ecaradec feels about people mucking around with the GUI.

Also don't get me wrong, i think the default skin is very nice. Also probably best to get it feature rich before something as trivial as skinning. but that showcase skin, sigh, that's nice. I wonder how much a mac is....... lol
 

40
Ecaradec's Software / Re: Qatapult
« on: February 13, 2012, 09:15 PM »
I just couldnt help myself :  :D



skin.zip - 30.7 KB

and with the nice reflection. Guess i need a new icon set  :P




41
Ecaradec's Software / Re: Qatapult
« on: February 13, 2012, 08:36 PM »
Does this make more sense?

i think so - thanks. Without using QS its hard to imagine from a text description alone.  So an example might be (1st pane)

Window > arrow left > List of WINDOW objects in the first pane. then right arrow to get back out to search all again?

i'm youtubing some videos to have a look now.

PS i didn't know you could skin it. This "Showcase" looks gorgeous - if the idea behind qatapult is to port QS - port that. Dam!

http://www.youtube.c...&feature=related

42
Ecaradec's Software / Re: Qatapult
« on: February 13, 2012, 07:17 PM »
@ewemoa

Here's what I have:
plugins\SendToBack\SendToBack.ahk

Hope you dont mind but i took this one step further. the script is ready for the WINDOW datatype and will except HWND id or window title.

For now as the result set is too large for me to get $0.hwnd or $1.title working i have set it to use title based search using the TEXT type. Its nice as its using reg expressions to find the title. The draw back with this is that you need to know that the window is open. Currently it:

> Switchs to an open window
> Sends it to the back of the stack (hide)
> min
> max
> close.

Whoot - no more alt-tab for me!



winpult.zip - 257.8 KB

With the sound one, i think the mixer needs setting to 2. Run that soundcard analysis script you sent me the link for. Using the info in that i was alble to tweek mine to be perfect. Just needed to change the mixer for some.



43
Ecaradec's Software / Re: Qatapult
« on: February 13, 2012, 03:50 PM »
Hum, hum, I think that I went a bit too fast with the window thing. I really should not display the hidden windows AND check against upper case characters AND make search fuzzy. That's what happens when you develop without thinking. On the positive side, adding source is really simple now if the data are easy to get.

I love how quick its moving. A half baked feature is great because i get to play with it and see where your going with it safe in the knowledge that its early days and before long the half baked feature is working great!  :Thmbsup:  :Thmbsup:  :Thmbsup:  :Thmbsup:

Thanks for letting us play along!

Quote from: ecaradec on Today at 05:42:26 AM
The other thing that is starting to annoy me is that all the types tends to land into the first pane. Do you know how QS used to solve that ?

What I recall at the moment is:

Encourage people not to add too much to the Catalog -- by limiting the number of sources and how many items each source contained.  For example, if there were a source for a folder, scan depth was one of the configurable properties (see pages 120-121 and 27-30 in the manual).

Another item was to apply "right-arrowing" into certain objects:

Not sure if i follow. Do you mean limit the results in the first pane by context? I use Linux at home and there's an app called synapse thats my default lanucher of choice. This has a clever way of filtering the results by using the arrows to move between object types (see the link. Left and Right move the results to the "Actions, Audio, Applications, all, places, documents, images, web"

http://www.webupd8.o...leased-with-new.html
http://lifehacker.co...n-launcher-for-linux

I always thought this was nice. I especially liked how the ui handled this. Also prior to qatapult, i also liked FARR's way of using prefix +pics for example. In FARR you have to set these up yourself which i like for the power, and in synapse the defaults are good and you can use straight out the box. Its simple too which is great for new users.

If it where up to me (which its not) I would go for both of the above! Long term: provide a good set of defaults and make them very configurable. Also retain the prefix thing (say +audio) then the user doesn't have to hit left 4 or 5 times to get the result set they want. Make the settings GUI include a "pin to gui" for you 5 favorite contexts all the prefix to be user editable IE

Filter rule                         Filter name             Filter prefix         Pin to GUI
---------------------        -----------------    --------------    -------------------
[*.mp3,*.ogg, *.wav]        audio                     +audio              true
[http://*,www.*]              web                      +web                true

This all said, I get the impression (and think i read somewhere) that your trying to keep this as close to quicksilver as possible. If this is the plan, don't feel bad for ignoring my suggestions. I have never used QS so i really can not comment and if this is the way your going then its good that there's a clear vision. Also everyone i know thats ever used a Mac loves QS so it cannot be a bad thing!

I noticed too that the reload and quit seems to be slightly unreliable, sometimes they work, sometimes they don't. I'm stopping the indexing thread to reload and quit now. I suppose that something is preventing the thread to stop here.
I confirmed that "Reload" and "Quit" were much slower on an XP machine.  They did eventually work, but at the speed I was experiencing, I think I'd end up opting to terminate the process and start it manually.  I have been lucky under Windows 7 so far and haven't noticed any problems with speed for "Reload" / "Quit".

I have access to a very large number of networked drives. Its forever indexing. I like this feature though so this is not a gripe. It does makes perfect sense in terms of the restart. Also i have the patience of a ant so if something doesn't happen sub second i usually move to the task manager.  :-[

For the sound thing, I think you might use the nircmd thing. It seems to handle the win7/vista sound system properly.
there's a ton of ways to skin that cat. nircmd is great idea. there's a ton of things you can do with this. I say keep working on the core qatapult and allow users to create plugins for this stuff. I haven't tried to hard with the plugins just yet as i was mostly concerned with porting over all the nice features i used from other apps. I personally am more than happy for you to bundle/reuse/modify anything i get working.

incase its handy (from NIRCMD):
setvolume [device] [left-volume] [right-volume]
Set the volume level of your sound device. The [device] parameter represents the device identifier. In most cases, you should use '0' value for this parameter. Under Windows Vista, you should specify 0 for default playback device or 1 for default recording device.
The [left-volume] and [right-volume] parameters should contain a value between 0 (silence) and 65535 (full volume) that represents the volume level for left and right channels.
Examples:
setvolume 0 0 0
setvolume 0 32768 32768
setvolume 0 0xffff 0
 

I agree that the xml format is less readable than the .ini thing. That was one of my grip with xml. I might remove the item thing if you have a single verb to make the thing more readable :
....
But multi-elements pretty much require it, I'm not sure that this is a good idea.

I think your right. Leave it. One day i'm sure you'll have a nice GUI and therefore it wont matter so much. I just got confused with the args tag all over the place. Once i understand it - i dont mind what its called.  :D
Maybe just change the name of the args to <object> <verb> ..... or whatever terminological your using.

Ps i like you can get more than 3 panes. I know you might not want this, but i'm sure it will come in handy for me so time in the future.






Much Love.


44
Ecaradec's Software / Re: Qatapult
« on: February 12, 2012, 10:35 PM »
Windows working sweet too! But that said,

A) search is not that great i have one match for  Qatapult - DonationCoder.com - Chromium, but can only find it if i type an uppercase Q. No other combo works (qata, chrom, don, Don, etc)

B) the list seems really long. I won't mind this if i could filter the results with good search , but i have a million entry's for M ? no idea! Also stuff like Default IME.



I know your not to blame for the choice of window title someone chooses but i would be nice to have a config global option to only return windows with a (not sure the terminanolgy but) style/state that is an active intractable state. Ie not a background app or service. etc.

I know its early stages. I'm not moaning, in fact i'm well impressed how quick you got this working!

And @ewemoa, as i'm sure he'll want to play with this too:

here is an example:
<settings>
    <rules>
        <rule>
            <arg>TEXT</arg>
            <arg>
                <item>
                    <lbl>WINTEST</lbl>
                    <ico>plugins\wintest\.png</ico>
                </item>
            </arg> 
            <arg>WINDOW</arg>
            <cmd>cmd.exe</cmd>
            <args>/K "echo $2.hwnd $2.title"</args>
        </rule>
    </rules>
</settings>

filling in the first pane is irrelevant (so long as its text)



45
Ecaradec's Software / Re: Qatapult
« on: February 12, 2012, 09:26 PM »
May be it has something to do with the environment here being Windows 7.   Don't know if it's relevant but came across the following from the SoundSet docs:

bummer -
"In the properties dialog for the file "AutoHotkey.exe" (or a compiled script), change the compatibility setting to "Windows XP"."
You could try that.  Also i was quite surprised with the output of the soundcard analysis script. It explained why one or two where not working for me (on another mixer).

I might try writing a one off install script that uses the data from this to create the plugin.xml.

lol - i need to get off this outdated copy of XP.


46
Ecaradec's Software / Re: Qatapult
« on: February 12, 2012, 06:26 PM »
- The biggest thing from a user point of view is that the format of the settings file changes to an xml format. It will make the structure easier to maintain instead of putting indices everywhere. Your old settings.ini file won't load anymore, you'll have to replace it with the settings.xml provided.

Very nice. Much easyer to use. Although i think this could be better in terms of the name's of keys: the word "arg" sounds a little indiscriminate and without the playing around in the old settings ini i would have found this hard to work out at first. Also i'm not sure how to accomplished this :

2_arg=TEXT

But all in all much better. Thanks!  :Thmbsup:

- Very simple plugins can be created. Actually it's just what could be done within the settings.ini file but qatapult will now load  plugin.xml files from the plugin folder. That will make rules easier to share as we'll be able to distribute them as a single zip file. You can add executables and icons you need in the same folder. I've included the ewemoa largetype plugin as an example.

Sweet - makes packaging em up nice and easy. Thanks. I like this alot.


- You can now add multiples items when you're using lbl+ico items. You can differentiate between the one that are selected with the $x.text variable

Sweet! works nice. Here's an example!

extract to plugins folder

volume.zip - 239.2 KB

if you just want to see how to add em click here:

Spoiler
<settings>
    <rules>
        <rule>
            <arg>TEXT</arg>
            <arg>
                <item>
                    <lbl>Volume</lbl>
                    <ico>plugins\volume\volume.png</ico>
                </item>
            </arg>  
            <arg>
                <item>
                    <lbl>MASTER</lbl>
                    <ico>plugins\volume\volume.png</ico>
                </item>
<item>
                    <lbl>MICROPHONE</lbl>
                    <ico>plugins\volume\volume.png</ico>
                </item>
<item>
                    <lbl>WAVE</lbl>
                    <ico>plugins\volume\volume.png</ico>
                </item>
            </arg>
            <cmd>plugins\volume\volume.exe</cmd>
            <args>$0.text $2.text</args>
        </rule>
    </rules>
</settings>


Also here's the ahk if you prefer to an uncomplied version (and or) modify to suit your needs!

Spoiler

; AutoHotkey Version: 1.0.47.6
; Language:       English
; Platform:       Win9x/NT
; Author:         Ian
;
; Script Function:
; standalone exe to control the system volume.
;   intended to be used with autohotkey
; Use:
; SetSound.exe [NewSetting] [ComponentType] [ControlType] [DeviceNumber]
; Options
; NewSetting [REQUERED]
;     Percentage number between -100 and 100 inclusive (it can be a floating point number or expression).
; If the number begins with a plus or minus sign, the current setting will be adjusted up or down by the indicated amount.
;
; ComponentType [OPTIONAL]
; If omitted or blank, it defaults to the word MASTER. Otherwise, it can be one of the following words:
; MASTER (synonymous with SPEAKERS),
; DIGITAL,
; LINE,
; MICROPHONE,
; SYNTH,
; CD,
; TELEPHONE,
; PCSPEAKER,
; WAVE,
; AUX,
; ANALOG,
; HEADPHONES,
;
; ControlType [OPTIONAL]
; If omitted or blank, it defaults to VOLUME. Otherwise, it can be one of the following words:
; VOLUME (or VOL),
; ONOFF,
; MUTE,
; MONO,
; LOUDNESS,
; STEREOENH,
; BASSBOOST,
; PAN,
; QSOUNDPAN,
; BASS,
; TREBLE,
; EQUALIZER,
;
; DeviceNumber [OPTIONAL]
; If this parameter is omitted, it defaults to 1 (the first sound device), which is usually the system's default device for recording and playback.
; Specify a number higher than 1 to operate upon a different sound device.


#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SoundSet, %1%, %2%, %3%, %4%
if ErrorLevel
    MsgBox, %ErrorLevel%



There is now a WINDOW source that list the currently active windows that can be queried for $x.title and $x.hwnd. I haven't made any rule with those, but there is probably a ton of uses

going to start trying this out in a few minutes. Looking forward to this!

47
Ecaradec's Software / Re: Qatapult
« on: February 12, 2012, 05:59 PM »
Quote from: ecaradec on Today at 02:21:20 PM
- A reload command can now reload all the config file without quiting and restarting qatapult

Not working for me. It disapears but in the task manager its remains and the PID doesnt change. It then seems to Hang. (or i can not summon it again).

Also the quit feature doenst work for me ether now where it did before. I have to stop it via the task manager now. On win XP. Might be something about my machine. Not sure.

This works here too

I noticed that the cursor position advances to the right by one after Shift+Enter instead of to the next line.  Does that happen there too?

Also advances to the right by one char. But as soon as i type its dropped to the next line. The extra space remains.

48
Ecaradec's Software / Re: Qatapult
« on: February 09, 2012, 08:09 PM »
While trying out pigeonlips' Move-related functionality, I was editing the third pane content in text mode, and it felt like it might be nicer to be able to see the other panes while doing that editing (currently switching to text mode shows an expanded pane, right?).

I remember seeing QS' window expand and contract, but I'm thinking this might have been for growing / shrinking between 2 and 3 panes.

Any thoughts?

I kinda see the benefit of both. If its large then you get more room to type/edit which is nice.

If its just in the one pane then you can see whats in you other panes as you said - also sounds nice. As i'm stuck on the fence with this one i'll sit out. Ether works well for me.

The one thing that does bother me a little is the position of the drop down box in the second and third pane. I'd rather see it expand the whole size of qatapult.

You could always algin the text (left, center, right) in it if people feel its not clear with pane its related to.


http://img607.imageshack.us/img607/4338/qatapultdropdowntofarri.jpg

49
Ecaradec's Software / Re: Qatapult
« on: February 09, 2012, 06:41 PM »
I've added ' as a prefix for forcing text mode result. If you want to avoid moving down the list to select the text result, start your query by ' and it should be the first result. We could imagine other prefixes to boost some type of results if you have other ideas.

hummm - finding that its defaulting to text straight away. While great at first (was testing all my free text stuff) it was great, but now noticed that you have to complete the whole word for a match. (or hit arrow down).

Not sure if that was you intention?



50
Ecaradec's Software / Re: Qatapult
« on: February 09, 2012, 05:54 PM »
cannot help my self:

I've added ' as a prefix for forcing text mode result. If you want to avoid moving down the list to select the text result, start your query by ' and it should be the first result. We could imagine other prefixes to boost some type of results if you have other ideas.

makes the above workarounds easyer for me to use. I was getting hard work hitting arrow down, end  ;D

Thanks!

I think that it could be useful to add filter options to sources too. Sometimes I'd like to pick a folder only or a png file, path restriction etc... I think it could be doable to add that. It would be associated to rules items in my mind : you could say you want a FILE source but only folders... But it could also be a can of worms, I need to meditate about that before moving on...

are you thinking like the modifier keywords in FARR? Always thought that was cool. great when you have a supper large set of things indexed.

Another thing I'm thinking about is restriction on the apparition of labels : If you want to create a 'resize to' function that only apply to images, you'd need a way to have it only appears on images preferably.

sounds great.  :Thmbsup: Anything that adds smarts to whats displayed in the verb (middle) pane i think is what really will set this app appart from all the others out there!

Pages: prev1 [2] 3next