Steven
2371bbb1b7
feat(web): add quick language and theme switchers to user menu
...
- Add language and theme selector submenus to UserMenu component for quick access
- Refactor shared utilities: extract THEME_OPTIONS constant and getLocaleDisplayName() function
- Update LocaleSelect and ThemeSelect to use shared utilities, eliminating code duplication
- Make UserMenu reactive with MobX observer for real-time setting updates
- Fix language switching reactivity by immediately updating workspaceStore.state.locale
- Add scrollable menu support for language selector (max-h-[90vh])
- Apply same instant locale update to PreferencesSection for consistency
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-28 22:32:25 +08:00
Steven
d693142dd4
feat(web): enhance code blocks with copy button and fix link navigation
...
Add custom code block renderer with language display and copy functionality. Links now open in new windows, and clicking image links no longer triggers both link navigation and image preview.
- Add CodeBlock component with copy-to-clipboard button and language label
- Configure all markdown links to open in new windows with target="_blank"
- Fix image link behavior to prevent duplicate actions when clicked
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-28 22:06:07 +08:00
Steven
b00df8a9d1
fix(web): remove error notifications for location geocoding failures
...
Remove disruptive error toasts when reverse geocoding or geolocation fails.
Instead, silently fall back to using coordinates as the location placeholder.
This improves UX for users in regions where OpenStreetMap is restricted
(e.g., China) or when CSP blocks external API calls.
Fixes #5198 , #5197
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-28 21:28:29 +08:00
Steven
5f7c758f38
fix(web): make layout and direction settings reactive in UI
...
Fixed issue #5194 where changing the layout (List/Masonry) or sort direction
didn't update the UI until page refresh. The root cause was that ViewState
fields weren't marked as MobX observables, so the UI didn't react to changes
even though values were being persisted to localStorage.
Solution: Added constructor to ViewState that marks orderByTimeAsc and layout
fields as observable, following the same pattern used in other stores like
MemoFilterState.
Fixes #5194
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-28 07:58:15 +08:00
Claude
f241b590a2
chore: update demo data
2025-10-27 09:20:26 +08:00
Claude
596b894ca0
chore: remove unused syntax
...
- Removed the wikilink extension from markdown services in test and API service.
- Deleted the DefaultLink and WikiLink components, simplifying link handling.
- Updated ConditionalComponent to remove wikilink checks.
- Adjusted MemoContent to exclude wikilink handling in markdown rendering.
- Refined markdown styles for compact rendering, enhancing readability.
- Added a Markdown Styling Guide to document the new compact styling approach.
2025-10-27 08:31:57 +08:00
Claude
739fd2cde6
refactor: update markdown parser
...
- Removed the `nodes` field from the `Memo` interface in `memo_service.ts`.
- Updated the `createBaseMemo` function and the `Memo` message functions to reflect the removal of `nodes`.
- Cleaned up the serialization and deserialization logic accordingly.
chore: remove code-inspector-plugin from Vite configuration
- Deleted the `codeInspectorPlugin` from the Vite configuration in `vite.config.mts`.
- Simplified the plugins array to include only `react` and `tailwindcss`.
2025-10-26 11:28:40 +08:00
Steven
bfad0708e2
fix(web): make memoFilterStore reactive by marking fields as observable
...
Fixes the root cause of non-reactive filtering. The MemoFilterState class
was not marking its fields as observable in MobX, so changes to the filters
array were not being tracked.
Added makeObservable configuration to mark:
- filters and shortcut as observable
- addFilter, removeFilter, removeFiltersByFactor, clearAllFilters, setShortcut as actions
This ensures that when tags are clicked and filters are added/removed,
MobX observer components will re-render and fetch new data.
Related to #5189
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 07:01:27 +08:00
Steven
e0b1153269
fix(web): resolve MobX observable reactivity issue in filter computation
...
Fixes filtering functionality that was broken due to improper use of
useMemo with MobX observables. The issue occurred because useMemo's
dependency array uses reference equality, but MobX observable arrays
are mutated in place (reference doesn't change when items are added/removed).
Changes:
- Remove useMemo from filter computation in Home, UserProfile, and Archived pages
- Calculate filters directly in render since components are already MobX observers
- Fix typo: memoFitler -> memoFilter in Archived.tsx
This ensures filters are recalculated whenever memoFilterStore.filters changes,
making tag clicks and other filter interactions work correctly.
Fixes #5189
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-25 06:59:13 +08:00
Florian Dewald
e4f6345342
feat: generate thumbnails for images stored in S3 and generate thumbnails with a maximum size ( #5179 )
2025-10-23 21:29:22 +08:00
Claude
16425ed650
feat(web): improve ReactionSelector UX with hover visibility
...
- Add hover-based visibility for reaction selector in memo cards
- Show reaction selector only on card hover or when popover is open
- Add onOpenChange callback to ReactionSelector for state management
- Reorder action buttons for better visual hierarchy
- Simplify conditional rendering of comment link
2025-10-23 21:20:15 +08:00
Claude
16e0049490
chore: improve layout and spacing in LocationSelector
2025-10-23 20:21:00 +08:00
Claude
7079790d4f
feat: add copy content functionality to MemoActionMenu
2025-10-23 20:05:31 +08:00
Claude
686d31b357
feat: enhance attachment store with MobX observables and actions
2025-10-23 19:55:44 +08:00
Steven
f5624fa682
refactor: standardize MobX store architecture with base classes and utilities
...
Refactored all stores to follow consistent patterns and best practices while keeping MobX:
New Infrastructure:
- Created base-store.ts with StandardState base class and factory functions
- Added store-utils.ts with RequestDeduplicator, StoreError, and OptimisticUpdate helpers
- Added config.ts for MobX configuration and strict mode
- Created comprehensive README.md with architecture guide and examples
Server State Stores (API data):
- attachment.ts: Added request deduplication, error handling, computed properties, delete/clear methods
- workspace.ts: Added Theme type validation, computed memoization, improved initialization
- memo.ts: Enhanced with optimistic updates, request deduplication, structured errors
- user.ts: Fixed temporal coupling, added computed memoization, request deduplication
Client State Stores (UI state):
- view.ts: Added helper methods (toggleSortOrder, setLayout, resetToDefaults), input validation
- memoFilter.ts: Added utility methods (hasFilter, clearAllFilters, removeFiltersByFactor)
Improvements:
- Request deduplication prevents duplicate API calls (all server stores)
- Computed property memoization improves performance
- Structured error handling with error codes
- Optimistic updates for better UX (memo updates)
- Comprehensive JSDoc documentation
- Type-safe APIs with proper exports
- Clear separation between server and client state
All stores now follow consistent patterns for better maintainability and easier onboarding.
🤖 Generated with [Claude Code](https://claude.com/claude-code )
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-23 19:13:42 +08:00
Steven
9121ddbad9
feat(api): support username lookup in GetUser endpoint
...
- Update GetUser to accept both numeric IDs and username strings (users/{id} or users/{username})
- Implement CEL filter parsing for username-based lookups
- Update proto documentation to reflect dual lookup capability
- Simplify frontend user store to use GetUser instead of ListUsers filter
- Update ListUsers filter documentation to show current capabilities
2025-10-22 21:48:34 +08:00
Steven
4d4325eba5
chore: update component styles for consistency
2025-10-22 20:21:58 +08:00
Steven
b4341dd123
fix(web): make reaction selector responsive with scrolling
...
- Replace fixed width (max-w-56) with responsive viewport-based width
- Use 90vw on mobile and max-w-md on desktop for better adaptability
- Add vertical scrolling with max-h-64 overflow-y-auto
- Increase grid columns to 8 on medium+ screens for better space utilization
- Ensures all reactions are accessible regardless of quantity
Fixes #5117
Co-authored-by: GitHub Copilot <noreply@github.com>
2025-10-22 19:31:58 +08:00
Simon
290cdf5d4f
chore: use input type `datetime-local` instead of `text` ( #5174 )
2025-10-22 09:04:37 +08:00
Steven
2d4361d5fe
chore: update memo content formatting and enhance link styling
2025-10-22 08:50:09 +08:00
Steven
d8f7a4e739
chore: tweak demo data
2025-10-21 23:41:46 +08:00
Steven
b19e736f10
chore: tweak demo data
2025-10-20 23:58:49 +08:00
Steven
b4ea7d843f
feat: enhance memo sorting functionality to support multiple fields
2025-10-20 23:41:58 +08:00
Steven
228cc6105d
chore: update StatCard component for improved icon and count rendering in StatisticsView
2025-10-14 23:15:16 +08:00
Steven
56758f107c
chore: refactor ActivityCalendar to use a calendar matrix and improve cell rendering
2025-10-14 21:12:43 +08:00
Steven
5011eb5d70
feat: enhance LocationSelector with improved geolocation handling
2025-10-14 20:23:14 +08:00
Ben Mitchinson
12c4aeeccc
feat: lat/long input fields ( #5152 )
...
Signed-off-by: Ben Mitchinson <mitchinson.dev@gmail.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-14 20:07:01 +08:00
Steven
435cc7b177
feat: implement masonry layout with responsive columns and memo height tracking
2025-10-14 19:46:09 +08:00
Copilot
3245613a88
chore: cleanup components naming
2025-10-12 18:58:37 +08:00
Huang Cheng Ting
d7e751997d
chore: update zh-Hant translation ( #5159 )
2025-10-09 21:30:55 +08:00
Nic Luckie
20233c7051
feat(web): add accessible ConfirmDialog and migrate confirmations; and Markdown-safe descriptions ( #5111 )
...
Signed-off-by: Nic Luckie <nicolasluckie@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-09 00:40:08 +08:00
Claude
f6e025d583
feat: implement theme management with system preference detection and early application
2025-10-08 09:51:49 +08:00
Claude
c3a961229e
fix: update cell opacity colors to use primary theme instead of destructive
2025-09-29 15:01:46 +08:00
github-actions[bot]
074c580214
chore: bump gomark
...
- Bump protoc-gen-go version from v1.36.8 to v1.36.9 in multiple generated files.
- Enhance OpenAPI descriptions for various endpoints to improve clarity and readability.
- Fix typo in the description list handling in the markdown service.
- Update HTMLElement component to handle children and self-closing tags correctly.
- Modify types in the markdown service to include children and self-closing properties for HTML elements.
2025-09-28 16:15:55 +08:00
Steven
6d1485d168
fix: reset state on dialog close and improve dialog open handling
2025-09-17 21:51:46 +08:00
Steven
f44b0850f4
feat: enhance CodeBlock component with theme-aware syntax highlighting
2025-09-16 19:08:28 +08:00
Steven
383553d3c8
feat: add DOMPurify for sanitizing HTML content in CodeBlock component
2025-09-10 20:52:51 +08:00
Giacomo Cerquone
f4e23727bb
fix: avoid hiding reaction selector and keep it always shown for mobile ( #5079 )
2025-09-09 11:35:21 +08:00
Giacomo Cerquone
60123de318
fix: update useEffect dependency to location.key so drawer is closed also when re-navigating to current route ( #5077 )
2025-09-08 16:26:18 +08:00
Steven
5a1af7b240
fix: adjust badge height
2025-09-02 23:18:11 +08:00
Johnny
7cc2df9254
chore: fix linter
2025-08-31 20:22:32 +08:00
Johnny
12ab7e9dde
chore: tweak docs
2025-08-27 21:35:04 +08:00
Johnny
0b4252d1a3
chore: fix linter
2025-08-25 19:52:53 +08:00
Johnny
cf29684882
chore: tweak links
2025-08-25 19:51:01 +08:00
Steven
e07e9f2e9f
fix: theme selector
2025-08-18 20:08:53 +08:00
varsnotwars
fbcdf0fba7
fix update theme not saving ( #5012 )
2025-08-18 01:39:48 +00:00
Johnny
01d3f2f86c
chore: tweak dark theme
2025-08-17 21:11:54 +08:00
Johnny
e93f3cbb8b
refactor: unify theme and apperance
2025-08-17 11:27:59 +08:00
Amazingca
a3add85c95
fix: Update SSO login flow to encode redirect_uri ( #5006 )
...
Signed-off-by: Amazingca <autumn@amazingca.dev>
2025-08-15 08:45:19 +08:00
Sara Vieira
51d643c780
chore: default type to text/plain ( #4993 )
...
Signed-off-by: Sara Vieira <hey@iamsaravieira.com>
Co-authored-by: boojack <stevenlgtm@gmail.com>
2025-08-13 20:09:02 +08:00
Liu Chao
ba7dfb7d98
fix: OpenAPI Parameter Conflict in DeleteMemoTag Endpoint ( #4985 )
...
Signed-off-by: ChaoLiu <chaoliu719@gmail.com>
2025-08-13 07:14:18 +08:00
Huang Cheng Ting
5ba81d629c
fix: prevent default focus behavior on open and close events in sheet ( #4998 )
2025-08-13 07:13:45 +08:00
Huang Cheng Ting
d86756f104
feat: add an option to auto expand subtags in tree mode ( #4994 )
2025-08-11 23:05:36 +08:00
Jason Shawn D' Souza
1dd25634fd
fix: Midi files show up as playable ( #4991 )
2025-08-10 14:23:41 +08:00
varsnotwars
9f8921d3b9
fix: preference not being saved ( #4980 )
...
Signed-off-by: varsnotwars <varsnotwars@protonmail.com>
Co-authored-by: Johnny <yourselfhosted@gmail.com>
2025-08-08 22:50:46 +08:00
Sara Vieira
1f1add1a48
fix: add mime type check for file types ( #4981 )
2025-08-08 20:39:16 +08:00
Tobias Waslowski
15c146cfc5
feat(editor): create text-based autocompleting commands ( #4971 )
2025-08-08 18:55:59 +08:00
Johnny
8576001c83
fix: nl.json
...
Signed-off-by: Johnny <yourselfhosted@gmail.com>
2025-08-07 14:43:35 +08:00
Stephan Paternotte
1043fc8fba
chore: update nl.json ( #4974 )
...
Signed-off-by: Stephan Paternotte <Stephan-P@users.noreply.github.com>
2025-08-07 14:40:53 +08:00
Colin Holzman
8319516d1a
fix: boolean filters ( #4966 )
2025-08-06 21:06:15 +08:00
johnnyjoy
66b4f583a5
fix: linter
2025-08-06 20:22:20 +08:00
aarohee-he
0f2390a0b7
feat: add tooltips to editor buttons ( #4934 )
...
Co-authored-by: Anthony Cooper <antcoop096@gmail.com>
Co-authored-by: aarohee-he <aarohee-he@users.noreply.github.com>
Co-authored-by: Mishti Gala <mishtigala19@gmail.com>
2025-08-06 10:15:06 +08:00
boojack
13957472eb
chore: merge visibility selector into save button
...
Signed-off-by: boojack <stevenlgtm@gmail.com>
2025-08-06 00:03:59 +08:00
johnnyjoy
a5e441b622
chore: tweak dark mdoe styles
2025-08-05 21:07:59 +08:00
johnnyjoy
506b477d50
fix: get user by username
2025-08-04 19:56:12 +08:00
Huang Cheng Ting
896a3dccf2
chore: update zh-Hant translation ( #4962 )
2025-08-04 19:38:58 +08:00
XIN_____
9c60165ba1
chore: update zh-Hans.json ( #4940 )
2025-08-03 19:10:49 +08:00
Colin Holzman
671f4bf88b
fix: shortcuts list ( #4936 )
2025-07-31 19:52:13 +08:00
XIN_____
79c7fcc8b6
chore: update zh-Hans.json ( #4933 )
2025-07-31 19:50:29 +08:00
Colin Holzman
6005d0f3f7
chore: use MEMOS_INSTANCE_URL for "Copy Link" ( #4930 )
2025-07-30 18:57:39 +08:00
Steven
1fcafd807e
chore: enable memo comments by default
2025-07-29 22:31:18 +08:00
Johnny
5074268f4f
fix: action styles in memo editor
2025-07-29 22:10:31 +08:00
Johnny
8f51791da8
chore: update user setting definition
2025-07-29 09:21:51 +08:00
johnnyjoy
c5d497a1f0
chore: update user settings
2025-07-27 23:12:42 +08:00
johnnyjoy
3f56ce47d2
chore: update definition of workspace setting
2025-07-27 15:50:09 +08:00
Steven
c5d2d15278
chore: fix eslint
2025-07-23 23:41:59 +08:00
Steven
f78b277462
chore: simplify add memo relation
2025-07-23 23:34:30 +08:00
johnnyjoy
9b5b7b1ea2
Merge branch 'main' of https://github.com/usememos/memos
2025-07-23 22:22:15 +08:00
johnnyjoy
c5767bf9d6
fix: eslint
2025-07-23 22:22:12 +08:00
Maximilian Krauß
2c7eb23343
feat(inbox): handles errors while fetching and adds possibility to delete items ( #4908 )
2025-07-23 14:21:26 +00:00
johnnyjoy
db63b1949a
chore: fix creator id format
2025-07-23 22:18:47 +08:00
johnnyjoy
ed23cbc011
refactor: memo filter
2025-07-23 22:10:16 +08:00
Steven
ac386c218d
fix: workspace setting keys
2025-07-22 22:59:54 +08:00
Steven
c133f5528a
fix: workspace setting keys in frontend
2025-07-22 22:45:47 +08:00
johnnyjoy
6e45e9f8b6
refactor: deprecate old filter
2025-07-22 21:25:57 +08:00
Johnny
1a3fc4d874
fix: media width
2025-07-21 23:55:28 +08:00
johnnyjoy
7481fe10bf
chore: remove order by pinned
2025-07-21 21:45:10 +08:00
Huang Cheng Ting
f675324994
chore: update zh-Hant translation ( #4895 )
2025-07-18 19:27:03 +08:00
Steven
d7ced7b738
fix: code block style in dark mode
2025-07-18 19:25:29 +08:00
Johnny
74769b3332
fix: user state
2025-07-17 22:36:28 +08:00
Johnny
e3735d2de3
fix: storage setting
2025-07-17 22:02:40 +08:00
Johnny
f09897e4b6
fix: dialog state
2025-07-17 21:58:00 +08:00
Huang Cheng Ting
6119a4b965
chore: update zh-Hant translation ( #4889 )
2025-07-17 21:24:29 +08:00
Maximilian Krauß
c4baba8527
fix(syntax-highlighting): adds missing CSS imports to CodeBlock.tsx ( #4890 )
2025-07-17 21:23:42 +08:00
Jovane Castro
a8db132110
chore(i18n): update hindi translation ( #4858 )
2025-07-16 21:46:18 +08:00
XIN_____
84eacebfbb
chore: update zh text i18n ( #4844 )
2025-07-16 21:46:09 +08:00
Jovane Castro
72b5186a56
chore(i18n): update croatian translation ( #4859 )
2025-07-16 21:45:58 +08:00
Steven
54e6ca37a2
chore: tweak props definition
2025-07-15 23:51:28 +08:00
Jovane Castro
7683b26658
chore(i18n): update farsi translation ( #4855 )
2025-07-15 23:21:16 +08:00
Jovane Castro
4066af989c
chore(i18n): update spanish translation ( #4854 )
2025-07-15 23:20:52 +08:00
Jovane Castro
8ef13468c7
chore(i18n): update hungarian translation ( #4860 )
2025-07-15 23:20:15 +08:00
Jovane Castro
2d4b5a1044
chore(i18n): update german translation ( #4853 )
2025-07-15 19:25:33 +08:00
Jovane Castro
a21112427b
chore(i18n): update french translation ( #4856 )
2025-07-15 19:25:21 +08:00
Jovane Castro
5a53f7178c
chore(i18n): update italian translation ( #4861 )
2025-07-15 19:25:10 +08:00
Jovane Castro
74d35f7e33
chore(i18n): update japanese translation ( #4862 )
2025-07-15 19:24:59 +08:00
Jovane Castro
163038d5e0
chore(i18n): update georgian translation ( #4863 )
2025-07-15 19:24:49 +08:00
Jovane Castro
af60f81f96
chore(i18n): update korean translation ( #4864 )
2025-07-15 18:15:25 +08:00
Jovane Castro
c79b114972
chore(i18n): update marathi translation ( #4865 )
2025-07-15 18:14:41 +08:00
Jovane Castro
a95104a0d4
chore(i18n): update norwegian translation ( #4866 )
2025-07-15 18:14:30 +08:00
Jovane Castro
ff38347272
chore(i18n): update dutch translation ( #4867 )
2025-07-15 18:14:19 +08:00
Jovane Castro
4659b932d0
chore(i18n): update polish translation ( #4868 )
2025-07-15 18:14:09 +08:00
Jovane Castro
d9e13baa37
chore(i18n): update portuguese-Brazil translation ( #4869 )
2025-07-15 18:13:58 +08:00
Jovane Castro
4551a0c52d
chore(i18n): update portuguese translation ( #4870 )
2025-07-15 18:13:40 +08:00
Jovane Castro
bd1f675051
chore(i18n): update slovenian translation ( #4871 )
2025-07-15 18:13:19 +08:00
Jovane Castro
b4046f339e
chore(i18n): update swedish translation ( #4872 )
2025-07-15 18:12:56 +08:00
Jovane Castro
d9d63bf174
chore(i18n): update thai translation ( #4873 )
2025-07-14 23:26:17 +08:00
Jovane Castro
d2dcf26104
chore(i18n): update turkish translation ( #4874 )
2025-07-14 23:26:06 +08:00
Jovane Castro
78387bec83
chore(i18n): update ukrainian translation ( #4875 )
2025-07-14 23:14:06 +08:00
Dedy F. Setyawan
def61a8877
fix(i18n): Improve Indonesian translation ( #4849 )
2025-07-12 21:29:51 +08:00
unuunn
08883b58a7
updated Russian translation ( #4840 )
2025-07-10 07:38:56 +08:00
unuunn
9eafb9bc26
feat: highlight pinned memos ( #4843 )
2025-07-10 07:38:33 +08:00
Steven
29b683d5db
fix: dialog styles
2025-07-09 21:48:02 +08:00
Dedy F. Setyawan
e803d7bc0f
feat(i18n): update Indonesian (id) translations ( #4838 )
2025-07-09 18:08:36 +08:00
unuunn
8732575ea4
fix: dayjs - ISO 8601 compatible DATE_TIME_FORMAT ( #4829 )
2025-07-09 00:16:10 +08:00
XIN_____
0b1b471ee4
chore: update zh-Hant.json ( #4833 )
2025-07-08 23:03:35 +08:00
Steven
3ac4a03229
chore: update i18n
2025-07-08 20:33:44 +08:00
Steven
c1708df7a2
chore: use select/dropdown instead of popover
2025-07-08 20:25:56 +08:00
Jovane Castro
d32924ec48
chore: update i18n for Arabic locale ( #4825 )
2025-07-08 19:57:50 +08:00
Jovane Castro
1e582baf1c
chore: update i18n for Catalan locale ( #4826 )
2025-07-08 19:57:14 +08:00
Jovane Castro
eeb18e5deb
chore: update i18n for Czech locale ( #4827 )
2025-07-08 19:57:08 +08:00
Steven
533591af2b
chore: theme in user setting
2025-07-08 19:50:04 +08:00
Johnny
f907619752
chore: move frontend store
2025-07-07 22:44:08 +08:00
Johnny
12fdf5292d
chore: tweak form style
2025-07-07 22:33:49 +08:00
johnnyjoy
239671eb87
chore: tweak tag style
2025-07-07 22:20:17 +08:00
Johnny
e55ed8a9c7
chore: new theme `whitewall`
2025-07-07 20:13:55 +08:00
Johnny
1b3083b216
feat: themes ( #4824 )
2025-07-07 20:13:22 +08:00
Johnny
3426a791b6
chore: update tag styles
2025-07-07 08:58:09 +08:00
Johnny
fb13d2e63d
chore: tweak colors
2025-07-07 08:46:53 +08:00
Johnny
d8d88c2505
fix: creator view
2025-07-06 22:51:28 +08:00
Johnny
f2e27c16a1
chore: tweak colors
2025-07-06 22:26:54 +08:00
Johnny
240d89fbca
feat: migrate dialogs
2025-07-06 22:01:55 +08:00
Jovane Castro
f70138535c
chore: update i18n for pt-BR text ( #4819 )
2025-07-06 13:59:50 +08:00
Johnny
35928ce5ba
chore: unify colors
2025-07-06 13:55:08 +08:00
Jovane Castro
2e474d37fd
chore: update i18n for pt-BR locale ( #4817 )
2025-07-05 19:32:57 +08:00
Johnny
41fdc7a484
chore: fix frontend linter
2025-07-05 11:44:01 +08:00
Johnny
a3de61a141
chore: fix dark mode
2025-07-05 11:40:49 +08:00
XIN_____
cf16795a98
chore: update zh text ( #4797 )
2025-07-05 11:28:30 +08:00
Johnny
db4b1f5fde
chore: tweak styles
2025-07-05 11:26:59 +08:00
Johnny
91be2f68d1
feat: variant colors ( #4816 )
2025-07-04 23:03:13 +08:00
Steven
0df3171b64
chore: remove command
2025-07-01 20:14:42 +08:00
boojack
0cabdbe020
chore: rename Popover.tsx to popover.tsx
...
Signed-off-by: boojack <stevenlgtm@gmail.com>
2025-07-01 19:43:46 +08:00
Johnny
493832aeb4
refactor: unify components
2025-07-01 19:29:48 +08:00
XIN_____
98d1238674
chore: update i18n text for zh-hans ( #4790 )
2025-06-28 16:06:32 +08:00
Steven
c18d6927ba
chore: update user session table
2025-06-27 00:00:06 +08:00
johnnyjoy
1fffc41f79
feat: sliding expiration for user sessions
2025-06-26 23:03:28 +08:00
XIN_____
e93d695aa8
chore: update i18n for zh text ( #4785 )
...
* Update zh-Hans.json
* Update zh-Hant.json
Co-authored-by: @kiss-fire <iamtaoxin@gmail.com>
---------
Co-authored-by: @kiss-fire <iamtaoxin@gmail.com>
2025-06-26 08:44:32 +08:00
Steven
42d1650c6d
chore: tweak auth service
2025-06-24 23:31:37 +08:00
XIN_____
3a7995c733
chore: update i18n text for zh-hans and zh-hant ( #4784 )
...
chore: update i18n text for zh-hant
2025-06-24 21:59:03 +08:00
johnnyjoy
d6a75bba4c
refactor: webhook service
2025-06-24 21:28:21 +08:00
Johnny
9b15936873
refactor: clean unused fields
2025-06-23 22:55:14 +08:00
Steven
697e54758d
fix: frontend linter
2025-06-23 21:20:37 +08:00
Steven
83febf9928
chore: clean resource definition
2025-06-23 21:08:25 +08:00
Steven
5821bb7a65
chore: update auth service
2025-06-23 20:31:18 +08:00
Steven
59eae4465a
chore: update user session section
2025-06-23 20:12:29 +08:00
XIN_____
bbd984a754
chore: update i18n for zh ( #4780 )
...
* feat: add i18n text for zh
* feat: add i18n text for zh-hant
2025-06-23 09:14:49 +08:00
Johnny
4e3a4e36f6
feat: implement user sessions
2025-06-23 09:13:51 +08:00
johnnyjoy
45df653f37
fix: navigation overflow style
2025-06-22 18:49:12 +08:00
Johnny
77b7fc4441
feat: implement user session
2025-06-22 12:46:13 +08:00
Johnny
741fe35c2a
refactor: rename session methods in auth service
2025-06-21 00:00:58 +08:00
Johnny
cb96d4e76d
fix: embedded attachment
2025-06-18 23:10:41 +08:00
Steven
35df62a96c
chore: remove duplicated prefix from enums
2025-06-18 22:40:54 +08:00
XIN_____
d27639f147
chore: update i18n zh-Hans and zh-Hant ( #4778 )
...
* Update zh-Hans.json
* Update zh-Hant.json
Co-authored-by: @kiss-fire <iamtaoxin@gmail.com>
---------
Co-authored-by: @kiss-fire <iamtaoxin@gmail.com>
2025-06-18 20:46:37 +08:00
Steven
d71fd2f84a
refactor: auth service
2025-06-18 20:25:46 +08:00
Steven
9972a77d9e
refactor: memo service
2025-06-18 19:58:38 +08:00
Steven
91c2a4cef9
refactor: inbox service
2025-06-18 19:06:09 +08:00
Steven
a4920d464b
refactor: attachment service part2
2025-06-18 00:09:19 +08:00
Steven
bb5809cae4
refactor: attachment service
2025-06-17 22:15:19 +08:00
Steven
f6e5da4499
refator: activity service
2025-06-17 09:00:03 +08:00
Steven
dac059a7f7
refactor: identity provider service
2025-06-16 23:56:28 +08:00
Steven
8d8e9b3b30
refactor: shortcut service
2025-06-16 23:10:50 +08:00
Steven
1ea4cc453c
refactor: workspace setting service
2025-06-16 22:51:26 +08:00
Steven
da906c665c
chore: tweak workspace service
2025-06-16 22:20:10 +08:00
Steven
3b0c87591f
refactor: webhook service
2025-06-16 22:10:43 +08:00
Steven
c9ab03e1a0
refactor: user service
2025-06-16 21:49:38 +08:00
Steven
330282d8b2
chore: tweak styles
2025-06-16 20:48:08 +08:00
XIN_____
d386b83b7b
chore: update i18n text for zh ( #4771 )
...
* feat: add i18n text
* feat: add i18n text for zh
2025-06-12 23:09:04 +08:00
Steven
efc0dc9aea
chore: update trim in Autocomplete
2025-06-11 23:21:48 +08:00
Johnny
acb71dfb69
chore: tweak button styles
2025-06-10 22:51:42 +08:00
KidLoveToPlay
df8d1d4f3d
fix: trim queryText and split by regex ( #4766 )
2025-06-09 22:13:39 +08:00
Johnny
f2a01d9ccb
chore: use popover instead of dropdown/menu
2025-06-08 23:21:23 +08:00
Johnny
522da2a114
fix: border color
2025-06-08 00:39:51 +08:00
Johnny
f5c64849d2
chore: upgrade tailwindcss to v4
2025-06-07 10:15:12 +08:00
Ezmana
a50253d311
chore: add missing lines and French translations ( #4761 )
...
Adding missing lines and translations
2025-06-06 19:18:48 +08:00
Steven
786c6f672e
chore: remove prevent default for enter keydown
2025-06-05 23:08:55 +08:00
johnnyjoy
c84dcddbf6
chore: always show visibility label
2025-06-04 22:05:51 +08:00
johnnyjoy
8d9396247b
fix: external newline
2025-06-04 21:28:58 +08:00
johnnyjoy
94d1e20570
chore: update date time format
2025-06-03 21:22:14 +08:00
Steven
6d319900d6
fix: date format
2025-06-03 09:24:38 +08:00
Johnny
d20362e722
chore: tweak stat card
2025-06-02 10:20:11 +08:00
Johnny
3343dc73f7
chore: update navigator
2025-06-02 09:39:50 +08:00
Johnny
663e56747f
chore: replace switch kit
2025-06-02 01:01:29 +08:00
Johnny
e6fe088ac0
chore: fix missing observer
2025-06-01 09:22:33 +08:00
Johnny
fd99e10962
chore: tweak sidebar
2025-06-01 09:13:44 +08:00
Johnny
2595e32f83
chore: simplify date editor
2025-05-31 11:14:47 +08:00
Johnny
673026ffa1
chore: update statistics view
2025-05-31 09:43:24 +08:00
Johnny
376b25a69c
chore: fix visibility selector style ( #4733 )
2025-05-31 09:15:28 +08:00
Johnny
ea4e7a1606
refactor: memo editor ( #4730 )
2025-05-29 07:46:40 +08:00
Maximilian Krauß
77d3853f73
fix: inherits memo visibility for default comment visibility ( #4728 )
2025-05-28 22:18:41 +08:00
Steven
f5ecb66fb8
feat: implement height-based masonry view
2025-05-28 08:27:15 +08:00
Steven
c23aebd648
refactor: memo filter store
2025-05-27 21:14:18 +08:00
Jonathan Fok kan
7c05a9b997
fix(editor): prevent race condition and ensure correct list continuation on Enter ( #4716 )
...
* fix(editor): Prevent race condition and ensure correct list continuation on Enter
_
* fix: always insert newline after preventing default Enter key behavior
2025-05-27 19:57:33 +08:00
Johnny
d76f988bb5
fix: edit for comment
2025-05-27 08:38:14 +08:00
Steven
785c250f3c
refactor: migrate memo store
2025-05-27 08:26:13 +08:00
Steven
dcd68bc5f4
refactor: migrate resource store to v2
2025-05-27 07:55:00 +08:00
Steven
46900f9807
refactor: move store prefixes to common module
2025-05-27 07:49:46 +08:00
eya46
4924b23884
fix: state mismatch in Storage and System pages ( #4719 )
...
* fix: sync storage setting state
* fix: sync customProfile state
2025-05-26 21:50:10 +08:00
Steven
64b27d5a4e
refactor: shortcut service
2025-05-26 21:45:14 +08:00
dabeeduu
6964c1df05
fix: make the save button disabled after a successful update ( #4721 )
...
* fix: make the save button disabled after a successful update
* fix: fixing formatting error
---------
Co-authored-by: didi <didi@localhost.localdomain>
2025-05-26 14:50:13 +08:00
Brian
c6e6b7b93b
feat: add infinite scrolling for memos ( #4715 )
...
* feat(WIP): add prop-driven infinite scroll
* feat(WIP): add global toggle for infinite scrolling under settings
* feat: integrate newly added scroll-mode selection state with backend for persists across refreshes
* fix: default to infinite scrolling over load more button & remove redundant setting option
* fix: rectify linting issues
* Update web/src/components/PagedMemoList/PagedMemoList.tsx
---------
Co-authored-by: Johnny <yourselfhosted@gmail.com>
2025-05-25 23:12:47 +08:00
Dimitris Zervas
c2528c57f0
feat: automatically add a new table row in the editor when pressing enter ( #4706 )
...
Automatically add a new table row in the editor when pressing enter
2025-05-21 20:11:53 +08:00
Steven
72babbb393
fix: dark mode of highlight.js
2025-05-20 23:58:22 +08:00
johnnyjoy
f9c0621c15
refactor: root layout
2025-05-19 22:15:11 +08:00
johnnyjoy
ee99afd7a4
chore: enable location by default
2025-05-19 21:25:51 +08:00
Johnny
d4ebf293f3
chore: fix format
2025-05-19 10:03:05 +08:00
Jake Howard
0440888571
chore: hide "or" when password auth disabled ( #4699 )
...
This makes the UI cleaner, instead only showing the "Sign in with ..." buttons.
2025-05-19 09:59:52 +08:00
Steven
606924b4c9
chore: unify form styles
2025-05-15 22:15:01 +08:00
johnnyjoy
f9e07a2245
feat: support update user's role
2025-05-15 19:36:15 +08:00
Simon
ead2d70082
fix: remove duplicated “Enable” in settings label ( #4692 )
...
remove duplicated “Enable” in settings label
2025-05-15 15:08:50 +08:00
johnnyjoy
ca79990679
refactor: merge sign in requests
2025-05-14 22:13:52 +08:00
Steven
fa1ad7dc72
chore: update list padding
2025-05-12 22:39:25 +08:00
啥也不会的帆
f6054b6138
fix: preview image window proportion error ( #4689 )
2025-05-12 21:32:01 +08:00
Johnny
87798801fc
fix: list styles
2025-05-12 09:09:09 +08:00
Pavel Stržínek
070b392942
chore: Czech locale update ( #4685 )
...
* cs locale updated
* cs locale update
2025-05-11 17:45:32 +08:00
johnnyjoy
cd5abd9e60
chore: update nsfw description
2025-05-08 21:18:46 +08:00
João Tiago
a46301fa77
feat: support child tags in NSFW blur feature ( #4640 )
...
* fix: add support for child nsfw tags
* fix: correctly detect child tags of custom NSFW tags
* Update web/src/components/MemoView.tsx
---------
Co-authored-by: Johnny <yourselfhosted@gmail.com>
2025-04-26 16:23:15 +08:00
johnnyjoy
411a91122b
fix: linter error
2025-04-24 10:11:35 +08:00
johnnyjoy
eb33a604b2
feat: support mapping avatar url from oauth2
2025-04-24 10:07:24 +08:00
Simon
bb892be5b3
feat: improve visual feedback in MemoEditor for drag/drop file uploads ( #4634 )
...
* improve drag/drop file upload UI
* fix eslint errors
* use tailwind for cursor styles
* fix eslint issues
2025-04-18 23:49:59 +08:00
Steven
1a121e350b
chore: update gitignore
2025-04-17 23:11:36 +08:00
RichardYe
76ed1b5cc5
feat: set locale based on browser language when user is not logged in ( #4635 )
...
* feat: set locale based on browser language when user is not logged in
* docs: comments for locale fallback logic
2025-04-17 20:02:41 +08:00
Steven
789a9cc5a2
fix: padding left of list
2025-04-14 23:00:36 +08:00
Johnny
2f6dc2b51f
fix: padding of list
2025-04-10 23:06:14 +08:00
Johnny
97b23f46e6
chore: remove resource title
2025-04-09 22:58:53 +08:00
Johnny
f5d5ebea6f
chore: hide actions for comment
2025-04-06 22:58:43 +08:00
Steven
4f39e00868
chore: fix lint
2025-04-01 20:06:54 +08:00
Johnny
b770042a8a
refactor: migrate eslint
2025-04-01 00:04:43 +08:00
Johnny
09c50a8419
fix: codeblock highlight
2025-03-30 23:49:51 +08:00
Anubhav Singh
a63d9b471b
feat: update ItalicNode to use repeated children instead of content ( #4566 )
...
* feat: update ItalicNode to use repeated children instead of content
* chore: update gomark dependency to latest version
---------
Co-authored-by: Anubhav Singh <anubhav@mail.techindika.com>
2025-03-28 16:15:03 +08:00
olavlan
8bdd1ec009
feat: add norwegian bokmål (nb) translation ( #4561 )
...
* add locale file for norwegian (nb)
* correct spelling
2025-03-27 13:14:12 +08:00
Anubhav Singh
194a49367c
fix: incorrect checkbox state after removing checked items #4549 ( #4552 )
...
Co-authored-by: Anubhav Singh <anubhav@mail.techindika.com>
2025-03-25 21:59:30 +08:00