mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 07:56:16 +00:00
Merge pull request #6185 from rcordovano/release-4.16.0
Simplified CR search service status reporting
This commit is contained in:
commit
f9e3bccca9
@ -12,7 +12,6 @@ CentralRepoDbChoice.PostgreSQL.Text=Custom PostgreSQL
|
|||||||
CentralRepoDbChoice.PostgreSQL_Multiuser.Text=PostgreSQL using multi-user settings
|
CentralRepoDbChoice.PostgreSQL_Multiuser.Text=PostgreSQL using multi-user settings
|
||||||
CentralRepoDbChoice.Sqlite.Text=SQLite
|
CentralRepoDbChoice.Sqlite.Text=SQLite
|
||||||
CentralRepoDbManager.connectionErrorMsg.text=Failed to connect to central repository database.
|
CentralRepoDbManager.connectionErrorMsg.text=Failed to connect to central repository database.
|
||||||
CentralRepositoryService.progressMsg.updatingDataSourcesTable=Checking for v1.2 data updates...
|
|
||||||
CentralRepositoryService.progressMsg.updatingSchema=Updating schema...
|
CentralRepositoryService.progressMsg.updatingSchema=Updating schema...
|
||||||
CentralRepositoryService.serviceName=Central Repository Service
|
CentralRepositoryService.serviceName=Central Repository Service
|
||||||
CorrelationAttributeInstance.invalidName.message=Invalid database table name. Name must start with a lowercase letter and can only contain lowercase letters, numbers, and '_'.
|
CorrelationAttributeInstance.invalidName.message=Invalid database table name. Name must start with a lowercase letter and can only contain lowercase letters, numbers, and '_'.
|
||||||
|
@ -42,8 +42,8 @@ public class CentralRepositoryService implements AutopsyService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@NbBundle.Messages({
|
@NbBundle.Messages({
|
||||||
"CentralRepositoryService.progressMsg.updatingSchema=Updating schema...",
|
"CentralRepositoryService.progressMsg.updatingSchema=Updating schema..."
|
||||||
"CentralRepositoryService.progressMsg.updatingDataSourcesTable=Checking for v1.2 data updates...",})
|
})
|
||||||
@Override
|
@Override
|
||||||
public void openCaseResources(CaseContext context) throws AutopsyServiceException {
|
public void openCaseResources(CaseContext context) throws AutopsyServiceException {
|
||||||
if (!CentralRepository.isEnabled()) {
|
if (!CentralRepository.isEnabled()) {
|
||||||
@ -58,7 +58,6 @@ public class CentralRepositoryService implements AutopsyService {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
progress.progress(Bundle.CentralRepositoryService_progressMsg_updatingDataSourcesTable());
|
|
||||||
dataUpgradeForVersion1dot2(context.getCase());
|
dataUpgradeForVersion1dot2(context.getCase());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user