Skip to content

Commit

Permalink
feat(Notes): Make notes more powerful
Browse files Browse the repository at this point in the history
  • Loading branch information
Kruptein authored Jan 4, 2024
2 parents d630281 + 67ed9f8 commit 788a765
Show file tree
Hide file tree
Showing 70 changed files with 3,120 additions and 1,104 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,17 @@ tech changes will usually be stripped from release notes for the public
- Vision blocking shapes will now ignore themselves if they are closed
- e.g. a tree trunk will be visible, but what's behind the tree trunk will remain hidden
- Open polygons will behave as they have in the past
- [tech] ModalStack now supports dynamically inserted
- Note system is overhauled
- notes can now either be global or local (i.e. campaign specific)
- notes can now be shared with other players
- notes are now accessed through a special note manager
- this provides filtering / creation / editing / ...
- multiple notes can be popped out at once
- popout notes can be collapsed and freely resized
- popout notes are now markdown aware
- If the text area of a note is still in focus after 5 seconds and an edit was made, a server save is done
- _see the release notes for all the changes_
- [tech] ModalStack now supports dynamically inserted modals

### Fixed

Expand Down
9 changes: 4 additions & 5 deletions admin-client/src/env.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/// <reference types="vite/client" />

declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
declare module "*.vue" {
import { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}
2 changes: 1 addition & 1 deletion client/.env.development
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VITE_VUE_URL="https://unpkg.com/vue@3/dist/vue.esm-browser.js"
VITE_VUE_URL="https://unpkg.com/vue@3.4.3/dist/vue.esm-browser.js"
Loading

0 comments on commit 788a765

Please sign in to comment.