This repository tracks bugs and issues for dskt.cc and its related services. It contains a record of both known and patched bugs, along with their statuses and resolutions.
bugs/
├── .github/
│ └── ISSUE_TEMPLATE/
│ ├── bug_report.yml
│ └── security_report.yml
├── docs/
│ ├── CONTRIBUTING.md
│ ├── SECURITY.md
│ └── JSON_SCHEMA.md
├── patched.json
├── known.json
└── LICENSE
Before submitting a bug report:
- Check if the bug is already reported in known.json
- Check if it was recently fixed in patched.json
- Use the bug report template when creating a new issue
- Critical: Application crashes, data loss, security vulnerabilities
- High: Major feature broken, significant user impact
- Medium: Feature partially broken, moderate user impact
- Low: Minor issues, visual bugs, minimal impact
{
"bugs": [
{
"id": "BUG-XXX",
"title": "Bug Title",
"description": "Detailed description of the bug",
"severity": "critical | high | medium | low",
"reportedBy": "GitHub Username",
"dateReported": "YYYY-MM-DD",
"status": "investigating | confirmed | in-progress",
"assignedTo": ["username"],
"affected": ["component1", "component2"],
"type": "bug | security | enhancement",
"component": "affected component"
}
],
"metadata": {
"lastUpdated": "YYYY-MM-DD",
"repository": "dskt-cc/dskt.cc",
"totalActiveBugs": 0
}
}
{
"bugs": [
{
"id": "BUG-XXX",
"title": "Bug Title",
"description": "Detailed description of the bug",
"severity": "critical | high | medium | low",
"reportedBy": "GitHub Username",
"dateReported": "YYYY-MM-DD",
"dateFixed": "YYYY-MM-DD",
"fixedBy": ["username"],
"fixedIn": "version or branch",
"affected": ["component1", "component2"],
"commits": ["commit hash"],
"pullRequest": "PR number"
}
],
"metadata": {
"lastUpdated": "YYYY-MM-DD",
"repository": "dskt-cc/dskt.cc",
"totalFixed": 0
}
}
For security-related issues, please follow our security policy. Do not create public issues for security vulnerabilities.
See CONTRIBUTING.md for guidelines on:
- Creating bug reports
- Updating bug statuses
- JSON file maintenance
- Pull request process
MIT License - see LICENSE