├── .gitignore ├── LICENSE.txt ├── README.md ├── Readme.doc ├── Readme.pdf ├── old ├── LaunchyC │ ├── EndInstallNotice.rtf │ ├── Installer │ │ ├── Installer.sln │ │ └── Installer │ │ │ └── Installer.vdproj │ ├── Launchy.sln │ ├── 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_VC7 │ ├── Launchy Plugin API │ │ ├── BlankPlugin.zip │ │ ├── BlankPlugin │ │ │ ├── BlankPlugin.sln │ │ │ └── BlankPlugin │ │ │ │ ├── BlankPlugin.cpp │ │ │ │ ├── BlankPlugin.vcproj │ │ │ │ ├── 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.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.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.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.vcproj │ │ │ ├── ReadMe.txt │ │ │ ├── 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.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.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 ├── 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 └── launchy │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── HotKey.cs │ ├── Launchy.XML │ ├── Launchy.csproj │ ├── Launchy.sln │ ├── License.txt │ ├── Options.Designer.cs │ ├── Options.cs │ ├── UpgradeLog.XML │ └── bkgd2.bmp ├── readme.lyx ├── readme.txt ├── setup └── win │ └── setup.nsi ├── 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 ├── BUILD.txt ├── Launchy.ico ├── Launchy.pro ├── buildWinSln.bat ├── common │ ├── DropListWidget.cpp │ ├── DropListWidget.h │ ├── DropTableWidget.cpp │ ├── DropTableWidget.h │ ├── FileBrowser.cpp │ ├── FileBrowser.h │ ├── FileBrowserDelegate.cpp │ ├── FileBrowserDelegate.h │ ├── catalog.cpp │ ├── catalog.h │ ├── common.pro │ ├── directory.h │ ├── globals.cpp │ ├── globals.h │ ├── globalshortcutmanager.cpp │ ├── globalshortcutmanager.h │ ├── globalshortcuttrigger.h │ ├── launchy.common.vcxproj │ ├── mac.cpp │ ├── mac_keytrigger.cpp │ ├── mac_keytrigger.h │ ├── mac_platform.cpp │ ├── mac_platform.h │ ├── platform_base.cpp │ ├── platform_base.h │ ├── settingsmanager.cpp │ ├── settingsmanager.h │ ├── win.cpp │ ├── win_Iconprovider.cpp │ ├── win_files.h │ ├── win_iconprovider.h │ ├── win_keytrigger.cpp │ ├── win_minidump.cpp │ ├── win_minidump.h │ ├── win_platform.cpp │ ├── win_platform.h │ ├── win_util.cpp │ ├── win_util.h │ ├── x11.cpp │ ├── x11_iconprovider.cpp │ ├── x11_iconprovider.h │ ├── x11_keytrigger.cpp │ ├── x11_keytrigger.h │ ├── x11_platform.cpp │ └── x11_platform.h ├── launchy.sln ├── launchy.specs │ ├── commandlineparser.specs.cpp │ ├── commandlineparser.specs.h │ ├── launchy.specs.pro │ ├── launchy.specs.vcxproj │ ├── main.cpp │ ├── singleapplication.specs.cpp │ └── singleapplication.specs.h ├── launchy │ ├── AnimationLabel.cpp │ ├── AnimationLabel.h │ ├── CharLineEdit.cpp │ ├── CharLineEdit.h │ ├── CharListWidget.cpp │ ├── CharListWidget.h │ ├── CommandHistory.cpp │ ├── CommandHistory.h │ ├── Fader.cpp │ ├── Fader.h │ ├── FileSearch.cpp │ ├── FileSearch.h │ ├── InputDataList.cpp │ ├── InputDataList.h │ ├── Launchy.vcxproj │ ├── LineEditMenu.cpp │ ├── LineEditMenu.h │ ├── catalog_builder.cpp │ ├── catalog_builder.h │ ├── catalog_types.cpp │ ├── catalog_types.h │ ├── commandlineparser.cpp │ ├── commandlineparser.h │ ├── dsingleapplication.cpp │ ├── dsingleapplication.h │ ├── icon_delegate.cpp │ ├── icon_delegate.h │ ├── icon_extractor.cpp │ ├── icon_extractor.h │ ├── launchy.pro │ ├── launchy.qrc │ ├── launchywidget.cpp │ ├── launchywidget.h │ ├── main.cpp │ ├── main.h │ ├── options.ui │ ├── optionsdialog.cpp │ ├── optionsdialog.h │ ├── platform_mac_hotkey.cpp │ ├── platform_util.cpp │ ├── platform_util.h │ ├── plugin_handler.cpp │ ├── plugin_handler.h │ ├── plugin_interface.cpp │ ├── plugin_interface.h │ ├── resources │ │ ├── basicskin.qss │ │ ├── launchy128.png │ │ └── launchy16.png │ ├── singleapplication.cpp │ ├── singleapplication.h │ ├── win_launchywidget.cpp │ └── win_launchywidget.h ├── libqxt │ ├── libqxt.pro │ ├── qxtglobal.h │ ├── qxtglobalshortcut.cpp │ ├── qxtglobalshortcut.h │ ├── qxtglobalshortcut_mac.cpp │ ├── qxtglobalshortcut_p.h │ ├── qxtglobalshortcut_win.cpp │ └── qxtglobalshortcut_x11.cpp ├── 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 │ ├── unix │ │ └── unix.pro │ └── win │ │ ├── platform_win.cpp │ │ ├── platform_win.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.vcxproj │ │ ├── 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 │ │ └── winfiles.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 │ ├── plugins.pri │ ├── runner │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── runner.cpp │ │ ├── runner.h │ │ ├── runner.ico │ │ ├── runner.png │ │ ├── runner.pro │ │ ├── runner.vcxproj │ │ ├── runner_full.ico │ │ └── winfiles.h │ ├── verby │ │ ├── Verby.cpp │ │ ├── Verby.h │ │ ├── copy.png │ │ ├── dlg.ui │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── opencontainer.png │ │ ├── properties.png │ │ ├── run.png │ │ ├── verby.png │ │ ├── verby.pro │ │ ├── verby.vcxproj │ │ └── winfiles.h │ ├── vsrename.exe │ ├── weby │ │ ├── IconCache.cpp │ │ ├── IconCache.h │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── weby.cpp │ │ ├── weby.h │ │ ├── weby.ico │ │ ├── weby.png │ │ ├── weby.pro │ │ ├── weby.vcxproj │ │ ├── weby_full.ico │ │ └── winfiles.h │ └── winshell │ │ ├── dlg.ui │ │ ├── globals.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ ├── winshell.cpp │ │ ├── winshell.h │ │ ├── winshell.ico │ │ └── winshell.pro └── win │ ├── 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 ├── tools └── nsis │ ├── Contrib │ ├── Graphics │ │ ├── Checks │ │ │ ├── big.bmp │ │ │ ├── classic-cross.bmp │ │ │ ├── classic.bmp │ │ │ ├── colorful.bmp │ │ │ ├── grey-cross.bmp │ │ │ ├── grey.bmp │ │ │ ├── modern.bmp │ │ │ ├── red-round.bmp │ │ │ ├── red.bmp │ │ │ ├── simple-round.bmp │ │ │ ├── simple-round2.bmp │ │ │ └── simple.bmp │ │ ├── Header │ │ │ ├── nsis-r.bmp │ │ │ ├── nsis.bmp │ │ │ ├── orange-nsis.bmp │ │ │ ├── orange-r-nsis.bmp │ │ │ ├── orange-r.bmp │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ ├── orange-uninstall-r-nsis.bmp │ │ │ ├── orange-uninstall-r.bmp │ │ │ ├── orange-uninstall.bmp │ │ │ ├── orange.bmp │ │ │ └── win.bmp │ │ ├── Icons │ │ │ ├── arrow-install.ico │ │ │ ├── arrow-uninstall.ico │ │ │ ├── arrow2-install.ico │ │ │ ├── arrow2-uninstall.ico │ │ │ ├── box-install.ico │ │ │ ├── box-uninstall.ico │ │ │ ├── classic-install.ico │ │ │ ├── classic-uninstall.ico │ │ │ ├── llama-blue.ico │ │ │ ├── llama-grey.ico │ │ │ ├── modern-install-blue-full.ico │ │ │ ├── modern-install-blue.ico │ │ │ ├── modern-install-colorful.ico │ │ │ ├── modern-install-full.ico │ │ │ ├── modern-install.ico │ │ │ ├── modern-uninstall-blue-full.ico │ │ │ ├── modern-uninstall-blue.ico │ │ │ ├── modern-uninstall-colorful.ico │ │ │ ├── modern-uninstall-full.ico │ │ │ ├── modern-uninstall.ico │ │ │ ├── nsis1-install.ico │ │ │ ├── nsis1-uninstall.ico │ │ │ ├── orange-install-nsis.ico │ │ │ ├── orange-install.ico │ │ │ ├── orange-uninstall-nsis.ico │ │ │ ├── orange-uninstall.ico │ │ │ ├── pixel-install.ico │ │ │ ├── pixel-uninstall.ico │ │ │ ├── win-install.ico │ │ │ └── win-uninstall.ico │ │ └── Wizard │ │ │ ├── arrow.bmp │ │ │ ├── llama.bmp │ │ │ ├── nsis.bmp │ │ │ ├── nullsoft.bmp │ │ │ ├── orange-nsis.bmp │ │ │ ├── orange-uninstall-nsis.bmp │ │ │ ├── orange-uninstall.bmp │ │ │ ├── orange.bmp │ │ │ └── win.bmp │ ├── Language files │ │ ├── Afrikaans.nlf │ │ ├── Afrikaans.nsh │ │ ├── Albanian.nlf │ │ ├── Albanian.nsh │ │ ├── Arabic.nlf │ │ ├── Arabic.nsh │ │ ├── Armenian.nlf │ │ ├── Armenian.nsh │ │ ├── Asturian.nlf │ │ ├── Asturian.nsh │ │ ├── Basque.nlf │ │ ├── Basque.nsh │ │ ├── Belarusian.nlf │ │ ├── Belarusian.nsh │ │ ├── Bosnian.nlf │ │ ├── Bosnian.nsh │ │ ├── Breton.nlf │ │ ├── Breton.nsh │ │ ├── Bulgarian.nlf │ │ ├── Bulgarian.nsh │ │ ├── Catalan.nlf │ │ ├── Catalan.nsh │ │ ├── Croatian.nlf │ │ ├── Croatian.nsh │ │ ├── Czech.nlf │ │ ├── Czech.nsh │ │ ├── Danish.nlf │ │ ├── Danish.nsh │ │ ├── Dutch.nlf │ │ ├── Dutch.nsh │ │ ├── English.nlf │ │ ├── English.nsh │ │ ├── Esperanto.nlf │ │ ├── Esperanto.nsh │ │ ├── Estonian.nlf │ │ ├── Estonian.nsh │ │ ├── Farsi.nlf │ │ ├── Farsi.nsh │ │ ├── Finnish.nlf │ │ ├── Finnish.nsh │ │ ├── French.nlf │ │ ├── French.nsh │ │ ├── Galician.nlf │ │ ├── Galician.nsh │ │ ├── Georgian.nlf │ │ ├── Georgian.nsh │ │ ├── German.nlf │ │ ├── German.nsh │ │ ├── Greek.nlf │ │ ├── Greek.nsh │ │ ├── Hebrew.nlf │ │ ├── Hebrew.nsh │ │ ├── Hungarian.nlf │ │ ├── Hungarian.nsh │ │ ├── Icelandic.nlf │ │ ├── Icelandic.nsh │ │ ├── Indonesian.nlf │ │ ├── Indonesian.nsh │ │ ├── Irish.nlf │ │ ├── Irish.nsh │ │ ├── Italian.nlf │ │ ├── Italian.nsh │ │ ├── Japanese.nlf │ │ ├── Japanese.nsh │ │ ├── Korean.nlf │ │ ├── Korean.nsh │ │ ├── Kurdish.nlf │ │ ├── Kurdish.nsh │ │ ├── Latvian.nlf │ │ ├── Latvian.nsh │ │ ├── Lithuanian.nlf │ │ ├── Lithuanian.nsh │ │ ├── Luxembourgish.nlf │ │ ├── Luxembourgish.nsh │ │ ├── Macedonian.nlf │ │ ├── Macedonian.nsh │ │ ├── Malay.nlf │ │ ├── Malay.nsh │ │ ├── Mongolian.nlf │ │ ├── Mongolian.nsh │ │ ├── Norwegian.nlf │ │ ├── Norwegian.nsh │ │ ├── NorwegianNynorsk.nlf │ │ ├── NorwegianNynorsk.nsh │ │ ├── Pashto.nlf │ │ ├── Pashto.nsh │ │ ├── Polish.nlf │ │ ├── Polish.nsh │ │ ├── Portuguese.nlf │ │ ├── Portuguese.nsh │ │ ├── PortugueseBR.nlf │ │ ├── PortugueseBR.nsh │ │ ├── Romanian.nlf │ │ ├── Romanian.nsh │ │ ├── Russian.nlf │ │ ├── Russian.nsh │ │ ├── ScotsGaelic.nlf │ │ ├── ScotsGaelic.nsh │ │ ├── Serbian.nlf │ │ ├── Serbian.nsh │ │ ├── SerbianLatin.nlf │ │ ├── SerbianLatin.nsh │ │ ├── SimpChinese.nlf │ │ ├── SimpChinese.nsh │ │ ├── Slovak.nlf │ │ ├── Slovak.nsh │ │ ├── Slovenian.nlf │ │ ├── Slovenian.nsh │ │ ├── Spanish.nlf │ │ ├── Spanish.nsh │ │ ├── SpanishInternational.nlf │ │ ├── SpanishInternational.nsh │ │ ├── Swedish.nlf │ │ ├── Swedish.nsh │ │ ├── Thai.nlf │ │ ├── Thai.nsh │ │ ├── TradChinese.nlf │ │ ├── TradChinese.nsh │ │ ├── Turkish.nlf │ │ ├── Turkish.nsh │ │ ├── Ukrainian.nlf │ │ ├── Ukrainian.nsh │ │ ├── Uzbek.nlf │ │ ├── Uzbek.nsh │ │ ├── Vietnamese.nlf │ │ ├── Vietnamese.nsh │ │ ├── Welsh.nlf │ │ └── Welsh.nsh │ ├── Modern UI 2 │ │ ├── Deprecated.nsh │ │ ├── Interface.nsh │ │ ├── Localization.nsh │ │ ├── MUI2.nsh │ │ ├── Pages.nsh │ │ └── Pages │ │ │ ├── Components.nsh │ │ │ ├── Directory.nsh │ │ │ ├── Finish.nsh │ │ │ ├── InstallFiles.nsh │ │ │ ├── License.nsh │ │ │ ├── StartMenu.nsh │ │ │ ├── UninstallConfirm.nsh │ │ │ └── Welcome.nsh │ ├── Modern UI │ │ ├── System.nsh │ │ └── ioSpecial.ini │ ├── UIs │ │ ├── default.exe │ │ ├── modern.exe │ │ ├── modern_headerbmp.exe │ │ ├── modern_headerbmpr.exe │ │ ├── modern_nodesc.exe │ │ ├── modern_smalldesc.exe │ │ └── sdbarker_tiny.exe │ └── zip2exe │ │ ├── Base.nsh │ │ ├── Classic.nsh │ │ └── Modern.nsh │ ├── Include │ ├── Colors.nsh │ ├── FileFunc.nsh │ ├── InstallOptions.nsh │ ├── LangFile.nsh │ ├── Library.nsh │ ├── LogicLib.nsh │ ├── MUI.nsh │ ├── MUI2.nsh │ ├── Memento.nsh │ ├── MultiUser.nsh │ ├── Sections.nsh │ ├── StrFunc.nsh │ ├── TextFunc.nsh │ ├── UpgradeDLL.nsh │ ├── Util.nsh │ ├── VB6RunTime.nsh │ ├── VPatchLib.nsh │ ├── Win │ │ ├── COM.nsh │ │ ├── Propkey.nsh │ │ ├── WinDef.nsh │ │ ├── WinError.nsh │ │ ├── WinNT.nsh │ │ └── WinUser.nsh │ ├── WinCore.nsh │ ├── WinMessages.nsh │ ├── WinVer.nsh │ ├── WordFunc.nsh │ ├── nsDialogs.nsh │ └── x64.nsh │ ├── Stubs │ ├── bzip2-x86-ansi │ ├── bzip2-x86-unicode │ ├── bzip2_solid-x86-ansi │ ├── bzip2_solid-x86-unicode │ ├── lzma-x86-ansi │ ├── lzma-x86-unicode │ ├── lzma_solid-x86-ansi │ ├── lzma_solid-x86-unicode │ ├── uninst │ ├── zlib-x86-ansi │ ├── zlib-x86-unicode │ ├── zlib_solid-x86-ansi │ └── zlib_solid-x86-unicode │ └── bin │ ├── GenPat.exe │ ├── LibraryLocal.exe │ ├── MakeLangId.exe │ ├── RegTool.bin │ ├── makensis.exe │ ├── zip2exe.exe │ └── zlib1.dll └── translations ├── common_de.ts ├── common_es.ts ├── common_fr.ts ├── common_ja.ts ├── common_nl.ts ├── common_rus.ts ├── common_zh.ts ├── common_zh_TW.ts ├── controly_de.ts ├── controly_es.ts ├── controly_fr.ts ├── controly_ja.ts ├── controly_nl.ts ├── controly_rus.ts ├── controly_zh.ts ├── controly_zh_TW.ts ├── 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 ├── runner_de.ts ├── runner_es.ts ├── runner_fr.ts ├── runner_ja.ts ├── runner_nl.ts ├── runner_rus.ts ├── runner_zh.ts ├── runner_zh_TW.ts ├── verby_de.ts ├── verby_es.ts ├── verby_fr.ts ├── verby_ja.ts ├── verby_nl.ts ├── verby_rus.ts ├── verby_zh.ts ├── verby_zh_TW.ts ├── weby_de.ts ├── weby_es.ts ├── weby_fr.ts ├── weby_ja.ts ├── weby_nl.ts ├── weby_rus.ts ├── weby_zh.ts └── weby_zh_TW.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/README.md -------------------------------------------------------------------------------- /Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/Readme.doc -------------------------------------------------------------------------------- /Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/Readme.pdf -------------------------------------------------------------------------------- /old/LaunchyC/EndInstallNotice.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/EndInstallNotice.rtf -------------------------------------------------------------------------------- /old/LaunchyC/Installer/Installer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Installer/Installer.sln -------------------------------------------------------------------------------- /old/LaunchyC/Launchy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy.sln -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/CDialogSK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/CDialogSK.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/CDialogSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/CDialogSK.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/DirectoryChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/DirectoryChooser.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/DirectoryChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/DirectoryChooser.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/DiskObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/DiskObject.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/DiskObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/DiskObject.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/ExeLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/ExeLauncher.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/ExeLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/ExeLauncher.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/FileRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/FileRecord.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/FileRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/FileRecord.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/HotkeyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/HotkeyDialog.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/HotkeyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/HotkeyDialog.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launcher.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launcher.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launchy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launchy.aps -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launchy.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launchy.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launchy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launchy.rc -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Launchy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Launchy.vcproj -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchyDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchyDir.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchyDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchyDir.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchyDlg.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchyDlg.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchySmarts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchySmarts.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/LaunchySmarts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/LaunchySmarts.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Notes.txt -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/OpaqueListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/OpaqueListBox.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/OpaqueListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/OpaqueListBox.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Options.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Options.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/QArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/QArray.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Skin.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Skin.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/SkinChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/SkinChooser.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/SkinChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/SkinChooser.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/Skins/Blue Trim/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/Skins/Blue Trim/skin.ini -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/SmartComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/SmartComboBox.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/SmartComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/SmartComboBox.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/TypeEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/TypeEdit.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/TypeEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/TypeEdit.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/iniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/iniFile.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/iniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/iniFile.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/install_launchy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/install_launchy.ini -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/res/Launchy.ico -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/res/Launchy.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/res/Launchy.rc2 -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/res/bkgd2.bmp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/resource.h -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/stdafx.cpp -------------------------------------------------------------------------------- /old/LaunchyC/Launchy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Launchy/stdafx.h -------------------------------------------------------------------------------- /old/LaunchyC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/License.txt -------------------------------------------------------------------------------- /old/LaunchyC/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Readme.doc -------------------------------------------------------------------------------- /old/LaunchyC/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/LaunchyC/Readme.pdf -------------------------------------------------------------------------------- /old/Launchy_VC7/Launchy Plugin API/Weby.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Launchy Plugin API/Weby.zip -------------------------------------------------------------------------------- /old/Launchy_VC7/Launchy Plugin API/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Launchy Plugin API/index.html -------------------------------------------------------------------------------- /old/Launchy_VC7/Launchy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Launchy.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Launchy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Launchy.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Launchy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Launchy.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Calcy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Calcy.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Main.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/Main.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/calc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/calc.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/icon1.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/main.cc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Calcy/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Calcy/test.exe -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/Controly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/Controly.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/ed0101-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/ed0101-32.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Controly/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Controly/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/DiskObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/DiskObject.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/DiskObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/DiskObject.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/Explory.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/Explory.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/explore.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/explore.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/icon1.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Explory/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Explory/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/Foxy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/Foxy.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/fox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/fox.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/icon1.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Foxy/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Foxy/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/Runny.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/Runny.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/RunnyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/RunnyDlg.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/RunnyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/RunnyDlg.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Runny/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Runny/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.aps -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.ncb -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.rc -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.sln -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/Weby.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/Weby.vcproj -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/ed0101-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/ed0101-32.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/icon1.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/Weby/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/Weby/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/readme.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Plugins/vsrename.exe -------------------------------------------------------------------------------- /old/Launchy_VC7/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/ReadMe.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Readme.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Readme.doc -------------------------------------------------------------------------------- /old/Launchy_VC7/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Readme.pdf -------------------------------------------------------------------------------- /old/Launchy_VC7/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Resource.h -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aero Soft/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aero Soft/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aero Soft/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aero Soft/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aero Soft/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aero Soft/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aero Soft/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aero Soft/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aero Soft/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aero Soft/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aqua/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aqua/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aqua/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aqua/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aqua/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aqua/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Aqua/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Aqua/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BioHazard/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BioHazard/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BioHazard/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BioHazard/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BioHazard/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BioHazard/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BioHazard/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BioHazard/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Black Glass/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Black Glass/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Black Glass/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Black Glass/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Black Glass/glass.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Black Glass/glass.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Black Glass/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Black Glass/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Blue Trim/bluetrim.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Blue Trim/bluetrim.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Blue Trim/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Blue Trim/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BlueMetal/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BlueMetal/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BlueMetal/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BlueMetal/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BlueMetal/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BlueMetal/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/BlueMetal/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/BlueMetal/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Clean/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Clean/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Clean/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Clean/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Clean/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Clean/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Clean/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Clean/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Default/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Josh Karlin and Juan Ignacio Serra -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Default/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Default/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Default/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Default/default.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Default/default.psd -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Default/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Default/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Blue/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Blue/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Blue/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Blue/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Blue/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Blue/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Blue/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Deep/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Deep/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Deep/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Deep/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Deep/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Deep/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Gantchy Deep/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Gantchy Deep/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Green Leaf/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Green Leaf/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Green Leaf/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Green Leaf/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Green Leaf/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Green Leaf/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Blue/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Blue/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Blue/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Blue/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Blue/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Blue/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Blue/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Blue/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Blue/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Blue/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Soft/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Soft/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Soft/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Soft/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Soft/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Soft/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Soft/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Soft/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Mini Soft/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Mini Soft/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Purple Candy/blue.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Purple Candy/blue.psd -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Purple Candy/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Purple Candy/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Purple Candy/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Purple Candy/full.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Purple Candy/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Purple Candy/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/QuickSilver2/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Juan Ignacio Serra -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/QuickSilver2/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/QuickSilver2/back.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/QuickSilver2/front.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/QuickSilver2/front.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/QuickSilver2/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/QuickSilver2/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Quicksilver/Author.txt: -------------------------------------------------------------------------------- 1 | Created by Juan Ignacio Serra -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Quicksilver/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Quicksilver/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Quicksilver/full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Quicksilver/full.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Quicksilver/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Quicksilver/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Royale/Author.txt: -------------------------------------------------------------------------------- 1 | Created by noroom -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Royale/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Royale/Thumbs.db -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Royale/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Royale/background.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Royale/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Royale/default.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Royale/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Royale/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Top Tab/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Top Tab/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Top Tab/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Top Tab/border.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Top Tab/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Top Tab/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/Top Tab/topTab.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/Top Tab/topTab.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/transparent/Author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/transparent/Author.txt -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/transparent/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/transparent/alpha.png -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/transparent/bluetrim.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/transparent/bluetrim.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/Skins/transparent/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/Skins/transparent/skin.ini -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/assert.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/checked_delete.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/config.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/config/suffix.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/config/user.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/detail/bad_weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/detail/bad_weak_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/detail/shared_count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/detail/shared_count.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/intrusive_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/intrusive_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/scoped_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/scoped_array.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/scoped_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/shared_array.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/throw_exception.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /old/Launchy_VC7/copyFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/copyFiles.bat -------------------------------------------------------------------------------- /old/Launchy_VC7/inno installer/SETUP.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/inno installer/SETUP.iss -------------------------------------------------------------------------------- /old/Launchy_VC7/license.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/license.rtf -------------------------------------------------------------------------------- /old/Launchy_VC7/res/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/res/Launchy.ico -------------------------------------------------------------------------------- /old/Launchy_VC7/res/Launchy.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/res/Launchy.manifest -------------------------------------------------------------------------------- /old/Launchy_VC7/res/Launchy.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/res/Launchy.rc2 -------------------------------------------------------------------------------- /old/Launchy_VC7/res/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/res/bkgd2.bmp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AboutDialog.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AboutDialog.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AdvancedOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AdvancedOptions.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AdvancedOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AdvancedOptions.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AlphaBorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AlphaBorder.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/AlphaBorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/AlphaBorder.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/CArchiveEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/CArchiveEx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/CArchiveEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/CArchiveEx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/CDialogSK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/CDialogSK.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/CDialogSK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/CDialogSK.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/DirectoryChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/DirectoryChooser.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/DirectoryChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/DirectoryChooser.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/DiskObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/DiskObject.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/DiskObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/DiskObject.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/ExeLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/ExeLauncher.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/ExeLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/ExeLauncher.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/FileRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/FileRecord.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/FileRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/FileRecord.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/HotkeyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/HotkeyDialog.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/HotkeyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/HotkeyDialog.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Launcher.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Launcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Launcher.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Launchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Launchy.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Launchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Launchy.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchyDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchyDir.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchyDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchyDir.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchyDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchyDlg.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchyDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchyDlg.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchySmarts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchySmarts.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/LaunchySmarts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/LaunchySmarts.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/OpaqueListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/OpaqueListBox.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/OpaqueListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/OpaqueListBox.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Options.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Options.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Options.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Plugin.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Plugin.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/PluginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/PluginDialog.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/PluginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/PluginDialog.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/QArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/QArray.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/ReadOnlyEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/ReadOnlyEdit.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/ReadOnlyEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/ReadOnlyEdit.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/SingleInstanceApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/SingleInstanceApp.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Skin.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/Skin.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/SkinChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/SkinChooser.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/SkinChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/SkinChooser.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/SmartComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/SmartComboBox.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/SmartComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/SmartComboBox.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/TransparentStatic2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/TransparentStatic2.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/TransparentStatic2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/TransparentStatic2.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/TypeEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/TypeEdit.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/TypeEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/TypeEdit.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/UTF16File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/UTF16File.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/UTF16File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/UTF16File.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/UseShGetFileInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/UseShGetFileInfo.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/UseShGetFileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/UseShGetFileInfo.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/iniFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/iniFile.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/iniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/iniFile.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/stdafx.cpp -------------------------------------------------------------------------------- /old/Launchy_VC7/src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/stdafx.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/zlib/zconf.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/zlib/zlib.h -------------------------------------------------------------------------------- /old/Launchy_VC7/src/zlib/zlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/zlib/zlib.lib -------------------------------------------------------------------------------- /old/Launchy_VC7/src/zlib/zlibd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/src/zlib/zlibd.lib -------------------------------------------------------------------------------- /old/Launchy_VC7/website/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/website/version.gif -------------------------------------------------------------------------------- /old/Launchy_VC7/website/version.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Launchy_VC7/website/version.psd -------------------------------------------------------------------------------- /old/Plugin API/CreateDocs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/CreateDocs.bat -------------------------------------------------------------------------------- /old/Plugin API/PluginPage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/PluginPage.doc -------------------------------------------------------------------------------- /old/Plugin API/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/api.html -------------------------------------------------------------------------------- /old/Plugin API/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/catalog.h -------------------------------------------------------------------------------- /old/Plugin API/default.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/default.doxygen -------------------------------------------------------------------------------- /old/Plugin API/myplugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin.zip -------------------------------------------------------------------------------- /old/Plugin API/myplugin/MyPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/MyPlugin.sln -------------------------------------------------------------------------------- /old/Plugin API/myplugin/MyPlugin.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/MyPlugin.vcproj -------------------------------------------------------------------------------- /old/Plugin API/myplugin/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/catalog.h -------------------------------------------------------------------------------- /old/Plugin API/myplugin/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/dlg.ui -------------------------------------------------------------------------------- /old/Plugin API/myplugin/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/globals.h -------------------------------------------------------------------------------- /old/Plugin API/myplugin/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/gui.cpp -------------------------------------------------------------------------------- /old/Plugin API/myplugin/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/gui.h -------------------------------------------------------------------------------- /old/Plugin API/myplugin/myplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/myplugin.cpp -------------------------------------------------------------------------------- /old/Plugin API/myplugin/myplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/myplugin.h -------------------------------------------------------------------------------- /old/Plugin API/myplugin/myplugin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/myplugin.pro -------------------------------------------------------------------------------- /old/Plugin API/myplugin/plugin_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/plugin_interface.cpp -------------------------------------------------------------------------------- /old/Plugin API/myplugin/plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/plugin_interface.h -------------------------------------------------------------------------------- /old/Plugin API/myplugin/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/myplugin/readme.txt -------------------------------------------------------------------------------- /old/Plugin API/plugin_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/plugin_interface.cpp -------------------------------------------------------------------------------- /old/Plugin API/plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/Plugin API/plugin_interface.h -------------------------------------------------------------------------------- /old/launchy/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/App.ico -------------------------------------------------------------------------------- /old/launchy/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/AssemblyInfo.cs -------------------------------------------------------------------------------- /old/launchy/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Form1.cs -------------------------------------------------------------------------------- /old/launchy/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Form1.resx -------------------------------------------------------------------------------- /old/launchy/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/HotKey.cs -------------------------------------------------------------------------------- /old/launchy/Launchy.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Launchy.XML -------------------------------------------------------------------------------- /old/launchy/Launchy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Launchy.csproj -------------------------------------------------------------------------------- /old/launchy/Launchy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Launchy.sln -------------------------------------------------------------------------------- /old/launchy/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/License.txt -------------------------------------------------------------------------------- /old/launchy/Options.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Options.Designer.cs -------------------------------------------------------------------------------- /old/launchy/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/Options.cs -------------------------------------------------------------------------------- /old/launchy/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/UpgradeLog.XML -------------------------------------------------------------------------------- /old/launchy/bkgd2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/old/launchy/bkgd2.bmp -------------------------------------------------------------------------------- /readme.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/readme.lyx -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/readme.txt -------------------------------------------------------------------------------- /setup/win/setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/setup/win/setup.nsi -------------------------------------------------------------------------------- /skins/Black_Glass/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/author.txt -------------------------------------------------------------------------------- /skins/Black_Glass/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/frame.png -------------------------------------------------------------------------------- /skins/Black_Glass/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/scrollBack.png -------------------------------------------------------------------------------- /skins/Black_Glass/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/scrollDown.png -------------------------------------------------------------------------------- /skins/Black_Glass/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/scrollUp.png -------------------------------------------------------------------------------- /skins/Black_Glass/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/spinner.mng -------------------------------------------------------------------------------- /skins/Black_Glass/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass/style.qss -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/author.txt -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/frame.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/opsButton.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/scrollBack.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/scrollDown.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/scrollUp.png -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/spinner.mng -------------------------------------------------------------------------------- /skins/Black_Glass_Wide/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Black_Glass_Wide/style.qss -------------------------------------------------------------------------------- /skins/Default/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/author.txt -------------------------------------------------------------------------------- /skins/Default/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/background_nc.png -------------------------------------------------------------------------------- /skins/Default/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/closeButton.png -------------------------------------------------------------------------------- /skins/Default/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/closeButtonPressed.png -------------------------------------------------------------------------------- /skins/Default/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/frame.png -------------------------------------------------------------------------------- /skins/Default/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/mask_nc.png -------------------------------------------------------------------------------- /skins/Default/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/opsButton.png -------------------------------------------------------------------------------- /skins/Default/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/opsButtonPressed.png -------------------------------------------------------------------------------- /skins/Default/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/scrollBack.png -------------------------------------------------------------------------------- /skins/Default/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/scrollDown.png -------------------------------------------------------------------------------- /skins/Default/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/scrollUp.png -------------------------------------------------------------------------------- /skins/Default/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/spinner.mng -------------------------------------------------------------------------------- /skins/Default/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Default/style.qss -------------------------------------------------------------------------------- /skins/Mercury/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/author.txt -------------------------------------------------------------------------------- /skins/Mercury/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/frame.png -------------------------------------------------------------------------------- /skins/Mercury/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/scrollBack.png -------------------------------------------------------------------------------- /skins/Mercury/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/scrollDown.png -------------------------------------------------------------------------------- /skins/Mercury/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/scrollUp.png -------------------------------------------------------------------------------- /skins/Mercury/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/spinner.mng -------------------------------------------------------------------------------- /skins/Mercury/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury/style.qss -------------------------------------------------------------------------------- /skins/Mercury_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/author.txt -------------------------------------------------------------------------------- /skins/Mercury_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/frame.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/opsButton.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/scrollBack.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/scrollDown.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/scrollUp.png -------------------------------------------------------------------------------- /skins/Mercury_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/spinner.mng -------------------------------------------------------------------------------- /skins/Mercury_Wide/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Mercury_Wide/style.qss -------------------------------------------------------------------------------- /skins/Note/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/author.txt -------------------------------------------------------------------------------- /skins/Note/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/frame.png -------------------------------------------------------------------------------- /skins/Note/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/scrollBack.png -------------------------------------------------------------------------------- /skins/Note/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/scrollDown.png -------------------------------------------------------------------------------- /skins/Note/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/scrollUp.png -------------------------------------------------------------------------------- /skins/Note/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Note/style.qss -------------------------------------------------------------------------------- /skins/QuickSilver2/author.txt: -------------------------------------------------------------------------------- 1 | Skin Title: Quicksilver 2 2 | 3 | Author: Juan Ignacio Serra 4 | 5 | Version: 1.0 -------------------------------------------------------------------------------- /skins/QuickSilver2/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/QuickSilver2/background_nc.png -------------------------------------------------------------------------------- /skins/QuickSilver2/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/QuickSilver2/frame.png -------------------------------------------------------------------------------- /skins/QuickSilver2/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/QuickSilver2/mask_nc.png -------------------------------------------------------------------------------- /skins/QuickSilver2/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/QuickSilver2/style.qss -------------------------------------------------------------------------------- /skins/Simple/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Simple/style.qss -------------------------------------------------------------------------------- /skins/Spotlight_Wide/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/author.txt -------------------------------------------------------------------------------- /skins/Spotlight_Wide/background_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/background_nc.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/closeButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/closeButton.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/closeButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/closeButtonPressed.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/frame.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/mask_nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/mask_nc.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/opsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/opsButton.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/opsButtonPressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/opsButtonPressed.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/scrollBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/scrollBack.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/scrollDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/scrollDown.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/scrollUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/scrollUp.png -------------------------------------------------------------------------------- /skins/Spotlight_Wide/spinner.mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/spinner.mng -------------------------------------------------------------------------------- /skins/Spotlight_Wide/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/skins/Spotlight_Wide/style.qss -------------------------------------------------------------------------------- /src/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/BUILD.txt -------------------------------------------------------------------------------- /src/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/Launchy.ico -------------------------------------------------------------------------------- /src/Launchy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/Launchy.pro -------------------------------------------------------------------------------- /src/buildWinSln.bat: -------------------------------------------------------------------------------- 1 | %QTDIR%\bin\qmake -tp vc -r launchy.pro 2 | -------------------------------------------------------------------------------- /src/common/DropListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/DropListWidget.cpp -------------------------------------------------------------------------------- /src/common/DropListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/DropListWidget.h -------------------------------------------------------------------------------- /src/common/DropTableWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/DropTableWidget.cpp -------------------------------------------------------------------------------- /src/common/DropTableWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/DropTableWidget.h -------------------------------------------------------------------------------- /src/common/FileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/FileBrowser.cpp -------------------------------------------------------------------------------- /src/common/FileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/FileBrowser.h -------------------------------------------------------------------------------- /src/common/FileBrowserDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/FileBrowserDelegate.cpp -------------------------------------------------------------------------------- /src/common/FileBrowserDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/FileBrowserDelegate.h -------------------------------------------------------------------------------- /src/common/catalog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/catalog.cpp -------------------------------------------------------------------------------- /src/common/catalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/catalog.h -------------------------------------------------------------------------------- /src/common/common.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/common.pro -------------------------------------------------------------------------------- /src/common/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/directory.h -------------------------------------------------------------------------------- /src/common/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/globals.cpp -------------------------------------------------------------------------------- /src/common/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/globals.h -------------------------------------------------------------------------------- /src/common/globalshortcutmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/globalshortcutmanager.cpp -------------------------------------------------------------------------------- /src/common/globalshortcutmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/globalshortcutmanager.h -------------------------------------------------------------------------------- /src/common/globalshortcuttrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/globalshortcuttrigger.h -------------------------------------------------------------------------------- /src/common/launchy.common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/launchy.common.vcxproj -------------------------------------------------------------------------------- /src/common/mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/mac.cpp -------------------------------------------------------------------------------- /src/common/mac_keytrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/mac_keytrigger.cpp -------------------------------------------------------------------------------- /src/common/mac_keytrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/mac_keytrigger.h -------------------------------------------------------------------------------- /src/common/mac_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/mac_platform.cpp -------------------------------------------------------------------------------- /src/common/mac_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/mac_platform.h -------------------------------------------------------------------------------- /src/common/platform_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/platform_base.cpp -------------------------------------------------------------------------------- /src/common/platform_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/platform_base.h -------------------------------------------------------------------------------- /src/common/settingsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/settingsmanager.cpp -------------------------------------------------------------------------------- /src/common/settingsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/settingsmanager.h -------------------------------------------------------------------------------- /src/common/win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win.cpp -------------------------------------------------------------------------------- /src/common/win_Iconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_Iconprovider.cpp -------------------------------------------------------------------------------- /src/common/win_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_files.h -------------------------------------------------------------------------------- /src/common/win_iconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_iconprovider.h -------------------------------------------------------------------------------- /src/common/win_keytrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_keytrigger.cpp -------------------------------------------------------------------------------- /src/common/win_minidump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_minidump.cpp -------------------------------------------------------------------------------- /src/common/win_minidump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_minidump.h -------------------------------------------------------------------------------- /src/common/win_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_platform.cpp -------------------------------------------------------------------------------- /src/common/win_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_platform.h -------------------------------------------------------------------------------- /src/common/win_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_util.cpp -------------------------------------------------------------------------------- /src/common/win_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/win_util.h -------------------------------------------------------------------------------- /src/common/x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11.cpp -------------------------------------------------------------------------------- /src/common/x11_iconprovider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_iconprovider.cpp -------------------------------------------------------------------------------- /src/common/x11_iconprovider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_iconprovider.h -------------------------------------------------------------------------------- /src/common/x11_keytrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_keytrigger.cpp -------------------------------------------------------------------------------- /src/common/x11_keytrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_keytrigger.h -------------------------------------------------------------------------------- /src/common/x11_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_platform.cpp -------------------------------------------------------------------------------- /src/common/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/common/x11_platform.h -------------------------------------------------------------------------------- /src/launchy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.sln -------------------------------------------------------------------------------- /src/launchy.specs/commandlineparser.specs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/commandlineparser.specs.cpp -------------------------------------------------------------------------------- /src/launchy.specs/commandlineparser.specs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/commandlineparser.specs.h -------------------------------------------------------------------------------- /src/launchy.specs/launchy.specs.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/launchy.specs.pro -------------------------------------------------------------------------------- /src/launchy.specs/launchy.specs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/launchy.specs.vcxproj -------------------------------------------------------------------------------- /src/launchy.specs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/main.cpp -------------------------------------------------------------------------------- /src/launchy.specs/singleapplication.specs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/singleapplication.specs.cpp -------------------------------------------------------------------------------- /src/launchy.specs/singleapplication.specs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy.specs/singleapplication.specs.h -------------------------------------------------------------------------------- /src/launchy/AnimationLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/AnimationLabel.cpp -------------------------------------------------------------------------------- /src/launchy/AnimationLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/AnimationLabel.h -------------------------------------------------------------------------------- /src/launchy/CharLineEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CharLineEdit.cpp -------------------------------------------------------------------------------- /src/launchy/CharLineEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CharLineEdit.h -------------------------------------------------------------------------------- /src/launchy/CharListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CharListWidget.cpp -------------------------------------------------------------------------------- /src/launchy/CharListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CharListWidget.h -------------------------------------------------------------------------------- /src/launchy/CommandHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CommandHistory.cpp -------------------------------------------------------------------------------- /src/launchy/CommandHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/CommandHistory.h -------------------------------------------------------------------------------- /src/launchy/Fader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/Fader.cpp -------------------------------------------------------------------------------- /src/launchy/Fader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/Fader.h -------------------------------------------------------------------------------- /src/launchy/FileSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/FileSearch.cpp -------------------------------------------------------------------------------- /src/launchy/FileSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/FileSearch.h -------------------------------------------------------------------------------- /src/launchy/InputDataList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/InputDataList.cpp -------------------------------------------------------------------------------- /src/launchy/InputDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/InputDataList.h -------------------------------------------------------------------------------- /src/launchy/Launchy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/Launchy.vcxproj -------------------------------------------------------------------------------- /src/launchy/LineEditMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/LineEditMenu.cpp -------------------------------------------------------------------------------- /src/launchy/LineEditMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/LineEditMenu.h -------------------------------------------------------------------------------- /src/launchy/catalog_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/catalog_builder.cpp -------------------------------------------------------------------------------- /src/launchy/catalog_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/catalog_builder.h -------------------------------------------------------------------------------- /src/launchy/catalog_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/catalog_types.cpp -------------------------------------------------------------------------------- /src/launchy/catalog_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/catalog_types.h -------------------------------------------------------------------------------- /src/launchy/commandlineparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/commandlineparser.cpp -------------------------------------------------------------------------------- /src/launchy/commandlineparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/commandlineparser.h -------------------------------------------------------------------------------- /src/launchy/dsingleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/dsingleapplication.cpp -------------------------------------------------------------------------------- /src/launchy/dsingleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/dsingleapplication.h -------------------------------------------------------------------------------- /src/launchy/icon_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/icon_delegate.cpp -------------------------------------------------------------------------------- /src/launchy/icon_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/icon_delegate.h -------------------------------------------------------------------------------- /src/launchy/icon_extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/icon_extractor.cpp -------------------------------------------------------------------------------- /src/launchy/icon_extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/icon_extractor.h -------------------------------------------------------------------------------- /src/launchy/launchy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/launchy.pro -------------------------------------------------------------------------------- /src/launchy/launchy.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/launchy.qrc -------------------------------------------------------------------------------- /src/launchy/launchywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/launchywidget.cpp -------------------------------------------------------------------------------- /src/launchy/launchywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/launchywidget.h -------------------------------------------------------------------------------- /src/launchy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/main.cpp -------------------------------------------------------------------------------- /src/launchy/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/main.h -------------------------------------------------------------------------------- /src/launchy/options.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/options.ui -------------------------------------------------------------------------------- /src/launchy/optionsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/optionsdialog.cpp -------------------------------------------------------------------------------- /src/launchy/optionsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/optionsdialog.h -------------------------------------------------------------------------------- /src/launchy/platform_mac_hotkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/platform_mac_hotkey.cpp -------------------------------------------------------------------------------- /src/launchy/platform_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/platform_util.cpp -------------------------------------------------------------------------------- /src/launchy/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/platform_util.h -------------------------------------------------------------------------------- /src/launchy/plugin_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/plugin_handler.cpp -------------------------------------------------------------------------------- /src/launchy/plugin_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/plugin_handler.h -------------------------------------------------------------------------------- /src/launchy/plugin_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/plugin_interface.cpp -------------------------------------------------------------------------------- /src/launchy/plugin_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/plugin_interface.h -------------------------------------------------------------------------------- /src/launchy/resources/basicskin.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/resources/basicskin.qss -------------------------------------------------------------------------------- /src/launchy/resources/launchy128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/resources/launchy128.png -------------------------------------------------------------------------------- /src/launchy/resources/launchy16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/resources/launchy16.png -------------------------------------------------------------------------------- /src/launchy/singleapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/singleapplication.cpp -------------------------------------------------------------------------------- /src/launchy/singleapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/singleapplication.h -------------------------------------------------------------------------------- /src/launchy/win_launchywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/win_launchywidget.cpp -------------------------------------------------------------------------------- /src/launchy/win_launchywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/launchy/win_launchywidget.h -------------------------------------------------------------------------------- /src/libqxt/libqxt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/libqxt.pro -------------------------------------------------------------------------------- /src/libqxt/qxtglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobal.h -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut.cpp -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut.h -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut_mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut_mac.cpp -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut_p.h -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut_win.cpp -------------------------------------------------------------------------------- /src/libqxt/qxtglobalshortcut_x11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/libqxt/qxtglobalshortcut_x11.cpp -------------------------------------------------------------------------------- /src/linux/build_deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/build_deb.sh -------------------------------------------------------------------------------- /src/linux/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/debian/control -------------------------------------------------------------------------------- /src/linux/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/debian/copyright -------------------------------------------------------------------------------- /src/linux/debian/menu.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/debian/menu.ex -------------------------------------------------------------------------------- /src/linux/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/debian/rules -------------------------------------------------------------------------------- /src/linux/launchy.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/linux/launchy.desktop -------------------------------------------------------------------------------- /src/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/Info.plist -------------------------------------------------------------------------------- /src/mac/create-dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/create-dmg -------------------------------------------------------------------------------- /src/mac/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/deploy -------------------------------------------------------------------------------- /src/mac/mkdmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/mkdmg -------------------------------------------------------------------------------- /src/mac/support/AdiumApplescriptRunner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/support/AdiumApplescriptRunner -------------------------------------------------------------------------------- /src/mac/support/template.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/mac/support/template.applescript -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/launchy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/launchy_icon.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/launchy_icon_mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/launchy_icon_mac.icns -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/launchy_icon_win.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/launchy_icon_win.ico -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/128_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/128_32-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/16_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/16_32-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/16_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/16_8-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/16_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/16_and.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/24_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/24_32-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/24_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/24_8-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/24_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/24_and.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/32_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/32_32-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/32_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/32_8-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/32_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/32_and.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/48_32-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/48_32-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/48_8-bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/48_8-bit.png -------------------------------------------------------------------------------- /src/misc/Launchy_Icon/working/48_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/misc/Launchy_Icon/working/48_and.png -------------------------------------------------------------------------------- /src/platforms/gnome/gnome.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/gnome.pro -------------------------------------------------------------------------------- /src/platforms/gnome/platform_gnome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/platform_gnome.cpp -------------------------------------------------------------------------------- /src/platforms/gnome/platform_gnome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/platform_gnome.h -------------------------------------------------------------------------------- /src/platforms/gnome/platform_gnome_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/platform_gnome_util.cpp -------------------------------------------------------------------------------- /src/platforms/gnome/platform_gnome_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/platform_gnome_util.h -------------------------------------------------------------------------------- /src/platforms/gnome/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/gnome/readme.txt -------------------------------------------------------------------------------- /src/platforms/unix/unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/unix/unix.pro -------------------------------------------------------------------------------- /src/platforms/win/platform_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/platform_win.cpp -------------------------------------------------------------------------------- /src/platforms/win/platform_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/platform_win.h -------------------------------------------------------------------------------- /src/platforms/win/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/readme.txt -------------------------------------------------------------------------------- /src/platforms/win/win.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/win.pro -------------------------------------------------------------------------------- /src/platforms/win/win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/win.sln -------------------------------------------------------------------------------- /src/platforms/win/win.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/platforms/win/win.vcproj -------------------------------------------------------------------------------- /src/plugins/calcy/calcy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy.cpp -------------------------------------------------------------------------------- /src/plugins/calcy/calcy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy.h -------------------------------------------------------------------------------- /src/plugins/calcy/calcy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy.ico -------------------------------------------------------------------------------- /src/plugins/calcy/calcy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy.png -------------------------------------------------------------------------------- /src/plugins/calcy/calcy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy.pro -------------------------------------------------------------------------------- /src/plugins/calcy/calcy_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/calcy_full.ico -------------------------------------------------------------------------------- /src/plugins/calcy/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/dlg.ui -------------------------------------------------------------------------------- /src/plugins/calcy/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/gui.cpp -------------------------------------------------------------------------------- /src/plugins/calcy/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/gui.h -------------------------------------------------------------------------------- /src/plugins/calcy/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/calcy/precompiled.h -------------------------------------------------------------------------------- /src/plugins/controly/ControlPanelItemFinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/ControlPanelItemFinder.cpp -------------------------------------------------------------------------------- /src/plugins/controly/ControlPanelItemFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/ControlPanelItemFinder.h -------------------------------------------------------------------------------- /src/plugins/controly/controly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.cpp -------------------------------------------------------------------------------- /src/plugins/controly/controly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.h -------------------------------------------------------------------------------- /src/plugins/controly/controly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.ico -------------------------------------------------------------------------------- /src/plugins/controly/controly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.png -------------------------------------------------------------------------------- /src/plugins/controly/controly.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.pro -------------------------------------------------------------------------------- /src/plugins/controly/controly.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly.vcxproj -------------------------------------------------------------------------------- /src/plugins/controly/controly_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/controly_full.ico -------------------------------------------------------------------------------- /src/plugins/controly/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/dlg.ui -------------------------------------------------------------------------------- /src/plugins/controly/fhoenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoenv.cpp -------------------------------------------------------------------------------- /src/plugins/controly/fhoenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoenv.h -------------------------------------------------------------------------------- /src/plugins/controly/fhoicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoicon.cpp -------------------------------------------------------------------------------- /src/plugins/controly/fhoicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoicon.h -------------------------------------------------------------------------------- /src/plugins/controly/fhoreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoreg.cpp -------------------------------------------------------------------------------- /src/plugins/controly/fhoreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhoreg.h -------------------------------------------------------------------------------- /src/plugins/controly/fhores.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhores.cpp -------------------------------------------------------------------------------- /src/plugins/controly/fhores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/fhores.h -------------------------------------------------------------------------------- /src/plugins/controly/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/globals.h -------------------------------------------------------------------------------- /src/plugins/controly/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/gui.cpp -------------------------------------------------------------------------------- /src/plugins/controly/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/gui.h -------------------------------------------------------------------------------- /src/plugins/controly/launchy.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/launchy.exit.png -------------------------------------------------------------------------------- /src/plugins/controly/launchy.options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/launchy.options.png -------------------------------------------------------------------------------- /src/plugins/controly/launchy.rebuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/launchy.rebuild.png -------------------------------------------------------------------------------- /src/plugins/controly/winfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/controly/winfiles.h -------------------------------------------------------------------------------- /src/plugins/gcalc/gcalc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/gcalc/gcalc.cpp -------------------------------------------------------------------------------- /src/plugins/gcalc/gcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/gcalc/gcalc.h -------------------------------------------------------------------------------- /src/plugins/gcalc/gcalc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/gcalc/gcalc.ico -------------------------------------------------------------------------------- /src/plugins/gcalc/gcalc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/gcalc/gcalc.pro -------------------------------------------------------------------------------- /src/plugins/gcalc/precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/gcalc/precompiled.h -------------------------------------------------------------------------------- /src/plugins/loader/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/dlg.ui -------------------------------------------------------------------------------- /src/plugins/loader/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/globals.h -------------------------------------------------------------------------------- /src/plugins/loader/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/gui.cpp -------------------------------------------------------------------------------- /src/plugins/loader/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/gui.h -------------------------------------------------------------------------------- /src/plugins/loader/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader.cpp -------------------------------------------------------------------------------- /src/plugins/loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader.h -------------------------------------------------------------------------------- /src/plugins/loader/loader.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader.ico -------------------------------------------------------------------------------- /src/plugins/loader/loader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader.png -------------------------------------------------------------------------------- /src/plugins/loader/loader.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader.pro -------------------------------------------------------------------------------- /src/plugins/loader/loader_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/loader/loader_full.ico -------------------------------------------------------------------------------- /src/plugins/plugins.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/plugins.pri -------------------------------------------------------------------------------- /src/plugins/runner/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/dlg.ui -------------------------------------------------------------------------------- /src/plugins/runner/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/globals.h -------------------------------------------------------------------------------- /src/plugins/runner/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/gui.cpp -------------------------------------------------------------------------------- /src/plugins/runner/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/gui.h -------------------------------------------------------------------------------- /src/plugins/runner/runner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.cpp -------------------------------------------------------------------------------- /src/plugins/runner/runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.h -------------------------------------------------------------------------------- /src/plugins/runner/runner.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.ico -------------------------------------------------------------------------------- /src/plugins/runner/runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.png -------------------------------------------------------------------------------- /src/plugins/runner/runner.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.pro -------------------------------------------------------------------------------- /src/plugins/runner/runner.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner.vcxproj -------------------------------------------------------------------------------- /src/plugins/runner/runner_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/runner_full.ico -------------------------------------------------------------------------------- /src/plugins/runner/winfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/runner/winfiles.h -------------------------------------------------------------------------------- /src/plugins/verby/Verby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/Verby.cpp -------------------------------------------------------------------------------- /src/plugins/verby/Verby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/Verby.h -------------------------------------------------------------------------------- /src/plugins/verby/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/copy.png -------------------------------------------------------------------------------- /src/plugins/verby/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/dlg.ui -------------------------------------------------------------------------------- /src/plugins/verby/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/gui.cpp -------------------------------------------------------------------------------- /src/plugins/verby/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/gui.h -------------------------------------------------------------------------------- /src/plugins/verby/opencontainer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/opencontainer.png -------------------------------------------------------------------------------- /src/plugins/verby/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/properties.png -------------------------------------------------------------------------------- /src/plugins/verby/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/run.png -------------------------------------------------------------------------------- /src/plugins/verby/verby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/verby.png -------------------------------------------------------------------------------- /src/plugins/verby/verby.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/verby.pro -------------------------------------------------------------------------------- /src/plugins/verby/verby.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/verby.vcxproj -------------------------------------------------------------------------------- /src/plugins/verby/winfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/verby/winfiles.h -------------------------------------------------------------------------------- /src/plugins/vsrename.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/vsrename.exe -------------------------------------------------------------------------------- /src/plugins/weby/IconCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/IconCache.cpp -------------------------------------------------------------------------------- /src/plugins/weby/IconCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/IconCache.h -------------------------------------------------------------------------------- /src/plugins/weby/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/dlg.ui -------------------------------------------------------------------------------- /src/plugins/weby/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/globals.h -------------------------------------------------------------------------------- /src/plugins/weby/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/gui.cpp -------------------------------------------------------------------------------- /src/plugins/weby/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/gui.h -------------------------------------------------------------------------------- /src/plugins/weby/weby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.cpp -------------------------------------------------------------------------------- /src/plugins/weby/weby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.h -------------------------------------------------------------------------------- /src/plugins/weby/weby.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.ico -------------------------------------------------------------------------------- /src/plugins/weby/weby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.png -------------------------------------------------------------------------------- /src/plugins/weby/weby.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.pro -------------------------------------------------------------------------------- /src/plugins/weby/weby.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby.vcxproj -------------------------------------------------------------------------------- /src/plugins/weby/weby_full.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/weby_full.ico -------------------------------------------------------------------------------- /src/plugins/weby/winfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/weby/winfiles.h -------------------------------------------------------------------------------- /src/plugins/winshell/dlg.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/dlg.ui -------------------------------------------------------------------------------- /src/plugins/winshell/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/globals.h -------------------------------------------------------------------------------- /src/plugins/winshell/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/gui.cpp -------------------------------------------------------------------------------- /src/plugins/winshell/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/gui.h -------------------------------------------------------------------------------- /src/plugins/winshell/winshell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/winshell.cpp -------------------------------------------------------------------------------- /src/plugins/winshell/winshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/winshell.h -------------------------------------------------------------------------------- /src/plugins/winshell/winshell.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/winshell.ico -------------------------------------------------------------------------------- /src/plugins/winshell/winshell.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/plugins/winshell/winshell.pro -------------------------------------------------------------------------------- /src/win/Launchy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/Launchy.ico -------------------------------------------------------------------------------- /src/win/Microsoft.VC80.CRT.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/Microsoft.VC80.CRT.manifest -------------------------------------------------------------------------------- /src/win/Utilities/Special Folders/C Drive.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/Utilities/Special Folders/C Drive.lnk -------------------------------------------------------------------------------- /src/win/Utilities/Special Folders/My Music.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/Utilities/Special Folders/My Music.lnk -------------------------------------------------------------------------------- /src/win/buildTranslations.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/buildTranslations.bat -------------------------------------------------------------------------------- /src/win/installer/LaunchyPortable.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | version=200 3 | -------------------------------------------------------------------------------- /src/win/installer/SETUP.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/installer/SETUP.iss -------------------------------------------------------------------------------- /src/win/installer/header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/installer/header.bmp -------------------------------------------------------------------------------- /src/win/launchy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/launchy.rc -------------------------------------------------------------------------------- /src/win/msvcm80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/msvcm80.dll -------------------------------------------------------------------------------- /src/win/msvcp80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/msvcp80.dll -------------------------------------------------------------------------------- /src/win/msvcr80.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/src/win/msvcr80.dll -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/big.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/big.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/classic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/classic.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/colorful.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/colorful.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/grey.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/grey.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/modern.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/modern.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/red.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/red.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Checks/simple.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Checks/simple.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Header/nsis-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Header/nsis-r.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Header/nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Header/nsis.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Header/orange-r.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Header/orange-r.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Header/win.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Header/win.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Wizard/arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Wizard/arrow.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Wizard/llama.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Wizard/llama.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Wizard/nsis.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Wizard/nsis.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Graphics/Wizard/win.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Graphics/Wizard/win.bmp -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Arabic.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Arabic.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Arabic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Arabic.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Basque.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Basque.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Basque.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Basque.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Breton.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Breton.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Breton.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Breton.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Czech.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Czech.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Czech.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Czech.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Danish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Danish.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Danish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Danish.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Dutch.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Dutch.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Dutch.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Dutch.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Farsi.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Farsi.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Farsi.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Farsi.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/French.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/French.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/French.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/French.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/German.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/German.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/German.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/German.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Greek.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Greek.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Greek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Greek.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Hebrew.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Hebrew.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Hebrew.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Hebrew.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Irish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Irish.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Irish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Irish.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Korean.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Korean.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Korean.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Korean.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Malay.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Malay.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Malay.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Malay.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Pashto.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Pashto.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Pashto.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Pashto.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Polish.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Polish.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Polish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Polish.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Slovak.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Slovak.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Slovak.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Slovak.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Thai.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Thai.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Thai.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Thai.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Uzbek.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Uzbek.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Uzbek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Uzbek.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Welsh.nlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Welsh.nlf -------------------------------------------------------------------------------- /tools/nsis/Contrib/Language files/Welsh.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Language files/Welsh.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Modern UI 2/Interface.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Modern UI 2/Interface.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Modern UI 2/MUI2.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Modern UI 2/MUI2.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Modern UI 2/Pages.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Modern UI 2/Pages.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Modern UI/System.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Modern UI/System.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/Modern UI/ioSpecial.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/Modern UI/ioSpecial.ini -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/default.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/default.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/modern.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/modern.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/modern_headerbmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/modern_headerbmp.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/modern_headerbmpr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/modern_headerbmpr.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/modern_nodesc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/modern_nodesc.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/modern_smalldesc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/modern_smalldesc.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/UIs/sdbarker_tiny.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/UIs/sdbarker_tiny.exe -------------------------------------------------------------------------------- /tools/nsis/Contrib/zip2exe/Base.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/zip2exe/Base.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/zip2exe/Classic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/zip2exe/Classic.nsh -------------------------------------------------------------------------------- /tools/nsis/Contrib/zip2exe/Modern.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Contrib/zip2exe/Modern.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Colors.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Colors.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/FileFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/FileFunc.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/InstallOptions.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/InstallOptions.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/LangFile.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/LangFile.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Library.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Library.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/LogicLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/LogicLib.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/MUI.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI\System.nsh" -------------------------------------------------------------------------------- /tools/nsis/Include/MUI2.nsh: -------------------------------------------------------------------------------- 1 | !include "${NSISDIR}\Contrib\Modern UI 2\MUI2.nsh" -------------------------------------------------------------------------------- /tools/nsis/Include/Memento.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Memento.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/MultiUser.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/MultiUser.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Sections.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Sections.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/StrFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/StrFunc.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/TextFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/TextFunc.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/UpgradeDLL.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/UpgradeDLL.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Util.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Util.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/VB6RunTime.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/VB6RunTime.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/VPatchLib.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/VPatchLib.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/COM.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/COM.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/Propkey.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/Propkey.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/WinDef.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/WinDef.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/WinError.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/WinError.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/WinNT.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/WinNT.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/Win/WinUser.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/Win/WinUser.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/WinCore.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/WinCore.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/WinMessages.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/WinMessages.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/WinVer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/WinVer.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/WordFunc.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/WordFunc.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/nsDialogs.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/nsDialogs.nsh -------------------------------------------------------------------------------- /tools/nsis/Include/x64.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Include/x64.nsh -------------------------------------------------------------------------------- /tools/nsis/Stubs/bzip2-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/bzip2-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/bzip2-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/bzip2-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/Stubs/bzip2_solid-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/bzip2_solid-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/bzip2_solid-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/bzip2_solid-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/Stubs/lzma-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/lzma-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/lzma-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/lzma-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/Stubs/lzma_solid-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/lzma_solid-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/lzma_solid-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/lzma_solid-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/Stubs/uninst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/uninst -------------------------------------------------------------------------------- /tools/nsis/Stubs/zlib-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/zlib-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/zlib-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/zlib-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/Stubs/zlib_solid-x86-ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/zlib_solid-x86-ansi -------------------------------------------------------------------------------- /tools/nsis/Stubs/zlib_solid-x86-unicode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/Stubs/zlib_solid-x86-unicode -------------------------------------------------------------------------------- /tools/nsis/bin/GenPat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/GenPat.exe -------------------------------------------------------------------------------- /tools/nsis/bin/LibraryLocal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/LibraryLocal.exe -------------------------------------------------------------------------------- /tools/nsis/bin/MakeLangId.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/MakeLangId.exe -------------------------------------------------------------------------------- /tools/nsis/bin/RegTool.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/RegTool.bin -------------------------------------------------------------------------------- /tools/nsis/bin/makensis.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/makensis.exe -------------------------------------------------------------------------------- /tools/nsis/bin/zip2exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/zip2exe.exe -------------------------------------------------------------------------------- /tools/nsis/bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/tools/nsis/bin/zlib1.dll -------------------------------------------------------------------------------- /translations/common_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_de.ts -------------------------------------------------------------------------------- /translations/common_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_es.ts -------------------------------------------------------------------------------- /translations/common_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_fr.ts -------------------------------------------------------------------------------- /translations/common_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_ja.ts -------------------------------------------------------------------------------- /translations/common_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_nl.ts -------------------------------------------------------------------------------- /translations/common_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_rus.ts -------------------------------------------------------------------------------- /translations/common_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_zh.ts -------------------------------------------------------------------------------- /translations/common_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/common_zh_TW.ts -------------------------------------------------------------------------------- /translations/controly_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_de.ts -------------------------------------------------------------------------------- /translations/controly_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_es.ts -------------------------------------------------------------------------------- /translations/controly_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_fr.ts -------------------------------------------------------------------------------- /translations/controly_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_ja.ts -------------------------------------------------------------------------------- /translations/controly_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_nl.ts -------------------------------------------------------------------------------- /translations/controly_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_rus.ts -------------------------------------------------------------------------------- /translations/controly_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_zh.ts -------------------------------------------------------------------------------- /translations/controly_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/controly_zh_TW.ts -------------------------------------------------------------------------------- /translations/launchy_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_de.ts -------------------------------------------------------------------------------- /translations/launchy_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_es.ts -------------------------------------------------------------------------------- /translations/launchy_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_fr.ts -------------------------------------------------------------------------------- /translations/launchy_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_ja.ts -------------------------------------------------------------------------------- /translations/launchy_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_nl.ts -------------------------------------------------------------------------------- /translations/launchy_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_rus.ts -------------------------------------------------------------------------------- /translations/launchy_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_zh.ts -------------------------------------------------------------------------------- /translations/launchy_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/launchy_zh_TW.ts -------------------------------------------------------------------------------- /translations/runner_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_de.ts -------------------------------------------------------------------------------- /translations/runner_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_es.ts -------------------------------------------------------------------------------- /translations/runner_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_fr.ts -------------------------------------------------------------------------------- /translations/runner_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_ja.ts -------------------------------------------------------------------------------- /translations/runner_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_nl.ts -------------------------------------------------------------------------------- /translations/runner_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_rus.ts -------------------------------------------------------------------------------- /translations/runner_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_zh.ts -------------------------------------------------------------------------------- /translations/runner_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/runner_zh_TW.ts -------------------------------------------------------------------------------- /translations/verby_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_de.ts -------------------------------------------------------------------------------- /translations/verby_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_es.ts -------------------------------------------------------------------------------- /translations/verby_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_fr.ts -------------------------------------------------------------------------------- /translations/verby_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_ja.ts -------------------------------------------------------------------------------- /translations/verby_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_nl.ts -------------------------------------------------------------------------------- /translations/verby_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_rus.ts -------------------------------------------------------------------------------- /translations/verby_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_zh.ts -------------------------------------------------------------------------------- /translations/verby_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/verby_zh_TW.ts -------------------------------------------------------------------------------- /translations/weby_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_de.ts -------------------------------------------------------------------------------- /translations/weby_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_es.ts -------------------------------------------------------------------------------- /translations/weby_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_fr.ts -------------------------------------------------------------------------------- /translations/weby_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_ja.ts -------------------------------------------------------------------------------- /translations/weby_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_nl.ts -------------------------------------------------------------------------------- /translations/weby_rus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_rus.ts -------------------------------------------------------------------------------- /translations/weby_zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_zh.ts -------------------------------------------------------------------------------- /translations/weby_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Slesa/launchy/HEAD/translations/weby_zh_TW.ts --------------------------------------------------------------------------------