Skip to content
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

Bring Loam up to date with Foam v0.26.0 #34

Open
wants to merge 34 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
db7eb97
Improved YAML regex delimiter
riccardoferretti Mar 22, 2024
931ad7a
[doc] documentation additions (#1358)
Walshkev May 31, 2024
07e02c2
add Walshkev as a contributor for doc (#1359)
allcontributors[bot] May 31, 2024
22b837f
Adding redirect to code-of-conduct
riccardoferretti Jun 3, 2024
cef8d2a
generate copy without wikilinks (#1365)
hereistheusername Jul 10, 2024
362d6f8
add hereistheusername as a contributor for code (#1367)
allcontributors[bot] Jul 10, 2024
27b9b45
Refactored `utils.ts`
riccardoferretti Jun 28, 2024
1fa4f37
Moved around settings functions
riccardoferretti Jun 28, 2024
e6512cf
Fixed imports
riccardoferretti Jul 13, 2024
ccb92ad
Preparation for next release
riccardoferretti Jul 13, 2024
4a410d1
v0.25.12
riccardoferretti Jul 13, 2024
d24814d
Add pdf export recipe (#1383)
Hegghammer Aug 15, 2024
4989796
docs: fix spelling and grammar (#1382)
declanmillar Aug 15, 2024
d2dd979
add Hegghammer as a contributor for doc (#1384)
allcontributors[bot] Aug 15, 2024
13a340e
Exclude workspace when linking to a file (#1372)
pderaaij Aug 22, 2024
a8296c2
403 potential error-related comment (#1393)
PiotrAleksander Sep 12, 2024
cd9ee4d
add PiotrAleksander as a contributor for doc (#1394)
allcontributors[bot] Sep 12, 2024
dde11f8
Foam as Web Extension (#1395)
riccardoferretti Sep 17, 2024
d70e441
Preparation for next release
riccardoferretti Oct 1, 2024
9606dcc
v0.26.0
riccardoferretti Oct 1, 2024
9d0ba87
Add polyfills to web bundle (#1401)
pderaaij Oct 9, 2024
c2e5e4b
Preparation for next release
riccardoferretti Oct 9, 2024
d7c92f8
v0.26.1
riccardoferretti Oct 9, 2024
5a6ef64
Improve performance via Triemap in workspace (#1406)
pderaaij Oct 15, 2024
2686b9a
Preparation for next release
riccardoferretti Nov 6, 2024
764750f
v0.26.2
riccardoferretti Nov 6, 2024
6a4bd34
Stop iterating over all resources for finding matching identifiers (#…
pderaaij Nov 12, 2024
0fca141
Preparing for next release
riccardoferretti Nov 12, 2024
aa311b2
v0.26.3
riccardoferretti Nov 12, 2024
e7ee143
Improved URI handling for virtual FS (#1409)
riccardoferretti Nov 12, 2024
5d11818
Prepare for next release
riccardoferretti Nov 12, 2024
31cfeb3
v0.26.4
riccardoferretti Nov 12, 2024
bb6faee
Edited command menu titles to make case consistent (#1415)
markschaver Nov 23, 2024
6be4f00
add markschaver as a contributor for doc (#1416)
allcontributors[bot] Nov 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Exclude workspace when linking to a file (foambubble#1372)
* Exclude workspace when linking to a file
  • Loading branch information
pderaaij authored Aug 22, 2024
commit 13a340eb1df57a7e5f23897deb66ae5f425d1fda
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ export const markdownItWikilinkNavigation = (
? `${resource.title}${formattedSection}`
: alias;
const resourceLink = `/${vscode.workspace.asRelativePath(
toVsCodeUri(resource.uri)
toVsCodeUri(resource.uri),
false
)}`;
return getResourceLink(
`${resource.title}${formattedSection}`,
Expand Down