mirror of
				https://github.com/arkenfox/user.js.git
				synced 2025-11-04 07:45:26 +01:00 
			
		
		
		
	Format date and time consistently. (#1580)
* Format date and time consistently. Co-authored-by: junos <junos.lukan@ijs.si> Co-authored-by: earthlng <earthlng@users.noreply.github.com>
This commit is contained in:
		@@ -3,7 +3,7 @@ TITLE prefs.js cleaner
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
REM ### prefs.js cleaner for Windows
 | 
					REM ### prefs.js cleaner for Windows
 | 
				
			||||||
REM ## author: @claustromaniac
 | 
					REM ## author: @claustromaniac
 | 
				
			||||||
REM ## version: 2.4
 | 
					REM ## version: 2.5
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CD /D "%~dp0"
 | 
					CD /D "%~dp0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -13,7 +13,7 @@ ECHO:
 | 
				
			|||||||
ECHO                 ########################################
 | 
					ECHO                 ########################################
 | 
				
			||||||
ECHO                 ####  prefs.js cleaner for Windows  ####
 | 
					ECHO                 ####  prefs.js cleaner for Windows  ####
 | 
				
			||||||
ECHO                 ####        by claustromaniac       ####
 | 
					ECHO                 ####        by claustromaniac       ####
 | 
				
			||||||
ECHO                 ####              v2.4              ####
 | 
					ECHO                 ####              v2.5              ####
 | 
				
			||||||
ECHO                 ########################################
 | 
					ECHO                 ########################################
 | 
				
			||||||
ECHO:
 | 
					ECHO:
 | 
				
			||||||
CALL :message "This script should be run from your Firefox profile directory."
 | 
					CALL :message "This script should be run from your Firefox profile directory."
 | 
				
			||||||
@@ -30,9 +30,12 @@ IF NOT EXIST "user.js" (CALL :abort "user.js not found in the current directory.
 | 
				
			|||||||
IF NOT EXIST "prefs.js" (CALL :abort "prefs.js not found in the current directory." 30)
 | 
					IF NOT EXIST "prefs.js" (CALL :abort "prefs.js not found in the current directory." 30)
 | 
				
			||||||
CALL :strlenCheck
 | 
					CALL :strlenCheck
 | 
				
			||||||
CALL :FFcheck
 | 
					CALL :FFcheck
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CALL :message "Backing up prefs.js..."
 | 
					CALL :message "Backing up prefs.js..."
 | 
				
			||||||
SET "_time=%time: =0%"
 | 
					FOR /F "usebackq tokens=1,2 delims==" %%i IN (`wmic os get LocalDateTime /VALUE 2^>NUL`) DO IF '.%%i.'=='.LocalDateTime.' SET ldt=%%j
 | 
				
			||||||
COPY /B /V /Y prefs.js "prefs-backup-%date:/=-%_%_time::=.%.js"
 | 
					SET ldt=%ldt:~0,8%_%ldt:~8,6%
 | 
				
			||||||
 | 
					COPY /B /V /Y prefs.js "prefs-backup-%ldt%.js"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CALL :message "Cleaning prefs.js..."
 | 
					CALL :message "Cleaning prefs.js..."
 | 
				
			||||||
CALL :cleanup
 | 
					CALL :cleanup
 | 
				
			||||||
CALL :message "All done!"
 | 
					CALL :message "All done!"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,10 +3,10 @@ TITLE arkenfox user.js updater
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
REM ## arkenfox user.js updater for Windows
 | 
					REM ## arkenfox user.js updater for Windows
 | 
				
			||||||
REM ## author: @claustromaniac
 | 
					REM ## author: @claustromaniac
 | 
				
			||||||
REM ## version: 4.16
 | 
					REM ## version: 4.17
 | 
				
			||||||
REM ## instructions: https://github.com/arkenfox/user.js/wiki/5.1-Updater-[Options]#-windows
 | 
					REM ## instructions: https://github.com/arkenfox/user.js/wiki/5.1-Updater-[Options]#-windows
 | 
				
			||||||
 | 
					
 | 
				
			||||||
SET v=4.15
 | 
					SET v=4.17
 | 
				
			||||||
 | 
					
 | 
				
			||||||
VERIFY ON
 | 
					VERIFY ON
 | 
				
			||||||
CD /D "%~dp0"
 | 
					CD /D "%~dp0"
 | 
				
			||||||
@@ -177,8 +177,9 @@ IF EXIST user.js.new (
 | 
				
			|||||||
		IF DEFINED _singlebackup (
 | 
							IF DEFINED _singlebackup (
 | 
				
			||||||
			MOVE /Y user.js user.js.bak >nul
 | 
								MOVE /Y user.js user.js.bak >nul
 | 
				
			||||||
		) ELSE (
 | 
							) ELSE (
 | 
				
			||||||
			SET "_time=!time: =0!"
 | 
								FOR /F "usebackq tokens=1,2 delims==" %%i IN (`wmic os get LocalDateTime /VALUE 2^>NUL`) DO IF '.%%i.'=='.LocalDateTime.' SET ldt=%%j
 | 
				
			||||||
			MOVE /Y user.js "user-backup-!date:/=-!_!_time::=.!.js" >nul
 | 
								SET ldt=%ldt:~0,8%_%ldt:~8,6%
 | 
				
			||||||
 | 
								MOVE /Y user.js "user-backup-%ldt%.js" >nul
 | 
				
			||||||
		)
 | 
							)
 | 
				
			||||||
		REN user.js.new user.js
 | 
							REN user.js.new user.js
 | 
				
			||||||
		CALL :message "Update complete."
 | 
							CALL :message "Update complete."
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user