-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.py
More file actions
35 lines (31 loc) · 1.01 KB
/
version.py
File metadata and controls
35 lines (31 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""
Version information for File Organizer + Renamer
"""
__version__ = '1.0.0'
__author__ = 'File Organizer + Renamer Project'
__description__ = 'A safety-first file organization tool'
__license__ = 'MIT'
# Version history
VERSION_INFO = {
'1.0.0': {
'release_date': '2026-02-01',
'features': [
'File categorization by extension',
'Smart file renaming (lowercase, underscores)',
'Preview mode for safe planning',
'Apply mode with user confirmation',
'Undo functionality with JSON logging',
'No-overwrite conflict resolution',
'Comprehensive error handling',
'CLI interface with multiple modes',
'Offline operation (no external services)',
'Cross-platform support (Windows optimized)'
]
}
}
def get_version():
"""Get current version string"""
return __version__
def get_version_info():
"""Get detailed version information"""
return VERSION_INFO.get(__version__, {})