From 6ebef3ccd70912e9ed2e6f7b1aa3be392d704746 Mon Sep 17 00:00:00 2001 From: Konstantin Hudyakov Date: Fri, 12 Jul 2024 11:16:14 +0300 Subject: [PATCH] IJPL-43794 Refactor: create a separate module for New Users Onboarding And bundle it only to IDEA for now. Separate module is needed because later we need to add the dependency on `intellij.platform.experiment` to implement the A/B experiment. We can't add this dependency to the existing `intellij.platform.ide.newUiOnboarding` module because `intellij.platform.experiment` is bundled only in IDEA now. So then New UI Onboarding will be present only in IDEA, while it also should be in the other IDEs. GitOrigin-RevId: 3dc524b97d7ef6667e0062db5d76aa1f3b56d12f --- .idea/modules.xml | 1 + .../resources/META-INF/IdeaPlugin.xml | 1 + intellij.idea.community.main.iml | 1 + platform/new-users-onboarding/api-dump.txt | 0 .../intellij.platform.ide.newUsersOnboarding.iml | 14 ++++++++++++++ .../intellij.platform.ide.newUsersOnboarding.xml | 5 +++++ 6 files changed, 22 insertions(+) create mode 100644 platform/new-users-onboarding/api-dump.txt create mode 100644 platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml create mode 100644 platform/new-users-onboarding/resources/intellij.platform.ide.newUsersOnboarding.xml diff --git a/.idea/modules.xml b/.idea/modules.xml index 771760dcb814..8051bfbe6593 100644 --- a/.idea/modules.xml +++ b/.idea/modules.xml @@ -639,6 +639,7 @@ + diff --git a/community-resources/resources/META-INF/IdeaPlugin.xml b/community-resources/resources/META-INF/IdeaPlugin.xml index 989a14c36673..8047403b359a 100644 --- a/community-resources/resources/META-INF/IdeaPlugin.xml +++ b/community-resources/resources/META-INF/IdeaPlugin.xml @@ -12,6 +12,7 @@ + diff --git a/intellij.idea.community.main.iml b/intellij.idea.community.main.iml index 6b0d9914fa57..46f5f33c2707 100644 --- a/intellij.idea.community.main.iml +++ b/intellij.idea.community.main.iml @@ -211,6 +211,7 @@ + diff --git a/platform/new-users-onboarding/api-dump.txt b/platform/new-users-onboarding/api-dump.txt new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml b/platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml new file mode 100644 index 000000000000..6fd4e23f277f --- /dev/null +++ b/platform/new-users-onboarding/intellij.platform.ide.newUsersOnboarding.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/platform/new-users-onboarding/resources/intellij.platform.ide.newUsersOnboarding.xml b/platform/new-users-onboarding/resources/intellij.platform.ide.newUsersOnboarding.xml new file mode 100644 index 000000000000..c12c4a7b5a81 --- /dev/null +++ b/platform/new-users-onboarding/resources/intellij.platform.ide.newUsersOnboarding.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file