Skip to content

Commit

Permalink
Remove coconut
Browse files Browse the repository at this point in the history
  • Loading branch information
C0Newb committed Apr 3, 2023
1 parent 9c7de88 commit e3efe0a
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 4 deletions.
Binary file added Server/NeptuneRunner/Android Icon.ico
Binary file not shown.
Binary file not shown.
3 changes: 2 additions & 1 deletion Server/NeptuneRunner/NeptuneRunner/NeptuneRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>KingNeptune.ico</ApplicationIcon>
<ApplicationIcon>Android Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down Expand Up @@ -85,6 +85,7 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Android Icon.ico" />
<Content Include="KingNeptune.ico" />
<Resource Include="KingNeptune.ico" />
</ItemGroup>
Expand Down
Binary file modified Server/NeptuneRunner/build/NeptuneRunner.exe
Binary file not shown.
Binary file modified Server/Resources/coconut.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Server/Resources/coconut.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Server/src/Classes/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ class Client extends ClientConfig {
this.#connectionManager.destroy(true);
this.#notificationManager.destroy(true);
} catch (err) {
this.log.error(err);
this.log.error(err, false);
}
finally {
global.Neptune.clientManager.dropClient(this);
Expand Down
2 changes: 1 addition & 1 deletion Server/src/Windows/mainWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ class thisTest extends NeptuneWindow {
{ button: cancelButton, buttonRole: NodeGUI.ButtonRole.RejectRole },
]);

if (result == NodeGUI.DialogCode.Accepted) {
if (result != NodeGUI.DialogCode.Accepted) {
this.RemoveClientFromDeviceList(client.friendlyName);
client.delete();
}
Expand Down
2 changes: 1 addition & 1 deletion Server/src/resourceManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ResourceManager {
/**
* @type {QIcon} Main application icon. Used in windows and tray icon.
*/
ApplicationIcon = new QIcon(path.resolve(__dirname, "../Resources/coconut.jpg"));
ApplicationIcon = new QIcon(path.resolve(__dirname, "../Resources/coconut.png"));

constructor() {}

Expand Down

0 comments on commit e3efe0a

Please sign in to comment.