Skip to content

Commit

Permalink
V2.0.0 release : rewriting in Tauri V2 beta engine
Browse files Browse the repository at this point in the history
Release V2.0.0 on `main` branch : rewriting all this app in Tauri V2 beta engine.
  • Loading branch information
Jimskapt authored Apr 27, 2024
2 parents 9735df9 + 85c175c commit fa3fd35
Show file tree
Hide file tree
Showing 90 changed files with 16,073 additions and 4,312 deletions.
30 changes: 29 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
/target
**/*.conf.toml
/output.log
/fractus-atlas
/src-front/wasm/
target/

# 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
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
3 changes: 3 additions & 0 deletions .prettierrc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
useTabs = true
singleQuote = true
insertPragma = true
1 change: 1 addition & 0 deletions .taurignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src-wasm
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"tauri-apps.tauri-vscode",
"rust-lang.rust-analyzer",
"esbenp.prettier-vscode"
]
}
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Loading

0 comments on commit fa3fd35

Please sign in to comment.