Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-03-06 | Simplify theming for `Application` | 1 | -246/+0 | ||
2024-01-21 | Convert `Renderer::Theme` to generic `Widget` type | 1 | -4/+5 | ||
2023-11-29 | Fix unused import in `multi_window::application` | 1 | -2/+1 | ||
2023-11-29 | Fix broken intra-doc links | 1 | -0/+2 | ||
2023-07-21 | refactored window storage; | 1 | -54/+42 | ||
new helper window events (Destroyed, Created); clippy + fmt; | |||||
2023-03-15 | Added per-window theme support. | 1 | -3/+4 | ||
2023-03-13 | Code cleanup, clearer comments + removed some unnecessary dupe; | 1 | -2/+3 | ||
Removed `Frames` struct return for `window::frames()` since we are just redrawing every window anyways; Interface dropping; | |||||
2023-02-17 | Iced master merge (again) | 1 | -0/+1 | ||
2023-01-18 | Added window::Id to multi_window application's scale_factor | 1 | -3/+3 | ||
2023-01-09 | Formatting | 1 | -15/+64 | ||
2023-01-09 | Implemented window title update functionality for multiwindow. | 1 | -4/+4 | ||
2023-01-09 | remove `windows` method (use commands instead) | 1 | -13/+0 | ||
2023-01-09 | Introduce `close_requested` for `multi-window` | 1 | -0/+7 | ||
2023-01-09 | add `window::Id` to `view` | 1 | -3/+9 | ||
2023-01-09 | Introduce opaque `window::Id` type | 1 | -0/+14 | ||
2023-01-09 | Unify `Application` and `Program` | 1 | -17/+11 | ||
Instead of creating a separate `multi_window::Program`, the new `multi_window::Application` unifies both traits | |||||
2023-01-09 | Introduce `multi_window` from `pure` | 1 | -93/+16 | ||
2022-12-15 | Implement `window::close` action and remove `should_exit` | 1 | -4/+0 | ||
2022-12-07 | Bump versions :tada: | 1 | -9/+9 | ||
2022-11-10 | Fix outdated links in documentation | 1 | -9/+9 | ||
2022-11-10 | Fix broken documentation links | 1 | -2/+1 | ||
2022-08-18 | Remove `window::Mode` and introduce `Settings::visible` | 1 | -21/+0 | ||
Additionally, only show the window once one frame has been rendered to avoid blank flashes on Windows. | |||||
2022-07-27 | Replace stateful widgets with new `iced_pure` API | 1 | -7/+6 | ||
2022-07-09 | Fix `clippy` lints for all crates and features | 1 | -0/+1 | ||
... and check those in CI as well! | |||||
2022-07-08 | Make `Element` aliases in `iced` compatible with `iced_native` and `iced_pure` | 1 | -3/+5 | ||
2022-07-08 | Fix missing docs in `iced` crate | 1 | -0/+1 | ||
2022-07-08 | Add `Style` variant support to `application::StyleSheet` | 1 | -1/+15 | ||
2022-05-26 | Rename `theme::Definition` to `application::StyleSheet` | 1 | -2/+3 | ||
2022-05-25 | Let a `Theme` control the background color of an application | 1 | -13/+3 | ||
... and remove `Application::background_color` | |||||
2022-05-14 | Draft first-class `Theme` support | 1 | -10/+23 | ||
RFC: https://github.com/iced-rs/rfcs/pull/6 | |||||
2022-05-02 | Replace `hecrj` in links with `iced-rs` | 1 | -9/+9 | ||
2022-04-30 | Point repository links to `0.4` branch in documentation | 1 | -9/+9 | ||
2022-01-28 | Replace `iced_web` with WebGL support in `wgpu` :tada: | 1 | -61/+17 | ||
2021-11-29 | Improve documentation of `Application::run` | 1 | -2/+3 | ||
2021-11-29 | Allow `Application::run` to return on native platforms | 1 | -2/+2 | ||
2021-09-15 | Revert system menus support | 1 | -13/+2 | ||
The current implementation has some important issues on Windows. We will reintroduce the feature once we figure them out! I have kept some of the changes in #945, like the new `keyboard::Modifiers` powered by `bitflags`. | |||||
2021-09-02 | Remove `Clipboard` export in `iced` | 1 | -1/+1 | ||
2021-09-02 | Make `Command` implementations platform-specific | 1 | -23/+8 | ||
This allows us to introduce a platform-specific `Action` to both `iced_native` and `iced_web` and remove the `Clipboard` from `Application::update` to maintain purity. Additionally, this should let us implement further actions to let users query and modify the shell environment (e.g. window, clipboard, and more!) | |||||
2021-07-22 | Introduce `text_multithreading` to `Settings` | 1 | -0/+1 | ||
2021-07-19 | Write documentation for `menu` method in `Application` | 1 | -1/+3 | ||
2021-07-13 | Force `Application::Message` to implement `Clone` | 1 | -1/+1 | ||
A `Message` should represent an application event (e.g. user interactions, command results, subscription results...). Therefore, it should always consist of pure, cloneable data. | |||||
2021-07-05 | Initial menu implementation | 1 | -1/+10 | ||
2021-06-14 | docs: update all 0.2 github links to 0.3 | 1 | -9/+9 | ||
2021-04-09 | use Mode::Hidden instead | 1 | -11/+1 | ||
2021-04-08 | add window visibility | 1 | -0/+11 | ||
2021-03-30 | Add support for graceful exits in `Application` | 1 | -0/+11 | ||
- `Settings` now contains an `exit_on_close_request` field - `Application` has a new `should_exit` method | |||||
2021-03-25 | Introduce `internal_backend` to `iced_wgpu::Settings` | 1 | -1/+1 | ||
2021-03-11 | Implement stub `Clipboard` in `iced_web` | 1 | -2/+6 | ||
We need to figure out browser permissions and use of unstable `web-sys` APIs | |||||
2021-03-11 | Add `clipboard` argument to `Application::update` | 1 | -7/+18 | ||
2020-11-26 | Update example links to point to `0.2` branch | 1 | -8/+11 | ||