mirror of
https://github.com/dathere/qsvpro.dathere.com.git
synced 2026-02-04 00:45:33 +00:00
chore: remove Configurator due to agreed-upon maintenance burden
This commit is contained in:
parent
7d43e76dd8
commit
b293be14e1
3 changed files with 67 additions and 71 deletions
|
|
@ -113,16 +113,16 @@ const FAQData = [
|
|||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
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.",
|
||||
links: [
|
||||
{
|
||||
label: "Contact support",
|
||||
url: "https://support.dathere.com",
|
||||
},
|
||||
],
|
||||
},
|
||||
// {
|
||||
// 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.",
|
||||
// links: [
|
||||
// {
|
||||
// label: "Contact support",
|
||||
// url: "https://support.dathere.com",
|
||||
// },
|
||||
// ],
|
||||
// },
|
||||
{
|
||||
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.",
|
||||
|
|
@ -185,8 +185,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
|
|||
{title}
|
||||
</h3>
|
||||
<p
|
||||
className={`text-customGrayText pt-4 transition-all duration-300 overflow-hidden ${
|
||||
isOpen ? "max-h-96" : "max-h-0"
|
||||
className={`text-customGrayText pt-4 transition-all duration-300 overflow-hidden ${isOpen ? "max-h-96" : "max-h-0"
|
||||
}`}
|
||||
>
|
||||
{content}
|
||||
|
|
@ -195,8 +194,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
|
|||
{/* Links as buttons with link.url and link.label */}
|
||||
{links && links.length > 0 && (
|
||||
<div
|
||||
className={`transition-all duration-500 my-2 ${
|
||||
isOpen ? "block" : "hidden"
|
||||
className={`transition-all duration-500 my-2 ${isOpen ? "block" : "hidden"
|
||||
}`}
|
||||
>
|
||||
<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 && (
|
||||
<div
|
||||
className={`transition-all duration-500 my-2 ${
|
||||
isOpen ? "block" : "hidden"
|
||||
className={`transition-all duration-500 my-2 ${isOpen ? "block" : "hidden"
|
||||
}`}
|
||||
>
|
||||
<div className="flex flex-wrap -m-1">
|
||||
|
|
@ -248,8 +245,7 @@ const FAQBox = ({ defaultOpen, title, links, screenshots, content }) => {
|
|||
viewBox="0 0 20 20"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className={`transition-all duration-500 ${
|
||||
isOpen ? "rotate-[180deg]" : "rotate-[270deg]"
|
||||
className={`transition-all duration-500 ${isOpen ? "rotate-[180deg]" : "rotate-[270deg]"
|
||||
}`}
|
||||
>
|
||||
<path
|
||||
|
|
|
|||
|
|
@ -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.",
|
||||
image: commandDemo,
|
||||
},
|
||||
{
|
||||
title: "Configurator (Experimental) - Run qsv commands in an interactive GUI",
|
||||
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.",
|
||||
image: configuratorDemo,
|
||||
},
|
||||
// {
|
||||
// title: "Configurator (Experimental) - Run qsv commands in an interactive GUI",
|
||||
// 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.",
|
||||
// image: configuratorDemo,
|
||||
// },
|
||||
];
|
||||
|
||||
const OPTIONS = {}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ const pricingData = [
|
|||
"List 1 CKAN instance at a time",
|
||||
"Use free tools in Toolbox",
|
||||
"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",
|
||||
],
|
||||
["Import spreadsheets larger than 1MB",
|
||||
|
|
@ -21,7 +21,7 @@ const pricingData = [
|
|||
"List more than 1 CKAN instance",
|
||||
"Use Pro tools in Toolbox",
|
||||
"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",
|
||||
"Run csvlens on a spreadsheet or data table in a new Alacritty terminal (Windows only)"
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue