3
0
mirror of https://github.com/Qortal/q-support.git synced 2025-02-11 17:55:50 +00:00

Version 1.0 Release

Icon on main page changed to one provided by AlphaX

CategoryList.tsx can now show label based on selected category for greater clarity on what it means.

specific Q-Apps are no longer categories. Instead, an autocomplete textfield lets the user select a specific Q-App. That Q-App/Website's name is stored in the metadescription when published.

Max comment length changed from 200 to 10,000. Comment Textfields are wider. Edit Comment modal is a lot wider.

Choosing a Q-App automatically selects the Q-Apps category in Home.tsx

Byte length of files published in IssueList.tsx and IssueListComponentLevel.tsx only show if a file was published.

Icons for each category show in IssueList.tsx, IssueListComponentLevel.tsx, and IssueContent.tsx

Added fee library, fees are requested when publishing issues. When editing an issue, it can be changed from unpaid to paid.

added modal that shows fee history, used to confirm prices are appropriate.
This commit is contained in:
Qortal Dev 2024-05-21 15:17:16 -06:00 committed by IrohDW
parent 6bbe68a3fa
commit 87c990c164
2 changed files with 30 additions and 25 deletions

50
.gitignore vendored
View File

@ -1,26 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
src/assets/icons/*
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
src/assets/icons/*
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.zip

View File

@ -438,6 +438,11 @@ export const PublishIssue = ({ editId, editContent }: NewCrowdfundProps) => {
}}
>
<CategoryList
initialCategories={
selectedCategories.length > 0
? selectedCategories
: undefined
}
categoryData={allCategoryData}
ref={categoryListRef}
columns={3}