Skip to content

Commit 49468ce

Browse files
committed
Trying with github action to get around https issue... again
1 parent 4eb37b8 commit 49468ce

File tree

6 files changed

+78
-3
lines changed

6 files changed

+78
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Changesets
22
on:
33
push:
44
branches:
5-
- main
5+
- release
66
env:
77
CI: true
88
jobs:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ app.*.map.json
125125
/target
126126
**/node_modules
127127
codecov.*
128-
docs/internal
129128
**/.wireit/
130129
history.txt
131130

docs/internal/bug_log.mdx

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
title: Fluster Bug Log
3+
---
4+
5+
# Bug Log
6+
7+
## Components
8+
9+
### Admonition
10+
- [ ] When the component closes the overflow is briefly exposed.
11+
12+
## Onboarding
13+
- [ ] Notes directory is not being set when it is provided during the onboarding screen, requiring it to then be set again manually.
14+
15+
## AI
16+
- [ ] AI chat isn't working again. I think it's another fucking connection issue looking for some sort of meta data.
17+
18+
19+
## Mdx
20+
- [ ] Split view does not currently save note. Need to map `cmd+s` to 'save' and write the output to the proper path. This is super straight forward, but needs to be implemented.
21+
- [ ] Need to create plugin to generate uniform heading ids so the toc can link to the relevant section in the note. Currently the toc displays properly but has no real functionality.
22+
- [ ] Tags are not being parsed during the split view render. We need to create a unique method to apply all parsers, and expose that method to typescript.
23+
24+
## Math
25+
- [ ] Public directory is not accessible in the compiled app (at least on macos). It works as expected in development but the mathjax fonts are not found in production.
26+
- [ ] Left panel on equations page does not focus first input when page matches and panel is open like it should.
27+
- [ ] Card 'delete' button should trigger confirmation modal. It currently just deletes the equation immediately.
28+
29+
## Editor
30+
- [ ] Changing themes with editor open causes a `you may need to load this theme` error. This will likely need to trigger a reload via an event.
31+
- The code highlighting blocks don't give this error. It's possible there's a solution already implemented there.
32+
- [ ] Need to remove side preview thing in editor in split view. It's way too much space dedicated to something that's unnecessary.
33+
- [ ] Vim mode not configured.
34+
- [x] Split view currently populates the editor with just the base content, with the front matter removed. This needs to be populated with the entire file content or data will be lost on save.
35+
36+
## Task Manager
37+
- [ ] Editing note inside a task works, but it doesn't update the UI until it's navigated to again manually.
38+
- [x] Task list input on left pane does not auto-focus when the pane is opened.
39+
40+
## Equations
41+
- [x] When page is opened while left panel is open, the page appears to load endless until the panel is closed.
42+
43+
### Task Manager Features
44+
45+
- [ ] Enable adding due date.
46+
- Use dayjs to display the time until an item is due or the time that it has been overdue.
47+
- [ ] Enable filtering by completed status.
48+
49+
## Snippets
50+
- [ ] When updating a snippet the editing mode is not properly exited. Make sure to navigate to new route without the search params after updating the snippet.
51+
- [ ] Updating snippet does not appear to succeed.
52+
53+
## Command Palette
54+
- [ ] Command palette entries are not filtering properly, particularly the mdx command items.
55+
56+
## Bib
57+
- [ ] Bib table sort headers are not working.
58+
- [x] Bib table headers have a popover that is having that transparency issue again.
59+
- [x] Bib table is not being populated at all now.
60+
61+
## Pdf
62+
- [ ] Make sure pdf page is completely responsive on all views.
63+
- Check the 'recipes' at [https://github.com/wojtekmaj/react-pdf/wiki/](https://github.com/wojtekmaj/react-pdf/wiki/)

docs/internal/language_interop.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Language Interop
2+
3+
- [ ] We're going to have to sync the bibliography using a typescript or python library for the easy of json serialization and optional types. The biblatex library in rust was showing promise, but the struct won't be serializable in surrealDb without a custom serde serializer.
4+
5+
- [ ] Likewise, in order to use mdx plugins the mdx parsing has to be offloaded to `@mdx-js/mdx`. This might be resolvable in the future but for now this needs to be handled by node.

docs/internal/release.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release
2+
3+
- Create a changeset with `pnpm changeset`
4+
- Version all packages with `pnpm changeset version`
5+
- Update lock files with `pnpm install`
6+
- Commit changes, `git add --all` and `git commit ...`
7+
- Publish npm packages with `pnpm publish -r`

packages/fluster_developer/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
"build-storybook": "storybook build",
3030
"dev": "storybook dev -p 6006",
3131
"lint": "eslint .",
32-
"preview": "vite preview"
32+
"preview": "vite preview",
33+
"ci:publish": "pnpm changeset publish"
3334
},
3435
"wireit": {
3536
"build": {

0 commit comments

Comments
 (0)