Go to file
2021-04-13 03:32:59 +02:00
_typeFix updated readme with how to actually compile this properly 2021-04-05 16:46:58 +02:00
public big dialog overhaul + async nextticks 2021-03-04 01:27:07 +01:00
src 0.1.5 - added floating window support to store, added floating cheatsheet, few bugfixes 2021-04-13 03:32:59 +02:00
src-electron 0.1.5 - added floating window support to store, added floating cheatsheet, few bugfixes 2021-04-13 03:32:59 +02:00
.editorconfig First commit 2021-01-30 14:43:13 +01:00
.eslintignore First commit 2021-01-30 14:43:13 +01:00
.eslintrc.js reworked hierarchical tree and keybinds 2021-02-22 23:30:18 +01:00
.gitignore First commit 2021-01-30 14:43:13 +01:00
.postcssrc.js First commit 2021-01-30 14:43:13 +01:00
babel.config.js First commit 2021-01-30 14:43:13 +01:00
FUNDING.yml Update FUNDING.yml 2021-04-06 10:45:11 +10:00
package-lock.json 0.1.5 - added a floating window support 2021-04-12 21:27:44 +02:00
package.json 0.1.5 - added a floating window support 2021-04-12 21:27:44 +02:00
quasar.conf.js 0.1.4 Final RC (ui edits) 2021-03-19 21:59:07 +01:00
quasar.extensions.json 0.1.5 - added a floating window support 2021-04-12 21:27:44 +02:00
README.md Updated README to have correct commands 2021-04-12 09:05:10 -04:00
suggestionList.md 0.1.5 - added floating window support to store, added floating cheatsheet, few bugfixes 2021-04-13 03:32:59 +02:00
tsconfig.json added tag support and further improved search 2021-03-03 02:10:05 +01:00

Fantasia archive (fantasiaarchive)

A database manager for world building

Install the dependencies

npm install
  • IMPORTAN NOTE: Due to issues with this package being written in somewhat older version of nodeJS, the script will fizzle out upon building due to wrong version of .d.ts file in one of the included NPM packages.
    • The proper replacement file can be found in _typeFix/index.d.ts
    • The faulty file can be found in node_modules\builder-util\node_modules\@types\fs-extra\index.d.ts
    • To fix this issue, simply copy the contents of the proper replacement over the buggy faulty file (or just replace its contents)
    • Once this is done, the build should run as normal without any issues

Start the app in development mode (hot-code reloading, error reporting, etc.)

npm run dev

Build the app for production

npm run build

New object files go into

src\databaseManager\blueprints

Document configuration details can be found in the following file

I_Blueprint.ts

Customize the configuration

See Configuring quasar.conf.js.