Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Nov 13, 2023
1 parent 19bdb73 commit ac3d268
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
20 changes: 0 additions & 20 deletions src/OneWare.PackageManager/ViewModels/PackageManagerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,27 +99,7 @@ public async Task LoadPackagesAsync()
RegisterPackageCategory(new PackageCategoryModel("Toolchains", Application.Current?.GetResourceObservable("FeatherIcons.Tool")));
RegisterPackageCategory(new PackageCategoryModel("Simulators", Application.Current?.GetResourceObservable("Material.Pulse")));
RegisterPackageCategory(new PackageCategoryModel("Boards", Application.Current?.GetResourceObservable("NiosIcon")));

// RegisterPackage(PackageCategories.Last(),
// new PackageModel("Max1000 Support", "Support for MAX1000 Development Board", "The MAX1000 FPGA Development Board is the most inexpensive way to start with FPGAs and OneWare Studio",
// await _httpService.DownloadImageAsync("https://vhdplus.com/assets/images/max1000-fd95dd816b048068dd3d9ce70c0f67c0.png"), new List<LinkModel>
// {
// new("Docs","https://vhdplus.com/docs/components/max1000/"),
// new("Get this Product!", "https://shop.vhdplus.com/product/max1000/")
// })
// );
//
// RegisterPackage(PackageCategories.Last(),
// new PackageModel("VHDPlus WiFi Extension", "Support for VHDPlus WiFi Extension Board", "The WiFi Extensions make it easy to use your FPGA as an IoT controller. You have to take a cheap ESP-01 and plug it in the connector. Then you can use the FPGA as a programmer and USB interface for the ESP8266 together with the onboard buttons. And when you only have one CRUVI connector left, you can just plug a second extension like the SCD40 CRUVI module on top of the extension.",
// await _httpService.DownloadImageAsync("https://vhdplus.com/assets/images/Wifi_Top-8e711729300fc78fb5ed8e74b75c8914.png"), new List<LinkModel>
// {
// new("Docs","https://vhdplus.com/docs/components/wifi/"),
// new("Get this Product!", "https://shop.vhdplus.com/product/vhdplus-wifi-extension/")
// })
// );

RegisterPackageCategory(new PackageCategoryModel("Libraries", Application.Current?.GetResourceObservable("BoxIcons.RegularLibrary")));

RegisterPackageCategory(new PackageCategoryModel("Misc", Application.Current?.GetResourceObservable("Module")));

await LoadPackageRepositoryAsync(
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Verilog/LanguageServiceVerilog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static LanguageServiceVerilog()
StartPath = PlatformHelper.Platform switch
{
PlatformId.WinX64 => $"{assemblyPath}/native_tools/win-x64/verible/verible-v0.0-3426-gac4a37d8-win64/verible-verilog-ls.exe",
PlatformId.LinuxX64 => $"{assemblyPath}/native_tools/linux-x64/verible/verible-v0.0-3426-gac4a37d8/bin/verible-verilog-ls",
PlatformId.LinuxX64 => $"{assemblyPath}/native_tools/linux-x64/verible/verible-v0.0-3428-gcfcbb82b/bin/verible-verilog-ls",
PlatformId.OsxX64 => $"{assemblyPath}/native_tools/osx-x64/verible/verible-v0.0-3426-gac4a37d8-macOS/bin/verible-verilog-ls",
PlatformId.OsxArm64 => $"{assemblyPath}/native_tools/osx-x64/verible/verible-v0.0-3426-gac4a37d8-macOS/bin/verible-verilog-ls",
_ => null
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Verilog/OneWare.Verilog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64' OR ('$(RuntimeIdentifier)' == '' AND $([MSBuild]::IsOSPlatform('Linux')))">
<UsePackageTarget>linux-x64</UsePackageTarget>
<ExternalPackageUrl>https://github.com/chipsalliance/verible/releases/download/v0.0-3401-g0b8cb4e0/verible-v0.0-3401-g0b8cb4e0-linux-static-x86_64.tar.gz</ExternalPackageUrl>
<ExternalPackageUrl>https://github.com/chipsalliance/verible/releases/download/v0.0-3428-gcfcbb82b/verible-v0.0-3428-gcfcbb82b-linux-static-x86_64.tar.gz</ExternalPackageUrl>
</PropertyGroup>

<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64' OR ('$(RuntimeIdentifier)' == '' AND $([MSBuild]::IsOSPlatform('OSX')))">
Expand Down

0 comments on commit ac3d268

Please sign in to comment.