jettypod 4.4.113 → 4.4.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -151,14 +151,6 @@ function initializeJettypod(projectPath) {
|
|
|
151
151
|
// The database (work.db) will be created automatically when getDb() is called
|
|
152
152
|
// runMigrations() in getDb() will create all necessary tables
|
|
153
153
|
|
|
154
|
-
// Seed onboarding epic for blank projects
|
|
155
|
-
if (isBlankProject(projectPath)) {
|
|
156
|
-
try {
|
|
157
|
-
seedOnboardingEpic(projectPath);
|
|
158
|
-
} catch (e) {
|
|
159
|
-
console.error('Could not seed onboarding:', e.message);
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
154
|
}
|
|
163
155
|
|
|
164
156
|
/**
|
|
@@ -778,6 +770,15 @@ function registerIpcHandlers() {
|
|
|
778
770
|
cachedDb = null;
|
|
779
771
|
projectRoot = selectedPath;
|
|
780
772
|
|
|
773
|
+
// Seed onboarding epic for blank projects (safe to call every open - has dupe check)
|
|
774
|
+
if (isBlankProject(selectedPath)) {
|
|
775
|
+
try {
|
|
776
|
+
seedOnboardingEpic(selectedPath);
|
|
777
|
+
} catch (e) {
|
|
778
|
+
console.error('Could not seed onboarding:', e.message);
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
|
|
781
782
|
// Add to recent projects list
|
|
782
783
|
addRecentProject(selectedPath);
|
|
783
784
|
|
|
@@ -826,6 +827,15 @@ function registerIpcHandlers() {
|
|
|
826
827
|
cachedDb = null;
|
|
827
828
|
projectRoot = projectPath;
|
|
828
829
|
|
|
830
|
+
// Seed onboarding epic for blank projects (safe to call every open - has dupe check)
|
|
831
|
+
if (isBlankProject(projectPath)) {
|
|
832
|
+
try {
|
|
833
|
+
seedOnboardingEpic(projectPath);
|
|
834
|
+
} catch (e) {
|
|
835
|
+
console.error('Could not seed onboarding:', e.message);
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
|
|
829
839
|
// Update recent projects (move to top)
|
|
830
840
|
addRecentProject(projectPath);
|
|
831
841
|
|