Skip to content

Commit 788a765

Browse files
authored
feat(Notes): Make notes more powerful
2 parents d630281 + 67ed9f8 commit 788a765

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+3120
-1104
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,17 @@ tech changes will usually be stripped from release notes for the public
1515
- Vision blocking shapes will now ignore themselves if they are closed
1616
- e.g. a tree trunk will be visible, but what's behind the tree trunk will remain hidden
1717
- Open polygons will behave as they have in the past
18-
- [tech] ModalStack now supports dynamically inserted
18+
- Note system is overhauled
19+
- notes can now either be global or local (i.e. campaign specific)
20+
- notes can now be shared with other players
21+
- notes are now accessed through a special note manager
22+
- this provides filtering / creation / editing / ...
23+
- multiple notes can be popped out at once
24+
- popout notes can be collapsed and freely resized
25+
- popout notes are now markdown aware
26+
- If the text area of a note is still in focus after 5 seconds and an edit was made, a server save is done
27+
- _see the release notes for all the changes_
28+
- [tech] ModalStack now supports dynamically inserted modals
1929

2030
### Fixed
2131

admin-client/src/env.d.ts

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
/// <reference types="vite/client" />
22

3-
declare module '*.vue' {
4-
import { DefineComponent } from 'vue'
5-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
6-
const component: DefineComponent<{}, {}, any>
7-
export default component
3+
declare module "*.vue" {
4+
import { DefineComponent } from "vue";
5+
const component: DefineComponent<{}, {}, any>;
6+
export default component;
87
}

client/.env.development

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VITE_VUE_URL="https://unpkg.com/vue@3/dist/vue.esm-browser.js"
1+
VITE_VUE_URL="https://unpkg.com/vue@3.4.3/dist/vue.esm-browser.js"

0 commit comments

Comments
 (0)