Skip to content

Commit 912d43e

Browse files
committed
tweaks to roadmap
1 parent 0a78880 commit 912d43e

File tree

2 files changed

+12
-21
lines changed

2 files changed

+12
-21
lines changed

docs/roadmap.md

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
# Roadmap
22

3-
Thanks go to all you [sponsors](sponsor.md#sponsor-with-stripe-or-paypal) it's your support that lets us continue to improve TRMM.
3+
This roadmap provides a directional view of upcoming work. It is not exhaustive, and scope, sequencing, and timing may change. We also ship fixes and enhancements continuously in parallel with the items listed below.
44

55
<div class="roadmap-grid">
66
<div class="roadmap-section">
77
<h2>Next Release</h2>
88
<ul>
9-
<li><a href="https://github.com/amidaware/tacticalrmm/issues/2269">Policy Agent Exclusions Not Honored When Policy Applied to Site</a></li>
9+
1010
<li><a href="https://github.com/amidaware/tacticalrmm/issues/846">Add Scheduled Reporting</a></li>
11+
<li><a href="https://github.com/amidaware/tacticalrmm/issues/1973">Uninstall Software</a></li>
12+
<li><a href="https://github.com/amidaware/tacticalrmm/issues/2269">Policy Agent Exclusions Not Honored When Policy Applied to Site</a></li>
1113
<li><a href="https://github.com/amidaware/tacticalrmm/issues/2231">Mesh File Download delay or Failure</a></li>
1214
<li><a href="https://github.com/amidaware/tacticalrmm/issues/2265">usernames with spaces bug</a></li>
1315
</ul>
1416
</div>
1517

16-
<div class="roadmap-section">
17-
<h2>Following Release</h2>
18-
<ul>
19-
<li><a href="https://github.com/amidaware/tacticalrmm/issues/1188">Windows Update Rework</a> - Complete overhaul of the Windows Update management system for better reliability and performance.</li>
20-
</ul>
21-
</div>
22-
2318
<div class="roadmap-section">
2419
<h2>Future Releases</h2>
2520
<ul>
2621
<li><a href="https://github.com/amidaware/tacticalrmm/issues/463">White Labeling</a> - Comprehensive white labeling solution allowing full customization of branding and UI elements.</li>
22+
<li><a href="https://github.com/amidaware/tacticalrmm/issues/1188">Windows Update Rework</a> - Complete overhaul of the Windows Update management system for better reliability and performance.</li>
23+
<li><a href="https://github.com/amidaware/tacticalrmm/issues/653">Tagging/Groups </a></li>
24+
<li><a href="https://github.com/amidaware/tacticalrmm/issues/1452">Background Registry Editor</a></li>
2725
</ul>
2826
</div>
2927
</div>
@@ -78,22 +76,18 @@ document.addEventListener('DOMContentLoaded', function() {
7876
if (dashIndex > -1) {
7977
// Use custom description provided after the dash
8078
description = listItemText.substring(dashIndex + 3).trim();
81-
console.log('Using custom description:', description);
8279
} else if (issue.body && issue.body.trim()) {
8380
// Auto-extract from GitHub issue
8481
const body = issue.body.trim();
8582

86-
console.log('Issue body:', body); // Debug log
8783

8884
// Look for "Describe the bug" section with more flexible regex
8985
const bugDescMatch = body.match(/Describe the bug\s*\r?\n([^]*?)(?:\r?\n\r?\n|$)/i);
9086

91-
console.log('Bug desc match:', bugDescMatch); // Debug log
92-
87+
9388
if (bugDescMatch && bugDescMatch[1]) {
9489
description = bugDescMatch[1].trim();
95-
console.log('Raw description:', description); // Debug log
96-
90+
9791
// Take first sentence or up to 200 chars
9892
const firstSentence = description.split(/[.!?]+/)[0];
9993
if (firstSentence && firstSentence.length > 20) {
@@ -141,7 +135,6 @@ document.addEventListener('DOMContentLoaded', function() {
141135

142136
// Remove markdown formatting for display
143137
description = description.replace(/[#*`\[\]]/g, '').replace(/\s+/g, ' ').trim();
144-
console.log('Final description:', description); // Debug log
145138
}
146139

147140
// Get reactions and comments
@@ -170,10 +163,8 @@ document.addEventListener('DOMContentLoaded', function() {
170163
li.appendChild(issueBox);
171164
}
172165
} else {
173-
console.log('Failed to fetch issue:', response.status, response.statusText);
174166
}
175167
} catch (error) {
176-
console.log('Error fetching issue data for:', url, error);
177168
}
178169
}
179170
});
@@ -184,7 +175,7 @@ document.addEventListener('DOMContentLoaded', function() {
184175
/* Create a grid layout for release sections */
185176
.roadmap-grid {
186177
display: grid;
187-
grid-template-columns: 1fr 1fr 1fr;
178+
grid-template-columns: 1fr 1fr;
188179
gap: 0.25rem; /* Reduced from 0.5rem */
189180
margin-top: 0.5rem; /* Reduced from 1rem */
190181
}

docs/stylesheets/extra.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* Maximum space for text block */
22
.md-grid {
3-
max-width: 100% !important; /* Changed from 75% to 100% for full width */
4-
margin: 0 !important; /* Remove default margins */
3+
max-width: 80% !important; /* Changed from 75% to 100% for full width */
4+
/* margin: 0 !important; /* Remove default margins */
55
}
66

77
.md-header {

0 commit comments

Comments
 (0)