├── .gitignore ├── CopyPortableIniFile.ahk ├── FileInstall ├── FoldersPopup_LANG_DE.txt ├── FoldersPopup_LANG_ES.txt ├── FoldersPopup_LANG_FR.txt ├── FoldersPopup_LANG_IT.txt ├── FoldersPopup_LANG_KO.txt ├── FoldersPopup_LANG_NL.txt ├── FoldersPopup_LANG_PT-BR.txt ├── FoldersPopup_LANG_SV.txt ├── Generic_Sorting2-26-grey.png ├── about-32.png ├── add_property-48.png ├── channel_mosaic-48.png ├── column-26.png ├── conference-32.png ├── default_browser_icon.html ├── delete_property-48.png ├── down_circular-26.png ├── edit_property-48.png ├── gift-32.png ├── handshake-32.png ├── help-32.png ├── idea-32.png ├── left-12.png ├── separator-26.png ├── settings-32.png ├── solutions-32.png ├── thumbs_up-32.png ├── up-12.png └── up_circular-26.png ├── Folders-Likes-icon-192-RED-center.ico ├── Folders-Likes-icon-192-light-center.ico ├── FoldersPopup.ahk ├── FoldersPopup_LANG.ahk ├── README.md └── latest-version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.ini 2 | img/ 3 | *.session 4 | BK/ 5 | HOME/ 6 | WORK/ 7 | FoldersPopup-DIAG.txt 8 | Divers/ 9 | *.xlsx 10 | _temp/ 11 | *.PRJ 12 | -------------------------------------------------------------------------------- /CopyPortableIniFile.ahk: -------------------------------------------------------------------------------- 1 | #NoEnv 2 | #SingleInstance force 3 | #KeyHistory 0 4 | ListLines, Off 5 | 6 | strStartupShortcut := A_Startup . "\FoldersPopup.lnk" 7 | strUserDataFolder := A_AppData . "\FoldersPopup" 8 | strUserDataIniFile := strUserDataFolder . "\FoldersPopup.ini" 9 | 10 | if !FileExist(strUserDataFolder) 11 | return ; strUserDataFolder does not exist - the setup did not complete - abort 12 | 13 | if FileExist(strUserDataIniFile) 14 | return ; strUserDataIniFile already exists - do not overwrite - abort 15 | 16 | if !FileExist(strStartupShortcut) 17 | return ; strStartupShortcut does not exist - no portable shortcut to read to get the portable folder - abort 18 | 19 | FileGetShortcut, %strStartupShortcut%, , strStartupWorkingDir 20 | if InStr(strStartupWorkingDir, A_AppData) 21 | return ; the data folder is already under the user data folder - do not risk to overwrite - abort 22 | 23 | ; we have an existing portable FoldersPopup.ini file to place as an initial ini file in the brand new user data folder - copy! 24 | FileCopy, %strStartupWorkingDir%\FoldersPopup.ini, %strUserDataIniFile%, 0 ; do not overwrite 25 | -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_DE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_DE.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_ES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_ES.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_FR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_FR.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_IT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_IT.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_KO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_KO.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_NL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_NL.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_PT-BR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_PT-BR.txt -------------------------------------------------------------------------------- /FileInstall/FoldersPopup_LANG_SV.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/FoldersPopup_LANG_SV.txt -------------------------------------------------------------------------------- /FileInstall/Generic_Sorting2-26-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/Generic_Sorting2-26-grey.png -------------------------------------------------------------------------------- /FileInstall/about-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/about-32.png -------------------------------------------------------------------------------- /FileInstall/add_property-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/add_property-48.png -------------------------------------------------------------------------------- /FileInstall/channel_mosaic-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/channel_mosaic-48.png -------------------------------------------------------------------------------- /FileInstall/column-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/column-26.png -------------------------------------------------------------------------------- /FileInstall/conference-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/conference-32.png -------------------------------------------------------------------------------- /FileInstall/default_browser_icon.html: -------------------------------------------------------------------------------- 1 | html file for to get the default browsers's icon 2 | -------------------------------------------------------------------------------- /FileInstall/delete_property-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/delete_property-48.png -------------------------------------------------------------------------------- /FileInstall/down_circular-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/down_circular-26.png -------------------------------------------------------------------------------- /FileInstall/edit_property-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/edit_property-48.png -------------------------------------------------------------------------------- /FileInstall/gift-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/gift-32.png -------------------------------------------------------------------------------- /FileInstall/handshake-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/handshake-32.png -------------------------------------------------------------------------------- /FileInstall/help-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/help-32.png -------------------------------------------------------------------------------- /FileInstall/idea-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/idea-32.png -------------------------------------------------------------------------------- /FileInstall/left-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/left-12.png -------------------------------------------------------------------------------- /FileInstall/separator-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/separator-26.png -------------------------------------------------------------------------------- /FileInstall/settings-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/settings-32.png -------------------------------------------------------------------------------- /FileInstall/solutions-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/solutions-32.png -------------------------------------------------------------------------------- /FileInstall/thumbs_up-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/thumbs_up-32.png -------------------------------------------------------------------------------- /FileInstall/up-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/up-12.png -------------------------------------------------------------------------------- /FileInstall/up_circular-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FileInstall/up_circular-26.png -------------------------------------------------------------------------------- /Folders-Likes-icon-192-RED-center.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/Folders-Likes-icon-192-RED-center.ico -------------------------------------------------------------------------------- /Folders-Likes-icon-192-light-center.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/Folders-Likes-icon-192-light-center.ico -------------------------------------------------------------------------------- /FoldersPopup.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FoldersPopup.ahk -------------------------------------------------------------------------------- /FoldersPopup_LANG.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/FoldersPopup_LANG.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JnLlnd/FoldersPopup/5e4ec4262d0511561910e88458f2c85eff4541ff/README.md -------------------------------------------------------------------------------- /latest-version.txt: -------------------------------------------------------------------------------- 1 | 5.2.2 --------------------------------------------------------------------------------