mirror of
https://github.com/dathere/ckan-devstaller.git
synced 2026-05-20 01:14:14 +00:00
feat: 0.3.3, update CKAN versions
This commit is contained in:
parent
4e6c263198
commit
57dbecc0ac
9 changed files with 24 additions and 17 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"],
|
||||
});
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ sudo chmod +x ./ckan-devstaller\n\n# Run ckan-devstaller script\n`;
|
|||
const [command, setCommand] = useState("./ckan-devstaller");
|
||||
const [config, setConfig] = useState<Config>({
|
||||
preset: "ckan-only",
|
||||
ckanVersion: "2.11.4",
|
||||
ckanVersion: "2.11.5",
|
||||
extensions: [],
|
||||
features: [],
|
||||
});
|
||||
|
|
|
|||
7
docs/content/docs/changelog/0.3.3.mdx
Normal file
7
docs/content/docs/changelog/0.3.3.mdx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
title: Changelog for ckan-devstaller v0.3.2 (2026-02-20)
|
||||
---
|
||||
|
||||
## Update CKAN versions
|
||||
|
||||
Updates default CKAN versions to 2.11.5 and 2.10.10.
|
||||
Loading…
Add table
Add a link
Reference in a new issue