Skip to content

Commit

Permalink
package rename + custom icon
Browse files Browse the repository at this point in the history
  • Loading branch information
KumoKairo committed Jan 16, 2023
1 parent 256851d commit 8bd4703
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)

# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "otz_killer_perks")
set(BINARY_NAME "all_perks_streak_helper")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.otz_killer_perks")
set(APPLICATION_ID "kumo.kairo.all_perks_streak_helper")

# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
Expand Down
4 changes: 2 additions & 2 deletions windows/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Project-level configuration.
cmake_minimum_required(VERSION 3.14)
project(otz_killer_perks LANGUAGES CXX)
project(all_perks_streak_helper LANGUAGES CXX)

# The name of the executable created for the application. Change this to change
# the on-disk name of your application.
set(BINARY_NAME "otz_killer_perks")
set(BINARY_NAME "all_perks_streak_helper")

# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.
Expand Down
8 changes: 4 additions & 4 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "kumo.kairo" "\0"
VALUE "FileDescription", "otz_killer_perks" "\0"
VALUE "FileDescription", "all_perks_streak_helper" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "otz_killer_perks" "\0"
VALUE "InternalName", "all_perks_streak_helper" "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 KumoKairo. All rights reserved." "\0"
VALUE "OriginalFilename", "otz_killer_perks.exe" "\0"
VALUE "ProductName", "otz_killer_perks" "\0"
VALUE "OriginalFilename", "all_perks_streak_helper.exe" "\0"
VALUE "ProductName", "all_perks_streak_helper" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
END
END
Expand Down
2 changes: 1 addition & 1 deletion windows/runner/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
FlutterWindow window(project);
Win32Window::Point origin(10, 10);
Win32Window::Size size(1280, 720);
if (!window.CreateAndShow(L"otz_killer_perks", origin, size)) {
if (!window.CreateAndShow(L"all_perks_streak_helper", origin, size)) {
return EXIT_FAILURE;
}
window.SetQuitOnClose(true);
Expand Down
Binary file modified windows/runner/resources/app_icon.ico
Binary file not shown.

0 comments on commit 8bd4703

Please sign in to comment.