Skip to content

Commit

Permalink
[Official] - Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaSetyadi committed Aug 11, 2022
1 parent a664f16 commit ec91fc0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## FormGear | Ver. 1.1.0

> August 10, 2022
> August 11, 2022
### Optimized Performance
- Reuse `Auxiliary` type from ResponseStore in RemarkStore, PrincipalStore, and MediaStore
Expand Down Expand Up @@ -75,6 +75,7 @@
}
```
- Add name atribut for every dataKey
- Add console.log FormGear version

### Fixed
- Fix cannot delete nestedNumber
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "form-gear",
"version": "1.0.3",
"version": "1.1.0",
"description": "FormGear is a framework engine for dynamic form creation and complex form processing and validation for data collection.",
"info": "It is easy to use and efficiently handle nested inquiries to capture everything down to the last detail. Unlike other similar framework, validation is handled in a FALSE condition in which each field is validated against a test equation. This leads to a more efficient and effective way to validate each component.",
"homepage": "https://solid-form-gear.vercel.app/",
Expand Down
14 changes: 11 additions & 3 deletions src/FormGear.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,20 @@ import remarkJSON from './data/default/remark.json';

import { initReferenceMap } from "./GlobalFunction";

export const gearVersion = '1.1.0-rc';
export const gearVersion = '1.1.0';
export let templateVersion = '0.0.0';
export let validationVersion = '0.0.0';
export function FormGear(referenceFetch, templateFetch, presetFetch, responseFetch, validationFetch, mediaFetch, remarkFetch, config, uploadHandler, GpsHandler, offlineSearch, onlineSearch, mobileExit, setResponseMobile, setSubmitMobile, openMap) {

console.log('form-gear@'+gearVersion);


console.log(" _____ _____ ");
console.log(" / __/__ ______ _ / ___/__ ___ _____");
console.log(" / _// _ \\/ __/ ' \\/ (_ / -_) _ `/ __/");
console.log("/__/ \\___/_/ /_/_/_/\\___/\\__/\\_,_/_/ %c@"+gearVersion,' font-family:system-ui; font-weight: bold; color: #14b8a6;');

// console.log('%cform-gear@'+gearVersion, ' font-family:system-ui; font-weight: bold; color: #14b8a6;');
// console.log('form-gear@'+gearVersion);

// console.time('FormGear renders successfully in ');
let timeStart = new Date();
let stuff = {
Expand Down

0 comments on commit ec91fc0

Please sign in to comment.