Skip to content

Commit b0f10b7

Browse files
committed
Rdx 1.0.7
1 parent ee779e3 commit b0f10b7

File tree

8 files changed

+255
-159
lines changed

8 files changed

+255
-159
lines changed

SmartImage.Lib/SearchConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ public bool ReadCookies
202202
/// </remarks>
203203
public bool FlareSolverr
204204
{
205-
get { return Configuration.ReadSetting(nameof(FlareSolverr), false); }
205+
get { return Configuration.ReadSetting(nameof(FlareSolverr), FLARESOLVERR_DEFAULT); }
206206
set
207207
{
208208
Configuration.AddUpdateSetting(nameof(FlareSolverr), value.ToString());

SmartImage.Rdx/Icon.ico

264 KB
Binary file not shown.

SmartImage.Rdx/IntegrationCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
using System.Diagnostics;
55
using SmartImage.Lib.Utilities;
6+
using SmartImage.Rdx.Shell;
67
using Spectre.Console;
78
using Spectre.Console.Cli;
89

@@ -27,7 +28,7 @@ public override int Execute(CommandContext context, IntegrationCommandSettings s
2728
AConsole.WriteException(e);
2829
}
2930

30-
return SearchCommand.EC_OK;
31+
return ConsoleItems.EC_OK;
3132
}
3233

3334
}

SmartImage.Rdx/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,19 +131,19 @@ public static async Task<int> Main(string[] args)
131131
.WithDescription("Configure system integration such as context menu");
132132

133133
});
134-
int x = SearchCommand.EC_OK;
134+
int x = ConsoleItems.EC_OK;
135135

136136
try {
137137
x = await app.RunAsync(args);
138138

139139
}
140140
catch (Exception e) {
141141
AConsole.WriteException(e);
142-
x = SearchCommand.EC_ERROR;
142+
x = ConsoleItems.EC_ERROR;
143143
}
144144
finally {
145145

146-
if (x != SearchCommand.EC_OK) {
146+
if (x != ConsoleItems.EC_OK) {
147147
AConsole.Confirm("Press any key to continue");
148148
}
149149
}

0 commit comments

Comments
 (0)