|
12 | 12 | :: 2024-07-15 Resolved: Issue #12 – Network drive/UNC paths not supported. [SOLVED] |
13 | 13 | :: 2024-07-19 Added: Ability to move the icon's path. |
14 | 14 | :: 2024-07-24 Added: Use "#ID" in config 'IconFileName' to generate a random 6-digit string, which helps avoid the icon cache displaying |
15 | | -:: the previous icon instead of the newly assigned one (unless you refresh the icon cache by restarting Explorer). |
| 15 | +:: the previous icon instead of the newly assigned one (unless you refresh the icon cache by restarting Explorer). |
16 | 16 | :: 2024-07-30 Added: 'Move' and 'Rename' features to the folder right-click menu. |
17 | 17 | :: 2024-07-31 Added: Ability to hide and unhide "icon.ico" and "desktop.ini" files. |
18 | 18 | :: 2024-08-14 Fixed: 'Move' and 'Rename' functions to display the correct icon file name and show the proper stats. |
19 | 19 | :: 2024-08-24 Added: Ability to 'Define keywords', 'Rename Icons', and 'Move Icons' features to maintain a history of previously inserted values. |
20 | 20 | :: 2024-09-20 Removed: [Template: Win11Folderify] "Picture-opacity" option because it caused transparency to render as black. |
21 | | -:: (Might fix and add it back later if anyone needs it?) |
22 | 21 | :: 2024-09-20 Added: [Template: Win11Folderify] config "Picture-Drawing=original" to display the picture as is. Requested #13 |
23 | 22 | :: 2024-09-20 Added: [Template: Win11Folderify] config to change the shadow. |
24 | 23 | :: 2024-09-30 Added: [Template: Kometa] New template. Requested #11 |
|
42 | 41 | :: 2024-11-10 Added: modifications to the 'Search Folder Icon' page. |
43 | 42 | :: 2024-11-15 Fixed: 'TemplateTestMode' not working due to the missing "Samples" folder. |
44 | 43 | :: 2024-11-17 Fixed: 'Rename icon' incorrectly detects the current icon as a duplicate when the new icon name is the same as the current icon. |
45 | | - |
| 44 | +:: 2024-11-24 Checking and preparing for the v0.4 update release! |
46 | 45 |
|
47 | 46 | setlocal |
48 | 47 | set name=RCFI Tools |
@@ -1072,6 +1071,7 @@ echo. |
1072 | 1071 | echo %G_%%TAB% to select, insert the number assosiated to the options, then hit Enter.%_% |
1073 | 1072 | call :FI-Template-Input |
1074 | 1073 | echo %TAB%%_% ------------------------------------------------------------------------ |
| 1074 | +call :Config-Save |
1075 | 1075 | echo. |
1076 | 1076 | echo. |
1077 | 1077 | set "Already=Asked" |
@@ -2042,6 +2042,7 @@ set "MovHis=" |
2042 | 2042 | set "MovDestination=(none)" |
2043 | 2043 | set /p "MovDestination=%_%%TAB% %_%%I_%Destination:%_%%YY_% " |
2044 | 2044 | set "MovDestination=%MovDestination:"=%" |
| 2045 | +if /i "%MovDestination:~-1%"=="\" set "MovDestination=%MovDestination:~,-1%" |
2045 | 2046 | echo. |
2046 | 2047 | if /i "%MovDestination%"=="(none)" echo.&echo.&echo %_%%TAB% %G_% %I_% Canceled %_% &goto options |
2047 | 2048 | if /i "%MovDestination%"=="1" set "MovDestination=%MoveDst1%"&set "MovHis=yes" |
@@ -2550,34 +2551,28 @@ set "HideAttrib=" |
2550 | 2551 | echo.&echo.&echo.&echo. |
2551 | 2552 | echo %_% %I_% Hide or Unhide the "desktop.ini" and "*.ico" files. %_% |
2552 | 2553 | echo. |
2553 | | -echo %TAB%%G_%You can always hide or unhide the files; it will not move, remove or delete anything, |
| 2554 | +echo %TAB%%G_%You can always hide or unhide the files; it will %R_%not%G_% move, remove or delete anything, |
2554 | 2555 | echo %TAB%%G_%nothing scary will happen. just making the files related to the folder icon hidden or not. |
2555 | 2556 | echo. |
2556 | | -echo %_%Press %GN_%H%_%%_% to Hide %G_%^|%_% Press %GN_%U%_% to Unhide%G_% |
2557 | | -echo %G_%Press %G_%C%G_% to Cancel%BK_% |
| 2557 | +echo %_%Press %GN_%R%_%%_% to Hide as a regular files %G_%^|%_% Press %GN_%U%_% to Unhide %G_%^| %_%Press %GN_%S%_%%_% to Hide as a system files %G_% |
| 2558 | +echo %G_%Press %G_%C%G_% to Cancel%BK_% |
2558 | 2559 | echo. |
2559 | | -CHOICE /C:HUC /N |
| 2560 | +CHOICE /C:URSC /N |
2560 | 2561 | echo.&echo.&echo. |
2561 | | -if /i "%errorlevel%"=="2" set "HideAct=Unhide"&set "HideAttrib=-h -s"&goto FI-Hide-GetDir |
2562 | | -if /i "%errorlevel%"=="3" echo %TAB%%G_%%I_% CANCELED %_%&goto Options |
2563 | | - |
2564 | | -echo %TAB%%_%Hide it as system file%R_%?%_% |
2565 | | -echo %TAB%%G_%adding "system file" attribute to the file will make it extra hidden. |
2566 | | -echo %TAB%%G_%Options: %GN_%Y%G_%/%GN_%N%G_% ^| Press %GN_%Y%G_% to make it extra hidden.%BK_% |
2567 | | -CHOICE /C:YNC /N |
2568 | | -echo.&echo.&echo. |
2569 | | -if /i "%errorlevel%"=="1" set "HideAct=Hide"&set "HideAttrib=+h +s"&goto FI-Hide-GetDir |
2570 | | -if /i "%errorlevel%"=="2" set "HideAct=Hide"&set "HideAttrib=+h -s"&goto FI-Hide-GetDir |
| 2562 | +if /i "%errorlevel%"=="1" set "HideAct=Unhide"&set "HideAttrib=-h -s"&goto FI-Hide-GetDir |
| 2563 | +if /i "%errorlevel%"=="2" set "HideAct=Hide"&set "HideAttrib=+h -s"&goto FI-Hide-GetDir |
| 2564 | +if /i "%errorlevel%"=="3" set "HideAct=Hide"&set "HideAttrib=+h +s"&goto FI-Hide-GetDir |
| 2565 | +if /i "%errorlevel%"=="4" echo %TAB%%G_%%I_% CANCELED %_%&goto Options |
2571 | 2566 | echo %TAB%%G_%%I_% CANCELED %_% |
2572 | 2567 | goto options |
2573 | 2568 |
|
2574 | 2569 | :FI-Hide-GetDir |
2575 | | -echo %TAB%%GG_% %I_%%W_% Hide Icon Files %-% |
| 2570 | +echo %TAB%%GG_% %I_%%W_% Hide Folder Icon Files %-% |
2576 | 2571 | echo. |
2577 | 2572 | if /i "%recursive%"=="yes" echo %TAB%%U_%%W_%RECURSIVE MODE%_% |
2578 | | -set "HideActDisplay=%HideAttrib:-h -s=Unhide% |
2579 | | -set "HideActDisplay=%HideAttrib:+h +s=Hide as sytem files% |
2580 | | -set "HideActDisplay=%HideAttrib:+h -s=Hide% |
| 2573 | +if /i "%HideAttrib%"=="-h -s" set "HideActDisplay=Unhide" |
| 2574 | +if /i "%HideAttrib%"=="+h -s" set "HideActDisplay=Hide as a regular files" |
| 2575 | +if /i "%HideAttrib%"=="+h +s" set "HideActDisplay=Hide as a system files" |
2581 | 2576 | echo %TAB%%W_%Action:%ESC%%CC_%%HideActDisplay%%ESC% |
2582 | 2577 | call :Timer-start |
2583 | 2578 | echo %TAB%%W_%==============================================================================%_% |
@@ -2615,6 +2610,7 @@ if /i "%Recursive%"=="yes" ( |
2615 | 2610 | ) |
2616 | 2611 | ) |
2617 | 2612 | echo %TAB%%W_%==============================================================================%_% |
| 2613 | +echo %TAB%%W_%Action:%ESC%%CC_%%HideActDisplay%%ESC% |
2618 | 2614 | echo. |
2619 | 2615 |
|
2620 | 2616 | set "num=%Folders%"&call :Spaces |
|
0 commit comments