|
84
|
DonationCoder.com Software / FARR Plugins and Aliases / New C# FARR Plugin: FARREnviormentVariables
|
on: December 28, 2007, 07:32:13 PM
|
This plugin lets you easily access your environment variables. For example, Firefox keeps all its settings in your application data folder (%appdata%). In explorer you could simply write %appdata% to access it, however, in FARR it isn't possible. Until now  . Install the plugin and press % to see the list of your environment variables, select one to automatically expand it on the search path or simply continue writing. Once you add the \ it would automatically expand. E.g, writing %appdata%\ would automatically become C:\Documents and Settings\Vitaly\Application Data\. Notice: Only the variables that actually represent a folder, %PATH% and other variables won't be visible. Downloadhttp://vitalyb.dcmembers....RREnviormentVariables.zipScreenshots[attach] turns to: [attach] Enjoy! P.S I was a bit on the roll  But that's it, I stop for now.
|
|
|
|
|
91
|
DonationCoder.com Software / FARR Plugins and Aliases / New C# FARR Plugin: FARRTunes - iTunes control plugin
|
on: December 28, 2007, 12:18:17 PM
|
Hey all! For all you music listeners and iTunes users. Download link (please unpack it to your "FARR\Plugins\FARRTunes\" directory): http://vitalyb.dcmembers....m/FARRTunes/FARRTunes.zipThe full source code of this plugin can be found as part of the C# SDK, here: http://www.donationcoder....rum/index.php?topic=10992A suggestion for a huge usability boost: Make a new FARR HotKey named iTunes and assign it a combination like WinKey+I, make it execute "tns current" You can also create a direct command to any other important feature, like the lyrics or song search. Since it is quite a complex plug-in bugs are very expected. Please post on the thread if you have any trouble. I'll be also glad to hear of your general experience with the plug-in. Version History- 1.1 Fixed the bug Mouser mentioned, should load fine now
- 1.0 Initial release
Features- See the current song info
- Play/Pause/Next/Previous
- Search a playlist and start the one you want
- Search for any song and play it
- See the current playing song lyrics
- Rate the current playing song
Future features- Command to show all songs in current playlist to choose from
- Option to not start itunes until the plugin is first triggered (right now it launches itunes as soon as plugin/farr is started)
- Leave the farr window showing the current song after changing songs - That way you can see what is the next songs
ScreenshotsMain screen [attach] Song search [attach] Playlists search [attach] Current song options [attach] Rate song [attach] Song lyrics [attach]
|
|
|
|
|
92
|
DonationCoder.com Software / FARR Plugins and Aliases / Re: Locate32 Plugin for FARR by Okke
|
on: December 27, 2007, 10:13:19 AM
|
...Only thing I would ask is (if it's possible) to be able to customize the "loc" keyword, I'd prefer "!loc" myself so it doesn't interfere with anything else... also, adding the alt+number "big icon" like FARR itself does would be nice, but not as important  You can do it yourself: Go to Options -> Plugins -> Click To Examine.. -> Select Locate32 -> Change the value in "Override" textboxes to whatever you want! 
|
|
|
|
|
93
|
DonationCoder.com Software / Find And Run Robot / Re: [feature request] %path%, network paths and autocomplete
|
on: December 25, 2007, 12:23:45 PM
|
|
1) Exactly. For example you write: %appdata%\moz that should be exactly as writing "C:\Document and Settings\Application Data\User\ApplicationSettings\Moz". Same with network paths, writing "\\user1\moz" should take you to show all user1 public shares that contain "moz".
2) Let me draw a mock up of that. Basically it is similar to results but instead of searching in results in searches in previous queries you submitted (stuff you wrote before you pressed ENTER). In the picture the user wrote "d" and gets the following interface. He can navigate the results by going upward. When he selects a choice, it will set it as the current search query.
[attach]
|
|
|
|
|
94
|
DonationCoder.com Software / Find And Run Robot / Re: [feature request] Customizeable context menu and score formula
|
on: December 25, 2007, 11:44:17 AM
|
|
Very true. I could emulate it from command line (and it has lots of merits to it too as then, for example, you could programatically call to it from another plugin simply by setting the search query to the command path). However, a context menu could make the operation somewhat easier to the end user.
I think it is quite easy to combine the two by making the contextual menu change the search query. E.g if you selcect "iTunes" a tab and choose in context menu "Close" it'd set the search path to: "tab iTunes close". Something along these lines.
|
|
|
|
|
95
|
DonationCoder.com Software / Find And Run Robot / [feature request] Customizeable context menu and score formula
|
on: December 25, 2007, 04:50:27 AM
|
|
1) It would be really useful to plugin developers if you we could customize the context menu (per item and globally). For example, in FARRAltTab plugin you could right click a tab and select "Close" or "Close Process". Really lots of options there.
2) I'd like to be able to see on a single item in results how it got its result. When so many rules and heuristics and histories and special folders, I am sometimes very confused about the score. It would be really nice if I could do Rightclick->Show score formula and get in result something like:
*] Raw plugin score: 300 *] Special folder score: +15 = 315 *] Heauristics bonus (shorter file): +25 = 240
Thanks and keep it up!
|
|
|
|
|
98
|
DonationCoder.com Software / FARR Plugins and Aliases / Re: FARR C# SDK and Documentation (plus little something for all Plugin developers)
|
on: December 21, 2007, 10:38:42 AM
|
I wanted to update potential developers on the status of the SDK. Currently there is an issue with the amount of C# plugins you can put to FARR directory. The reason is that each FarrRCW.dll is .NET assembly and they are all identical in .NET sense (same identity). Basically it means that for every C# plugin there must be a unique RCW dll (and not just a copy as I thought). Now, recompiling the RCW dll is relatively easy process (rename project & recompile) however, not everyone have C++ compilers and I am aware that many programmers out there never did anything beside C# and possibly don't have anything that can compile C++ installed. I still hope I can find a way to let anyone just change the RCW dll identity without any additional tools as the only other alternative I see now, is forcing people to recompile SDK everytime they want to develop a plugin. In the while, if you have a plugin you want to develop, simply remove FARRAltTab from your plugins during development process so you'll always have only one C# plugin. If you want to publish it, let me know and I'll send you a unique RCW dll. Hope it will get solved soon  .
|
|
|
|
|