-
Notifications
You must be signed in to change notification settings - Fork 526
feat: recent-doc plugin. #3131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Kokoro2336
wants to merge
66
commits into
tauri-apps:v2
Choose a base branch
from
Kokoro2336:feat/recent-doc
base: v2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: recent-doc plugin. #3131
Changes from 3 commits
Commits
Show all changes
66 commits
Select commit
Hold shift + click to select a range
e124d75
feat: add recent document api support.
Kokoro2336 6b54c13
chore: update Cargo.toml.
Kokoro2336 6af4a72
chore: format some code.
Kokoro2336 e343853
Update plugins/recent-doc/build.rs
Kokoro2336 8f1d050
Update plugins/recent-doc/package.json
Kokoro2336 aca0920
Update plugins/recent-doc/Cargo.toml
Kokoro2336 3a3eaf6
Merge branch 'v2' into feat/recent-doc
Kokoro2336 b122618
Merge branch 'v2' into feat/recent-doc
Kokoro2336 7232d85
style: fmt the code.
Kokoro2336 2e0b2bd
chore: update pnpm lock file.
Kokoro2336 c264a89
fix: bug fixing.
Kokoro2336 dadd07b
chore: update dependencies.
Kokoro2336 10220d6
chore: update .changes/config.json.
Kokoro2336 908a368
chore: update github workflows.
Kokoro2336 676f548
Remove execute command
Legend-Master ffe6afd
Revert back to ts 5
Legend-Master cf7708b
fix: update default permissions.
Kokoro2336 19a0b18
Merge remote-tracking branch 'origin/feat/recent-doc' into feat/recen…
Kokoro2336 98d01f4
chore: update change file.
Kokoro2336 08174a2
fix: remove execute permissions.
Kokoro2336 c31ebf4
fix: fix macos implementation.
Kokoro2336 3e68476
fix: fix windows implemenation.
Kokoro2336 f33a2fd
fix: macos impl.
Kokoro2336 0f46ebc
Update plugins/recent-doc/Cargo.toml
Kokoro2336 410ad93
fix: revert the versions.
Kokoro2336 d313ba2
Merge remote-tracking branch 'origin/feat/recent-doc' into feat/recen…
Kokoro2336 17f8ab0
Update plugins/recent-doc/Cargo.toml
Legend-Master 6b6837c
Merge remote-tracking branch 'origin/feat/recent-doc' into feat/recen…
Kokoro2336 397b364
chore: fix build.rs.
Kokoro2336 93843bd
style: fmt toml.
Kokoro2336 c87c000
style: format toml.
Kokoro2336 ae2b7f4
fix: fix warnings.
Kokoro2336 6acd4f0
Small cleanup
Legend-Master c13bbee
feat: add recent-doc to examples/api.
Kokoro2336 6faea98
chore: rm redundant comments.
Kokoro2336 ebcd3b9
refactor: raise the imports.
Kokoro2336 55ca389
Clean up
Legend-Master 0fec61c
fix: windows impl.
Kokoro2336 fbe05bd
Merge remote-tracking branch 'origin/feat/recent-doc' into feat/recen…
Kokoro2336 95bc396
style: fmt rust code.
Kokoro2336 9d7adbd
style: fmt toml.
Kokoro2336 e25e95b
chore: update README.md.
Kokoro2336 c01d964
Revert "style: fmt toml."
Kokoro2336 da9b6d0
fix: windows impl.
Kokoro2336 810a820
style: fmt rust code.
Kokoro2336 e7851b1
chore: fix configs.
Kokoro2336 b6ed6f8
Merge branch 'v2' into feat/recent-doc
Kokoro2336 0f3944c
fix: windows impl.
Kokoro2336 ad8a802
Merge branch 'feat/recent-doc' of github.com:Kokoro2336/plugins-works…
Kokoro2336 78353aa
chore: remove redundant comments.
Kokoro2336 a573b67
chore: win dependence.
Kokoro2336 cecfcf1
fix: naming.
Kokoro2336 6c24b9b
Clean up
Legend-Master fa4ba89
Revert "fix: naming."
Legend-Master bcafdc7
Clean up
Legend-Master feef679
Return errors
Legend-Master 2e1c583
Use runes mode
Legend-Master 5161b39
Fix unused variable
Legend-Master 26a67b1
chore: expose the apis.
Kokoro2336 ab34550
chore: document behaviors and requirements.
Kokoro2336 a3e6687
chore: update doc.
Kokoro2336 94a794d
chore: docs.
Kokoro2336 3c9f5fc
Merge branch 'v2' of github.com:Kokoro2336/plugins-workspace into v2
Kokoro2336 02739c7
Merge branch 'v2' into feat/recent-doc
Kokoro2336 fc416f3
chore: delete 2.
Kokoro2336 271413e
Merge branch 'v2' into feat/recent-doc
Kokoro2336 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| [package] | ||
| name = "tauri-plugin-recent-doc" | ||
| version = "1.0.0" | ||
| description = "Manage recent documents in your Tauri application." | ||
| edition = { workspace = true } | ||
| authors = { workspace = true } | ||
| license = { workspace = true } | ||
| rust-version = { workspace = true } | ||
| repository = { workspace = true } | ||
| links = "tauri-plugin-recent-doc" | ||
|
|
||
| # Platforms supported by the plugin | ||
| # Support levels are "full", "partial", "none", "unknown" | ||
| # Details of the support level are left to plugin maintainer | ||
| [package.metadata.platforms] | ||
| windows = { level = "full", notes = "" } | ||
| linux = { level = "none", notes = "" } | ||
| macos = { level = "full", notes = "" } | ||
| android = { level = "none", notes = "" } | ||
| ios = { level = "none", notes = "" } | ||
|
|
||
|
|
||
| [build-dependencies] | ||
| tauri-plugin = { workspace = true, features = ["build"] } | ||
|
|
||
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
|
||
| [dependencies] | ||
| serde = { workspace = true } | ||
| serde_json = { workspace = true } | ||
| tauri = { workspace = true } | ||
| log = { workspace = true } | ||
| thiserror = { workspace = true } | ||
|
|
||
| [target."cfg(target_os = \"macos\")".dependencies] | ||
| objc2 = "0.6.0" | ||
|
|
||
| [target."cfg(target_os = \"windows\")".dependencies] | ||
| windows = { version = "0.62.2", features = [ | ||
| "Win32_Foundation", | ||
| "Win32_System_Com", | ||
| "Win32_UI_Shell", | ||
| ] } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| SPDXVersion: SPDX-2.1 | ||
| DataLicense: CC0-1.0 | ||
| PackageName: tauri | ||
| DataFormat: SPDXRef-1 | ||
| PackageSupplier: Organization: The Tauri Programme in the Commons Conservancy | ||
| PackageHomePage: https://tauri.app | ||
| PackageLicenseDeclared: Apache-2.0 | ||
| PackageLicenseDeclared: MIT | ||
| PackageCopyrightText: 2019-2022, The Tauri Programme in the Commons Conservancy | ||
| PackageSummary: <text>Tauri is a rust project that enables developers to make secure | ||
| and small desktop applications using a web frontend. | ||
| </text> | ||
| PackageComment: <text>The package includes the following libraries; see | ||
| Relationship information. | ||
| </text> | ||
| Created: 2019-05-20T09:00:00Z | ||
| PackageDownloadLocation: git://github.com/tauri-apps/tauri | ||
| PackageDownloadLocation: git+https://github.com/tauri-apps/tauri.git | ||
| PackageDownloadLocation: git+ssh://github.com/tauri-apps/tauri.git | ||
| Creator: Person: Daniel Thompson-Yvetot |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.