mirror of
https://github.com/Enne2/win9xman.git
synced 2026-09-22 11:46:29 +00:00
- Removed win95_launcher.sh script and replaced it with a new Python application (win9xman.py) for better functionality and user experience. - Added a new assets directory creation script (create_assets_dir.sh) to ensure necessary directories are set up. - Created a default DOSBox-X configuration file (dosbox.conf) and a template for future configurations (dosbox_template.conf). - Added templates for autoexec configurations for Windows 95 and 98. - Updated requirements.txt to indicate no external dependencies beyond the Python standard library. - Implemented various features in the GUI including HDD image creation, ISO mounting, snapshot management, and settings configuration. - Enhanced user interaction with progress dialogs and confirmation prompts for critical actions.
65 lines
590 B
Plaintext
65 lines
590 B
Plaintext
# Windows 9x Manager .gitignore
|
|
|
|
# Disk images
|
|
*.img
|
|
*.vhd
|
|
*.vdi
|
|
*.vmdk
|
|
|
|
# ISO files
|
|
*.iso
|
|
|
|
# Snapshots
|
|
snapshots/*
|
|
snapshots_win95/*
|
|
|
|
# Generated/temporary config files
|
|
temp_dosbox.conf
|
|
|
|
# Backup files
|
|
*.bak
|
|
*~
|
|
*.old
|
|
*.backup
|
|
|
|
# Log files
|
|
*.log
|
|
*.log.*
|
|
|
|
# Windows system files
|
|
win98_drive/*
|
|
win95_drive/*
|
|
|
|
# Python specific
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
venv/
|
|
.venv/
|
|
.env/
|
|
.python-version
|
|
|
|
# Editor specific files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|