1 using Microsoft.EntityFrameworkCore;
2 using Microsoft.Extensions.Logging;
4 using System.Collections.Generic;
8 using System.Threading.Tasks;
21 public Task OnNewerDmb
26 return newerDmbTcs.Task;
31 public bool DmbAvailable => nextDmbProvider != null;
87 this.databaseContextFactory = databaseContextFactory ??
throw new ArgumentNullException(nameof(databaseContextFactory));
88 this.ioManager = ioManager ??
throw new ArgumentNullException(nameof(ioManager));
89 this.logger = logger ??
throw new ArgumentNullException(nameof(logger));
90 this.instance = instance ??
throw new ArgumentNullException(nameof(instance));
92 cleanupTask = Task.CompletedTask;
93 newerDmbTcs =
new TaskCompletionSource<object>();
94 cleanupCts =
new CancellationTokenSource();
95 jobLockCounts =
new Dictionary<long, int>();
99 public void Dispose() => cleanupCts.Dispose();
107 async Task HandleCleanup()
109 var deleteJob = ioManager.DeleteDirectory(job.
DirectoryName.ToString(), cleanupCts.Token);
113 otherTask = cleanupTask;
114 await Task.WhenAll(otherTask, deleteJob).ConfigureAwait(
false);
118 if (!jobLockCounts.TryGetValue(job.
Id, out var currentVal) || currentVal == 1)
120 jobLockCounts.Remove(job.
Id);
121 logger.LogDebug(
"Cleaning lock-free compile job {0} => {1}", job.
Id, job.
DirectoryName);
122 cleanupTask = HandleCleanup();
126 var decremented = --jobLockCounts[job.
Id];
127 logger.LogTrace(
"Compile job {0} lock count now: {1}", job.
Id, decremented);
135 throw new ArgumentNullException(nameof(job));
137 var newProvider = await FromCompileJob(job, cancellationToken).ConfigureAwait(
false);
138 if (newProvider == null)
142 nextDmbProvider?.Dispose();
143 nextDmbProvider = newProvider;
146 var temp = newerDmbTcs;
147 newerDmbTcs =
new TaskCompletionSource<object>();
148 temp.SetResult(nextDmbProvider);
156 throw new InvalidOperationException(
"No .dmb available!");
158 throw new ArgumentOutOfRangeException(nameof(lockCount), lockCount,
"lockCount must be greater than or equal to 0!");
162 var incremented = jobLockCounts[jobId] += lockCount;
163 logger.LogTrace(
"Compile job {0} lock count now: {1}", jobId, incremented);
164 return nextDmbProvider;
169 public async Task
StartAsync(CancellationToken cancellationToken)
172 await databaseContextFactory.UseContext(async (db) =>
177 .Where(x => x.Job.Instance.Id == instance.Id)
178 .OrderByDescending(x => x.Job.StoppedAt)
179 .FirstOrDefaultAsync(cancellationToken)
180 .ConfigureAwait(
false);
182 .ConfigureAwait(
false);
186 await LoadCompileJob(cj, cancellationToken).ConfigureAwait(
false);
192 public async Task
StopAsync(CancellationToken cancellationToken)
194 using (cancellationToken.Register(() => cleanupCts.Cancel()))
195 await cleanupTask.ConfigureAwait(
false);
199 #pragma warning disable CA1506 // TODO: Decomplexify 202 if (compileJob == null)
203 throw new ArgumentNullException(nameof(compileJob));
206 logger.LogTrace(
"Loading compile job {0}...", compileJob.
Id);
207 await databaseContextFactory.UseContext(
208 async db => compileJob = await db
211 .Where(x => x.Id == compileJob.
Id)
212 .Include(x => x.Job).ThenInclude(x => x.StartedBy)
213 .Include(x => x.RevisionInformation).ThenInclude(x => x.PrimaryTestMerge).ThenInclude(x => x.MergedBy)
214 .Include(x => x.RevisionInformation).ThenInclude(x => x.ActiveTestMerges).ThenInclude(x => x.TestMerge).ThenInclude(x => x.MergedBy)
215 .FirstAsync(cancellationToken)
216 .ConfigureAwait(
false))
217 .ConfigureAwait(
false);
224 logger.LogTrace(
"Setting missing StoppedAt for CompileJob job...");
228 var providerSubmitted =
false;
232 if (providerSubmitted)
233 CleanJob(compileJob);
236 var newProvider =
new DmbProvider(compileJob, ioManager, CleanupAction);
239 const string LegacyADirectoryName =
"A";
240 const string LegacyBDirectoryName =
"B";
242 var dmbExistsAtRoot = await ioManager.FileExists(
243 ioManager.ConcatPath(
244 newProvider.Directory,
245 newProvider.DmbName),
247 .ConfigureAwait(
false);
249 if (!dmbExistsAtRoot)
251 logger.LogTrace(
"Didn't find .dmb at game directory root, checking A/B dirs...");
252 var primaryCheckTask = ioManager.FileExists(
253 ioManager.ConcatPath(
254 newProvider.Directory,
255 LegacyADirectoryName,
256 newProvider.DmbName),
258 var secondaryCheckTask = ioManager.FileExists(
259 ioManager.ConcatPath(
260 newProvider.Directory,
261 LegacyBDirectoryName,
262 newProvider.DmbName),
265 if (!(await primaryCheckTask.ConfigureAwait(
false) && await secondaryCheckTask.ConfigureAwait(
false)))
267 logger.LogWarning(
"Error loading compile job, .dmb missing!");
273 logger.LogDebug(
"Creating legacy two folder .dmb provider targeting {0} directory...", LegacyADirectoryName);
274 newProvider =
new DmbProvider(compileJob, ioManager, CleanupAction, Path.DirectorySeparatorChar + LegacyADirectoryName);
279 if (!jobLockCounts.TryGetValue(compileJob.
Id, out
int value))
282 jobLockCounts.Add(compileJob.
Id, 1);
285 jobLockCounts[compileJob.
Id] = ++value;
287 logger.LogTrace(
"Compile job {0} lock count now: {1}", compileJob.
Id, value);
289 providerSubmitted =
true;
295 if (!providerSubmitted)
296 newProvider.Dispose();
299 #pragma warning restore CA1506 302 #pragma warning disable CA1506 // TODO: Decomplexify 305 List<long> jobIdsToSkip;
309 jobIdsToSkip = jobLockCounts.Select(x => x.Key).ToList();
311 List<string> jobUidsToNotErase = null;
314 await databaseContextFactory.UseContext(async db =>
316 jobUidsToNotErase = (await db
320 x => x.Job.Instance.Id == instance.Id
321 && jobIdsToSkip.Contains(x.Id))
322 .Select(x => x.DirectoryName.Value)
323 .ToListAsync(cancellationToken)
324 .ConfigureAwait(
false))
325 .Select(x => x.ToString())
327 }).ConfigureAwait(
false);
331 logger.LogTrace(
"We will not clean the following directories: {0}", String.Join(
", ", jobUidsToNotErase));
334 var gameDirectory = ioManager.ResolvePath();
335 await ioManager.CreateDirectory(gameDirectory, cancellationToken).ConfigureAwait(
false);
336 var directories = await ioManager.GetDirectories(gameDirectory, cancellationToken).ConfigureAwait(
false);
338 var tasks = directories.Select(async x =>
340 var nameOnly = ioManager.GetFileName(x);
341 if (jobUidsToNotErase.Contains(nameOnly))
343 logger.LogDebug(
"Cleaning unused game folder: {0}...", nameOnly);
347 await ioManager.DeleteDirectory(x, cancellationToken).ConfigureAwait(
false);
349 catch (OperationCanceledException)
355 logger.LogWarning(
"Error deleting directory {0}! Exception: {1}", x, e);
359 await Task.WhenAll(tasks).ConfigureAwait(
false);
361 #pragma warning restore CA1506 368 return LockNextDmb(0)?.CompileJob;
CompileJob CompileJob
The CompileJob of the .dmb
async Task StartAsync(CancellationToken cancellationToken)
IDmbProvider nextDmbProvider
The latest DmbProvider
long Id
The ID of the entity.
@@ -104,7 +104,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
Factory for scoping usage of IDatabaseContexts. Meant for use by Components
-
async Task CleanUnusedCompileJobs(CancellationToken cancellationToken)
Deletes all compile jobs that are inactive in the Game folder.
+
async Task CleanUnusedCompileJobs(CancellationToken cancellationToken)
Deletes all compile jobs that are inactive in the Game folder.
DateTimeOffset StoppedAt
When the Job stopped
void CleanJob(CompileJob job)
Delete the Api.Models.Internal.CompileJob.DirectoryName of job
Job Job
See Api.Models.CompileJob.Job
@@ -113,7 +113,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
readonly IDictionary< long, int > jobLockCounts
Map of CompileJob.JobIds to locks on them.
readonly IIOManager ioManager
The IIOManager for the DmbFactory
readonly CancellationTokenSource cleanupCts
The CancellationTokenSource for cleanupTask
-
CompileJob LatestCompileJob()
Gets the latest CompileJob.
+
CompileJob LatestCompileJob()
Gets the latest CompileJob.
A IDmbProvider that uses symlinks.
Factory for IDmbProviders
diff --git a/_dmb_provider_8cs.html b/_dmb_provider_8cs.html
index 1797146096..eaf24f2a18 100644
--- a/_dmb_provider_8cs.html
+++ b/_dmb_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dmb_provider_8cs_source.html b/_dmb_provider_8cs_source.html
index 9b8017455b..0528e8d173 100644
--- a/_dmb_provider_8cs_source.html
+++ b/_dmb_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_8cs.html b/_dream_daemon_8cs.html
index 1c744fe335..a5cf24aa34 100644
--- a/_dream_daemon_8cs.html
+++ b/_dream_daemon_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_8cs_source.html b/_dream_daemon_8cs_source.html
index 4cd641c420..8d1a0f3e0e 100644
--- a/_dream_daemon_8cs_source.html
+++ b/_dream_daemon_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_client_8cs.html b/_dream_daemon_client_8cs.html
index 632f78b264..eacc0718c5 100644
--- a/_dream_daemon_client_8cs.html
+++ b/_dream_daemon_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_client_8cs_source.html b/_dream_daemon_client_8cs_source.html
index 1da317fee4..2d559874b3 100644
--- a/_dream_daemon_client_8cs_source.html
+++ b/_dream_daemon_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_controller_8cs.html b/_dream_daemon_controller_8cs.html
index f7aef7b5e3..7dff7d9e84 100644
--- a/_dream_daemon_controller_8cs.html
+++ b/_dream_daemon_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_controller_8cs_source.html b/_dream_daemon_controller_8cs_source.html
index 7428a2ffb0..db3d82de08 100644
--- a/_dream_daemon_controller_8cs_source.html
+++ b/_dream_daemon_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_launch_parameters_8cs.html b/_dream_daemon_launch_parameters_8cs.html
index 0fea0cd0a2..fb77b23fc5 100644
--- a/_dream_daemon_launch_parameters_8cs.html
+++ b/_dream_daemon_launch_parameters_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_launch_parameters_8cs_source.html b/_dream_daemon_launch_parameters_8cs_source.html
index 90b58159ec..1c50a879a7 100644
--- a/_dream_daemon_launch_parameters_8cs_source.html
+++ b/_dream_daemon_launch_parameters_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_rights_8cs.html b/_dream_daemon_rights_8cs.html
index 765af69dca..4c897d327d 100644
--- a/_dream_daemon_rights_8cs.html
+++ b/_dream_daemon_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_rights_8cs_source.html b/_dream_daemon_rights_8cs_source.html
index 3d3b89fb03..d8485b3579 100644
--- a/_dream_daemon_rights_8cs_source.html
+++ b/_dream_daemon_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_security_8cs.html b/_dream_daemon_security_8cs.html
index f5985e37ed..742ed5c718 100644
--- a/_dream_daemon_security_8cs.html
+++ b/_dream_daemon_security_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_daemon_security_8cs_source.html b/_dream_daemon_security_8cs_source.html
index b9fcb64db9..8dd230ad07 100644
--- a/_dream_daemon_security_8cs_source.html
+++ b/_dream_daemon_security_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_client_8cs.html b/_dream_maker_client_8cs.html
index 2ed207dd8b..aaf4567b3c 100644
--- a/_dream_maker_client_8cs.html
+++ b/_dream_maker_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_client_8cs_source.html b/_dream_maker_client_8cs_source.html
index 03874369ec..3ee1f2d574 100644
--- a/_dream_maker_client_8cs_source.html
+++ b/_dream_maker_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_controller_8cs.html b/_dream_maker_controller_8cs.html
index 203bbba937..53edb1b2b4 100644
--- a/_dream_maker_controller_8cs.html
+++ b/_dream_maker_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_controller_8cs_source.html b/_dream_maker_controller_8cs_source.html
index 0ead59199b..8eae5e8da0 100644
--- a/_dream_maker_controller_8cs_source.html
+++ b/_dream_maker_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_rights_8cs.html b/_dream_maker_rights_8cs.html
index fe919e7c8f..ea52339b77 100644
--- a/_dream_maker_rights_8cs.html
+++ b/_dream_maker_rights_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_rights_8cs_source.html b/_dream_maker_rights_8cs_source.html
index b4cba9ccb5..cb0df07f14 100644
--- a/_dream_maker_rights_8cs_source.html
+++ b/_dream_maker_rights_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_settings_8cs.html b/_dream_maker_settings_8cs.html
index 6cf57aa300..94810c088f 100644
--- a/_dream_maker_settings_8cs.html
+++ b/_dream_maker_settings_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_dream_maker_settings_8cs_source.html b/_dream_maker_settings_8cs_source.html
index d383d617ec..d1f5077940 100644
--- a/_dream_maker_settings_8cs_source.html
+++ b/_dream_maker_settings_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_entity_id_8cs.html b/_entity_id_8cs.html
index 598c9f8d86..e6e536f222 100644
--- a/_entity_id_8cs.html
+++ b/_entity_id_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_entity_id_8cs_source.html b/_entity_id_8cs_source.html
index 61343e7080..20b5ecf861 100644
--- a/_entity_id_8cs_source.html
+++ b/_entity_id_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_code_8cs.html b/_error_code_8cs.html
index 1212fcfa72..1ec09bb721 100644
--- a/_error_code_8cs.html
+++ b/_error_code_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_code_8cs_source.html b/_error_code_8cs_source.html
index 40a71912f3..54e917a45a 100644
--- a/_error_code_8cs_source.html
+++ b/_error_code_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_code_extensions_8cs.html b/_error_code_extensions_8cs.html
index 0fed9352a7..32e08f364f 100644
--- a/_error_code_extensions_8cs.html
+++ b/_error_code_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_code_extensions_8cs_source.html b/_error_code_extensions_8cs_source.html
index 6c752acbf0..3458e068c4 100644
--- a/_error_code_extensions_8cs_source.html
+++ b/_error_code_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_message_8cs.html b/_error_message_8cs.html
index ef3eb1842e..93e844098a 100644
--- a/_error_message_8cs.html
+++ b/_error_message_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_error_message_8cs_source.html b/_error_message_8cs_source.html
index 15b2821db5..bb27db1be8 100644
--- a/_error_message_8cs_source.html
+++ b/_error_message_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_consumer_8cs.html b/_event_consumer_8cs.html
index 105a41ef1d..351c72e03b 100644
--- a/_event_consumer_8cs.html
+++ b/_event_consumer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_consumer_8cs_source.html b/_event_consumer_8cs_source.html
index 5afc4016a8..33f85e18d2 100644
--- a/_event_consumer_8cs_source.html
+++ b/_event_consumer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_notification_8cs.html b/_event_notification_8cs.html
index 9a861ad3dd..839da3beea 100644
--- a/_event_notification_8cs.html
+++ b/_event_notification_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_notification_8cs_source.html b/_event_notification_8cs_source.html
index 1f01668a13..7cf28223a3 100644
--- a/_event_notification_8cs_source.html
+++ b/_event_notification_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_script_attribute_8cs.html b/_event_script_attribute_8cs.html
index c1f6b80b6c..3e6415942c 100644
--- a/_event_script_attribute_8cs.html
+++ b/_event_script_attribute_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_script_attribute_8cs_source.html b/_event_script_attribute_8cs_source.html
index 3aaaf2b816..e99b1c8a20 100644
--- a/_event_script_attribute_8cs_source.html
+++ b/_event_script_attribute_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_type_8cs.html b/_event_type_8cs.html
index f0afd1a723..97e873cfa7 100644
--- a/_event_type_8cs.html
+++ b/_event_type_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_event_type_8cs_source.html b/_event_type_8cs_source.html
index 28172cf222..59598441f2 100644
--- a/_event_type_8cs_source.html
+++ b/_event_type_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_features_8dox.html b/_features_8dox.html
index c422af5676..6670940170 100644
--- a/_features_8dox.html
+++ b/_features_8dox.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_file_logging_configuration_8cs.html b/_file_logging_configuration_8cs.html
index f8e2795555..7263b64ff4 100644
--- a/_file_logging_configuration_8cs.html
+++ b/_file_logging_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_file_logging_configuration_8cs_source.html b/_file_logging_configuration_8cs_source.html
index 35cca84eee..c02640de73 100644
--- a/_file_logging_configuration_8cs_source.html
+++ b/_file_logging_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_general_configuration_8cs.html b/_general_configuration_8cs.html
index b861ce5c74..2826b1ce85 100644
--- a/_general_configuration_8cs.html
+++ b/_general_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_general_configuration_8cs_source.html b/_general_configuration_8cs_source.html
index 711863f393..d3a278b8fd 100644
--- a/_general_configuration_8cs_source.html
+++ b/_general_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_git_hub_client_factory_8cs.html b/_git_hub_client_factory_8cs.html
index fb473b3fd3..683cedc2cc 100644
--- a/_git_hub_client_factory_8cs.html
+++ b/_git_hub_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_git_hub_client_factory_8cs_source.html b/_git_hub_client_factory_8cs_source.html
index 19482de467..cfa3438e4b 100644
--- a/_git_hub_client_factory_8cs_source.html
+++ b/_git_hub_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_global_suppressions_8cs.html b/_global_suppressions_8cs.html
index 083ced67a3..f388c858f1 100644
--- a/_global_suppressions_8cs.html
+++ b/_global_suppressions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_global_suppressions_8cs_source.html b/_global_suppressions_8cs_source.html
index d5c45614aa..fd826554e3 100644
--- a/_global_suppressions_8cs_source.html
+++ b/_global_suppressions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_header_types_8cs.html b/_header_types_8cs.html
index f398989e4c..b44b766aa3 100644
--- a/_header_types_8cs.html
+++ b/_header_types_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_header_types_8cs_source.html b/_header_types_8cs_source.html
index 01c498183f..f62fb8d08d 100644
--- a/_header_types_8cs_source.html
+++ b/_header_types_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_headers_exception_8cs.html b/_headers_exception_8cs.html
index 6ffee70668..e56fd34909 100644
--- a/_headers_exception_8cs.html
+++ b/_headers_exception_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_headers_exception_8cs_source.html b/_headers_exception_8cs_source.html
index 4c65d6eddb..6d43023f42 100644
--- a/_headers_exception_8cs_source.html
+++ b/_headers_exception_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_home_controller_8cs.html b/_home_controller_8cs.html
index d62ad02c09..086cb2d090 100644
--- a/_home_controller_8cs.html
+++ b/_home_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_home_controller_8cs_source.html b/_home_controller_8cs_source.html
index f630861c80..76f646cb6e 100644
--- a/_home_controller_8cs_source.html
+++ b/_home_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_host_builder_extensions_8cs.html b/_host_builder_extensions_8cs.html
index 6c45a46f91..36efd436c9 100644
--- a/_host_builder_extensions_8cs.html
+++ b/_host_builder_extensions_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_host_builder_extensions_8cs_source.html b/_host_builder_extensions_8cs_source.html
index 06853181c4..92f1632fcd 100644
--- a/_host_builder_extensions_8cs_source.html
+++ b/_host_builder_extensions_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_http_client_8cs.html b/_http_client_8cs.html
index cf99a8bd0c..641d491653 100644
--- a/_http_client_8cs.html
+++ b/_http_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_http_client_8cs_source.html b/_http_client_8cs_source.html
index 9004b47126..b8481a7e17 100644
--- a/_http_client_8cs_source.html
+++ b/_http_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_administration_client_8cs.html b/_i_administration_client_8cs.html
index ed8842bc33..76c9545cf2 100644
--- a/_i_administration_client_8cs.html
+++ b/_i_administration_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_administration_client_8cs_source.html b/_i_administration_client_8cs_source.html
index 95ffd212ec..55656c7aa1 100644
--- a/_i_administration_client_8cs_source.html
+++ b/_i_administration_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_api_client_8cs.html b/_i_api_client_8cs.html
index 1dfd8d2daa..da3c60b1eb 100644
--- a/_i_api_client_8cs.html
+++ b/_i_api_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_api_client_8cs_source.html b/_i_api_client_8cs_source.html
index 37f8126294..265b151054 100644
--- a/_i_api_client_8cs_source.html
+++ b/_i_api_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_api_client_factory_8cs.html b/_i_api_client_factory_8cs.html
index 299dc5c48b..692b36257c 100644
--- a/_i_api_client_factory_8cs.html
+++ b/_i_api_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_api_client_factory_8cs_source.html b/_i_api_client_factory_8cs_source.html
index 4ee6eb5c7d..9c6bc33036 100644
--- a/_i_api_client_factory_8cs_source.html
+++ b/_i_api_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_assembly_information_provider_8cs.html b/_i_assembly_information_provider_8cs.html
index 6017eb0fca..6cd40d42ee 100644
--- a/_i_assembly_information_provider_8cs.html
+++ b/_i_assembly_information_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_assembly_information_provider_8cs_source.html b/_i_assembly_information_provider_8cs_source.html
index e6cb3360b1..0b0654a0fc 100644
--- a/_i_assembly_information_provider_8cs_source.html
+++ b/_i_assembly_information_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_async_delayer_8cs.html b/_i_async_delayer_8cs.html
index ae208763e2..7f0b7f0147 100644
--- a/_i_async_delayer_8cs.html
+++ b/_i_async_delayer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_async_delayer_8cs_source.html b/_i_async_delayer_8cs_source.html
index 36189b2037..1852292fff 100644
--- a/_i_async_delayer_8cs_source.html
+++ b/_i_async_delayer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_8cs.html b/_i_authentication_context_8cs.html
index 6b81610cbb..5d5c89eca7 100644
--- a/_i_authentication_context_8cs.html
+++ b/_i_authentication_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_8cs_source.html b/_i_authentication_context_8cs_source.html
index 0153e041b6..7d4add6589 100644
--- a/_i_authentication_context_8cs_source.html
+++ b/_i_authentication_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_factory_8cs.html b/_i_authentication_context_factory_8cs.html
index c998b760e0..0400ce5515 100644
--- a/_i_authentication_context_factory_8cs.html
+++ b/_i_authentication_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_authentication_context_factory_8cs_source.html b/_i_authentication_context_factory_8cs_source.html
index 45363ccdcf..1389f2a839 100644
--- a/_i_authentication_context_factory_8cs_source.html
+++ b/_i_authentication_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_dispatcher_8cs.html b/_i_bridge_dispatcher_8cs.html
index 25fd2435df..b7d5dbc192 100644
--- a/_i_bridge_dispatcher_8cs.html
+++ b/_i_bridge_dispatcher_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_dispatcher_8cs_source.html b/_i_bridge_dispatcher_8cs_source.html
index c96784b9a8..52b8379677 100644
--- a/_i_bridge_dispatcher_8cs_source.html
+++ b/_i_bridge_dispatcher_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_handler_8cs.html b/_i_bridge_handler_8cs.html
index c8c3d036d0..dea545cf15 100644
--- a/_i_bridge_handler_8cs.html
+++ b/_i_bridge_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_handler_8cs_source.html b/_i_bridge_handler_8cs_source.html
index 3cbb705d5d..59d9a7eef9 100644
--- a/_i_bridge_handler_8cs_source.html
+++ b/_i_bridge_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registrar_8cs.html b/_i_bridge_registrar_8cs.html
index ab2a002c74..cdeee79f01 100644
--- a/_i_bridge_registrar_8cs.html
+++ b/_i_bridge_registrar_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registrar_8cs_source.html b/_i_bridge_registrar_8cs_source.html
index 8d347a1ff2..77c2834600 100644
--- a/_i_bridge_registrar_8cs_source.html
+++ b/_i_bridge_registrar_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registration_8cs.html b/_i_bridge_registration_8cs.html
index 428e9d9c2b..0cd3690c6b 100644
--- a/_i_bridge_registration_8cs.html
+++ b/_i_bridge_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_bridge_registration_8cs_source.html b/_i_bridge_registration_8cs_source.html
index 67b4622461..5de1d4772b 100644
--- a/_i_bridge_registration_8cs_source.html
+++ b/_i_bridge_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_client_8cs.html b/_i_byond_client_8cs.html
index 66da0f6951..1856fe82bd 100644
--- a/_i_byond_client_8cs.html
+++ b/_i_byond_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_client_8cs_source.html b/_i_byond_client_8cs_source.html
index 4e591cb9ed..dac6287ceb 100644
--- a/_i_byond_client_8cs_source.html
+++ b/_i_byond_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_executable_lock_8cs.html b/_i_byond_executable_lock_8cs.html
index e92a418989..413f6d082c 100644
--- a/_i_byond_executable_lock_8cs.html
+++ b/_i_byond_executable_lock_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_executable_lock_8cs_source.html b/_i_byond_executable_lock_8cs_source.html
index d25b14b37c..5f96f8c368 100644
--- a/_i_byond_executable_lock_8cs_source.html
+++ b/_i_byond_executable_lock_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_installer_8cs.html b/_i_byond_installer_8cs.html
index 0668fd6c48..55cc57ac23 100644
--- a/_i_byond_installer_8cs.html
+++ b/_i_byond_installer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_installer_8cs_source.html b/_i_byond_installer_8cs_source.html
index 3227501b2d..1cda0d8d73 100644
--- a/_i_byond_installer_8cs_source.html
+++ b/_i_byond_installer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_manager_8cs.html b/_i_byond_manager_8cs.html
index 7437efd5e3..0ef05502fc 100644
--- a/_i_byond_manager_8cs.html
+++ b/_i_byond_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_byond_manager_8cs_source.html b/_i_byond_manager_8cs_source.html
index b7af5b09d9..6cc15389ed 100644
--- a/_i_byond_manager_8cs_source.html
+++ b/_i_byond_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_channel_sink_8cs.html b/_i_channel_sink_8cs.html
index 1fc0c1db2e..9440db5714 100644
--- a/_i_channel_sink_8cs.html
+++ b/_i_channel_sink_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_channel_sink_8cs_source.html b/_i_channel_sink_8cs_source.html
index ca8448b273..268508d580 100644
--- a/_i_channel_sink_8cs_source.html
+++ b/_i_channel_sink_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_bots_client_8cs.html b/_i_chat_bots_client_8cs.html
index 02058a5909..127ec09ff0 100644
--- a/_i_chat_bots_client_8cs.html
+++ b/_i_chat_bots_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_bots_client_8cs_source.html b/_i_chat_bots_client_8cs_source.html
index ece9a6803e..362334a666 100644
--- a/_i_chat_bots_client_8cs_source.html
+++ b/_i_chat_bots_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_8cs.html b/_i_chat_manager_8cs.html
index bdb9d2bce3..aed68e68c1 100644
--- a/_i_chat_manager_8cs.html
+++ b/_i_chat_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_8cs_source.html b/_i_chat_manager_8cs_source.html
index 0b32ff1464..4467d1f5f1 100644
--- a/_i_chat_manager_8cs_source.html
+++ b/_i_chat_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_factory_8cs.html b/_i_chat_manager_factory_8cs.html
index fa316f537c..05903cba7e 100644
--- a/_i_chat_manager_factory_8cs.html
+++ b/_i_chat_manager_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_manager_factory_8cs_source.html b/_i_chat_manager_factory_8cs_source.html
index cd1f8f7bcf..322a77a754 100644
--- a/_i_chat_manager_factory_8cs_source.html
+++ b/_i_chat_manager_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_tracking_context_8cs.html b/_i_chat_tracking_context_8cs.html
index 3848246b9d..8db798e16a 100644
--- a/_i_chat_tracking_context_8cs.html
+++ b/_i_chat_tracking_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_chat_tracking_context_8cs_source.html b/_i_chat_tracking_context_8cs_source.html
index 9f87d11dd0..1ebccb3df7 100644
--- a/_i_chat_tracking_context_8cs_source.html
+++ b/_i_chat_tracking_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_claims_injector_8cs.html b/_i_claims_injector_8cs.html
index 929973cffb..429ee74022 100644
--- a/_i_claims_injector_8cs.html
+++ b/_i_claims_injector_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_claims_injector_8cs_source.html b/_i_claims_injector_8cs_source.html
index 6aa2f8d73b..f8ee59da69 100644
--- a/_i_claims_injector_8cs_source.html
+++ b/_i_claims_injector_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_command_8cs.html b/_i_command_8cs.html
index fb09bd2551..0ee22cca43 100644
--- a/_i_command_8cs.html
+++ b/_i_command_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_command_8cs_source.html b/_i_command_8cs_source.html
index d87c51084a..906aae3906 100644
--- a/_i_command_8cs_source.html
+++ b/_i_command_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_command_factory_8cs.html b/_i_command_factory_8cs.html
index 3b18ef0e5d..9256257fa6 100644
--- a/_i_command_factory_8cs.html
+++ b/_i_command_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_command_factory_8cs_source.html b/_i_command_factory_8cs_source.html
index 5923683748..0918bdbae9 100644
--- a/_i_command_factory_8cs_source.html
+++ b/_i_command_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_compile_job_sink_8cs.html b/_i_compile_job_sink_8cs.html
index 5d98d8410f..270de0019b 100644
--- a/_i_compile_job_sink_8cs.html
+++ b/_i_compile_job_sink_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_compile_job_sink_8cs_source.html b/_i_compile_job_sink_8cs_source.html
index 7eafa6776e..29367ab5d7 100644
--- a/_i_compile_job_sink_8cs_source.html
+++ b/_i_compile_job_sink_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_configuration_8cs.html b/_i_configuration_8cs.html
index 6f27e0e540..99add08e1c 100644
--- a/_i_configuration_8cs.html
+++ b/_i_configuration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_configuration_8cs_source.html b/_i_configuration_8cs_source.html
index fde280d8a5..e54e540f6d 100644
--- a/_i_configuration_8cs_source.html
+++ b/_i_configuration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_configuration_client_8cs.html b/_i_configuration_client_8cs.html
index 5a2fdd9ab7..f02c0a3086 100644
--- a/_i_configuration_client_8cs.html
+++ b/_i_configuration_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_configuration_client_8cs_source.html b/_i_configuration_client_8cs_source.html
index 38a00c8af4..15029beaaa 100644
--- a/_i_configuration_client_8cs_source.html
+++ b/_i_configuration_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_console_8cs.html b/_i_console_8cs.html
index cd175be57d..4782aaf717 100644
--- a/_i_console_8cs.html
+++ b/_i_console_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_console_8cs_source.html b/_i_console_8cs_source.html
index d1357b65d4..563cb7a5a2 100644
--- a/_i_console_8cs_source.html
+++ b/_i_console_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_credentials_provider_8cs.html b/_i_credentials_provider_8cs.html
index 57ed683840..a875a1147f 100644
--- a/_i_credentials_provider_8cs.html
+++ b/_i_credentials_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_credentials_provider_8cs_source.html b/_i_credentials_provider_8cs_source.html
index 47f55067e4..64528e968a 100644
--- a/_i_credentials_provider_8cs_source.html
+++ b/_i_credentials_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_cryptography_suite_8cs.html b/_i_cryptography_suite_8cs.html
index 281a5586a2..f5b086b050 100644
--- a/_i_cryptography_suite_8cs.html
+++ b/_i_cryptography_suite_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_cryptography_suite_8cs_source.html b/_i_cryptography_suite_8cs_source.html
index b7f8be98c5..5ca7aa8d68 100644
--- a/_i_cryptography_suite_8cs_source.html
+++ b/_i_cryptography_suite_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_custom_command_handler_8cs.html b/_i_custom_command_handler_8cs.html
index 5cd6202c7d..4924d89c52 100644
--- a/_i_custom_command_handler_8cs.html
+++ b/_i_custom_command_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_custom_command_handler_8cs_source.html b/_i_custom_command_handler_8cs_source.html
index 35988b7fa3..c7c95e1416 100644
--- a/_i_custom_command_handler_8cs_source.html
+++ b/_i_custom_command_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_collection_8cs.html b/_i_database_collection_8cs.html
index 8991cd18bb..a905f76135 100644
--- a/_i_database_collection_8cs.html
+++ b/_i_database_collection_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_collection_8cs_source.html b/_i_database_collection_8cs_source.html
index 253427d354..b435f03e92 100644
--- a/_i_database_collection_8cs_source.html
+++ b/_i_database_collection_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_connection_factory_8cs.html b/_i_database_connection_factory_8cs.html
index ddcedd4f1a..0f779eccb0 100644
--- a/_i_database_connection_factory_8cs.html
+++ b/_i_database_connection_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_connection_factory_8cs_source.html b/_i_database_connection_factory_8cs_source.html
index ff705913f1..719dec71cc 100644
--- a/_i_database_connection_factory_8cs_source.html
+++ b/_i_database_connection_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_context_8cs.html b/_i_database_context_8cs.html
index f7265b639f..06e6c8a85b 100644
--- a/_i_database_context_8cs.html
+++ b/_i_database_context_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_context_8cs_source.html b/_i_database_context_8cs_source.html
index 5847226455..d55c4376ab 100644
--- a/_i_database_context_8cs_source.html
+++ b/_i_database_context_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_context_factory_8cs.html b/_i_database_context_factory_8cs.html
index a2f3066c6c..21f52df2de 100644
--- a/_i_database_context_factory_8cs.html
+++ b/_i_database_context_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_context_factory_8cs_source.html b/_i_database_context_factory_8cs_source.html
index 83fdcf5773..79c887e8d5 100644
--- a/_i_database_context_factory_8cs_source.html
+++ b/_i_database_context_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_seeder_8cs.html b/_i_database_seeder_8cs.html
index 8b4ed2c639..731ccf8840 100644
--- a/_i_database_seeder_8cs.html
+++ b/_i_database_seeder_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_database_seeder_8cs_source.html b/_i_database_seeder_8cs_source.html
index 91aacba63d..1900926d7d 100644
--- a/_i_database_seeder_8cs_source.html
+++ b/_i_database_seeder_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dmb_factory_8cs.html b/_i_dmb_factory_8cs.html
index 302a180d93..9d5021db5b 100644
--- a/_i_dmb_factory_8cs.html
+++ b/_i_dmb_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dmb_factory_8cs_source.html b/_i_dmb_factory_8cs_source.html
index 9260e01be7..4473cfcff7 100644
--- a/_i_dmb_factory_8cs_source.html
+++ b/_i_dmb_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dmb_provider_8cs.html b/_i_dmb_provider_8cs.html
index cf348a2abd..13a5980345 100644
--- a/_i_dmb_provider_8cs.html
+++ b/_i_dmb_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dmb_provider_8cs_source.html b/_i_dmb_provider_8cs_source.html
index 9525e94377..e94190a497 100644
--- a/_i_dmb_provider_8cs_source.html
+++ b/_i_dmb_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_daemon_client_8cs.html b/_i_dream_daemon_client_8cs.html
index e7e7afacd1..cdd8a42b37 100644
--- a/_i_dream_daemon_client_8cs.html
+++ b/_i_dream_daemon_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_daemon_client_8cs_source.html b/_i_dream_daemon_client_8cs_source.html
index ce7e39658b..b35619d827 100644
--- a/_i_dream_daemon_client_8cs_source.html
+++ b/_i_dream_daemon_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_8cs.html b/_i_dream_maker_8cs.html
index 09d539cb43..dee3e35298 100644
--- a/_i_dream_maker_8cs.html
+++ b/_i_dream_maker_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_8cs_source.html b/_i_dream_maker_8cs_source.html
index cd76d9465d..b80fe41bf4 100644
--- a/_i_dream_maker_8cs_source.html
+++ b/_i_dream_maker_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_client_8cs.html b/_i_dream_maker_client_8cs.html
index ae748abd81..7b8c51b60d 100644
--- a/_i_dream_maker_client_8cs.html
+++ b/_i_dream_maker_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_dream_maker_client_8cs_source.html b/_i_dream_maker_client_8cs_source.html
index 8aa6e680b9..9ce81b7fb0 100644
--- a/_i_dream_maker_client_8cs_source.html
+++ b/_i_dream_maker_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_event_consumer_8cs.html b/_i_event_consumer_8cs.html
index 67d6c47dea..77cf33d7eb 100644
--- a/_i_event_consumer_8cs.html
+++ b/_i_event_consumer_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_event_consumer_8cs_source.html b/_i_event_consumer_8cs_source.html
index 25855995db..0e7081fff7 100644
--- a/_i_event_consumer_8cs_source.html
+++ b/_i_event_consumer_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_git_hub_client_factory_8cs.html b/_i_git_hub_client_factory_8cs.html
index 4159ac2dcc..b213bdb098 100644
--- a/_i_git_hub_client_factory_8cs.html
+++ b/_i_git_hub_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_git_hub_client_factory_8cs_source.html b/_i_git_hub_client_factory_8cs_source.html
index d1d10af62f..f1ea3c6bb0 100644
--- a/_i_git_hub_client_factory_8cs_source.html
+++ b/_i_git_hub_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_http_client_8cs.html b/_i_http_client_8cs.html
index ef755cd8f2..bd6b09cab2 100644
--- a/_i_http_client_8cs.html
+++ b/_i_http_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_http_client_8cs_source.html b/_i_http_client_8cs_source.html
index 94a9c81857..fc463949f3 100644
--- a/_i_http_client_8cs_source.html
+++ b/_i_http_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_i_o_manager_8cs.html b/_i_i_o_manager_8cs.html
index 3d77ce3f90..1162a8f6b0 100644
--- a/_i_i_o_manager_8cs.html
+++ b/_i_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_i_o_manager_8cs_source.html b/_i_i_o_manager_8cs_source.html
index 38f631340f..8f23d429b6 100644
--- a/_i_i_o_manager_8cs_source.html
+++ b/_i_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_identity_cache_8cs.html b/_i_identity_cache_8cs.html
index 8d65d1f6ec..09389017ae 100644
--- a/_i_identity_cache_8cs.html
+++ b/_i_identity_cache_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_identity_cache_8cs_source.html b/_i_identity_cache_8cs_source.html
index 10174911bb..12223b09e9 100644
--- a/_i_identity_cache_8cs_source.html
+++ b/_i_identity_cache_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_8cs.html b/_i_instance_8cs.html
index d77c3a41e8..4d17f554a3 100644
--- a/_i_instance_8cs.html
+++ b/_i_instance_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_8cs_source.html b/_i_instance_8cs_source.html
index 5e2a256bfd..b1d9eab74f 100644
--- a/_i_instance_8cs_source.html
+++ b/_i_instance_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_client_8cs.html b/_i_instance_client_8cs.html
index 2dc053b82b..1f2dc2565a 100644
--- a/_i_instance_client_8cs.html
+++ b/_i_instance_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_client_8cs_source.html b/_i_instance_client_8cs_source.html
index 636b31017b..8f3e1b21fc 100644
--- a/_i_instance_client_8cs_source.html
+++ b/_i_instance_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_factory_8cs.html b/_i_instance_factory_8cs.html
index 0d5cbf9644..1c07c4a5d7 100644
--- a/_i_instance_factory_8cs.html
+++ b/_i_instance_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_factory_8cs_source.html b/_i_instance_factory_8cs_source.html
index 313caaa87c..4c4b312f38 100644
--- a/_i_instance_factory_8cs_source.html
+++ b/_i_instance_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_8cs.html b/_i_instance_manager_8cs.html
index 01bf4305bc..b3dc8a1e4b 100644
--- a/_i_instance_manager_8cs.html
+++ b/_i_instance_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_8cs_source.html b/_i_instance_manager_8cs_source.html
index 78305daa92..fd4833f096 100644
--- a/_i_instance_manager_8cs_source.html
+++ b/_i_instance_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_client_8cs.html b/_i_instance_manager_client_8cs.html
index 7440ae729c..a7adcf31dc 100644
--- a/_i_instance_manager_client_8cs.html
+++ b/_i_instance_manager_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_manager_client_8cs_source.html b/_i_instance_manager_client_8cs_source.html
index f5387390a7..86422a9940 100644
--- a/_i_instance_manager_client_8cs_source.html
+++ b/_i_instance_manager_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_user_client_8cs.html b/_i_instance_user_client_8cs.html
index 70eaa57f0e..5f22d568cb 100644
--- a/_i_instance_user_client_8cs.html
+++ b/_i_instance_user_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_instance_user_client_8cs_source.html b/_i_instance_user_client_8cs_source.html
index 9ce5bea579..c8bac7d1a9 100644
--- a/_i_instance_user_client_8cs_source.html
+++ b/_i_instance_user_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_job_manager_8cs.html b/_i_job_manager_8cs.html
index 6c66689585..120a4a6d0b 100644
--- a/_i_job_manager_8cs.html
+++ b/_i_job_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_job_manager_8cs_source.html b/_i_job_manager_8cs_source.html
index aa5f6965f9..a3a9db36cf 100644
--- a/_i_job_manager_8cs_source.html
+++ b/_i_job_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_jobs_client_8cs.html b/_i_jobs_client_8cs.html
index 2ddbde5ce5..c0fac73fff 100644
--- a/_i_jobs_client_8cs.html
+++ b/_i_jobs_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_jobs_client_8cs_source.html b/_i_jobs_client_8cs_source.html
index 48744ae570..f762382df2 100644
--- a/_i_jobs_client_8cs_source.html
+++ b/_i_jobs_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_latest_compile_job_provider_8cs.html b/_i_latest_compile_job_provider_8cs.html
index f257fc9257..c3332a0198 100644
--- a/_i_latest_compile_job_provider_8cs.html
+++ b/_i_latest_compile_job_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_latest_compile_job_provider_8cs_source.html b/_i_latest_compile_job_provider_8cs_source.html
index f25c204cb5..c9d4517245 100644
--- a/_i_latest_compile_job_provider_8cs_source.html
+++ b/_i_latest_compile_job_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_commands_8cs.html b/_i_lib_git2_commands_8cs.html
index bef4932f71..82207b6da4 100644
--- a/_i_lib_git2_commands_8cs.html
+++ b/_i_lib_git2_commands_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_commands_8cs_source.html b/_i_lib_git2_commands_8cs_source.html
index caf213f0a4..1ea9b2e058 100644
--- a/_i_lib_git2_commands_8cs_source.html
+++ b/_i_lib_git2_commands_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_repository_factory_8cs.html b/_i_lib_git2_repository_factory_8cs.html
index 43eb118662..8af48121fb 100644
--- a/_i_lib_git2_repository_factory_8cs.html
+++ b/_i_lib_git2_repository_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_lib_git2_repository_factory_8cs_source.html b/_i_lib_git2_repository_factory_8cs_source.html
index c92d1f817a..efd1768464 100644
--- a/_i_lib_git2_repository_factory_8cs_source.html
+++ b/_i_lib_git2_repository_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_network_prompt_reaper_8cs.html b/_i_network_prompt_reaper_8cs.html
index 197e5f4609..79d6a0ab3e 100644
--- a/_i_network_prompt_reaper_8cs.html
+++ b/_i_network_prompt_reaper_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_network_prompt_reaper_8cs_source.html b/_i_network_prompt_reaper_8cs_source.html
index cf94c9abc6..fc86ec6abc 100644
--- a/_i_network_prompt_reaper_8cs_source.html
+++ b/_i_network_prompt_reaper_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_platform_identifier_8cs.html b/_i_platform_identifier_8cs.html
index 66e162780c..89924a6427 100644
--- a/_i_platform_identifier_8cs.html
+++ b/_i_platform_identifier_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_platform_identifier_8cs_source.html b/_i_platform_identifier_8cs_source.html
index a0281eb066..4f7762b028 100644
--- a/_i_platform_identifier_8cs_source.html
+++ b/_i_platform_identifier_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_post_setup_services_8cs.html b/_i_post_setup_services_8cs.html
index 6526a1700c..0c523e7df9 100644
--- a/_i_post_setup_services_8cs.html
+++ b/_i_post_setup_services_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_post_setup_services_8cs_source.html b/_i_post_setup_services_8cs_source.html
index 72534f22a2..81da6cad63 100644
--- a/_i_post_setup_services_8cs_source.html
+++ b/_i_post_setup_services_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_post_write_handler_8cs.html b/_i_post_write_handler_8cs.html
index f1db6a9242..00dcf7a60c 100644
--- a/_i_post_write_handler_8cs.html
+++ b/_i_post_write_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_post_write_handler_8cs_source.html b/_i_post_write_handler_8cs_source.html
index f484d34056..648e1dc75a 100644
--- a/_i_post_write_handler_8cs_source.html
+++ b/_i_post_write_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_8cs.html b/_i_process_8cs.html
index 69c49946f9..cf57afff6c 100644
--- a/_i_process_8cs.html
+++ b/_i_process_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_8cs_source.html b/_i_process_8cs_source.html
index b5ecfd594e..d726168f52 100644
--- a/_i_process_8cs_source.html
+++ b/_i_process_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_base_8cs.html b/_i_process_base_8cs.html
index 57f14a39e4..99372d7e03 100644
--- a/_i_process_base_8cs.html
+++ b/_i_process_base_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_base_8cs_source.html b/_i_process_base_8cs_source.html
index 732dd0b26b..7c98596829 100644
--- a/_i_process_base_8cs_source.html
+++ b/_i_process_base_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_executor_8cs.html b/_i_process_executor_8cs.html
index 2068afc420..6d0b6fced4 100644
--- a/_i_process_executor_8cs.html
+++ b/_i_process_executor_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_executor_8cs_source.html b/_i_process_executor_8cs_source.html
index 062fb90c9e..cc28556226 100644
--- a/_i_process_executor_8cs_source.html
+++ b/_i_process_executor_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_features_8cs.html b/_i_process_features_8cs.html
index 1068fdc7b7..1956a6055c 100644
--- a/_i_process_features_8cs.html
+++ b/_i_process_features_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_process_features_8cs_source.html b/_i_process_features_8cs_source.html
index 3474a09b70..b5b1d753ed 100644
--- a/_i_process_features_8cs_source.html
+++ b/_i_process_features_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_provider_8cs.html b/_i_provider_8cs.html
index 7f0bcf0d7b..1b8e307067 100644
--- a/_i_provider_8cs.html
+++ b/_i_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_provider_8cs_source.html b/_i_provider_8cs_source.html
index 1d2aefa402..69f06e2eb8 100644
--- a/_i_provider_8cs_source.html
+++ b/_i_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_provider_factory_8cs.html b/_i_provider_factory_8cs.html
index 0dccf874e8..a9b76f8434 100644
--- a/_i_provider_factory_8cs.html
+++ b/_i_provider_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_provider_factory_8cs_source.html b/_i_provider_factory_8cs_source.html
index 683d39a18f..ef244d74d5 100644
--- a/_i_provider_factory_8cs_source.html
+++ b/_i_provider_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_rename_notifyee_8cs.html b/_i_rename_notifyee_8cs.html
index 9ed30c375a..b8d8d6386d 100644
--- a/_i_rename_notifyee_8cs.html
+++ b/_i_rename_notifyee_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_rename_notifyee_8cs_source.html b/_i_rename_notifyee_8cs_source.html
index 7ebf5a1731..2104f3f4c5 100644
--- a/_i_rename_notifyee_8cs_source.html
+++ b/_i_rename_notifyee_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_8cs.html b/_i_repository_8cs.html
index a40f360415..102b1518f5 100644
--- a/_i_repository_8cs.html
+++ b/_i_repository_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_8cs_source.html b/_i_repository_8cs_source.html
index b73b627a63..2c3f65066b 100644
--- a/_i_repository_8cs_source.html
+++ b/_i_repository_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_client_8cs.html b/_i_repository_client_8cs.html
index e505cccccc..43f7a2653e 100644
--- a/_i_repository_client_8cs.html
+++ b/_i_repository_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_client_8cs_source.html b/_i_repository_client_8cs_source.html
index 59a4730396..ac1628677f 100644
--- a/_i_repository_client_8cs_source.html
+++ b/_i_repository_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_manager_8cs.html b/_i_repository_manager_8cs.html
index 552f1a8f9e..602cf0d3d9 100644
--- a/_i_repository_manager_8cs.html
+++ b/_i_repository_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_repository_manager_8cs_source.html b/_i_repository_manager_8cs_source.html
index 2031186140..3d01a89b0b 100644
--- a/_i_repository_manager_8cs_source.html
+++ b/_i_repository_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_request_logger_8cs.html b/_i_request_logger_8cs.html
index f07a8be266..3055a09ca3 100644
--- a/_i_request_logger_8cs.html
+++ b/_i_request_logger_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_request_logger_8cs_source.html b/_i_request_logger_8cs_source.html
index d0dd150ab9..ab11168caf 100644
--- a/_i_request_logger_8cs_source.html
+++ b/_i_request_logger_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_restart_handler_8cs.html b/_i_restart_handler_8cs.html
index c17af20a53..843c81b760 100644
--- a/_i_restart_handler_8cs.html
+++ b/_i_restart_handler_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_restart_handler_8cs_source.html b/_i_restart_handler_8cs_source.html
index bbf12d9acd..47818e139c 100644
--- a/_i_restart_handler_8cs_source.html
+++ b/_i_restart_handler_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_restart_registration_8cs.html b/_i_restart_registration_8cs.html
index e146391e3f..5b7c38ec17 100644
--- a/_i_restart_registration_8cs.html
+++ b/_i_restart_registration_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_restart_registration_8cs_source.html b/_i_restart_registration_8cs_source.html
index 10c530134b..e493dccad4 100644
--- a/_i_restart_registration_8cs_source.html
+++ b/_i_restart_registration_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_8cs.html b/_i_server_8cs.html
index 6046a4b6d0..8e09c228f6 100644
--- a/_i_server_8cs.html
+++ b/_i_server_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_8cs_source.html b/_i_server_8cs_source.html
index 2c2cbaf7aa..941a1ea5fa 100644
--- a/_i_server_8cs_source.html
+++ b/_i_server_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_client_8cs.html b/_i_server_client_8cs.html
index 3736b1deb2..13b2326414 100644
--- a/_i_server_client_8cs.html
+++ b/_i_server_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_client_8cs_source.html b/_i_server_client_8cs_source.html
index 1baad20a58..198f975021 100644
--- a/_i_server_client_8cs_source.html
+++ b/_i_server_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_client_factory_8cs.html b/_i_server_client_factory_8cs.html
index cc807f3bd4..9492658200 100644
--- a/_i_server_client_factory_8cs.html
+++ b/_i_server_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_client_factory_8cs_source.html b/_i_server_client_factory_8cs_source.html
index 1c1c66a512..090aeb8a0d 100644
--- a/_i_server_client_factory_8cs_source.html
+++ b/_i_server_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_control_8cs.html b/_i_server_control_8cs.html
index 16fc64e50c..0b465bfa03 100644
--- a/_i_server_control_8cs.html
+++ b/_i_server_control_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_control_8cs_source.html b/_i_server_control_8cs_source.html
index 638114504b..b84ec8317d 100644
--- a/_i_server_control_8cs_source.html
+++ b/_i_server_control_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_factory_8cs.html b/_i_server_factory_8cs.html
index f349014a9d..85a8dda5b9 100644
--- a/_i_server_factory_8cs.html
+++ b/_i_server_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_factory_8cs_source.html b/_i_server_factory_8cs_source.html
index 2f857a1c67..d3b679421d 100644
--- a/_i_server_factory_8cs_source.html
+++ b/_i_server_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_port_provider_8cs.html b/_i_server_port_provider_8cs.html
index 7b2806fa7e..c0250318f8 100644
--- a/_i_server_port_provider_8cs.html
+++ b/_i_server_port_provider_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_server_port_provider_8cs_source.html b/_i_server_port_provider_8cs_source.html
index f56f2150aa..e9af3d8a93 100644
--- a/_i_server_port_provider_8cs_source.html
+++ b/_i_server_port_provider_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_8cs.html b/_i_session_controller_8cs.html
index 3b7060d97e..3fb8fb442e 100644
--- a/_i_session_controller_8cs.html
+++ b/_i_session_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_8cs_source.html b/_i_session_controller_8cs_source.html
index 874ae0d54d..228ce13a58 100644
--- a/_i_session_controller_8cs_source.html
+++ b/_i_session_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_factory_8cs.html b/_i_session_controller_factory_8cs.html
index 9e029bad69..33b2446db2 100644
--- a/_i_session_controller_factory_8cs.html
+++ b/_i_session_controller_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_controller_factory_8cs_source.html b/_i_session_controller_factory_8cs_source.html
index 421f417801..3ee2ce0527 100644
--- a/_i_session_controller_factory_8cs_source.html
+++ b/_i_session_controller_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_persistor_8cs.html b/_i_session_persistor_8cs.html
index d029a0684c..957079ad49 100644
--- a/_i_session_persistor_8cs.html
+++ b/_i_session_persistor_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_session_persistor_8cs_source.html b/_i_session_persistor_8cs_source.html
index 33cffe81b7..5e2ddef426 100644
--- a/_i_session_persistor_8cs_source.html
+++ b/_i_session_persistor_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_symlink_factory_8cs.html b/_i_symlink_factory_8cs.html
index bf8bcfa524..ab60eb6e1f 100644
--- a/_i_symlink_factory_8cs.html
+++ b/_i_symlink_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_symlink_factory_8cs_source.html b/_i_symlink_factory_8cs_source.html
index df77bf666a..e16d9b6975 100644
--- a/_i_symlink_factory_8cs_source.html
+++ b/_i_symlink_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_synchronous_i_o_manager_8cs.html b/_i_synchronous_i_o_manager_8cs.html
index 531218a786..3b39b6ce4a 100644
--- a/_i_synchronous_i_o_manager_8cs.html
+++ b/_i_synchronous_i_o_manager_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_synchronous_i_o_manager_8cs_source.html b/_i_synchronous_i_o_manager_8cs_source.html
index a00937cc3a..6887c81c4a 100644
--- a/_i_synchronous_i_o_manager_8cs_source.html
+++ b/_i_synchronous_i_o_manager_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_8cs.html b/_i_system_identity_8cs.html
index c8697a7c56..df31662e49 100644
--- a/_i_system_identity_8cs.html
+++ b/_i_system_identity_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_8cs_source.html b/_i_system_identity_8cs_source.html
index c5c11a93d3..58ccd4bc73 100644
--- a/_i_system_identity_8cs_source.html
+++ b/_i_system_identity_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_factory_8cs.html b/_i_system_identity_factory_8cs.html
index bbb161305d..b7e6495649 100644
--- a/_i_system_identity_factory_8cs.html
+++ b/_i_system_identity_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_system_identity_factory_8cs_source.html b/_i_system_identity_factory_8cs_source.html
index a6f5876b4b..d15da5c6b7 100644
--- a/_i_system_identity_factory_8cs_source.html
+++ b/_i_system_identity_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_token_factory_8cs.html b/_i_token_factory_8cs.html
index 1c794b6fa3..831aa851b3 100644
--- a/_i_token_factory_8cs.html
+++ b/_i_token_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_token_factory_8cs_source.html b/_i_token_factory_8cs_source.html
index bb6e86b564..854f206dcd 100644
--- a/_i_token_factory_8cs_source.html
+++ b/_i_token_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_topic_client_factory_8cs.html b/_i_topic_client_factory_8cs.html
index 3f2c3f4f4d..46eca7c900 100644
--- a/_i_topic_client_factory_8cs.html
+++ b/_i_topic_client_factory_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_topic_client_factory_8cs_source.html b/_i_topic_client_factory_8cs_source.html
index 4352120a51..8bd67dd5c5 100644
--- a/_i_topic_client_factory_8cs_source.html
+++ b/_i_topic_client_factory_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_users_client_8cs.html b/_i_users_client_8cs.html
index f27e6af5aa..c1ab93ddcc 100644
--- a/_i_users_client_8cs.html
+++ b/_i_users_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_i_users_client_8cs_source.html b/_i_users_client_8cs_source.html
index 3c13735baf..4944219966 100644
--- a/_i_users_client_8cs_source.html
+++ b/_i_users_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_identity_cache_8cs.html b/_identity_cache_8cs.html
index d2d90dd5c4..bab01e3741 100644
--- a/_identity_cache_8cs.html
+++ b/_identity_cache_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_identity_cache_8cs_source.html b/_identity_cache_8cs_source.html
index b6bdb78b36..244c0f321b 100644
--- a/_identity_cache_8cs_source.html
+++ b/_identity_cache_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_identity_cache_object_8cs.html b/_identity_cache_object_8cs.html
index 72e38e6d2f..582adaf78b 100644
--- a/_identity_cache_object_8cs.html
+++ b/_identity_cache_object_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_identity_cache_object_8cs_source.html b/_identity_cache_object_8cs_source.html
index c4c07e253f..6b79edbdce 100644
--- a/_identity_cache_object_8cs_source.html
+++ b/_identity_cache_object_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_instance_client_8cs.html b/_instance_client_8cs.html
index 883a599197..eb5a50268d 100644
--- a/_instance_client_8cs.html
+++ b/_instance_client_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_instance_client_8cs_source.html b/_instance_client_8cs_source.html
index 60bdde2341..45811b7e5c 100644
--- a/_instance_client_8cs_source.html
+++ b/_instance_client_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_instance_controller_8cs.html b/_instance_controller_8cs.html
index 2e09058ee1..cacedd0ca7 100644
--- a/_instance_controller_8cs.html
+++ b/_instance_controller_8cs.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
diff --git a/_instance_controller_8cs_source.html b/_instance_controller_8cs_source.html
index 44b882ac5b..7ed44ee46b 100644
--- a/_instance_controller_8cs_source.html
+++ b/_instance_controller_8cs_source.html
@@ -25,7 +25,7 @@
 |
tgstation-server
- 4.4.0
+ 4.4.1
The /tg/station 13 server suite
|
@@ -94,13 +94,13 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
InstanceController.cs