feat: 0.3.3, update CKAN versions

This commit is contained in:
rzmk 2026-04-29 10:45:08 +00:00
parent 4e6c263198
commit 57dbecc0ac
9 changed files with 24 additions and 17 deletions

View file

@ -11,26 +11,26 @@ export default function CKANVersionBuilderSection({ config, setConfig }: any) {
<Cards>
<Card
icon={<SailboatIcon />}
title="2.11.4"
title="2.11.5"
className={
config.ckanVersion === "2.11.4"
config.ckanVersion === "2.11.5"
? selectedCardClasses
: "cursor-pointer"
}
onClick={() => {
setConfig({ ...config, ckanVersion: "2.11.4" });
setConfig({ ...config, ckanVersion: "2.11.5" });
}}
></Card>
<Card
icon={<SailboatIcon />}
title="2.10.9"
title="2.10.10"
className={
config.ckanVersion === "2.10.9"
config.ckanVersion === "2.10.10"
? selectedCardClasses
: "cursor-pointer"
}
onClick={() => {
setConfig({ ...config, ckanVersion: "2.10.9" });
setConfig({ ...config, ckanVersion: "2.10.10" });
}}
></Card>
</Cards>

View file

@ -18,8 +18,8 @@ export default function PresetsBuilderSection({
<Card
className={
config.preset === "ckan-only" &&
config.extensions.length === 0 &&
config.features.length === 0
config.extensions.length === 0 &&
config.features.length === 0
? selectedCardClasses
: "cursor-pointer"
}
@ -49,7 +49,7 @@ export default function PresetsBuilderSection({
setConfig({
...config,
preset: "dathere-default",
ckanVersion: "2.11.4",
ckanVersion: "2.11.5",
extensions: ["ckanext-scheming", "DataStore", "DataPusher+"],
features: ["enable-ssh"],
});