├── branches ├── JK │ └── Launchy_VC7 │ │ ├── CDialogSK.cpp │ │ ├── CDialogSK.h │ │ ├── DirectoryChooser.cpp │ │ ├── DirectoryChooser.h │ │ ├── DiskObject.cpp │ │ ├── DiskObject.h │ │ ├── ExeLauncher.cpp │ │ ├── ExeLauncher.h │ │ ├── FileRecord.cpp │ │ ├── FileRecord.h │ │ ├── HotkeyDialog.cpp │ │ ├── HotkeyDialog.h │ │ ├── Launcher.cpp │ │ ├── Launcher.h │ │ ├── Launchy.aps │ │ ├── Launchy.cpp │ │ ├── Launchy.h │ │ ├── Launchy.ncb │ │ ├── Launchy.rc │ │ ├── Launchy.sln │ │ ├── Launchy.suo │ │ ├── Launchy.vcproj │ │ ├── LaunchyDir.cpp │ │ ├── LaunchyDir.h │ │ ├── LaunchyDlg.cpp │ │ ├── LaunchyDlg.h │ │ ├── LaunchySmarts.cpp │ │ ├── LaunchySmarts.h │ │ ├── OpaqueListBox.cpp │ │ ├── OpaqueListBox.h │ │ ├── Options.cpp │ │ ├── Options.h │ │ ├── QArray.h │ │ ├── ReadMe.txt │ │ ├── ReadOnlyEdit.cpp │ │ ├── ReadOnlyEdit.h │ │ ├── Resource.h │ │ ├── Skin.cpp │ │ ├── Skin.h │ │ ├── SkinChooser.cpp │ │ ├── SkinChooser.h │ │ ├── SmartComboBox.cpp │ │ ├── SmartComboBox.h │ │ ├── TypeEdit.cpp │ │ ├── TypeEdit.h │ │ ├── iniFile.cpp │ │ ├── iniFile.h │ │ ├── res │ │ ├── Launchy.ico │ │ ├── Launchy.manifest │ │ ├── Launchy.rc2 │ │ └── bkgd2.bmp │ │ ├── stdafx.cpp │ │ └── stdafx.h └── vendor │ └── launchy │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HotKey.cs │ ├── Launchy.XML │ ├── Launchy.csproj │ ├── Launchy.csproj.user │ ├── Launchy.sln │ ├── Launchy.suo │ ├── License.txt │ ├── UpgradeLog.XML │ ├── bkgd2.bmp │ └── typelaunch.suo ├── tags ├── 2.1 │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── Launchy.ico │ ├── Launchy.pro │ ├── Plugin API │ │ ├── CreateDocs.bat │ │ ├── PluginPage.doc │ │ ├── api.html │ │ ├── catalog.h │ │ ├── default.doxygen │ │ ├── myplugin.zip │ │ ├── myplugin │ │ │ ├── MyPlugin.sln │ │ │ ├── MyPlugin.vcproj │ │ │ ├── catalog.h │ │ │ ├── globals.h │ │ │ ├── myplugin.cpp │ │ │ ├── myplugin.h │ │ │ ├── myplugin.pro │ │ │ ├── plugin_interface.cpp │ │ │ ├── plugin_interface.h │ │ │ └── readme.txt │ │ ├── plugin_interface.cpp │ │ └── plugin_interface.h │ ├── Readme.doc │ ├── Readme.pdf │ ├── debug │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── linux │ │ ├── build_deb.sh │ │ ├── debian │ │ │ ├── control │ │ │ ├── copyright │ │ │ └── menu.ex │ │ └── launchy.desktop │ ├── makefile │ ├── misc │ │ └── Launchy Icon │ │ │ ├── launchy_icon.png │ │ │ ├── launchy_icon_mac.icns │ │ │ ├── launchy_icon_win.ico │ │ │ └── working │ │ │ ├── 128_32-bit.png │ │ │ ├── 16_32-bit.png │ │ │ ├── 16_8-bit.png │ │ │ ├── 16_and.png │ │ │ ├── 24_32-bit.png │ │ │ ├── 24_8-bit.png │ │ │ ├── 24_and.png │ │ │ ├── 32_32-bit.png │ │ │ ├── 32_8-bit.png │ │ │ ├── 32_and.png │ │ │ ├── 48_32-bit.png │ │ │ ├── 48_8-bit.png │ │ │ └── 48_and.png │ ├── platforms │ │ ├── gnome │ │ │ ├── gnome.pro │ │ │ ├── platform_gnome.cpp │ │ │ ├── platform_gnome.h │ │ │ ├── platform_gnome_util.cpp │ │ │ ├── platform_gnome_util.h │ │ │ └── readme.txt │ │ ├── unix │ │ │ ├── platform_unix.cpp │ │ │ ├── platform_unix.h │ │ │ ├── platform_unix_util.cpp │ │ │ ├── platform_unix_util.h │ │ │ ├── platform_x11_hotkey.cpp │ │ │ ├── platform_x11_hotkey.h │ │ │ └── unix.pro │ │ └── win │ │ │ ├── platform_win.cpp │ │ │ ├── platform_win.h │ │ │ ├── platform_win_hotkey.cpp │ │ │ ├── platform_win_util.cpp │ │ │ ├── platform_win_util.h │ │ │ ├── readme.txt │ │ │ ├── win.pro │ │ │ ├── win.sln │ │ │ └── win.vcproj │ ├── plugins │ │ ├── calcy │ │ │ ├── calcy.cpp │ │ │ ├── calcy.h │ │ │ ├── calcy.ico │ │ │ ├── calcy.png │ │ │ ├── calcy.pro │ │ │ └── calcy_full.ico │ │ ├── controly │ │ │ ├── controly.cpp │ │ │ ├── controly.h │ │ │ ├── controly.ico │ │ │ ├── controly.pro │ │ │ └── controly_full.ico │ │ ├── gcalc │ │ │ ├── gcalc.cpp │ │ │ ├── gcalc.h │ │ │ ├── gcalc.ico │ │ │ └── gcalc.pro │ │ ├── runner │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── runner.cpp │ │ │ ├── runner.h │ │ │ ├── runner.ico │ │ │ ├── runner.png │ │ │ ├── runner.pro │ │ │ └── runner_full.ico │ │ ├── vsrename.exe │ │ ├── weby │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── weby.cpp │ │ │ ├── weby.h │ │ │ ├── weby.ico │ │ │ ├── weby.png │ │ │ ├── weby.pro │ │ │ └── weby_full.ico │ │ └── winshell │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── winshell.cpp │ │ │ ├── winshell.h │ │ │ ├── winshell.ico │ │ │ └── winshell.pro │ ├── readme.lyx │ ├── readme.txt │ ├── release │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── skins │ │ ├── Black Glass │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── background_nc.png │ │ │ ├── mask.png │ │ │ ├── mask_nc.png │ │ │ ├── misc.txt │ │ │ └── style.qss │ │ ├── Default │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── mask.png │ │ │ ├── mask_nc.png │ │ │ ├── misc.txt │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── scroller.png │ │ │ └── style.qss │ │ ├── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ │ ├── Note │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── QuickSilver2 │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── background_nc.png │ │ │ ├── mask.png │ │ │ ├── mask_nc.png │ │ │ ├── misc.txt │ │ │ └── style.qss │ │ └── Spotlight Wide │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── mask.png │ │ │ ├── mask_nc.png │ │ │ ├── misc.txt │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ ├── src │ │ ├── catalog.cpp │ │ ├── catalog.h │ │ ├── catalog_builder.cpp │ │ ├── catalog_builder.h │ │ ├── catalog_types.cpp │ │ ├── catalog_types.h │ │ ├── dsingleapplication.cpp │ │ ├── dsingleapplication.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── icon_delegate.cpp │ │ ├── icon_delegate.h │ │ ├── main.cpp │ │ ├── main.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── options.ui │ │ ├── platform_base.h │ │ ├── platform_base_hotkey.cpp │ │ ├── platform_base_hotkey.h │ │ ├── platform_base_hottrigger.h │ │ ├── platform_mac_hotkey.cpp │ │ ├── platform_util.cpp │ │ ├── platform_util.h │ │ ├── plugin_handler.cpp │ │ ├── plugin_handler.h │ │ ├── plugin_interface.cpp │ │ └── plugin_interface.h │ └── win │ │ ├── Launchy.ico │ │ ├── Launchy.sln │ │ ├── Launchy.vcproj │ │ ├── Microsoft.VC80.CRT.manifest │ │ ├── Utilities │ │ ├── Special Folders │ │ │ ├── C Drive.lnk │ │ │ ├── Control Panel.lnk │ │ │ ├── My Computer.lnk │ │ │ ├── My Documents.lnk │ │ │ ├── My Music.lnk │ │ │ ├── My Network Places.lnk │ │ │ ├── My Pictures.lnk │ │ │ └── Recycle Bin.lnk │ │ └── System Power │ │ │ ├── System Logoff.lnk │ │ │ ├── System Reboot.lnk │ │ │ └── System Shutdown.lnk │ │ ├── calcy │ │ ├── calcy.sln │ │ ├── calcy.vcproj │ │ └── readme.txt │ │ ├── controly │ │ ├── controly.sln │ │ └── controly.vcproj │ │ ├── gcalc │ │ ├── gcalc.sln │ │ ├── gcalc.vcproj │ │ └── readme.txt │ │ ├── installer │ │ └── SETUP.iss │ │ ├── launchy.rc │ │ ├── msvcm80.dll │ │ ├── msvcp80.dll │ │ ├── msvcr80.dll │ │ ├── runner │ │ ├── runner.sln │ │ └── runner.vcproj │ │ ├── weby │ │ ├── weby.sln │ │ └── weby.vcproj │ │ └── winshell │ │ ├── winshell.sln │ │ └── winshell.vcproj ├── 2.5-B1 │ ├── BUILD.txt │ ├── LICENSE.txt │ ├── Launchy.ico │ ├── Launchy.pro │ ├── Plugin API │ │ ├── CreateDocs.bat │ │ ├── PluginPage.doc │ │ ├── api.html │ │ ├── catalog.h │ │ ├── default.doxygen │ │ ├── myplugin.zip │ │ ├── myplugin │ │ │ ├── MyPlugin.sln │ │ │ ├── MyPlugin.vcproj │ │ │ ├── catalog.h │ │ │ ├── globals.h │ │ │ ├── myplugin.cpp │ │ │ ├── myplugin.h │ │ │ ├── myplugin.pro │ │ │ ├── plugin_interface.cpp │ │ │ ├── plugin_interface.h │ │ │ └── readme.txt │ │ ├── plugin_interface.cpp │ │ └── plugin_interface.h │ ├── Readme.doc │ ├── Readme.pdf │ ├── common │ │ ├── DropListWidget.cpp │ │ ├── DropListWidget.h │ │ ├── DropTableWidget.cpp │ │ ├── DropTableWidget.h │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.h │ │ ├── FileBrowserDelegate.cpp │ │ └── FileBrowserDelegate.h │ ├── debug │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── linux │ │ ├── build_deb.sh │ │ ├── debian │ │ │ ├── control │ │ │ ├── copyright │ │ │ └── menu.ex │ │ └── launchy.desktop │ ├── misc │ │ └── Launchy_Icon │ │ │ ├── launchy_icon.png │ │ │ ├── launchy_icon_mac.icns │ │ │ ├── launchy_icon_win.ico │ │ │ └── working │ │ │ ├── 128_32-bit.png │ │ │ ├── 16_32-bit.png │ │ │ ├── 16_8-bit.png │ │ │ ├── 16_and.png │ │ │ ├── 24_32-bit.png │ │ │ ├── 24_8-bit.png │ │ │ ├── 24_and.png │ │ │ ├── 32_32-bit.png │ │ │ ├── 32_8-bit.png │ │ │ ├── 32_and.png │ │ │ ├── 48_32-bit.png │ │ │ ├── 48_8-bit.png │ │ │ └── 48_and.png │ ├── platforms │ │ ├── gnome │ │ │ ├── gnome.pro │ │ │ ├── platform_gnome.cpp │ │ │ ├── platform_gnome.h │ │ │ ├── platform_gnome_util.cpp │ │ │ ├── platform_gnome_util.h │ │ │ └── readme.txt │ │ ├── unix │ │ │ ├── platform_unix.cpp │ │ │ ├── platform_unix.h │ │ │ ├── platform_unix_util.cpp │ │ │ ├── platform_unix_util.h │ │ │ ├── platform_x11_hotkey.cpp │ │ │ ├── platform_x11_hotkey.h │ │ │ └── unix.pro │ │ └── win │ │ │ ├── WinIconProvider.cpp │ │ │ ├── WinIconProvider.h │ │ │ ├── platform_win.cpp │ │ │ ├── platform_win.h │ │ │ ├── platform_win_hotkey.cpp │ │ │ ├── platform_win_util.cpp │ │ │ ├── platform_win_util.h │ │ │ ├── readme.txt │ │ │ ├── win.pro │ │ │ ├── win.sln │ │ │ └── win.vcproj │ ├── plugins │ │ ├── calcy │ │ │ ├── calcy.cpp │ │ │ ├── calcy.h │ │ │ ├── calcy.ico │ │ │ ├── calcy.png │ │ │ ├── calcy.pro │ │ │ ├── calcy_full.ico │ │ │ └── precompiled.h │ │ ├── controly │ │ │ ├── ControlPanelItemFinder.cpp │ │ │ ├── ControlPanelItemFinder.h │ │ │ ├── controly.cpp │ │ │ ├── controly.exit.png │ │ │ ├── controly.h │ │ │ ├── controly.ico │ │ │ ├── controly.options.png │ │ │ ├── controly.png │ │ │ ├── controly.pro │ │ │ ├── controly.rebuild.png │ │ │ ├── controly_full.ico │ │ │ ├── dlg.ui │ │ │ ├── fhoenv.cpp │ │ │ ├── fhoenv.h │ │ │ ├── fhoicon.cpp │ │ │ ├── fhoicon.h │ │ │ ├── fhoreg.cpp │ │ │ ├── fhoreg.h │ │ │ ├── fhores.cpp │ │ │ ├── fhores.h │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ └── precompiled.h │ │ ├── gcalc │ │ │ ├── gcalc.cpp │ │ │ ├── gcalc.h │ │ │ ├── gcalc.ico │ │ │ ├── gcalc.pro │ │ │ └── precompiled.h │ │ ├── loader │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── loader.cpp │ │ │ ├── loader.h │ │ │ ├── loader.ico │ │ │ ├── loader.png │ │ │ ├── loader.pro │ │ │ └── loader_full.ico │ │ ├── runner │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── runner.cpp │ │ │ ├── runner.h │ │ │ ├── runner.ico │ │ │ ├── runner.png │ │ │ ├── runner.pro │ │ │ └── runner_full.ico │ │ ├── verby │ │ │ ├── Verby.cpp │ │ │ ├── Verby.h │ │ │ ├── copy.png │ │ │ ├── dlg.ui │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── opencontainer.png │ │ │ ├── precompiled.h │ │ │ ├── properties.png │ │ │ ├── run.png │ │ │ ├── verby.png │ │ │ └── verby.pro │ │ ├── vsrename.exe │ │ ├── weby │ │ │ ├── IconCache.cpp │ │ │ ├── IconCache.h │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── weby.cpp │ │ │ ├── weby.h │ │ │ ├── weby.ico │ │ │ ├── weby.png │ │ │ ├── weby.pro │ │ │ └── weby_full.ico │ │ └── winshell │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── winshell.cpp │ │ │ ├── winshell.h │ │ │ ├── winshell.ico │ │ │ └── winshell.pro │ ├── readme.lyx │ ├── readme.txt │ ├── release │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── skins │ │ ├── Black_Glass │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── Black_Glass_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── Default │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── Mercury │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── Mercury_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── Note │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── QuickSilver2 │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ └── style.qss │ │ ├── Simple │ │ │ └── style.qss │ │ └── Spotlight_Wide │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ ├── src │ │ ├── CharLineEdit.cpp │ │ ├── CharLineEdit.h │ │ ├── CharListWidget.cpp │ │ ├── CharListWidget.h │ │ ├── CommandHistory.cpp │ │ ├── CommandHistory.h │ │ ├── Directory.h │ │ ├── Fader.cpp │ │ ├── Fader.h │ │ ├── FileSearch.cpp │ │ ├── FileSearch.h │ │ ├── InputDataList.cpp │ │ ├── InputDataList.h │ │ ├── LineEditMenu.cpp │ │ ├── LineEditMenu.h │ │ ├── catalog.cpp │ │ ├── catalog.h │ │ ├── catalog_builder.cpp │ │ ├── catalog_builder.h │ │ ├── catalog_types.cpp │ │ ├── catalog_types.h │ │ ├── dsingleapplication.cpp │ │ ├── dsingleapplication.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── icon_delegate.cpp │ │ ├── icon_delegate.h │ │ ├── icon_extractor.cpp │ │ ├── icon_extractor.h │ │ ├── launchy.qrc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── options.ui │ │ ├── platform_base.h │ │ ├── platform_base_hotkey.cpp │ │ ├── platform_base_hotkey.h │ │ ├── platform_base_hottrigger.h │ │ ├── platform_mac_hotkey.cpp │ │ ├── platform_util.cpp │ │ ├── platform_util.h │ │ ├── plugin_handler.cpp │ │ ├── plugin_handler.h │ │ ├── plugin_interface.cpp │ │ ├── plugin_interface.h │ │ ├── precompiled.h │ │ ├── resources │ │ │ ├── basicskin.qss │ │ │ ├── launchy128.png │ │ │ └── launchy16.png │ │ └── src.pro │ ├── translations │ │ ├── launchy_de.ts │ │ ├── launchy_es.ts │ │ ├── launchy_fr.ts │ │ ├── launchy_ja.ts │ │ ├── launchy_nl.ts │ │ └── launchy_zh.ts │ └── win │ │ ├── Create Visual Studio projects.cmd │ │ ├── Launchy.ico │ │ ├── Microsoft.VC80.CRT.manifest │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── Utilities │ │ ├── Special Folders │ │ │ ├── C Drive.lnk │ │ │ ├── Control Panel.lnk │ │ │ ├── My Computer.lnk │ │ │ ├── My Documents.lnk │ │ │ ├── My Music.lnk │ │ │ ├── My Network Places.lnk │ │ │ ├── My Pictures.lnk │ │ │ └── Recycle Bin.lnk │ │ └── System Power │ │ │ ├── System Hibernate.lnk │ │ │ ├── System Logoff.lnk │ │ │ ├── System Reboot.lnk │ │ │ └── System Shutdown.lnk │ │ ├── installer │ │ └── SETUP.iss │ │ ├── launchy.rc │ │ ├── msvcm80.dll │ │ ├── msvcm90.dll │ │ ├── msvcp80.dll │ │ ├── msvcp90.dll │ │ ├── msvcr80.dll │ │ └── msvcr90.dll ├── 2.5 │ ├── BUILD.txt │ ├── LICENSE.txt │ ├── Launchy.ico │ ├── Launchy.pro │ ├── Plugin API │ │ ├── CreateDocs.bat │ │ ├── PluginPage.doc │ │ ├── api.html │ │ ├── catalog.h │ │ ├── default.doxygen │ │ ├── myplugin.zip │ │ ├── myplugin │ │ │ ├── MyPlugin.sln │ │ │ ├── MyPlugin.vcproj │ │ │ ├── catalog.h │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── myplugin.cpp │ │ │ ├── myplugin.h │ │ │ ├── myplugin.pro │ │ │ ├── plugin_interface.cpp │ │ │ ├── plugin_interface.h │ │ │ └── readme.txt │ │ ├── plugin_interface.cpp │ │ └── plugin_interface.h │ ├── Readme.doc │ ├── Readme.pdf │ ├── buildWinSln.bat │ ├── common │ │ ├── DropListWidget.cpp │ │ ├── DropListWidget.h │ │ ├── DropTableWidget.cpp │ │ ├── DropTableWidget.h │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.h │ │ ├── FileBrowserDelegate.cpp │ │ └── FileBrowserDelegate.h │ ├── debug │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── linux │ │ ├── build_deb.sh │ │ ├── debian │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── menu.ex │ │ │ └── rules │ │ └── launchy.desktop │ ├── mac │ │ ├── Info.plist │ │ ├── create-dmg │ │ ├── deploy │ │ ├── mkdmg │ │ └── support │ │ │ ├── AdiumApplescriptRunner │ │ │ └── template.applescript │ ├── misc │ │ └── Launchy_Icon │ │ │ ├── launchy_icon.png │ │ │ ├── launchy_icon_mac.icns │ │ │ ├── launchy_icon_win.ico │ │ │ └── working │ │ │ ├── 128_32-bit.png │ │ │ ├── 16_32-bit.png │ │ │ ├── 16_8-bit.png │ │ │ ├── 16_and.png │ │ │ ├── 24_32-bit.png │ │ │ ├── 24_8-bit.png │ │ │ ├── 24_and.png │ │ │ ├── 32_32-bit.png │ │ │ ├── 32_8-bit.png │ │ │ ├── 32_and.png │ │ │ ├── 48_32-bit.png │ │ │ ├── 48_8-bit.png │ │ │ └── 48_and.png │ ├── platforms │ │ ├── gnome │ │ │ ├── gnome.pro │ │ │ ├── platform_gnome.cpp │ │ │ ├── platform_gnome.h │ │ │ ├── platform_gnome_util.cpp │ │ │ ├── platform_gnome_util.h │ │ │ └── readme.txt │ │ ├── mac │ │ │ ├── platform_mac.cpp │ │ │ ├── platform_mac.h │ │ │ ├── platform_mac_hotkey.cpp │ │ │ └── platform_mac_hotkey.h │ │ ├── unix │ │ │ ├── platform_unix.cpp │ │ │ ├── platform_unix.h │ │ │ ├── platform_unix_util.cpp │ │ │ ├── platform_unix_util.h │ │ │ ├── platform_x11_hotkey.cpp │ │ │ ├── platform_x11_hotkey.h │ │ │ └── unix.pro │ │ └── win │ │ │ ├── WinIconProvider.cpp │ │ │ ├── WinIconProvider.h │ │ │ ├── platform_win.cpp │ │ │ ├── platform_win.h │ │ │ ├── platform_win_hotkey.cpp │ │ │ ├── platform_win_util.cpp │ │ │ ├── platform_win_util.h │ │ │ ├── readme.txt │ │ │ ├── win.pro │ │ │ ├── win.sln │ │ │ └── win.vcproj │ ├── plugins │ │ ├── calcy │ │ │ ├── calcy.cpp │ │ │ ├── calcy.h │ │ │ ├── calcy.ico │ │ │ ├── calcy.png │ │ │ ├── calcy.pro │ │ │ ├── calcy_full.ico │ │ │ ├── dlg.ui │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ └── precompiled.h │ │ ├── controly │ │ │ ├── ControlPanelItemFinder.cpp │ │ │ ├── ControlPanelItemFinder.h │ │ │ ├── controly.cpp │ │ │ ├── controly.h │ │ │ ├── controly.ico │ │ │ ├── controly.png │ │ │ ├── controly.pro │ │ │ ├── controly_full.ico │ │ │ ├── dlg.ui │ │ │ ├── fhoenv.cpp │ │ │ ├── fhoenv.h │ │ │ ├── fhoicon.cpp │ │ │ ├── fhoicon.h │ │ │ ├── fhoreg.cpp │ │ │ ├── fhoreg.h │ │ │ ├── fhores.cpp │ │ │ ├── fhores.h │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── launchy.exit.png │ │ │ ├── launchy.options.png │ │ │ ├── launchy.rebuild.png │ │ │ └── precompiled.h │ │ ├── gcalc │ │ │ ├── gcalc.cpp │ │ │ ├── gcalc.h │ │ │ ├── gcalc.ico │ │ │ ├── gcalc.pro │ │ │ └── precompiled.h │ │ ├── loader │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── loader.cpp │ │ │ ├── loader.h │ │ │ ├── loader.ico │ │ │ ├── loader.png │ │ │ ├── loader.pro │ │ │ └── loader_full.ico │ │ ├── runner │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── runner.cpp │ │ │ ├── runner.h │ │ │ ├── runner.ico │ │ │ ├── runner.png │ │ │ ├── runner.pro │ │ │ └── runner_full.ico │ │ ├── verby │ │ │ ├── Verby.cpp │ │ │ ├── Verby.h │ │ │ ├── copy.png │ │ │ ├── dlg.ui │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── opencontainer.png │ │ │ ├── precompiled.h │ │ │ ├── properties.png │ │ │ ├── run.png │ │ │ ├── verby.png │ │ │ └── verby.pro │ │ ├── vsrename.exe │ │ ├── weby │ │ │ ├── IconCache.cpp │ │ │ ├── IconCache.h │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── weby.cpp │ │ │ ├── weby.h │ │ │ ├── weby.ico │ │ │ ├── weby.png │ │ │ ├── weby.pro │ │ │ └── weby_full.ico │ │ └── winshell │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── winshell.cpp │ │ │ ├── winshell.h │ │ │ ├── winshell.ico │ │ │ └── winshell.pro │ ├── readme.lyx │ ├── readme.txt │ ├── release │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── skins │ │ ├── Black_Glass │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Black_Glass_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Default │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Mercury │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Mercury_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Note │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── QuickSilver2 │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ └── style.qss │ │ ├── Simple │ │ │ └── style.qss │ │ └── Spotlight_Wide │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ ├── src │ │ ├── AnimationLabel.cpp │ │ ├── AnimationLabel.h │ │ ├── CharLineEdit.cpp │ │ ├── CharLineEdit.h │ │ ├── CharListWidget.cpp │ │ ├── CharListWidget.h │ │ ├── CommandHistory.cpp │ │ ├── CommandHistory.h │ │ ├── Directory.h │ │ ├── Fader.cpp │ │ ├── Fader.h │ │ ├── FileSearch.cpp │ │ ├── FileSearch.h │ │ ├── InputDataList.cpp │ │ ├── InputDataList.h │ │ ├── LineEditMenu.cpp │ │ ├── LineEditMenu.h │ │ ├── SettingsManager.cpp │ │ ├── SettingsManager.h │ │ ├── catalog.cpp │ │ ├── catalog.h │ │ ├── catalog_builder.cpp │ │ ├── catalog_builder.h │ │ ├── catalog_types.cpp │ │ ├── catalog_types.h │ │ ├── dsingleapplication.cpp │ │ ├── dsingleapplication.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── icon_delegate.cpp │ │ ├── icon_delegate.h │ │ ├── icon_extractor.cpp │ │ ├── icon_extractor.h │ │ ├── launchy.qrc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── options.ui │ │ ├── platform_base.h │ │ ├── platform_base_hotkey.cpp │ │ ├── platform_base_hotkey.h │ │ ├── platform_base_hottrigger.h │ │ ├── platform_mac_hotkey.cpp │ │ ├── platform_util.cpp │ │ ├── platform_util.h │ │ ├── plugin_handler.cpp │ │ ├── plugin_handler.h │ │ ├── plugin_interface.cpp │ │ ├── plugin_interface.h │ │ ├── precompiled.h │ │ ├── resources │ │ │ ├── basicskin.qss │ │ │ ├── launchy128.png │ │ │ └── launchy16.png │ │ └── src.pro │ ├── translations │ │ ├── launchy_de.ts │ │ ├── launchy_es.ts │ │ ├── launchy_fr.ts │ │ ├── launchy_ja.ts │ │ ├── launchy_nl.ts │ │ ├── launchy_zh.ts │ │ └── launchy_zh_TW.ts │ └── win │ │ ├── Create Visual Studio projects.cmd │ │ ├── Launchy.ico │ │ ├── Microsoft.VC80.CRT.manifest │ │ ├── Microsoft.VC90.CRT.manifest │ │ ├── Utilities │ │ ├── Special Folders │ │ │ ├── C Drive.lnk │ │ │ ├── Control Panel.lnk │ │ │ ├── My Computer.lnk │ │ │ ├── My Documents.lnk │ │ │ ├── My Music.lnk │ │ │ ├── My Network Places.lnk │ │ │ ├── My Pictures.lnk │ │ │ └── Recycle Bin.lnk │ │ └── System Power │ │ │ ├── System Hibernate.lnk │ │ │ ├── System Logoff.lnk │ │ │ ├── System Reboot.lnk │ │ │ └── System Shutdown.lnk │ │ ├── buildTranslations.bat │ │ ├── installer │ │ ├── LaunchyPortable.ini │ │ ├── SETUP.iss │ │ └── header.bmp │ │ ├── launchy.rc │ │ ├── msvcm80.dll │ │ ├── msvcm90.dll │ │ ├── msvcp80.dll │ │ ├── msvcp90.dll │ │ ├── msvcr80.dll │ │ └── msvcr90.dll ├── 2.6-B1 │ ├── BUILD.txt │ ├── LICENSE.txt │ ├── Launchy.ico │ ├── Launchy.pro │ ├── Plugin API │ │ ├── CreateDocs.bat │ │ ├── PluginPage.doc │ │ ├── api.html │ │ ├── catalog.h │ │ ├── default.doxygen │ │ ├── myplugin.zip │ │ ├── myplugin │ │ │ ├── MyPlugin.sln │ │ │ ├── MyPlugin.vcproj │ │ │ ├── catalog.h │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── myplugin.cpp │ │ │ ├── myplugin.h │ │ │ ├── myplugin.pro │ │ │ ├── plugin_interface.cpp │ │ │ ├── plugin_interface.h │ │ │ └── readme.txt │ │ ├── plugin_interface.cpp │ │ └── plugin_interface.h │ ├── Readme.doc │ ├── Readme.pdf │ ├── buildWinSln.bat │ ├── common │ │ ├── DropListWidget.cpp │ │ ├── DropListWidget.h │ │ ├── DropTableWidget.cpp │ │ ├── DropTableWidget.h │ │ ├── FileBrowser.cpp │ │ ├── FileBrowser.h │ │ ├── FileBrowserDelegate.cpp │ │ └── FileBrowserDelegate.h │ ├── debug │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── linux │ │ ├── build_deb.sh │ │ ├── debian │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── menu.ex │ │ │ └── rules │ │ └── launchy.desktop │ ├── mac │ │ ├── Info.plist │ │ ├── create-dmg │ │ ├── deploy │ │ ├── mkdmg │ │ └── support │ │ │ ├── AdiumApplescriptRunner │ │ │ └── template.applescript │ ├── misc │ │ └── Launchy_Icon │ │ │ ├── launchy_icon.png │ │ │ ├── launchy_icon_mac.icns │ │ │ ├── launchy_icon_win.ico │ │ │ └── working │ │ │ ├── 128_32-bit.png │ │ │ ├── 16_32-bit.png │ │ │ ├── 16_8-bit.png │ │ │ ├── 16_and.png │ │ │ ├── 24_32-bit.png │ │ │ ├── 24_8-bit.png │ │ │ ├── 24_and.png │ │ │ ├── 32_32-bit.png │ │ │ ├── 32_8-bit.png │ │ │ ├── 32_and.png │ │ │ ├── 48_32-bit.png │ │ │ ├── 48_8-bit.png │ │ │ └── 48_and.png │ ├── platforms │ │ ├── gnome │ │ │ ├── gnome.pro │ │ │ ├── platform_gnome.cpp │ │ │ ├── platform_gnome.h │ │ │ ├── platform_gnome_util.cpp │ │ │ ├── platform_gnome_util.h │ │ │ └── readme.txt │ │ ├── mac │ │ │ ├── platform_mac.cpp │ │ │ ├── platform_mac.h │ │ │ ├── platform_mac_hotkey.cpp │ │ │ └── platform_mac_hotkey.h │ │ ├── unix │ │ │ ├── platform_unix.cpp │ │ │ ├── platform_unix.h │ │ │ ├── platform_unix_util.cpp │ │ │ ├── platform_unix_util.h │ │ │ ├── platform_x11_hotkey.cpp │ │ │ ├── platform_x11_hotkey.h │ │ │ └── unix.pro │ │ └── win │ │ │ ├── WinIconProvider.cpp │ │ │ ├── WinIconProvider.h │ │ │ ├── minidump.cpp │ │ │ ├── minidump.h │ │ │ ├── platform_win.cpp │ │ │ ├── platform_win.h │ │ │ ├── platform_win_hotkey.cpp │ │ │ ├── platform_win_util.cpp │ │ │ ├── platform_win_util.h │ │ │ ├── readme.txt │ │ │ ├── win.pro │ │ │ ├── win.sln │ │ │ └── win.vcproj │ ├── plugins │ │ ├── calcy │ │ │ ├── calcy.cpp │ │ │ ├── calcy.h │ │ │ ├── calcy.ico │ │ │ ├── calcy.png │ │ │ ├── calcy.pro │ │ │ ├── calcy_full.ico │ │ │ ├── dlg.ui │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ └── precompiled.h │ │ ├── controly │ │ │ ├── ControlPanelItemFinder.cpp │ │ │ ├── ControlPanelItemFinder.h │ │ │ ├── controly.cpp │ │ │ ├── controly.h │ │ │ ├── controly.ico │ │ │ ├── controly.png │ │ │ ├── controly.pro │ │ │ ├── controly_full.ico │ │ │ ├── dlg.ui │ │ │ ├── fhoenv.cpp │ │ │ ├── fhoenv.h │ │ │ ├── fhoicon.cpp │ │ │ ├── fhoicon.h │ │ │ ├── fhoreg.cpp │ │ │ ├── fhoreg.h │ │ │ ├── fhores.cpp │ │ │ ├── fhores.h │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── launchy.exit.png │ │ │ ├── launchy.options.png │ │ │ ├── launchy.rebuild.png │ │ │ └── precompiled.h │ │ ├── gcalc │ │ │ ├── gcalc.cpp │ │ │ ├── gcalc.h │ │ │ ├── gcalc.ico │ │ │ ├── gcalc.pro │ │ │ └── precompiled.h │ │ ├── loader │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── loader.cpp │ │ │ ├── loader.h │ │ │ ├── loader.ico │ │ │ ├── loader.png │ │ │ ├── loader.pro │ │ │ └── loader_full.ico │ │ ├── runner │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── runner.cpp │ │ │ ├── runner.h │ │ │ ├── runner.ico │ │ │ ├── runner.png │ │ │ ├── runner.pro │ │ │ └── runner_full.ico │ │ ├── verby │ │ │ ├── Verby.cpp │ │ │ ├── Verby.h │ │ │ ├── copy.png │ │ │ ├── dlg.ui │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── opencontainer.png │ │ │ ├── precompiled.h │ │ │ ├── properties.png │ │ │ ├── run.png │ │ │ ├── verby.png │ │ │ └── verby.pro │ │ ├── vsrename.exe │ │ ├── weby │ │ │ ├── IconCache.cpp │ │ │ ├── IconCache.h │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── precompiled.h │ │ │ ├── weby.cpp │ │ │ ├── weby.h │ │ │ ├── weby.ico │ │ │ ├── weby.png │ │ │ ├── weby.pro │ │ │ └── weby_full.ico │ │ └── winshell │ │ │ ├── dlg.ui │ │ │ ├── globals.h │ │ │ ├── gui.cpp │ │ │ ├── gui.h │ │ │ ├── winshell.cpp │ │ │ ├── winshell.h │ │ │ ├── winshell.ico │ │ │ └── winshell.pro │ ├── readme.lyx │ ├── readme.txt │ ├── release │ │ └── skins │ │ │ └── Mercury │ │ │ ├── alpha.png │ │ │ ├── author.txt │ │ │ ├── background.png │ │ │ ├── down_arrow.png │ │ │ ├── mask.png │ │ │ ├── misc.txt │ │ │ ├── pos.txt │ │ │ └── style.qss │ ├── skins │ │ ├── Black_Glass │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Black_Glass_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Default │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Mercury │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Mercury_Wide │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ │ ├── Note │ │ │ ├── author.txt │ │ │ ├── frame.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ └── style.qss │ │ ├── QuickSilver2 │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ └── style.qss │ │ ├── Simple │ │ │ └── style.qss │ │ └── Spotlight_Wide │ │ │ ├── author.txt │ │ │ ├── background_nc.png │ │ │ ├── closeButton.png │ │ │ ├── closeButtonPressed.png │ │ │ ├── frame.png │ │ │ ├── mask_nc.png │ │ │ ├── opsButton.png │ │ │ ├── opsButtonPressed.png │ │ │ ├── scrollBack.png │ │ │ ├── scrollDown.png │ │ │ ├── scrollUp.png │ │ │ ├── spinner.mng │ │ │ └── style.qss │ ├── src │ │ ├── AnimationLabel.cpp │ │ ├── AnimationLabel.h │ │ ├── CharLineEdit.cpp │ │ ├── CharLineEdit.h │ │ ├── CharListWidget.cpp │ │ ├── CharListWidget.h │ │ ├── CommandHistory.cpp │ │ ├── CommandHistory.h │ │ ├── Directory.h │ │ ├── Fader.cpp │ │ ├── Fader.h │ │ ├── FileSearch.cpp │ │ ├── FileSearch.h │ │ ├── InputDataList.cpp │ │ ├── InputDataList.h │ │ ├── LineEditMenu.cpp │ │ ├── LineEditMenu.h │ │ ├── SettingsManager.cpp │ │ ├── SettingsManager.h │ │ ├── catalog.cpp │ │ ├── catalog.h │ │ ├── catalog_builder.cpp │ │ ├── catalog_builder.h │ │ ├── catalog_types.cpp │ │ ├── catalog_types.h │ │ ├── dsingleapplication.cpp │ │ ├── dsingleapplication.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── icon_delegate.cpp │ │ ├── icon_delegate.h │ │ ├── icon_extractor.cpp │ │ ├── icon_extractor.h │ │ ├── launchy.qrc │ │ ├── main.cpp │ │ ├── main.h │ │ ├── options.cpp │ │ ├── options.h │ │ ├── options.ui │ │ ├── platform_base.h │ │ ├── platform_base_hotkey.cpp │ │ ├── platform_base_hotkey.h │ │ ├── platform_base_hottrigger.h │ │ ├── platform_mac_hotkey.cpp │ │ ├── platform_util.cpp │ │ ├── platform_util.h │ │ ├── plugin_handler.cpp │ │ ├── plugin_handler.h │ │ ├── plugin_interface.cpp │ │ ├── plugin_interface.h │ │ ├── precompiled.h │ │ ├── resources │ │ │ ├── basicskin.qss │ │ │ ├── launchy128.png │ │ │ └── launchy16.png │ │ └── src.pro │ ├── translations │ │ ├── launchy_de.ts │ │ ├── launchy_es.ts │ │ ├── launchy_fr.ts │ │ ├── launchy_ja.ts │ │ ├── launchy_nl.ts │ │ ├── launchy_rus.ts │ │ ├── launchy_zh.ts │ │ └── launchy_zh_TW.ts │ └── win │ │ ├── Create Visual Studio projects.cmd │ │ ├── Launchy.ico │ │ ├── Microsoft.VC80.CRT.manifest │ │ ├── Utilities │ │ ├── Special Folders │ │ │ ├── C Drive.lnk │ │ │ ├── Control Panel.lnk │ │ │ ├── My Computer.lnk │ │ │ ├── My Documents.lnk │ │ │ ├── My Music.lnk │ │ │ ├── My Network Places.lnk │ │ │ ├── My Pictures.lnk │ │ │ └── Recycle Bin.lnk │ │ └── System Power │ │ │ ├── System Hibernate.lnk │ │ │ ├── System Logoff.lnk │ │ │ ├── System Reboot.lnk │ │ │ └── System Shutdown.lnk │ │ ├── buildTranslations.bat │ │ ├── installer │ │ ├── LaunchyPortable.ini │ │ ├── SETUP.iss │ │ └── header.bmp │ │ ├── launchy.rc │ │ ├── msvcm80.dll │ │ ├── msvcp80.dll │ │ └── msvcr80.dll ├── launchy-0_8_0 │ └── Launchy_VC7 │ │ ├── CDialogSK.cpp │ │ ├── CDialogSK.h │ │ ├── DirectoryChooser.cpp │ │ ├── DirectoryChooser.h │ │ ├── DiskObject.cpp │ │ ├── DiskObject.h │ │ ├── ExeLauncher.cpp │ │ ├── ExeLauncher.h │ │ ├── FileRecord.cpp │ │ ├── FileRecord.h │ │ ├── HotkeyDialog.cpp │ │ ├── HotkeyDialog.h │ │ ├── Launcher.cpp │ │ ├── Launcher.h │ │ ├── Launchy.aps │ │ ├── Launchy.cpp │ │ ├── Launchy.h │ │ ├── Launchy.ncb │ │ ├── Launchy.rc │ │ ├── Launchy.sln │ │ ├── Launchy.suo │ │ ├── Launchy.vcproj │ │ ├── LaunchyDir.cpp │ │ ├── LaunchyDir.h │ │ ├── LaunchyDlg.cpp │ │ ├── LaunchyDlg.h │ │ ├── LaunchySmarts.cpp │ │ ├── LaunchySmarts.h │ │ ├── OpaqueListBox.cpp │ │ ├── OpaqueListBox.h │ │ ├── Options.cpp │ │ ├── Options.h │ │ ├── QArray.h │ │ ├── ReadMe.txt │ │ ├── ReadOnlyEdit.cpp │ │ ├── ReadOnlyEdit.h │ │ ├── Resource.h │ │ ├── Skin.cpp │ │ ├── Skin.h │ │ ├── SkinChooser.cpp │ │ ├── SkinChooser.h │ │ ├── SmartComboBox.cpp │ │ ├── SmartComboBox.h │ │ ├── TypeEdit.cpp │ │ ├── TypeEdit.h │ │ ├── iniFile.cpp │ │ ├── iniFile.h │ │ ├── res │ │ ├── Launchy.ico │ │ ├── Launchy.manifest │ │ ├── Launchy.rc2 │ │ └── bkgd2.bmp │ │ ├── stdafx.cpp │ │ └── stdafx.h └── start │ └── launchy │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HotKey.cs │ ├── Launchy.XML │ ├── Launchy.csproj │ ├── Launchy.csproj.user │ ├── Launchy.sln │ ├── Launchy.suo │ ├── License.txt │ ├── UpgradeLog.XML │ ├── bkgd2.bmp │ └── typelaunch.suo └── trunk ├── CVSROOT ├── checkoutlist ├── commitinfo ├── config ├── cvswrappers ├── editinfo ├── loginfo ├── modules ├── notify ├── rcsinfo ├── taginfo └── verifymsg ├── LaunchyC ├── EndInstallNotice.rtf ├── Installer │ ├── Installer.sln │ ├── Installer.suo │ └── Installer │ │ └── Installer.vdproj ├── Launchy.sln ├── Launchy.suo ├── Launchy │ ├── CDialogSK.cpp │ ├── CDialogSK.h │ ├── DirectoryChooser.cpp │ ├── DirectoryChooser.h │ ├── DiskObject.cpp │ ├── DiskObject.h │ ├── ExeLauncher.cpp │ ├── ExeLauncher.h │ ├── FileRecord.cpp │ ├── FileRecord.h │ ├── HotkeyDialog.cpp │ ├── HotkeyDialog.h │ ├── Launcher.cpp │ ├── Launcher.h │ ├── Launchy.aps │ ├── Launchy.cpp │ ├── Launchy.h │ ├── Launchy.rc │ ├── Launchy.vcproj │ ├── LaunchyDir.cpp │ ├── LaunchyDir.h │ ├── LaunchyDlg.cpp │ ├── LaunchyDlg.h │ ├── LaunchySmarts.cpp │ ├── LaunchySmarts.h │ ├── Notes.txt │ ├── OpaqueListBox.cpp │ ├── OpaqueListBox.h │ ├── Options.cpp │ ├── Options.h │ ├── QArray.h │ ├── Skin.cpp │ ├── Skin.h │ ├── SkinChooser.cpp │ ├── SkinChooser.h │ ├── Skins │ │ └── Blue Trim │ │ │ ├── bluetrim.bmp │ │ │ └── skin.ini │ ├── SmartComboBox.cpp │ ├── SmartComboBox.h │ ├── TypeEdit.cpp │ ├── TypeEdit.h │ ├── iniFile.cpp │ ├── iniFile.h │ ├── install_launchy.ini │ ├── res │ │ ├── Launchy.ico │ │ ├── Launchy.rc2 │ │ └── bkgd2.bmp │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── License.txt ├── Readme.doc └── Readme.pdf ├── Launchy_QT ├── BUILD.txt ├── LICENSE.txt ├── Launchy.ico ├── Launchy.pro ├── Plugin API │ ├── CreateDocs.bat │ ├── PluginPage.doc │ ├── api.html │ ├── catalog.h │ ├── default.doxygen │ ├── myplugin.zip │ ├── myplugin │ │ ├── MyPlugin.sln │ │ ├── MyPlugin.vcproj │ │ ├── catalog.h │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── myplugin.cpp │ │ ├── myplugin.h │ │ ├── myplugin.pro │ │ ├── plugin_interface.cpp │ │ ├── plugin_interface.h │ │ └── readme.txt │ ├── plugin_interface.cpp │ └── plugin_interface.h ├── Readme.doc ├── Readme.pdf ├── buildWinSln.bat ├── common │ ├── DropListWidget.cpp │ ├── DropListWidget.h │ ├── DropTableWidget.cpp │ ├── DropTableWidget.h │ ├── FileBrowser.cpp │ ├── FileBrowser.h │ ├── FileBrowserDelegate.cpp │ └── FileBrowserDelegate.h ├── debug │ └── skins │ │ └── Mercury │ │ ├── alpha.png │ │ ├── author.txt │ │ ├── background.png │ │ ├── down_arrow.png │ │ ├── mask.png │ │ ├── misc.txt │ │ ├── pos.txt │ │ └── style.qss ├── linux │ ├── build_deb.sh │ ├── debian │ │ ├── control │ │ ├── copyright │ │ ├── menu.ex │ │ └── rules │ └── launchy.desktop ├── mac │ ├── Info.plist │ ├── create-dmg │ ├── deploy │ ├── mkdmg │ └── support │ │ ├── AdiumApplescriptRunner │ │ └── template.applescript ├── misc │ └── Launchy_Icon │ │ ├── launchy_icon.png │ │ ├── launchy_icon_mac.icns │ │ ├── launchy_icon_win.ico │ │ └── working │ │ ├── 128_32-bit.png │ │ ├── 16_32-bit.png │ │ ├── 16_8-bit.png │ │ ├── 16_and.png │ │ ├── 24_32-bit.png │ │ ├── 24_8-bit.png │ │ ├── 24_and.png │ │ ├── 32_32-bit.png │ │ ├── 32_8-bit.png │ │ ├── 32_and.png │ │ ├── 48_32-bit.png │ │ ├── 48_8-bit.png │ │ └── 48_and.png ├── platforms │ ├── gnome │ │ ├── gnome.pro │ │ ├── platform_gnome.cpp │ │ ├── platform_gnome.h │ │ ├── platform_gnome_util.cpp │ │ ├── platform_gnome_util.h │ │ └── readme.txt │ ├── mac │ │ ├── platform_mac.cpp │ │ ├── platform_mac.h │ │ ├── platform_mac_hotkey.cpp │ │ └── platform_mac_hotkey.h │ ├── unix │ │ ├── platform_unix.cpp │ │ ├── platform_unix.h │ │ ├── platform_unix_util.cpp │ │ ├── platform_unix_util.h │ │ ├── platform_x11_hotkey.cpp │ │ ├── platform_x11_hotkey.h │ │ └── unix.pro │ └── win │ │ ├── WinIconProvider.cpp │ │ ├── WinIconProvider.h │ │ ├── minidump.cpp │ │ ├── minidump.h │ │ ├── platform_win.cpp │ │ ├── platform_win.h │ │ ├── platform_win_hotkey.cpp │ │ ├── platform_win_util.cpp │ │ ├── platform_win_util.h │ │ ├── readme.txt │ │ ├── win.pro │ │ ├── win.sln │ │ └── win.vcproj ├── plugins │ ├── calcy │ │ ├── calcy.cpp │ │ ├── calcy.h │ │ ├── calcy.ico │ │ ├── calcy.png │ │ ├── calcy.pro │ │ ├── calcy_full.ico │ │ ├── dlg.ui │ │ ├── gui.cpp │ │ ├── gui.h │ │ └── precompiled.h │ ├── controly │ │ ├── ControlPanelItemFinder.cpp │ │ ├── ControlPanelItemFinder.h │ │ ├── controly.cpp │ │ ├── controly.h │ │ ├── controly.ico │ │ ├── controly.png │ │ ├── controly.pro │ │ ├── controly_full.ico │ │ ├── dlg.ui │ │ ├── fhoenv.cpp │ │ ├── fhoenv.h │ │ ├── fhoicon.cpp │ │ ├── fhoicon.h │ │ ├── fhoreg.cpp │ │ ├── fhoreg.h │ │ ├── fhores.cpp │ │ ├── fhores.h │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── launchy.exit.png │ │ ├── launchy.options.png │ │ ├── launchy.rebuild.png │ │ └── precompiled.h │ ├── gcalc │ │ ├── gcalc.cpp │ │ ├── gcalc.h │ │ ├── gcalc.ico │ │ ├── gcalc.pro │ │ └── precompiled.h │ ├── loader │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── loader.cpp │ │ ├── loader.h │ │ ├── loader.ico │ │ ├── loader.png │ │ ├── loader.pro │ │ └── loader_full.ico │ ├── runner │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── precompiled.h │ │ ├── runner.cpp │ │ ├── runner.h │ │ ├── runner.ico │ │ ├── runner.png │ │ ├── runner.pro │ │ └── runner_full.ico │ ├── verby │ │ ├── Verby.cpp │ │ ├── Verby.h │ │ ├── copy.png │ │ ├── dlg.ui │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── opencontainer.png │ │ ├── precompiled.h │ │ ├── properties.png │ │ ├── run.png │ │ ├── verby.png │ │ └── verby.pro │ ├── vsrename.exe │ ├── weby │ │ ├── IconCache.cpp │ │ ├── IconCache.h │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── precompiled.h │ │ ├── weby.cpp │ │ ├── weby.h │ │ ├── weby.ico │ │ ├── weby.png │ │ ├── weby.pro │ │ └── weby_full.ico │ └── winshell │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── winshell.cpp │ │ ├── winshell.h │ │ ├── winshell.ico │ │ └── winshell.pro ├── readme.lyx ├── readme.txt ├── release │ └── skins │ │ └── Mercury │ │ ├── alpha.png │ │ ├── author.txt │ │ ├── background.png │ │ ├── down_arrow.png │ │ ├── mask.png │ │ ├── misc.txt │ │ ├── pos.txt │ │ └── style.qss ├── skins │ ├── Black_Glass │ │ ├── author.txt │ │ ├── frame.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss │ ├── Black_Glass_Wide │ │ ├── author.txt │ │ ├── frame.png │ │ ├── opsButton.png │ │ ├── opsButtonPressed.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss │ ├── Default │ │ ├── author.txt │ │ ├── background_nc.png │ │ ├── closeButton.png │ │ ├── closeButtonPressed.png │ │ ├── frame.png │ │ ├── mask_nc.png │ │ ├── opsButton.png │ │ ├── opsButtonPressed.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss │ ├── Mercury │ │ ├── author.txt │ │ ├── frame.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss │ ├── Mercury_Wide │ │ ├── author.txt │ │ ├── frame.png │ │ ├── opsButton.png │ │ ├── opsButtonPressed.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss │ ├── Note │ │ ├── author.txt │ │ ├── frame.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ └── style.qss │ ├── QuickSilver2 │ │ ├── author.txt │ │ ├── background_nc.png │ │ ├── frame.png │ │ ├── mask_nc.png │ │ └── style.qss │ ├── Simple │ │ └── style.qss │ └── Spotlight_Wide │ │ ├── author.txt │ │ ├── background_nc.png │ │ ├── closeButton.png │ │ ├── closeButtonPressed.png │ │ ├── frame.png │ │ ├── mask_nc.png │ │ ├── opsButton.png │ │ ├── opsButtonPressed.png │ │ ├── scrollBack.png │ │ ├── scrollDown.png │ │ ├── scrollUp.png │ │ ├── spinner.mng │ │ └── style.qss ├── src │ ├── AnimationLabel.cpp │ ├── AnimationLabel.h │ ├── CharLineEdit.cpp │ ├── CharLineEdit.h │ ├── CharListWidget.cpp │ ├── CharListWidget.h │ ├── CommandHistory.cpp │ ├── CommandHistory.h │ ├── Directory.h │ ├── Fader.cpp │ ├── Fader.h │ ├── FileSearch.cpp │ ├── FileSearch.h │ ├── InputDataList.cpp │ ├── InputDataList.h │ ├── LineEditMenu.cpp │ ├── LineEditMenu.h │ ├── SettingsManager.cpp │ ├── SettingsManager.h │ ├── catalog.cpp │ ├── catalog.h │ ├── catalog_builder.cpp │ ├── catalog_builder.h │ ├── catalog_types.cpp │ ├── catalog_types.h │ ├── dsingleapplication.cpp │ ├── dsingleapplication.h │ ├── globals.cpp │ ├── globals.h │ ├── icon_delegate.cpp │ ├── icon_delegate.h │ ├── icon_extractor.cpp │ ├── icon_extractor.h │ ├── launchy.qrc │ ├── main.cpp │ ├── main.h │ ├── options.cpp │ ├── options.h │ ├── options.ui │ ├── platform_base.h │ ├── platform_base_hotkey.cpp │ ├── platform_base_hotkey.h │ ├── platform_base_hottrigger.h │ ├── platform_mac_hotkey.cpp │ ├── platform_util.cpp │ ├── platform_util.h │ ├── plugin_handler.cpp │ ├── plugin_handler.h │ ├── plugin_interface.cpp │ ├── plugin_interface.h │ ├── precompiled.h │ ├── resources │ │ ├── basicskin.qss │ │ ├── launchy128.png │ │ └── launchy16.png │ └── src.pro ├── translations │ ├── launchy_de.ts │ ├── launchy_es.ts │ ├── launchy_fr.ts │ ├── launchy_ja.ts │ ├── launchy_nl.ts │ ├── launchy_rus.ts │ ├── launchy_zh.ts │ └── launchy_zh_TW.ts └── win │ ├── Create Visual Studio projects.cmd │ ├── Launchy.ico │ ├── Microsoft.VC80.CRT.manifest │ ├── Utilities │ ├── Special Folders │ │ ├── C Drive.lnk │ │ ├── Control Panel.lnk │ │ ├── My Computer.lnk │ │ ├── My Documents.lnk │ │ ├── My Music.lnk │ │ ├── My Network Places.lnk │ │ ├── My Pictures.lnk │ │ └── Recycle Bin.lnk │ └── System Power │ │ ├── System Hibernate.lnk │ │ ├── System Logoff.lnk │ │ ├── System Reboot.lnk │ │ └── System Shutdown.lnk │ ├── buildTranslations.bat │ ├── installer │ ├── LaunchyPortable.ini │ ├── SETUP.iss │ └── header.bmp │ ├── launchy.rc │ ├── msvcm80.dll │ ├── msvcp80.dll │ └── msvcr80.dll ├── Launchy_VC7 ├── Launchy Plugin API │ ├── BlankPlugin.zip │ ├── BlankPlugin │ │ ├── BlankPlugin.sln │ │ ├── BlankPlugin.suo │ │ └── BlankPlugin │ │ │ ├── BlankPlugin.cpp │ │ │ ├── BlankPlugin.vcproj │ │ │ ├── BlankPlugin.vcproj.GIBO.karlinjf.user │ │ │ ├── LaunchyPlugin.cpp │ │ │ ├── LaunchyPlugin.h │ │ │ ├── ReadMe.txt │ │ │ ├── stdafx.cpp │ │ │ └── stdafx.h │ ├── CreateDocs.bat │ ├── LaunchyPlugin.cpp │ ├── LaunchyPlugin.h │ ├── Weby.zip │ ├── default.doxygen │ └── index.html ├── Launchy.rc ├── Launchy.sln ├── Launchy.vcproj ├── Plugins │ ├── Calcy │ │ ├── Calcy.aps │ │ ├── Calcy.cpp │ │ ├── Calcy.h │ │ ├── Calcy.ncb │ │ ├── Calcy.rc │ │ ├── Calcy.sln │ │ ├── Calcy.suo │ │ ├── Calcy.vcproj │ │ ├── Main.cpp │ │ ├── Main.h │ │ ├── ReadMe.txt │ │ ├── calc.ico │ │ ├── icon1.ico │ │ ├── main.cc │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── test.exe │ ├── Controly │ │ ├── Controly.aps │ │ ├── Controly.cpp │ │ ├── Controly.h │ │ ├── Controly.ncb │ │ ├── Controly.rc │ │ ├── Controly.sln │ │ ├── Controly.suo │ │ ├── Controly.vcproj │ │ ├── ReadMe.txt │ │ ├── ed0101-32.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Explory │ │ ├── DiskObject.cpp │ │ ├── DiskObject.h │ │ ├── Explory.aps │ │ ├── Explory.cpp │ │ ├── Explory.h │ │ ├── Explory.ncb │ │ ├── Explory.rc │ │ ├── Explory.sln │ │ ├── Explory.suo │ │ ├── Explory.vcproj │ │ ├── ReadMe.txt │ │ ├── explore.ico │ │ ├── icon1.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Foxy │ │ ├── Foxy.aps │ │ ├── Foxy.cpp │ │ ├── Foxy.h │ │ ├── Foxy.ncb │ │ ├── Foxy.rc │ │ ├── Foxy.sln │ │ ├── Foxy.suo │ │ ├── Foxy.vcproj │ │ ├── ReadMe.txt │ │ ├── Release │ │ │ └── BuildLog.htm │ │ ├── fox.ico │ │ ├── icon1.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── PluginLib │ │ ├── LaunchyPlugin.cpp │ │ └── LaunchyPlugin.h │ ├── Runny │ │ ├── ReadMe.txt │ │ ├── Runny.aps │ │ ├── Runny.cpp │ │ ├── Runny.h │ │ ├── Runny.ncb │ │ ├── Runny.rc │ │ ├── Runny.sln │ │ ├── Runny.suo │ │ ├── Runny.vcproj │ │ ├── RunnyDlg.cpp │ │ ├── RunnyDlg.h │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── Weby │ │ ├── ReadMe.txt │ │ ├── Weby.aps │ │ ├── Weby.cpp │ │ ├── Weby.h │ │ ├── Weby.ncb │ │ ├── Weby.rc │ │ ├── Weby.sln │ │ ├── Weby.suo │ │ ├── Weby.vcproj │ │ ├── ed0101-32.ico │ │ ├── icon1.ico │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── readme.txt │ └── vsrename.exe ├── ReadMe.txt ├── Readme.doc ├── Readme.pdf ├── Resource.h ├── Skins │ ├── Aero Soft │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Aqua │ │ ├── Author.txt │ │ ├── background.bmp │ │ ├── border.png │ │ └── skin.ini │ ├── BioHazard │ │ ├── Author.txt │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Black Glass │ │ ├── Author.txt │ │ ├── border.png │ │ ├── glass.bmp │ │ └── skin.ini │ ├── Blue Trim │ │ ├── bluetrim.bmp │ │ └── skin.ini │ ├── BlueMetal │ │ ├── Author.txt │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Clean │ │ ├── Author.txt │ │ ├── background.bmp │ │ ├── border.png │ │ └── skin.ini │ ├── Default │ │ ├── Author.txt │ │ ├── background.bmp │ │ ├── default.png │ │ ├── default.psd │ │ ├── default_border.png │ │ └── skin.ini │ ├── Gantchy Blue │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Gantchy Deep │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Green Leaf │ │ ├── background.bmp │ │ ├── border.png │ │ ├── quicksilver.psd │ │ └── skin.ini │ ├── Mini Blue │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Mini Soft │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Purple Candy │ │ ├── blue.psd │ │ ├── border.png │ │ ├── full.png │ │ ├── purplecandy.bmp │ │ └── skin.ini │ ├── QuickSilver2 │ │ ├── Author.txt │ │ ├── back.png │ │ ├── front.bmp │ │ └── skin.ini │ ├── Quicksilver │ │ ├── Author.txt │ │ ├── border.png │ │ ├── full.png │ │ ├── quicksilver.bmp │ │ ├── quicksilver.psd │ │ └── skin.ini │ ├── Royale │ │ ├── Author.txt │ │ ├── Thumbs.db │ │ ├── background.bmp │ │ ├── default.png │ │ └── skin.ini │ ├── Top Tab │ │ ├── Author.txt │ │ ├── border.png │ │ ├── skin.ini │ │ └── topTab.bmp │ └── transparent │ │ ├── Author.txt │ │ ├── alpha.png │ │ ├── bluetrim.bmp │ │ └── skin.ini ├── Utilities │ ├── Special Folders │ │ ├── C Drive.lnk │ │ ├── Control Panel.lnk │ │ ├── My Computer.lnk │ │ ├── My Documents.lnk │ │ ├── My Music.lnk │ │ ├── My Network Places.lnk │ │ ├── My Pictures.lnk │ │ └── Recycle Bin.lnk │ └── System Power │ │ ├── System Logoff.lnk │ │ ├── System Reboot.lnk │ │ └── System Shutdown.lnk ├── boost │ ├── assert.hpp │ ├── checked_delete.hpp │ ├── config.hpp │ ├── config │ │ ├── compiler │ │ │ └── visualc.hpp │ │ ├── platform │ │ │ └── win32.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ ├── stdlib │ │ │ └── dinkumware.hpp │ │ ├── suffix.hpp │ │ └── user.hpp │ ├── detail │ │ ├── bad_weak_ptr.hpp │ │ ├── interlocked.hpp │ │ ├── shared_count.hpp │ │ ├── sp_counted_base.hpp │ │ ├── sp_counted_base_nt.hpp │ │ ├── sp_counted_base_pt.hpp │ │ ├── sp_counted_base_w32.hpp │ │ ├── sp_counted_impl.hpp │ │ └── workaround.hpp │ ├── enable_shared_from_this.hpp │ ├── intrusive_ptr.hpp │ ├── scoped_array.hpp │ ├── scoped_ptr.hpp │ ├── shared_array.hpp │ ├── shared_ptr.hpp │ ├── smart_ptr.hpp │ ├── throw_exception.hpp │ └── weak_ptr.hpp ├── copyFiles.bat ├── inno installer │ └── SETUP.iss ├── license.rtf ├── res │ ├── Launchy.ico │ ├── Launchy.manifest │ ├── Launchy.rc2 │ └── bkgd2.bmp ├── src │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── AdvancedOptions.cpp │ ├── AdvancedOptions.h │ ├── AlphaBorder.cpp │ ├── AlphaBorder.h │ ├── CArchiveEx.cpp │ ├── CArchiveEx.h │ ├── CDialogSK.cpp │ ├── CDialogSK.h │ ├── DirectoryChooser.cpp │ ├── DirectoryChooser.h │ ├── DiskObject.cpp │ ├── DiskObject.h │ ├── ExeLauncher.cpp │ ├── ExeLauncher.h │ ├── FileRecord.cpp │ ├── FileRecord.h │ ├── HotkeyDialog.cpp │ ├── HotkeyDialog.h │ ├── Launcher.cpp │ ├── Launcher.h │ ├── Launchy.cpp │ ├── Launchy.h │ ├── LaunchyDir.cpp │ ├── LaunchyDir.h │ ├── LaunchyDlg.cpp │ ├── LaunchyDlg.h │ ├── LaunchySmarts.cpp │ ├── LaunchySmarts.h │ ├── OpaqueListBox.cpp │ ├── OpaqueListBox.h │ ├── Options.cpp │ ├── Options.h │ ├── Plugin.cpp │ ├── Plugin.h │ ├── PluginDialog.cpp │ ├── PluginDialog.h │ ├── QArray.h │ ├── ReadOnlyEdit.cpp │ ├── ReadOnlyEdit.h │ ├── SingleInstanceApp.h │ ├── Skin.cpp │ ├── Skin.h │ ├── SkinChooser.cpp │ ├── SkinChooser.h │ ├── SmartComboBox.cpp │ ├── SmartComboBox.h │ ├── TransparentStatic2.cpp │ ├── TransparentStatic2.h │ ├── TypeEdit.cpp │ ├── TypeEdit.h │ ├── UTF16File.cpp │ ├── UTF16File.h │ ├── UseShGetFileInfo.cpp │ ├── UseShGetFileInfo.h │ ├── iniFile.cpp │ ├── iniFile.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── zlib │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zlib.lib │ │ └── zlibd.lib └── website │ ├── version.gif │ └── version.psd └── launchy ├── App.ico ├── AssemblyInfo.cs ├── Form1.cs ├── Form1.resx ├── HotKey.cs ├── Launchy.XML ├── Launchy.csproj ├── Launchy.csproj.user ├── Launchy.sln ├── Launchy.suo ├── License.txt ├── Options.Designer.cs ├── Options.cs ├── UpgradeLog.XML ├── bkgd2.bmp └── typelaunch.suo /branches/JK/Launchy_VC7/Launchy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/JK/Launchy_VC7/Launchy.aps -------------------------------------------------------------------------------- /branches/JK/Launchy_VC7/Launchy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/JK/Launchy_VC7/Launchy.ncb -------------------------------------------------------------------------------- /branches/JK/Launchy_VC7/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/JK/Launchy_VC7/Launchy.suo -------------------------------------------------------------------------------- /branches/JK/Launchy_VC7/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/JK/Launchy_VC7/res/Launchy.ico -------------------------------------------------------------------------------- /branches/JK/Launchy_VC7/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/JK/Launchy_VC7/res/bkgd2.bmp -------------------------------------------------------------------------------- /branches/vendor/launchy/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/vendor/launchy/App.ico -------------------------------------------------------------------------------- /branches/vendor/launchy/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/vendor/launchy/Launchy.suo -------------------------------------------------------------------------------- /branches/vendor/launchy/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/vendor/launchy/bkgd2.bmp -------------------------------------------------------------------------------- /branches/vendor/launchy/typelaunch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/branches/vendor/launchy/typelaunch.suo -------------------------------------------------------------------------------- /tags/2.1/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Launchy.ico -------------------------------------------------------------------------------- /tags/2.1/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | copy ..\src\plugin_interface.h . 3 | copy ..\src\catalog.h . 4 | "c:\bin\doxygen" default.doxygen 5 | rem pause -------------------------------------------------------------------------------- /tags/2.1/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /tags/2.1/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Plugin API/api.html -------------------------------------------------------------------------------- /tags/2.1/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /tags/2.1/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Readme.doc -------------------------------------------------------------------------------- /tags/2.1/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/Readme.pdf -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/debug/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/debug/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/debug/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/debug/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.1/debug/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.1/linux/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(launchy):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ 2 | title="launchy" command="/usr/bin/launchy" 3 | -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/launchy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/launchy_icon.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/launchy_icon_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/launchy_icon_mac.icns -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/launchy_icon_win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/launchy_icon_win.ico -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/128_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/128_32-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/16_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/16_32-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/16_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/16_8-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/16_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/16_and.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/24_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/24_32-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/24_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/24_8-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/24_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/24_and.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/32_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/32_32-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/32_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/32_8-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/32_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/32_and.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/48_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/48_32-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/48_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/48_8-bit.png -------------------------------------------------------------------------------- /tags/2.1/misc/Launchy Icon/working/48_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/misc/Launchy Icon/working/48_and.png -------------------------------------------------------------------------------- /tags/2.1/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- 1 | Left off: Trying to prevent the alpha window from being selected. Once it's selected it covers up the main window and I can't select its text box. 2 | -------------------------------------------------------------------------------- /tags/2.1/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /tags/2.1/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/controly/controly.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/controly/controly_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/controly/controly_full.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/runner/runner.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/runner/runner.png -------------------------------------------------------------------------------- /tags/2.1/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/vsrename.exe -------------------------------------------------------------------------------- /tags/2.1/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/weby/weby.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/weby/weby.png -------------------------------------------------------------------------------- /tags/2.1/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /tags/2.1/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/release/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/release/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/release/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/release/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.1/release/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.1/skins/Black Glass/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Black Glass/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/Black Glass/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Black Glass/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/Black Glass/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Black Glass/background_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Black Glass/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Black Glass/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/Black Glass/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Black Glass/mask_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/author.txt -------------------------------------------------------------------------------- /tags/2.1/skins/Default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/background_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/closeButton.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/opsButton.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /tags/2.1/skins/Default/scroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Default/scroller.png -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.1/skins/Note/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/Note/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/Note/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /tags/2.1/skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /tags/2.1/skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/QuickSilver2/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/QuickSilver2/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/QuickSilver2/background_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/QuickSilver2/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/alpha.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/author.txt -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/background.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/background_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/closeButton.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/mask.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/mask_nc.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.1/skins/Spotlight Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/skins/Spotlight Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.1/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/Launchy.ico -------------------------------------------------------------------------------- /tags/2.1/win/Utilities/Special Folders/C Drive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/Utilities/Special Folders/C Drive.lnk -------------------------------------------------------------------------------- /tags/2.1/win/Utilities/Special Folders/My Music.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/Utilities/Special Folders/My Music.lnk -------------------------------------------------------------------------------- /tags/2.1/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/msvcm80.dll -------------------------------------------------------------------------------- /tags/2.1/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/msvcp80.dll -------------------------------------------------------------------------------- /tags/2.1/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.1/win/msvcr80.dll -------------------------------------------------------------------------------- /tags/2.5-B1/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/BUILD.txt -------------------------------------------------------------------------------- /tags/2.5-B1/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Launchy.ico -------------------------------------------------------------------------------- /tags/2.5-B1/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | copy ..\src\plugin_interface.h . 3 | copy ..\src\catalog.h . 4 | "c:\bin\doxygen" default.doxygen 5 | rem pause -------------------------------------------------------------------------------- /tags/2.5-B1/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /tags/2.5-B1/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Plugin API/api.html -------------------------------------------------------------------------------- /tags/2.5-B1/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /tags/2.5-B1/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Readme.doc -------------------------------------------------------------------------------- /tags/2.5-B1/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/Readme.pdf -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/debug/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/debug/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/debug/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/debug/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.5-B1/debug/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.5-B1/linux/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(launchy):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ 2 | title="launchy" command="/usr/bin/launchy" 3 | -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/launchy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/launchy_icon.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/launchy_icon_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/launchy_icon_mac.icns -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/launchy_icon_win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/launchy_icon_win.ico -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/128_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/128_32-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/16_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/16_32-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/16_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/16_8-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/16_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/16_and.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/24_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/24_32-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/24_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/24_8-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/24_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/24_and.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/32_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/32_32-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/32_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/32_8-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/32_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/32_and.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/48_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/48_32-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/48_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/48_8-bit.png -------------------------------------------------------------------------------- /tags/2.5-B1/misc/Launchy_Icon/working/48_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/misc/Launchy_Icon/working/48_and.png -------------------------------------------------------------------------------- /tags/2.5-B1/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- 1 | Left off: Trying to prevent the alpha window from being selected. Once it's selected it covers up the main window and I can't select its text box. 2 | -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly.exit.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly.options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly.options.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly.rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly.rebuild.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/controly/controly_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/controly/controly_full.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/loader/loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/loader/loader.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/loader/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/loader/loader.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/loader/loader_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/loader/loader_full.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/runner/runner.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/runner/runner.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/verby/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/verby/copy.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/verby/opencontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/verby/opencontainer.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/verby/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/verby/properties.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/verby/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/verby/run.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/verby/verby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/verby/verby.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/vsrename.exe -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/weby/weby.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/weby/weby.png -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /tags/2.5-B1/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/release/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/release/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/release/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/release/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.5-B1/release/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Black Glass Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Black Glass by Peter Wooley 5 | -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Black_Glass_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Black_Glass_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/author.txt -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/background_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/closeButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/opsButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.1 6 | 7 | Date: 12/18/2009 -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Mercury Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Mercury by Josh Karlin and Juan Ignacio Serra 5 | -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Mercury_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Mercury_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Note/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Note/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /tags/2.5-B1/skins/QuickSilver2/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/QuickSilver2/background_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/QuickSilver2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/QuickSilver2/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/author.txt -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/background_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/closeButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5-B1/skins/Spotlight_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/skins/Spotlight_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5-B1/src/resources/launchy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/src/resources/launchy128.png -------------------------------------------------------------------------------- /tags/2.5-B1/src/resources/launchy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/src/resources/launchy16.png -------------------------------------------------------------------------------- /tags/2.5-B1/win/Create Visual Studio projects.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd .. 3 | qmake -tp vc -r launchy.pro 4 | -------------------------------------------------------------------------------- /tags/2.5-B1/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/Launchy.ico -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcm80.dll -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcm90.dll -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcp80.dll -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcp90.dll -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcr80.dll -------------------------------------------------------------------------------- /tags/2.5-B1/win/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5-B1/win/msvcr90.dll -------------------------------------------------------------------------------- /tags/2.5/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Launchy.ico -------------------------------------------------------------------------------- /tags/2.5/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | copy ..\src\plugin_interface.h . 3 | copy ..\src\catalog.h . 4 | "c:\bin\doxygen" default.doxygen 5 | rem pause -------------------------------------------------------------------------------- /tags/2.5/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /tags/2.5/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Plugin API/api.html -------------------------------------------------------------------------------- /tags/2.5/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /tags/2.5/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Readme.doc -------------------------------------------------------------------------------- /tags/2.5/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/Readme.pdf -------------------------------------------------------------------------------- /tags/2.5/buildWinSln.bat: -------------------------------------------------------------------------------- 1 | %QTDIR%\qmake\qmake -tp vc -r launchy.pro 2 | -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/debug/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/debug/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/debug/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/debug/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.5/debug/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.5/linux/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(launchy):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ 2 | title="launchy" command="/usr/bin/launchy" 3 | -------------------------------------------------------------------------------- /tags/2.5/mac/support/AdiumApplescriptRunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/mac/support/AdiumApplescriptRunner -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/launchy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/launchy_icon.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/launchy_icon_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/launchy_icon_mac.icns -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/launchy_icon_win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/launchy_icon_win.ico -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/128_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/128_32-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/16_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/16_32-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/16_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/16_8-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/16_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/16_and.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/24_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/24_32-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/24_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/24_8-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/24_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/24_and.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/32_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/32_32-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/32_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/32_8-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/32_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/32_and.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/48_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/48_32-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/48_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/48_8-bit.png -------------------------------------------------------------------------------- /tags/2.5/misc/Launchy_Icon/working/48_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/misc/Launchy_Icon/working/48_and.png -------------------------------------------------------------------------------- /tags/2.5/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- 1 | Left off: Trying to prevent the alpha window from being selected. Once it's selected it covers up the main window and I can't select its text box. 2 | -------------------------------------------------------------------------------- /tags/2.5/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /tags/2.5/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/controly.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/controly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/controly.png -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/controly_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/controly_full.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/launchy.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/launchy.exit.png -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/launchy.options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/launchy.options.png -------------------------------------------------------------------------------- /tags/2.5/plugins/controly/launchy.rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/controly/launchy.rebuild.png -------------------------------------------------------------------------------- /tags/2.5/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/loader/loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/loader/loader.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/loader/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/loader/loader.png -------------------------------------------------------------------------------- /tags/2.5/plugins/loader/loader_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/loader/loader_full.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/runner/runner.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/runner/runner.png -------------------------------------------------------------------------------- /tags/2.5/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/verby/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/verby/copy.png -------------------------------------------------------------------------------- /tags/2.5/plugins/verby/opencontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/verby/opencontainer.png -------------------------------------------------------------------------------- /tags/2.5/plugins/verby/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/verby/properties.png -------------------------------------------------------------------------------- /tags/2.5/plugins/verby/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/verby/run.png -------------------------------------------------------------------------------- /tags/2.5/plugins/verby/verby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/verby/verby.png -------------------------------------------------------------------------------- /tags/2.5/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/vsrename.exe -------------------------------------------------------------------------------- /tags/2.5/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/weby/weby.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/weby/weby.png -------------------------------------------------------------------------------- /tags/2.5/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /tags/2.5/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/release/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/release/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/release/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/release/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.5/release/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Black Glass Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Black Glass by Peter Wooley 5 | -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Black_Glass_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Black_Glass_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/author.txt -------------------------------------------------------------------------------- /tags/2.5/skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/background_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/closeButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/opsButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Default/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Default/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.1 6 | 7 | Date: 12/18/2009 -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Mercury Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Mercury by Josh Karlin and Juan Ignacio Serra 5 | -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Mercury_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Mercury_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/skins/Note/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Note/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /tags/2.5/skins/QuickSilver2/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/QuickSilver2/background_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/QuickSilver2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/QuickSilver2/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/author.txt -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/background_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/closeButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/mask_nc.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.5/skins/Spotlight_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/skins/Spotlight_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.5/src/resources/launchy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/src/resources/launchy128.png -------------------------------------------------------------------------------- /tags/2.5/src/resources/launchy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/src/resources/launchy16.png -------------------------------------------------------------------------------- /tags/2.5/win/Create Visual Studio projects.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd .. 3 | qmake -tp vc -r launchy.pro 4 | -------------------------------------------------------------------------------- /tags/2.5/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/Launchy.ico -------------------------------------------------------------------------------- /tags/2.5/win/Utilities/Special Folders/C Drive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/Utilities/Special Folders/C Drive.lnk -------------------------------------------------------------------------------- /tags/2.5/win/Utilities/Special Folders/My Music.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/Utilities/Special Folders/My Music.lnk -------------------------------------------------------------------------------- /tags/2.5/win/buildTranslations.bat: -------------------------------------------------------------------------------- 1 | cd ..\src 2 | %QTDIR%\bin\lupdate src.pro 3 | %QTDIR%\bin\lrelease src.pro 4 | pause -------------------------------------------------------------------------------- /tags/2.5/win/installer/LaunchyPortable.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | version=200 3 | -------------------------------------------------------------------------------- /tags/2.5/win/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/installer/header.bmp -------------------------------------------------------------------------------- /tags/2.5/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcm80.dll -------------------------------------------------------------------------------- /tags/2.5/win/msvcm90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcm90.dll -------------------------------------------------------------------------------- /tags/2.5/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcp80.dll -------------------------------------------------------------------------------- /tags/2.5/win/msvcp90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcp90.dll -------------------------------------------------------------------------------- /tags/2.5/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcr80.dll -------------------------------------------------------------------------------- /tags/2.5/win/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.5/win/msvcr90.dll -------------------------------------------------------------------------------- /tags/2.6-B1/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Launchy.ico -------------------------------------------------------------------------------- /tags/2.6-B1/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | copy ..\src\plugin_interface.h . 3 | copy ..\src\catalog.h . 4 | "c:\bin\doxygen" default.doxygen 5 | rem pause -------------------------------------------------------------------------------- /tags/2.6-B1/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /tags/2.6-B1/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Plugin API/api.html -------------------------------------------------------------------------------- /tags/2.6-B1/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /tags/2.6-B1/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Readme.doc -------------------------------------------------------------------------------- /tags/2.6-B1/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/Readme.pdf -------------------------------------------------------------------------------- /tags/2.6-B1/buildWinSln.bat: -------------------------------------------------------------------------------- 1 | %QTDIR%\qmake\qmake -tp vc -r launchy.pro 2 | -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/debug/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/debug/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/debug/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/debug/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.6-B1/debug/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.6-B1/linux/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(launchy):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ 2 | title="launchy" command="/usr/bin/launchy" 3 | -------------------------------------------------------------------------------- /tags/2.6-B1/mac/support/AdiumApplescriptRunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/mac/support/AdiumApplescriptRunner -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/launchy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/launchy_icon.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/launchy_icon_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/launchy_icon_mac.icns -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/launchy_icon_win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/launchy_icon_win.ico -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/128_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/128_32-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/16_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/16_32-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/16_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/16_8-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/16_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/16_and.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/24_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/24_32-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/24_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/24_8-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/24_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/24_and.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/32_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/32_32-bit.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/32_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/32_and.png -------------------------------------------------------------------------------- /tags/2.6-B1/misc/Launchy_Icon/working/48_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/misc/Launchy_Icon/working/48_and.png -------------------------------------------------------------------------------- /tags/2.6-B1/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- 1 | Left off: Trying to prevent the alpha window from being selected. Once it's selected it covers up the main window and I can't select its text box. 2 | -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/controly.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/controly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/controly.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/controly_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/controly_full.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/launchy.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/launchy.exit.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/launchy.options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/launchy.options.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/controly/launchy.rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/controly/launchy.rebuild.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/loader/loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/loader/loader.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/loader/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/loader/loader.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/loader/loader_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/loader/loader_full.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/runner/runner.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/runner/runner.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/verby/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/verby/copy.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/verby/opencontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/verby/opencontainer.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/verby/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/verby/properties.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/verby/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/verby/run.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/verby/verby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/verby/verby.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/vsrename.exe -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/weby/weby.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/weby/weby.png -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /tags/2.6-B1/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/release/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/release/skins/Mercury/background.png -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/down_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/release/skins/Mercury/down_arrow.png -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/release/skins/Mercury/mask.png -------------------------------------------------------------------------------- /tags/2.6-B1/release/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Black Glass Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Black Glass by Peter Wooley 5 | -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Black_Glass_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Black_Glass_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/author.txt -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/background_nc.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/closeButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/closeButtonPressed.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/opsButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/opsButtonPressed.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Default/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Default/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.1 6 | 7 | Date: 12/18/2009 -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Mercury Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Mercury by Josh Karlin and Juan Ignacio Serra 5 | -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Mercury_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Mercury_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Note/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Note/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /tags/2.6-B1/skins/QuickSilver2/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/QuickSilver2/background_nc.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/QuickSilver2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/QuickSilver2/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/author.txt -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/closeButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/frame.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/mask_nc.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/opsButton.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/scrollBack.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/scrollDown.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/scrollUp.png -------------------------------------------------------------------------------- /tags/2.6-B1/skins/Spotlight_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/skins/Spotlight_Wide/spinner.mng -------------------------------------------------------------------------------- /tags/2.6-B1/src/resources/launchy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/src/resources/launchy128.png -------------------------------------------------------------------------------- /tags/2.6-B1/src/resources/launchy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/src/resources/launchy16.png -------------------------------------------------------------------------------- /tags/2.6-B1/win/Create Visual Studio projects.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd .. 3 | qmake -tp vc -r launchy.pro 4 | -------------------------------------------------------------------------------- /tags/2.6-B1/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/win/Launchy.ico -------------------------------------------------------------------------------- /tags/2.6-B1/win/buildTranslations.bat: -------------------------------------------------------------------------------- 1 | cd ..\src 2 | %QTDIR%\bin\lupdate src.pro 3 | %QTDIR%\bin\lrelease src.pro 4 | pause -------------------------------------------------------------------------------- /tags/2.6-B1/win/installer/LaunchyPortable.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | version=200 3 | -------------------------------------------------------------------------------- /tags/2.6-B1/win/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/win/installer/header.bmp -------------------------------------------------------------------------------- /tags/2.6-B1/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/win/msvcm80.dll -------------------------------------------------------------------------------- /tags/2.6-B1/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/win/msvcp80.dll -------------------------------------------------------------------------------- /tags/2.6-B1/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/2.6-B1/win/msvcr80.dll -------------------------------------------------------------------------------- /tags/launchy-0_8_0/Launchy_VC7/Launchy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/launchy-0_8_0/Launchy_VC7/Launchy.aps -------------------------------------------------------------------------------- /tags/launchy-0_8_0/Launchy_VC7/Launchy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/launchy-0_8_0/Launchy_VC7/Launchy.ncb -------------------------------------------------------------------------------- /tags/launchy-0_8_0/Launchy_VC7/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/launchy-0_8_0/Launchy_VC7/Launchy.suo -------------------------------------------------------------------------------- /tags/launchy-0_8_0/Launchy_VC7/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/launchy-0_8_0/Launchy_VC7/res/Launchy.ico -------------------------------------------------------------------------------- /tags/launchy-0_8_0/Launchy_VC7/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/launchy-0_8_0/Launchy_VC7/res/bkgd2.bmp -------------------------------------------------------------------------------- /tags/start/launchy/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/start/launchy/App.ico -------------------------------------------------------------------------------- /tags/start/launchy/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/start/launchy/Launchy.suo -------------------------------------------------------------------------------- /tags/start/launchy/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/start/launchy/bkgd2.bmp -------------------------------------------------------------------------------- /tags/start/launchy/typelaunch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/tags/start/launchy/typelaunch.suo -------------------------------------------------------------------------------- /trunk/LaunchyC/Installer/Installer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Installer/Installer.suo -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Launchy.suo -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy/Launchy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Launchy/Launchy.aps -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy/Notes.txt: -------------------------------------------------------------------------------- 1 | Why doesn't 'windows update' come up? 2 | Why don't the office lnks work?!?!?! -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy/install_launchy.ini: -------------------------------------------------------------------------------- 1 | [Position] 2 | pos_x=10 3 | pos_y=10 4 | 5 | -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Launchy/res/Launchy.ico -------------------------------------------------------------------------------- /trunk/LaunchyC/Launchy/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Launchy/res/bkgd2.bmp -------------------------------------------------------------------------------- /trunk/LaunchyC/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Readme.doc -------------------------------------------------------------------------------- /trunk/LaunchyC/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/LaunchyC/Readme.pdf -------------------------------------------------------------------------------- /trunk/Launchy_QT/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Launchy.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | copy ..\src\plugin_interface.h . 3 | copy ..\src\catalog.h . 4 | "c:\bin\doxygen" default.doxygen 5 | rem pause -------------------------------------------------------------------------------- /trunk/Launchy_QT/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /trunk/Launchy_QT/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Plugin API/api.html -------------------------------------------------------------------------------- /trunk/Launchy_QT/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /trunk/Launchy_QT/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Readme.doc -------------------------------------------------------------------------------- /trunk/Launchy_QT/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/Readme.pdf -------------------------------------------------------------------------------- /trunk/Launchy_QT/buildWinSln.bat: -------------------------------------------------------------------------------- 1 | %QTDIR%\qmake\qmake -tp vc -r launchy.pro 2 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/debug/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/debug/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/debug/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /trunk/Launchy_QT/debug/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/debug/skins/Mercury/mask.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/debug/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/linux/debian/menu.ex: -------------------------------------------------------------------------------- 1 | ?package(launchy):needs="X11|text|vc|wm" section="Applications/see-menu-manual"\ 2 | title="launchy" command="/usr/bin/launchy" 3 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- 1 | Left off: Trying to prevent the alpha window from being selected. Once it's selected it covers up the main window and I can't select its text box. 2 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/controly/controly.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/controly/controly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/controly/controly.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/loader/loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/loader/loader.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/loader/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/loader/loader.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/loader/loader_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/loader/loader_full.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/runner/runner.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/runner/runner.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/verby/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/verby/copy.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/verby/opencontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/verby/opencontainer.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/verby/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/verby/properties.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/verby/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/verby/run.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/verby/verby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/verby/verby.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/vsrename.exe -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/weby/weby.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/weby/weby.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/release/skins/Mercury/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/release/skins/Mercury/alpha.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/release/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.0 6 | 7 | Date: 6/21/2007 -------------------------------------------------------------------------------- /trunk/Launchy_QT/release/skins/Mercury/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/release/skins/Mercury/mask.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/release/skins/Mercury/pos.txt: -------------------------------------------------------------------------------- 1 | boundary = 0,0,500,100 2 | output = 290,37,160,24 3 | input = 60,37,160,24 4 | alternatives = 60,61,350,100 5 | icon = 241,32,32,32 6 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass/scrollBack.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass/scrollDown.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass/scrollUp.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass/spinner.mng -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Black Glass Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Black Glass by Peter Wooley 5 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Black_Glass_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Black_Glass_Wide/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/author.txt -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/background_nc.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/closeButton.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/opsButton.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Default/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Default/spinner.mng -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Mercury 2 | 3 | Author: Josh Karlin and Juan Ignacio Serra 4 | 5 | Version: 1.1 6 | 7 | Date: 12/18/2009 -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury/scrollBack.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury/scrollDown.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury/scrollUp.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury/spinner.mng -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury_Wide/author.txt: -------------------------------------------------------------------------------- 1 | Mercury Wide Skin 1.1 for Launchy 2 2 | by Simon Capewell 18/12/2009 3 | 4 | Adapted from Mercury by Josh Karlin and Juan Ignacio Serra 5 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury_Wide/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury_Wide/opsButton.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury_Wide/scrollUp.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Mercury_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Mercury_Wide/spinner.mng -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Note/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Note/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/QuickSilver2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/QuickSilver2/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Spotlight_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Spotlight_Wide/author.txt -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Spotlight_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Spotlight_Wide/frame.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Spotlight_Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Spotlight_Wide/mask_nc.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/skins/Spotlight_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/skins/Spotlight_Wide/spinner.mng -------------------------------------------------------------------------------- /trunk/Launchy_QT/src/resources/launchy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/src/resources/launchy128.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/src/resources/launchy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/src/resources/launchy16.png -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/Create Visual Studio projects.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd .. 3 | qmake -tp vc -r launchy.pro 4 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/win/Launchy.ico -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/buildTranslations.bat: -------------------------------------------------------------------------------- 1 | cd ..\src 2 | %QTDIR%\bin\lupdate src.pro 3 | %QTDIR%\bin\lrelease src.pro 4 | pause -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/installer/LaunchyPortable.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | version=200 3 | -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/win/installer/header.bmp -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/win/msvcm80.dll -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/win/msvcp80.dll -------------------------------------------------------------------------------- /trunk/Launchy_QT/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_QT/win/msvcr80.dll -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Launchy Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "c:\program files\doxygen\bin\doxygen" default.doxygen 3 | pause -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Launchy Plugin API/Weby.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Launchy Plugin API/Weby.zip -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/Calcy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/Calcy.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/Calcy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/Calcy.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/Calcy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/Calcy.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/Main.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | using namespace std; 6 | 7 | bool DoCalculation(const TCHAR* str, double& result); -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/calc.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/icon1.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Calcy/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Calcy/test.exe -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Controly/Controly.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Controly/Controly.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Controly/Controly.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Controly/Controly.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Controly/Controly.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Controly/Controly.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Controly/ed0101-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Controly/ed0101-32.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Explory/Explory.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Explory/Explory.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Explory/Explory.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Explory/Explory.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Explory/Explory.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Explory/Explory.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Explory/explore.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Explory/explore.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Explory/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Explory/icon1.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Foxy/Foxy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Foxy/Foxy.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Foxy/Foxy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Foxy/Foxy.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Foxy/Foxy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Foxy/Foxy.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Foxy/fox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Foxy/fox.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Foxy/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Foxy/icon1.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Runny/Runny.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Runny/Runny.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Runny/Runny.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Runny/Runny.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Runny/Runny.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Runny/Runny.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Weby/Weby.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Weby/Weby.aps -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Weby/Weby.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Weby/Weby.ncb -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Weby/Weby.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Weby/Weby.suo -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Weby/ed0101-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Weby/ed0101-32.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/Weby/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/Weby/icon1.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Plugins/vsrename.exe -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Readme.doc -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Readme.pdf -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aero Soft/Author.txt: -------------------------------------------------------------------------------- 1 | More skins by this author available here: 2 | http://ikonic01.deviantart.com/ -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aero Soft/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aero Soft/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aero Soft/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aero Soft/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aero Soft/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aero Soft/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aero Soft/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aero Soft/skin.ini -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aqua/Author.txt: -------------------------------------------------------------------------------- 1 | Aqua Skin (v. 1.0) for Launchy (v. 0.9.6) 2 | by Martin Simirenko - 20/07/2006 -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aqua/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aqua/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Aqua/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Aqua/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BioHazard/Author.txt: -------------------------------------------------------------------------------- 1 | Skin by Mick 2 | www.media-pixel.net 3 | webmaster@media-pixel.net -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BioHazard/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/BioHazard/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BioHazard/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/BioHazard/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Black Glass/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Black Glass/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Black Glass/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Black Glass/glass.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Blue Trim/bluetrim.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Blue Trim/bluetrim.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BlueMetal/Author.txt: -------------------------------------------------------------------------------- 1 | Skin by Mick 2 | www.media-pixel.net 3 | webmaster@media-pixel.net -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BlueMetal/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/BlueMetal/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/BlueMetal/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/BlueMetal/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Clean/Author.txt: -------------------------------------------------------------------------------- 1 | Clean Skin (v. 1.0) for Launchy (v. 0.9.6) 2 | by Martin Simirenko - 20/07/2006 -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Clean/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Clean/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Clean/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Clean/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Default/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Josh Karlin and Juan Ignacio Serra -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Default/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Default/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Default/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Default/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Default/default.psd -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Blue/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Blue/Author.txt -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Blue/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Blue/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Blue/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Deep/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Deep/Author.txt -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Deep/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Deep/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Gantchy Deep/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Gantchy Deep/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Green Leaf/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Green Leaf/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Green Leaf/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Green Leaf/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Blue/Author.txt: -------------------------------------------------------------------------------- 1 | More skins by this author available here: 2 | http://ikonic01.deviantart.com/ -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Blue/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Blue/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Blue/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Blue/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Blue/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Blue/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Blue/skin.ini -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Soft/Author.txt: -------------------------------------------------------------------------------- 1 | More skins by this author available here: 2 | http://ikonic01.deviantart.com/ -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Soft/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Soft/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Soft/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Soft/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Soft/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Soft/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Mini Soft/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Mini Soft/skin.ini -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Purple Candy/blue.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Purple Candy/blue.psd -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Purple Candy/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Purple Candy/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Purple Candy/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Purple Candy/full.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/QuickSilver2/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Juan Ignacio Serra -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/QuickSilver2/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/QuickSilver2/back.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/QuickSilver2/front.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/QuickSilver2/front.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Quicksilver/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Juan Ignacio Serra -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Quicksilver/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Quicksilver/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Quicksilver/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Quicksilver/full.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Royale/Author.txt: -------------------------------------------------------------------------------- 1 | Created by noroom -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Royale/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Royale/Thumbs.db -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Royale/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Royale/background.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Royale/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Royale/default.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Top Tab/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Top Tab/border.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/Top Tab/topTab.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/Top Tab/topTab.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/transparent/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/transparent/alpha.png -------------------------------------------------------------------------------- /trunk/Launchy_VC7/Skins/transparent/bluetrim.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/Skins/transparent/bluetrim.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/res/Launchy.ico -------------------------------------------------------------------------------- /trunk/Launchy_VC7/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/res/bkgd2.bmp -------------------------------------------------------------------------------- /trunk/Launchy_VC7/src/zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/src/zlib/zlib.lib -------------------------------------------------------------------------------- /trunk/Launchy_VC7/src/zlib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/src/zlib/zlibd.lib -------------------------------------------------------------------------------- /trunk/Launchy_VC7/website/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/website/version.gif -------------------------------------------------------------------------------- /trunk/Launchy_VC7/website/version.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/Launchy_VC7/website/version.psd -------------------------------------------------------------------------------- /trunk/launchy/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/launchy/App.ico -------------------------------------------------------------------------------- /trunk/launchy/Launchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/launchy/Launchy.suo -------------------------------------------------------------------------------- /trunk/launchy/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/launchy/bkgd2.bmp -------------------------------------------------------------------------------- /trunk/launchy/typelaunch.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntendedConsequence/Launchy/ce14bc20c9c3fc4bb65b00b2a6687bc68a44dfc8/trunk/launchy/typelaunch.suo --------------------------------------------------------------------------------