@turnipxenon/pineapple 2.4.48 → 2.4.49
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.
- package/.idea/workspace.xml +15 -14
- package/.svelte-kit/__package__/template/seaweed/SeaweedTemplate.svelte +2 -1
- package/.svelte-kit/ambient.d.ts +0 -2
- package/.svelte-kit/generated/server/internal.js +1 -1
- package/dist/template/seaweed/SeaweedTemplate.svelte +2 -1
- package/package.json +1 -1
- package/src/lib/template/seaweed/SeaweedTemplate.svelte +2 -1
package/.idea/workspace.xml
CHANGED
|
@@ -4,9 +4,8 @@
|
|
|
4
4
|
<option name="autoReloadType" value="SELECTIVE" />
|
|
5
5
|
</component>
|
|
6
6
|
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="
|
|
7
|
+
<list default="true" id="accb6ba2-c343-4f84-ad30-6e2d71eceee5" name="Changes" comment="Add back gameSectionFirst behaviour">
|
|
8
8
|
<change beforePath="$PROJECT_DIR$/src/lib/template/seaweed/SeaweedTemplate.svelte" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/template/seaweed/SeaweedTemplate.svelte" afterDir="false" />
|
|
9
|
-
<change beforePath="$PROJECT_DIR$/src/lib/template/seaweed/SeaweedTemplateData.ts" beforeDir="false" afterPath="$PROJECT_DIR$/src/lib/template/seaweed/SeaweedTemplateData.ts" afterDir="false" />
|
|
10
9
|
</list>
|
|
11
10
|
<option name="SHOW_DIALOG" value="false" />
|
|
12
11
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
@@ -323,15 +322,9 @@
|
|
|
323
322
|
<workItem from="1712469166120" duration="5613000" />
|
|
324
323
|
<workItem from="1712474982019" duration="1446000" />
|
|
325
324
|
<workItem from="1712476456680" duration="329000" />
|
|
326
|
-
<workItem from="1712476890510" duration="
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
<option name="closed" value="true" />
|
|
330
|
-
<created>1711498416272</created>
|
|
331
|
-
<option name="number" value="00112" />
|
|
332
|
-
<option name="presentableId" value="LOCAL-00112" />
|
|
333
|
-
<option name="project" value="LOCAL" />
|
|
334
|
-
<updated>1711498416272</updated>
|
|
325
|
+
<workItem from="1712476890510" duration="1084000" />
|
|
326
|
+
<workItem from="1712532951966" duration="51000" />
|
|
327
|
+
<workItem from="1712533167568" duration="73000" />
|
|
335
328
|
</task>
|
|
336
329
|
<task id="LOCAL-00113" summary="Fix default page sorting">
|
|
337
330
|
<option name="closed" value="true" />
|
|
@@ -717,7 +710,15 @@
|
|
|
717
710
|
<option name="project" value="LOCAL" />
|
|
718
711
|
<updated>1712477348736</updated>
|
|
719
712
|
</task>
|
|
720
|
-
<
|
|
713
|
+
<task id="LOCAL-00161" summary="Add back gameSectionFirst behaviour">
|
|
714
|
+
<option name="closed" value="true" />
|
|
715
|
+
<created>1712477820038</created>
|
|
716
|
+
<option name="number" value="00161" />
|
|
717
|
+
<option name="presentableId" value="LOCAL-00161" />
|
|
718
|
+
<option name="project" value="LOCAL" />
|
|
719
|
+
<updated>1712477820038</updated>
|
|
720
|
+
</task>
|
|
721
|
+
<option name="localTasksCounter" value="162" />
|
|
721
722
|
<servers />
|
|
722
723
|
</component>
|
|
723
724
|
<component name="TypeScriptGeneratedFilesManager">
|
|
@@ -775,7 +776,6 @@
|
|
|
775
776
|
</option>
|
|
776
777
|
</component>
|
|
777
778
|
<component name="VcsManagerConfiguration">
|
|
778
|
-
<MESSAGE value="Add kudos to 0gust1 Add kudos to 0gust1 for documenting how to deploy sveltekit app on Azure App service" />
|
|
779
779
|
<MESSAGE value="Correct app_build_command in Azure SWA GithubActions app_build_command by default runs npm install when it should be running yarn install" />
|
|
780
780
|
<MESSAGE value="Add resolutions to use Node 20 in Azure SWA GithubActions" />
|
|
781
781
|
<MESSAGE value="Add resolutions to use Node 20 in Azure SWA GithubActions Reference: https://github.com/Azure/static-web-apps-cli/issues/756#issuecomment-1775748572" />
|
|
@@ -800,6 +800,7 @@
|
|
|
800
800
|
<MESSAGE value="Remove unneeded script check in yarn build" />
|
|
801
801
|
<MESSAGE value="Fix yarn dependencies" />
|
|
802
802
|
<MESSAGE value="Support swappable group for backwards compatibility" />
|
|
803
|
-
<
|
|
803
|
+
<MESSAGE value="Add back gameSectionFirst behaviour" />
|
|
804
|
+
<option name="LAST_COMMIT_MESSAGE" value="Add back gameSectionFirst behaviour" />
|
|
804
805
|
</component>
|
|
805
806
|
</project>
|
|
@@ -66,7 +66,6 @@ const parseQTTerms = async () => {
|
|
|
66
66
|
qtSet.forEach((t) => seaweedTemplateData.queryTermMap.set(t, true));
|
|
67
67
|
syncQT();
|
|
68
68
|
};
|
|
69
|
-
parseQTTerms();
|
|
70
69
|
const filterSearchParams = (searchParams) => {
|
|
71
70
|
const isFunOn = searchParams.get("fun")?.trim();
|
|
72
71
|
if (isFunOn === "true") {
|
|
@@ -124,6 +123,8 @@ onMount(async () => {
|
|
|
124
123
|
if (letChaos) {
|
|
125
124
|
runChaos(document.body);
|
|
126
125
|
chaosDone = true;
|
|
126
|
+
} else {
|
|
127
|
+
await parseQTTerms();
|
|
127
128
|
}
|
|
128
129
|
});
|
|
129
130
|
const toggleTerm = (term) => {
|
package/.svelte-kit/ambient.d.ts
CHANGED
|
@@ -165,7 +165,6 @@ declare module '$env/static/private' {
|
|
|
165
165
|
export const PUBLIC: string;
|
|
166
166
|
export const PWD: string;
|
|
167
167
|
export const PyCharm: string;
|
|
168
|
-
export const SESSIONNAME: string;
|
|
169
168
|
export const SHLVL: string;
|
|
170
169
|
export const SYSTEMDRIVE: string;
|
|
171
170
|
export const SYSTEMROOT: string;
|
|
@@ -358,7 +357,6 @@ declare module '$env/dynamic/private' {
|
|
|
358
357
|
PUBLIC: string;
|
|
359
358
|
PWD: string;
|
|
360
359
|
PyCharm: string;
|
|
361
|
-
SESSIONNAME: string;
|
|
362
360
|
SHLVL: string;
|
|
363
361
|
SYSTEMDRIVE: string;
|
|
364
362
|
SYSTEMROOT: string;
|
|
@@ -21,7 +21,7 @@ export const options = {
|
|
|
21
21
|
app: ({ head, body, assets, nonce, env }) => "<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<link rel=\"icon\" href=\"" + assets + "/favicon.png\" />\n\t\t<meta name=\"viewport\" content=\"width=device-width\" />\n\t\t" + head + "\n\t</head>\n\n\t<body data-sveltekit-preload-data=\"hover\" data-theme=\"crimson\">\n\t\t<div style=\"display: contents\" class=\"h-full overflow-hidden\">" + body + "</div>\n\t</body>\n</html>\n",
|
|
22
22
|
error: ({ status, message }) => "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family:\n\t\t\t\t\tsystem-ui,\n\t\t\t\t\t-apple-system,\n\t\t\t\t\tBlinkMacSystemFont,\n\t\t\t\t\t'Segoe UI',\n\t\t\t\t\tRoboto,\n\t\t\t\t\tOxygen,\n\t\t\t\t\tUbuntu,\n\t\t\t\t\tCantarell,\n\t\t\t\t\t'Open Sans',\n\t\t\t\t\t'Helvetica Neue',\n\t\t\t\t\tsans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n"
|
|
23
23
|
},
|
|
24
|
-
version_hash: "
|
|
24
|
+
version_hash: "193d8c0"
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
export async function get_hooks() {
|
|
@@ -66,7 +66,6 @@ const parseQTTerms = async () => {
|
|
|
66
66
|
qtSet.forEach((t) => seaweedTemplateData.queryTermMap.set(t, true));
|
|
67
67
|
syncQT();
|
|
68
68
|
};
|
|
69
|
-
parseQTTerms();
|
|
70
69
|
const filterSearchParams = (searchParams) => {
|
|
71
70
|
const isFunOn = searchParams.get("fun")?.trim();
|
|
72
71
|
if (isFunOn === "true") {
|
|
@@ -124,6 +123,8 @@ onMount(async () => {
|
|
|
124
123
|
if (letChaos) {
|
|
125
124
|
runChaos(document.body);
|
|
126
125
|
chaosDone = true;
|
|
126
|
+
} else {
|
|
127
|
+
await parseQTTerms();
|
|
127
128
|
}
|
|
128
129
|
});
|
|
129
130
|
const toggleTerm = (term) => {
|
package/package.json
CHANGED
|
@@ -93,7 +93,6 @@
|
|
|
93
93
|
qtSet.forEach(t => seaweedTemplateData.queryTermMap.set(t, true));
|
|
94
94
|
syncQT();
|
|
95
95
|
};
|
|
96
|
-
parseQTTerms();
|
|
97
96
|
|
|
98
97
|
/** qt values and what they mean:
|
|
99
98
|
* undefined: set all qt terms to font-weight: bold
|
|
@@ -185,6 +184,8 @@
|
|
|
185
184
|
if (letChaos) {
|
|
186
185
|
runChaos(document.body);
|
|
187
186
|
chaosDone = true;
|
|
187
|
+
} else {
|
|
188
|
+
await parseQTTerms();
|
|
188
189
|
}
|
|
189
190
|
});
|
|
190
191
|
|