Skip to content

Commit

Permalink
rename domain name
Browse files Browse the repository at this point in the history
  • Loading branch information
gosha20777 committed Apr 18, 2024
1 parent 213749a commit 947490e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Cross-platform application that searches for lost people in the forest using obj

## Docs

You can find more documentation here: [Rus](https://docs.lacmus.tech/v/russian) [Eng](https://docs.lacmus.tech)
You can find more documentation here: [Rus](https://docs.lacmus.ml/v/russian) [Eng](https://docs.lacmus.ml)

### System requirements and supported platforms

Expand Down
2 changes: 1 addition & 1 deletion packages/windows/script.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define MyAppName "Lacmus Application"
#define MyAppVersion "0.7.0"
#define MyAppPublisher "Lacmus Foundation"
#define MyAppURL "https://lacmus.tech/"
#define MyAppURL "https://lacmus.ml/"
#define MyAppExeName "LacmusApp.Avalonia.exe"

[Setup]
Expand Down
2 changes: 1 addition & 1 deletion src/LacmusApp.Avalonia/LacmusApp.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Description>Lacmus help to find lost people in Search and Rescue operations. Lacmus is a cross-platform application which use computer vision and neural networks and written with C#, .NET Core, ReactiveUI and Avalonia.</Description>
<PackageId>LacmusApp.Avalonia</PackageId>
<Title>Lacmus Application</Title>
<PackageProjectUrl>https://lacmus.tech/</PackageProjectUrl>
<PackageProjectUrl>https://lacmus.ml/</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/lacmus-foundation/lacmus-app/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/lacmus-foundation/lacmus-app</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private async void Init()
await Task.Delay(1000);
var dialog = new AvaloniaPluginDialog(window);
var pluginManager = new PluginManager(
Path.Join(confDir, "plugins"), "http://api.lacmus.tech");
Path.Join(confDir, "plugins"), "http://api.lacmus.ml");
var themeManager = new ThemeManager(window);
themeManager.UseTheme(config.Theme);
var settingsViewModel = new SettingsViewModel(
Expand Down
6 changes: 3 additions & 3 deletions src/LacmusApp.Avalonia/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -499,13 +499,13 @@ public void Help()
switch (_settingsViewModel.Language)
{
case Language.English:
OpenUrl("https://docs.lacmus.tech");
OpenUrl("https://docs.lacmus.ml");
break;
case Language.Russian:
OpenUrl("https://docs.lacmus.tech/v/russian/");
OpenUrl("https://docs.lacmus.ml/v/russian/");
break;
default:
OpenUrl("https://docs.lacmus.tech");
OpenUrl("https://docs.lacmus.ml");
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/LacmusApp/Appearance/Models/ConfigManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public async Task<Config> ReadConfig()
OperatingSystem.OsxAmd64
}
},
Repository = "http://api.lacmus.tech",
Repository = "http://api.lacmus.ml",
Theme = Theme.Light,
PredictionThreshold = 0.15f,
BoundingBoxColour = BoundingBoxColour.Red
Expand Down

0 comments on commit 947490e

Please sign in to comment.