Skip to content

Commit

Permalink
update harmony repo, renames Crdt to SIL.Harmony
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-kev committed Jul 26, 2024
1 parent 256319b commit 73525c2
Show file tree
Hide file tree
Showing 31 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "backend/harmony"]
path = backend/harmony
url = https://github.com/hahn-kev/harmony.git
url = https://github.com/sillsdev/harmony.git
branch = main
4 changes: 2 additions & 2 deletions LexBox.sln
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LcmCrdt", "backend\FwLite\L
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LcmCrdt.Tests", "backend\FwLite\LcmCrdt.Tests\LcmCrdt.Tests.csproj", "{7D874D9B-1CA9-49E9-8B03-91B5C324E938}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crdt", "backend\harmony\src\Crdt\Crdt.csproj", "{740C8FF5-8006-4047-8C52-53873C2DD7C4}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SIL.Harmony", "backend\harmony\src\SIL.Harmony\SIL.Harmony.csproj", "{740C8FF5-8006-4047-8C52-53873C2DD7C4}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Crdt.Core", "backend\harmony\src\Crdt.Core\Crdt.Core.csproj", "{8B54FFB5-0BDF-403E-83CC-A3B3861EC507}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SIL.Harmony.Core", "backend\harmony\src\SIL.Harmony.Core\SIL.Harmony.Core.csproj", "{8B54FFB5-0BDF-403E-83CC-A3B3861EC507}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FwDataMiniLcmBridge", "backend\FwLite\FwDataMiniLcmBridge\FwDataMiniLcmBridge.csproj", "{279197B6-EC06-4DE0-94F8-625379C3AD83}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Text.Json;
using Crdt.Entities;
using SIL.Harmony.Entities;
using LcmCrdt.Changes;
using LcmCrdt.Objects;
using SystemTextJsonPatch;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LcmCrdt.Tests/LcmCrdt.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<ItemGroup>
<Using Include="Xunit"/>
<Using Include="FluentAssertions"/>
<Using Include="Crdt"/>
<Using Include="SIL.Harmony"/>
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt.Tests/LexboxApiTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt;
using Crdt.Db;
using SIL.Harmony;
using SIL.Harmony.Db;
using LcmCrdt.Changes;
using LcmCrdt.Tests.Mocks;
using Microsoft.EntityFrameworkCore;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Changes/AddSemanticDomainChange.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Changes;
Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LcmCrdt/Changes/CreatePartOfSpeechChange.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Crdt;
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;
using MiniLcm;
using PartOfSpeech = LcmCrdt.Objects.PartOfSpeech;

Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Changes/JsonPatchChange.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Buffers;
using System.Text.Json;
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using SystemTextJsonPatch;
using SystemTextJsonPatch.Internal;
using SystemTextJsonPatch.Operations;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Changes/RemoveSemanticDomainChange.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt.Changes;
using Crdt.Entities;
using SIL.Harmony.Changes;
using SIL.Harmony.Entities;

namespace LcmCrdt.Changes;

Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LcmCrdt/CrdtLexboxApi.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Linq.Expressions;
using System.Text.Json;
using Crdt.Core;
using Crdt;
using Crdt.Changes;
using SIL.Harmony.Core;
using SIL.Harmony;
using SIL.Harmony.Changes;
using LcmCrdt.Changes;
using MiniLcm;
using LinqToDB;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LcmCrdt/CurrentProjectService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Crdt.Db;
using SIL.Harmony.Db;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Caching.Memory;

Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LcmCrdt/LcmCrdt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\harmony\src\Crdt\Crdt.csproj" />
<ProjectReference Include="..\..\harmony\src\SIL.Harmony\SIL.Harmony.csproj" />
<ProjectReference Include="..\MiniLcm\MiniLcm.csproj" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/LcmCrdtDbContext.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text.Json;
using Crdt;
using Crdt.Db;
using SIL.Harmony;
using SIL.Harmony.Db;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Microsoft.Extensions.Options;
Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/LcmCrdtKernel.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System.Text.Json;
using Crdt;
using Crdt.Core;
using Crdt;
using Crdt.Changes;
using SIL.Harmony;
using SIL.Harmony.Core;
using SIL.Harmony;
using SIL.Harmony.Changes;
using LcmCrdt.Changes;
using LcmCrdt.Objects;
using LinqToDB;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Objects/Entry.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Linq.Expressions;
using System.Text.Json.Serialization;
using Crdt;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Entities;
using LinqToDB;
using MiniLcm;

Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/Objects/SemanticDomain.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Entities;

namespace LcmCrdt.Objects;

Expand Down
8 changes: 4 additions & 4 deletions backend/FwLite/LcmCrdt/Objects/WritingSystem.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Crdt;
using Crdt.Changes;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using MiniLcm;

namespace LcmCrdt.Objects;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LcmCrdt/ProjectsService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt;
using Crdt.Db;
using SIL.Harmony;
using SIL.Harmony.Db;
using LcmCrdt.Utils;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LocalWebApp/BackgroundSyncService.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Threading.Channels;
using Crdt;
using SIL.Harmony;
using LcmCrdt;
using LocalWebApp.Auth;
using Microsoft.Extensions.Options;
Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LocalWebApp/CrdtHttpSyncService.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Crdt.Core;
using Crdt;
using Crdt.Db;
using SIL.Harmony.Core;
using SIL.Harmony;
using SIL.Harmony.Db;
using LcmCrdt;
using LocalWebApp.Auth;
using Refit;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LocalWebApp/LocalAppKernel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Text.Json;
using Crdt;
using SIL.Harmony;
using FwDataMiniLcmBridge;
using LcmCrdt;
using LocalWebApp.Services;
Expand Down
6 changes: 3 additions & 3 deletions backend/FwLite/LocalWebApp/Routes/ActivityRoutes.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Crdt.Changes;
using Crdt.Core;
using Crdt.Db;
using SIL.Harmony.Changes;
using SIL.Harmony.Core;
using SIL.Harmony.Db;
using LcmCrdt;
using LocalWebApp.Hubs;
using Microsoft.EntityFrameworkCore;
Expand Down
10 changes: 5 additions & 5 deletions backend/FwLite/LocalWebApp/Routes/HistoryRoutes.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Crdt;
using Crdt.Changes;
using Crdt.Core;
using Crdt.Db;
using Crdt.Entities;
using SIL.Harmony;
using SIL.Harmony.Changes;
using SIL.Harmony.Core;
using SIL.Harmony.Db;
using SIL.Harmony.Entities;
using LinqToDB;
using LinqToDB.EntityFrameworkCore;
using LocalWebApp.Hubs;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LocalWebApp/Routes/ImportRoutes.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
 using Crdt.Db;
 using SIL.Harmony.Db;
using LocalWebApp.Services;
using Microsoft.OpenApi.Models;
using MiniLcm;
Expand Down
4 changes: 2 additions & 2 deletions backend/FwLite/LocalWebApp/Routes/TestRoutes.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Crdt.Core;
using Crdt.Db;
using SIL.Harmony.Core;
using SIL.Harmony.Db;
using LocalWebApp.Hubs;
using Microsoft.EntityFrameworkCore;
using Microsoft.OpenApi.Models;
Expand Down
2 changes: 1 addition & 1 deletion backend/FwLite/LocalWebApp/SyncService.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Crdt;
using SIL.Harmony;
using LcmCrdt;
using LocalWebApp.Auth;

Expand Down
2 changes: 1 addition & 1 deletion backend/LexBoxApi/LexBoxApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\harmony\src\Crdt.Core\Crdt.Core.csproj" />
<ProjectReference Include="..\harmony\src\SIL.Harmony.Core\SIL.Harmony.Core.csproj" />
<ProjectReference Include="..\LexCore\LexCore.csproj" />
<ProjectReference Include="..\LexData\LexData.csproj" />
<ProjectReference Include="..\LfClassicData\LfClassicData.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion backend/LexData/Entities/CommitEntityConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Runtime.Serialization;
using System.Text.Json;
using System.Text.Json.Serialization;
using Crdt.Core;
using SIL.Harmony.Core;
using LexCore.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
Expand Down
2 changes: 1 addition & 1 deletion backend/LexData/LexData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\harmony\src\Crdt.Core\Crdt.Core.csproj" />
<ProjectReference Include="..\harmony\src\SIL.Harmony.Core\SIL.Harmony.Core.csproj" />
<ProjectReference Include="..\LexCore\LexCore.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion backend/Testing/LexCore/CrdtServerCommitTests.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using System.Text.Json;
using Crdt.Core;
using SIL.Harmony.Core;
using LexData;
using LexData.Entities;
using Microsoft.EntityFrameworkCore;
Expand Down
2 changes: 1 addition & 1 deletion backend/harmony
Submodule harmony updated 124 files

0 comments on commit 73525c2

Please sign in to comment.