Skip to content

Commit

Permalink
version 0.3.0
Browse files Browse the repository at this point in the history
compatible with iCUE 3.32.80, older versions are not supported close #10
  • Loading branch information
Legion2 committed Sep 2, 2020
1 parent 6b5b7a8 commit c0d1624
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ HTTP REST API service for [Open CUE CLI](https://github.com/Legion2/open-cue-cli

## Getting Started
Download and extract the latest [release](https://github.com/Legion2/open-cue-service/releases).
By default the Server controls the iCUE profiles in the `C:\Program Files (x86)\Corsair\CORSAIR iCUE Software\GameSdkEffects\profiles` directory.
Starting with iCUE 3.82.80 the iCUE profiles in the `C:\ProgramData\Corsair\CUE\GameSdkEffects\profiles` directory are used.
Create this directory or configure another one, for details on how to setup profiles see [Open CUE CLI documentation](https://github.com/Legion2/open-cue-cli#profiles).
Then execute the `open-cue-service.exe` to start the service.
It runs on [http://localhost:25555](http://localhost:25555) and can be accessed with any Rest/Http client.
Expand Down
2 changes: 1 addition & 1 deletion open-cue-service.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Title>Open CUE Service</Title>
<Version>0.2.3</Version>
<Version>0.3.0</Version>
<Authors>Legion2</Authors>
<Description>HTTP REST API service for Open CUE CLI</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion src/ProfileManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace OpenCueService
using CgSdk;
public class ProfileManager
{
private static readonly string GameSkdEffectsPath = @"c:\Program Files (x86)\Corsair\CORSAIR iCUE Software\GameSdkEffects";
private static readonly string GameSkdEffectsPath = @"c:\ProgramData\Corsair\CUE\GameSdkEffects";

public ProfileManager(IOptions<Config> config, SdkHandler sdkHandler)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void ConfigureServices(IServiceCollection services)
document.DocumentName = "openapi";
document.Title = "Open CUE Service";
document.Description = "HTTP REST API service for Open CUE CLI";
document.Version = "0.2.3";
document.Version = "0.3.0";
});
}

Expand Down

0 comments on commit c0d1624

Please sign in to comment.