Skip to content

Commit

Permalink
Merge pull request #1 from Cubxity/master
Browse files Browse the repository at this point in the history
  • Loading branch information
OlshaMB authored Jul 17, 2023
2 parents 730a621 + 299d993 commit 1a3d224
Show file tree
Hide file tree
Showing 24 changed files with 1,800 additions and 1,128 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.documentSelectors": ["**/*.svelte"]
}
36 changes: 27 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Typstudio is built using [Tauri](https://tauri.app/).
- [x] Compiler error markers
- [x] Real time preview
- [ ] Navigate to source
- [ ] More performance optimization
- [x] More performance optimization
- [x] Build/export
- [ ] Complete file explorer system
- [x] Auto complete
Expand All @@ -23,6 +23,32 @@ Typstudio is built using [Tauri](https://tauri.app/).

...and more to come!

## Installing & Running

Typstudio does not have a stable release yet.

### Development Builds

Development builds are provided in [releases](https://github.com/Cubxity/typstudio/releases).
The builds support Linux (amd64), macOS (amd64, aarch64), and Windows (amd64).

### Packages

**Unstable:**

- AUR (maintained by [alerque](https://github.com/alerque)):
`typstudio` ([link](https://aur.archlinux.org/packages/typstudio))

### Note about running on macOS

When running Typstudio for the first time on macOS, you may see a warning saying that the "Developer can not be
verified". This is only a one-time warning for new files downloaded from the internet that aren't notarized.

To be able to work around it, perform the following steps:

- Right-click on the application, and then click "Open"
- Then, you'll see *yet another* warning from Gatekeeper, just click "Open" again to launch Typstudio

## Development

Do note that development (debug) builds are slower than release builds. Pull requests are welcome!
Expand All @@ -46,14 +72,6 @@ pnpm tauri dev # or cargo-tauri dev
pnpm tauri build # or cargo-tauri build
```

### Note about running on macOS

When running Typstudio for the first time on macOS, you may see a warning saying that the "Developer can not be verified". This is only a one-time warning for new files downloaded from the internet that aren't notarized.

To be able to work around it, perform the following steps:
- Right click on the application, and then click "Open"
- Then, you'll see *yet another* warning from Gatekeeper, just click "Open" again to launch Typstudio

### Learn more

- [Tauri](https://tauri.app/v1/guides/)
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "2.0.1",
"@sveltejs/kit": "^1.15.2",
"@tauri-apps/cli": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-static": "2.0.2",
"@sveltejs/kit": "^1.20.0",
"@tauri-apps/cli": "^1.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"svelte": "^3.58.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.3.1",
"tslib": "^2.5.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^3.59.1",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.2",
"typescript": "^5.0.4",
"vite": "^4.3.0-beta.5"
"vite": "^4.3.9"
},
"type": "module",
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"@tauri-apps/api": "^1.3.0",
"clsx": "^1.2.1",
"lodash": "^4.17.21",
"monaco-editor": "^0.37.1",
"monaco-editor": "^0.38.0",
"vscode-oniguruma": "^1.7.0",
"vscode-textmate": "^9.0.0"
}
Expand Down
Loading

0 comments on commit 1a3d224

Please sign in to comment.