chore: remove Configurator due to agreed-upon maintenance burden

This commit is contained in:
rzmk 2026-01-07 08:45:57 -05:00
parent 7d43e76dd8
commit b293be14e1
3 changed files with 67 additions and 71 deletions

View file

@ -113,16 +113,16 @@ const FAQData = [
}, },
], ],
}, },
{ // {
question: 'Why is "experimental" mentioned?', // question: 'Why is "experimental" mentioned?',
answer: "qsv pro may include \"experimental\" features that may not be fully functional/tested and may be outdated. If you encounter any bugs or have any feature/feedback requests, you may contact us on our support site by creating a ticket.", // answer: "qsv pro may include \"experimental\" features that may not be fully functional/tested and may be outdated. If you encounter any bugs or have any feature/feedback requests, you may contact us on our support site by creating a ticket.",
links: [ // links: [
{ // {
label: "Contact support", // label: "Contact support",
url: "https://support.dathere.com", // url: "https://support.dathere.com",
}, // },
], // ],
}, // },
{ {
question: "My question wasn't listed here. Where can I get support?", question: "My question wasn't listed here. Where can I get support?",
answer: "You may request support on our support site by creating a ticket.", answer: "You may request support on our support site by creating a ticket.",
@ -185,8 +185,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
{title} {title}
</h3> </h3>
<p <p
className={`text-customGrayText pt-4 transition-all duration-300 overflow-hidden ${ className={`text-customGrayText pt-4 transition-all duration-300 overflow-hidden ${isOpen ? "max-h-96" : "max-h-0"
isOpen ? "max-h-96" : "max-h-0"
}`} }`}
> >
{content} {content}
@ -195,8 +194,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
{/* Links as buttons with link.url and link.label */} {/* Links as buttons with link.url and link.label */}
{links && links.length > 0 && ( {links && links.length > 0 && (
<div <div
className={`transition-all duration-500 my-2 ${ className={`transition-all duration-500 my-2 ${isOpen ? "block" : "hidden"
isOpen ? "block" : "hidden"
}`} }`}
> >
<div className="flex flex-wrap -m-1 space-x-2"> <div className="flex flex-wrap -m-1 space-x-2">
@ -220,8 +218,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
{screenshots && screenshots.length > 0 && ( {screenshots && screenshots.length > 0 && (
<div <div
className={`transition-all duration-500 my-2 ${ className={`transition-all duration-500 my-2 ${isOpen ? "block" : "hidden"
isOpen ? "block" : "hidden"
}`} }`}
> >
<div className="flex flex-wrap -m-1"> <div className="flex flex-wrap -m-1">
@ -248,8 +245,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
viewBox="0 0 20 20" viewBox="0 0 20 20"
fill="none" fill="none"
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
className={`transition-all duration-500 ${ className={`transition-all duration-500 ${isOpen ? "rotate-[180deg]" : "rotate-[270deg]"
isOpen ? "rotate-[180deg]" : "rotate-[270deg]"
}`} }`}
> >
<path <path

View file

@ -41,12 +41,12 @@ const FeatureCarousel = () => {
"Use the qsv pro command available from the qsv command-line tool to import local files by their file path into the qsv pro Workflow or on Windows launch an Alacritty terminal running csvlens on the file.", "Use the qsv pro command available from the qsv command-line tool to import local files by their file path into the qsv pro Workflow or on Windows launch an Alacritty terminal running csvlens on the file.",
image: commandDemo, image: commandDemo,
}, },
{ // {
title: "Configurator (Experimental) - Run qsv commands in an interactive GUI", // title: "Configurator (Experimental) - Run qsv commands in an interactive GUI",
description: // description:
"Run qsv commands in a graphical user interface and explore its stdout and stderr as raw output. The command's elapsed time is also provided. Note: Not all commands are supported and this feature may be broken/outdated.", // "Run qsv commands in a graphical user interface and explore its stdout and stderr as raw output. The command's elapsed time is also provided. Note: Not all commands are supported and this feature may be broken/outdated.",
image: configuratorDemo, // image: configuratorDemo,
}, // },
]; ];
const OPTIONS = {} const OPTIONS = {}

View file

@ -12,7 +12,7 @@ const pricingData = [
"List 1 CKAN instance at a time", "List 1 CKAN instance at a time",
"Use free tools in Toolbox", "Use free tools in Toolbox",
"Use qsv slice from Flow", "Use qsv slice from Flow",
"Use qsv count and qsv slice in Configurator (experimental)", // "Use qsv count and qsv slice in Configurator (experimental)",
"Export Workflow file data and various data table data to CSV, TSV, TAB, and SSV", "Export Workflow file data and various data table data to CSV, TSV, TAB, and SSV",
], ],
["Import spreadsheets larger than 1MB", ["Import spreadsheets larger than 1MB",
@ -21,7 +21,7 @@ const pricingData = [
"List more than 1 CKAN instance", "List more than 1 CKAN instance",
"Use Pro tools in Toolbox", "Use Pro tools in Toolbox",
"Use more qsv commands other than qsv slice from Flow", "Use more qsv commands other than qsv slice from Flow",
"Use more qsv commands other than qsv count and qsv slice in Configurator (experimental)", // "Use more qsv commands other than qsv count and qsv slice in Configurator (experimental)",
"Export Workflow file data and various data table data to 16 formats", "Export Workflow file data and various data table data to 16 formats",
"Run csvlens on a spreadsheet or data table in a new Alacritty terminal (Windows only)" "Run csvlens on a spreadsheet or data table in a new Alacritty terminal (Windows only)"
], ],