moment/TODO.md

93 lines
3.3 KiB
Markdown
Raw Normal View History

- Refactoring
2019-04-21 07:58:46 +10:00
- Migrate more JS functions to their own files / Implement in Python instead
- Don't bake in size properties for components
2019-05-07 11:07:59 +10:00
- Cleanup unused icons
2019-04-21 07:58:46 +10:00
- Bug fixes
- dataclass-like `default_factory` for ListItem
- Local echo messages all have the same time
2019-05-10 09:48:49 +10:00
- Prevent briefly seeing login screen if there are accounts to
resumeSession for but they take time to appear
2019-04-29 01:01:38 +10:00
- 100% CPU usage when hitting top edge to trigger messages loading
- Sending `![A picture](https://picsum.photos/256/256)` → not clickable?
2019-05-07 11:07:59 +10:00
- Icons, images and HStyle singleton aren't reloaded
- `MessageDelegate.qml:63: TypeError: 'reloadPreviousItem' not a function`
2019-04-21 07:58:46 +10:00
- UI
2019-05-07 13:27:31 +10:00
- "the tree arrows could be smaller"
2019-04-29 05:52:26 +10:00
- Improve SidePane appearance when at min width
- Accounts delegates background
2019-04-29 01:01:38 +10:00
- Server selection
- Register/Forgot? for SignIn dialog
2019-04-29 01:01:38 +10:00
- Scaling
- See [Text.fontSizeMode](https://doc.qt.io/qt-5/qml-qtquick-text.html#fontSizeMode-prop)
2019-04-28 14:44:55 +10:00
- Test HGlassRectangle elements when no effects are available
- Add room
2019-04-27 06:02:20 +10:00
- Leave room
- Forget room warning popup
2019-04-22 00:44:04 +10:00
- Prevent using the SendBox if no permission (power levels)
- Spinner when loading past room events, images or clicking buttons
- Better theming/styling system
- See about <https://doc.qt.io/qt-5/qtquickcontrols2-configuration.html>
2019-04-21 07:58:46 +10:00
- Settings page
- Multiaccount aliases
2019-05-10 09:48:49 +10:00
- Message/text selection
2019-04-21 07:58:46 +10:00
- Major features
- E2E
2019-05-10 09:48:49 +10:00
- Device verification
- Member pane
- Edit/delete own devices
- Request room keys from own other devices
- Auto-trust accounts within the same client
- Import/export keys
2019-04-21 07:58:46 +10:00
- Uploads
- QQuickImageProvider
- Read receipts
- Status message and presence
2019-05-10 09:48:49 +10:00
- Links preview
2019-04-21 07:58:46 +10:00
- Client improvements
- nio.MatrixRoom has `typing_users`, no need to handle it on our own
- Don't send setTypingState False when focus lost if nothing in sendbox
2019-05-07 13:08:36 +10:00
- Initial sync filter and lazy load, see weechat-matrix `_handle_login()`
2019-05-07 13:27:31 +10:00
- See also `handle_response()`'s `keys_query` request
2019-04-27 06:02:20 +10:00
- HTTP/2
- `retry_after_ms` when rate-limited
- Direct chats category
2019-04-21 07:58:46 +10:00
- On sync, check messages API, if a limited sync timeline was received
- Markdown: don't turn #things into title (space), disable __ syntax
- Push instead of replacing in stack view
- Make links in room subtitle clickable, formatting?
- `<pre>` scrollbar on overflow
- Handle cases where an avatar char is # or @ (#alias room, @user\_id)
- When inviting someone to direct chat, room is "Empty room" until accepted,
it should be the peer's display name instead.
- Keep an accounts order
2019-04-27 06:02:20 +10:00
- See `Qt.callLater()` potential usages
- Banner name color instead of bold
2019-04-21 07:58:46 +10:00
- Missing nio support
2019-05-10 09:48:49 +10:00
- Invite events are missing their timestamps (needed for sorting)
- Left room events after client reboot
2019-04-21 07:58:46 +10:00
- `org.matrix.room.preview_urls` event
- `m.room.aliases` event
- Support "Empty room (was ...)" after peer left
2019-04-27 06:02:20 +10:00
- Waiting for approval/release
- nio avatars
- olm/olm-devel 0.3.1 in void repos
- Distribution
- Review setup.py, add dependencies
- README.md
- Use PyInstaller or pyqtdeploy
- Test command:
```
pyinstaller --onefile --windowed --name harmonyqml \
--add-data 'harmonyqml/components:harmonyqml/components' \
--additional-hooks-dir . \
--upx-dir ~/opt/upx-3.95-amd64_linux \
run.py
```