diff --git a/.pql/pql-plan.json b/.pql/pql-plan.json index eb7e1268..fba653ce 100644 --- a/.pql/pql-plan.json +++ b/.pql/pql-plan.json @@ -1,5 +1,5 @@ { - "exported_at": "2026-04-26T11:27:24Z", + "exported_at": "2026-04-26T11:34:32Z", "decisions": [ { "id": "D-1", diff --git a/linux/CMakeLists.txt b/linux/CMakeLists.txt index 0a7e6216..1a90723c 100644 --- a/linux/CMakeLists.txt +++ b/linux/CMakeLists.txt @@ -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 "clide_app") +set(BINARY_NAME "clide") # The unique GTK application identifier for this application. See: # https://wiki.gnome.org/HowDoI/ChooseApplicationID -set(APPLICATION_ID "net.schweitz.clide.clide_app") +set(APPLICATION_ID "net.schweitz.clide") # Explicitly opt in to modern CMake behaviors to avoid warnings with recent # versions of CMake. diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj index 193ecd42..993c04b7 100644 --- a/macos/Runner.xcodeproj/project.pbxproj +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -67,7 +67,7 @@ 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; - 33CC10ED2044A3C60003C045 /* clide_app.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = clide_app.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10ED2044A3C60003C045 /* clide.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = clide.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; @@ -144,7 +144,7 @@ 33CC10EE2044A3C60003C045 /* Products */ = { isa = PBXGroup; children = ( - 33CC10ED2044A3C60003C045 /* clide_app.app */, + 33CC10ED2044A3C60003C045 /* clide.app */, 331C80D5294CF71000263BE5 /* RunnerTests.xctest */, ); name = Products; @@ -248,7 +248,7 @@ ); name = Runner; productName = Runner; - productReference = 33CC10ED2044A3C60003C045 /* clide_app.app */; + productReference = 33CC10ED2044A3C60003C045 /* clide.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ @@ -461,10 +461,10 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.clideApp.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide_app"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide"; }; name = Debug; }; @@ -476,10 +476,10 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.clideApp.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide_app"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide"; }; name = Release; }; @@ -491,10 +491,10 @@ CURRENT_PROJECT_VERSION = 1; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.clideApp.RunnerTests; + PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.RunnerTests; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_VERSION = 5.0; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide_app.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide_app"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/clide.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/clide"; }; name = Profile; }; diff --git a/macos/Runner/Configs/AppInfo.xcconfig b/macos/Runner/Configs/AppInfo.xcconfig index ba8c1b59..ea48c45c 100644 --- a/macos/Runner/Configs/AppInfo.xcconfig +++ b/macos/Runner/Configs/AppInfo.xcconfig @@ -5,10 +5,10 @@ // 'flutter create' template. // The application's name. By default this is also the title of the Flutter window. -PRODUCT_NAME = clide_app +PRODUCT_NAME = clide // The application's bundle identifier -PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide.clideApp +PRODUCT_BUNDLE_IDENTIFIER = net.schweitz.clide // The copyright displayed in application information PRODUCT_COPYRIGHT = Copyright © 2026 net.schweitz.clide. All rights reserved.