Read more of this story at Slashdot.
Read more of this story at Slashdot.
Welcome to the Leanpub Launch video for De-Enshittify Windows 11: How to make Windows 11 work for you, not against you by Paul Thurrott!
The post Leanpub Book Launch: De-Enshittify Windows 11 by Paul Thurrott appeared first on Thurrott.com.
OpenAI's GPT-5.4 consolidates advances in reasoning, coding, and agentic workflows while adding a 1 million-token context window and native desktop/computer-use capabilities. Benchmarks show major gains for professional knowledge work and automation: faster, more token-efficient reasoning; improved tool calling via toolsearch; and desktop navigation with higher accuracy than human baselines. Real-world testing highlights exceptional coding and long-form writing abilities alongside persistent issues in frontend taste, excessive verbosity, and occasional premature task completion.
The AI Daily Brief helps you understand the most important news and discussions in AI.
Subscribe to the podcast version of The AI Daily Brief wherever you listen: https://pod.link/1680633614
Get it ad free at http://patreon.com/aidailybrief
Learn more about the show https://aidailybrief.ai/
We’re excited to announce the release of Ionic Framework 8.8! This update makes customizing components easier and more flexible by adding new CSS classes, exposing internal elements through CSS Shadow Parts, and introducing new events for the Modal and Refresher components.
Many of the features in this release support community-driven projects adapting Ionic Framework to implement both the latest iOS design system (Liquid Glass) and a Material Design 3 theme, giving developers the tools to create modern, fully branded design systems.
Take a look at the new features that make customizing Ionic Framework simpler and more flexible. 
New Drag Events for Sheet & Card ModalsModals now expose new drag events that let you hook into the complete drag lifecycle. With detailed movement data available, you can respond to position, velocity, progress, and breakpoint changes in real time, enabling richer, more interactive experiences.
ionDragStart — fires at the start of the drag gesture without any detailsionDragMove — fires continuously while the modal is being dragged with currentY, deltaY, velocityY, progress, and, for sheet modals, snapBreakpointionDragEnd — fires at the end of the drag gesture with currentY, deltaY, velocityY, progress, and, for sheet modals, snapBreakpointThese events make it possible to coordinate surrounding UI with the gesture. As the modal moves, you can reveal or conceal headers, footers, tab bars, or other interface elements, adjust layout and styling based on progress, and react instantly as the modal shifts position or approaches a breakpoint.
For more information, refer to the Modal documentation.
Enhanced Dual Knob Support in RangeRange now includes significant improvements to dual knob behavior, bringing more predictable interactions and powerful new styling capabilities.
We fixed an issue where knob identities (A and B) would unintentionally swap when crossing over each other. Knobs now retain their static identity, ensuring consistent behavior and styling.
Beyond behavior improvements, Range now exposes additional host classes and Shadow Parts when dualKnobs is enabled, giving you complete control over styling and interaction states.
When dualKnobs is enabled, the following classes will be applied to the host element:
range-dual-knobs — always appliedrange-pressed-a — applied when the knob with identity A is pressedrange-pressed-b — applied when the knob with identity B is pressedrange-pressed-lower — applied when the knob with position lower is pressedrange-pressed-upper — applied when the knob with position upper is pressedThese classes allow you to style the component based on the existence of the dualKnobs property and which knob is currently being interacted with.
Dual knob ranges now support two styling models:
Static Identity (A / B)
These parts always refer to the same physical knob, even if the knobs cross.
knob-handle-a, knob-handle-b — applied to the handle of the knob with identity A or B, respectivelyknob-a, knob-b — applied to the knob itself with identity A or Bpin-a, pin-b — applied to the pin of the knob with identity A or BDynamic Position (Lower / Upper)
These parts reflect the knob’s current value position. If the knobs cross, these parts swap automatically.
knob-handle-lower, knob-handle-upper — applied to the knob handle in the lower or upper position, respectivelyknob-lower, knob-upper — applied to the knob itself in the lower or upper positionpin-lower, pin-upper — applied to the pin of the knob in the lower or upper positionThis makes it possible to style knobs either by consistent identity or by their relative position within the range.
To support advanced interaction styling, Range now applies state parts to the active knob’s handle, knob, and pin:
activated — applied when the knob is activefocused — applied when the knob is focusedhover — applied when the knob is hoveredpressed — applied when the knob is being pressedOnly one set of these state parts is applied at a time when dualKnobs is enabled, ensuring only the knob that has that state will be styled.
These updates make dual knob ranges more reliable, more accessible, and significantly more customizable. Build advanced filtering controls, price selectors, or ranges fully branded to match your design system.
For more information, refer to the Range documentation.
New Pull Events for RefresherRefresher now emits two new events that give more visibility into the pull gesture lifecycle, letting you respond to user interactions in real time. You can detect exactly when a user starts pulling, and when the refresher has fully returned to its inactive state, including whether the pull completed successfully or was canceled.
ionPullStart — fires when the user begins pulling down, without any detailsionPullEnd — fires after the refresher returns to its inactive state, with a reason property ('complete' or 'cancel') indicating how the pull gesture endedionStart has been deprecated in favor of ionPullStart to improve consistency across event names. Going forward, event names follow a structure of action + timing (such as Start, Move, or End) to make their purpose more explicit and to allow for better scalability as new events are added.
The event payload is unchanged, so migrating only requires updating the event name.
Example Migration:
// Before
refresher.addEventListener('ionStart', () => {
console.log('Pull Start');
});
// After
refresher.addEventListener('ionPullStart', () => {
console.log('Pull Start');
});
For more information, refer to the Refresher documentation.
New CSS Shadow Parts and ClassesWe’ve introduced several new CSS Shadow Parts and classes to provide granular control over component internals previously inaccessible via global CSS.
The .content-fullscreen class is now added to ion-content when the fullscreen property is set to true.
The following Shadow Parts give developers control over the headers and calendar elements in the Datetime component:
calendar-days-of-week — container for the day-of-the-week header (both weekdays and weekends) when using a grid style layoutcalendar-header — container for the month/year picker, navigation buttons, and days of the week in a grid layoutdatetime-header — contains the content for the title slot and the selected datedatetime-selected-date — contains the selected datedatetime-title — contains the title slot contentnavigation-button — buttons used to navigate to the next or previous month in grid layoutprevious-button — button used to navigate to the previous month in grid layoutnext-button — button used to navigate to the next month in grid layoutwheel — wheel container when using a wheel style layout or in the month/year picker in grid layoutTo provide greater flexibility in customizing the appearance and structure of list elements, the following Shadow Parts have been added for Item, Item Divider, Item Option, and List Header components:
Item
inner — arranges the item contentcontainer — contains the default slotItem Divider
inner — arranges the divider contentcontainer — contains the default slotItem Option
inner — arranges the option contentcontainer — contains the start, icon-only, default, and end slotsList Header
inner — arranges the list header contentThe .range-value-min and .range-value-max classes are applied to ion-range when the value reaches the configured min or max. When dualKnobs is enabled, both classes may be applied at the same time if the lower and upper knobs are set to the minimum and maximum values, respectively.
The following Shadow Parts allow developers to adjust the appearance of the Select component:
bottom — container for helper text, error text, and counterwrapper — clickable label element wrapping the entire form fieldinner — manages the slots, selected values or placeholder, and toggle iconsThe following Shadow Parts enable customization of the Toast overlay and its content:
wrapper — outer wrapper for the toast overlaycontent — live region containing the header and message
New and Updated PropertiesA new swipeGesture property has been added to Segment View to control whether the view can be swiped.
This setting is independent of the swipeGesture property on Segment. If you want to fully disable swiping, you must set swipeGesture to "false" on both the Segment and Segment View components.
A new cancelText property has been added to the modal interface for Select.
When using interface="modal", developers can now customize the cancel button text by setting the cancelText property on ion-select. The value will be passed through to the underlying modal.
<ion-select label="Fruit" interface="modal" value="bananas" cancel-text="Close me">
<ion-select-option value="apples">Apples</ion-select-option>
<ion-select-option value="bananas">Bananas</ion-select-option>
<ion-select-option value="oranges">Oranges</ion-select-option>
</ion-select>
The disabled and readonly properties on Textarea now reflect to the host element.
When either property is set, the corresponding HTML attribute is applied to the component’s host element. This improves consistency with native behavior and enables styling via attribute selectors.
Angular Injector SupportModalController and PopoverController in Angular now support passing a custom Injector when creating overlays.
By default, overlays use the root injector for dependency injection. With this update, you can provide a custom injector so that components rendered inside a modal or popover can access services and tokens that are scoped to a specific route or component tree.
This is especially useful when:
Dir directive for bidirectional text supportYou can pass the current component’s injector directly:
const modal = await this.modalController.create({
component: MyModalComponent,
injector: this.injector,
});
Or create a custom injector with specific providers:
const customInjector = Injector.create({
providers: [{ provide: MyService, useValue: myServiceInstance }],
parent: this.injector,
});
const modal = await this.modalController.create({
component: MyModalComponent,
injector: customInjector,
});
PopoverController supports the same injector option.
This enhancement removes the need for wrapper components or other workarounds when overlays need access to locally scoped dependencies.
Check out the Angular Overlays documentation for more information.
Stencil UpdateStencil has been updated from v4.38 to v4.43. This update includes various compiler improvements and bug fixes. For a complete list of changes, check out the Stencil Changelog.
As with any dependency update, if you encounter issues related to this Stencil upgrade, please open a new issue so we can investigate.
Looking Ahead: Ionic Framework 9Ionic Framework 8.8 marks the final minor release in the Ionic 8 lifecycle. As we look ahead, our focus is shifting to the next major evolution of the framework: Ionic Framework 9.
Ionic Framework 9 will introduce significant architectural changes aimed at making the framework more modular and easier to extend. These changes lay the foundation for greater flexibility in how developers customize and build on top of Ionic Framework.
One of the main areas to benefit from Ionic Framework 9’s new architecture is theming. Developers will be able to:
While we are not planning to ship an official Liquid Glass theme right now, the goal is to provide the underlying architecture that enables developers to implement these types of design systems themselves without waiting on us.
Ionic Framework 9 will add support for React Router 6, enabling developers to adopt modern React routing patterns. This update lays the groundwork for future support of React Router 7. We’ll share more details on this soon.
Ionic Framework 8.8 enhances customization today while also paving the way for the modular architecture and React Router 6 support coming in Ionic Framework 9. We can’t wait to see what you build with it! 
The post Announcing Ionic Framework 8.8 appeared first on Ionic Blog.
We’re improving how add-ins appear on the ribbon in Outlook on the web and the new Outlook on Windows. These Outlook ribbon updates make add-ins easier to find and align the experience across Outlook clients. Improvements include:
To make sure your add-in shows the intended group name when these updates take effect, review your manifest and update the group label if needed. Where the group name is specified depends on the type of manifest your add-in uses.
"extensions": [
{
…
"ribbons": [
{
…
"tabs": [
{
…
"groups": [
{
"id": "msgComposeCmdGroup",
"label": "Contoso Add-in",
…
}
]
}
]
}
]
}
]
<ExtensionPoint xsi:type="MessageComposeCommandSurface">
<OfficeTab id="TabDefault">
<Group id="msgComposeCmdGroup">
<Label resid="GroupLabel"/>
…
</Group>
</OfficeTab>
</ExtensionPoint>
…
<Resources>
…
<bt:ShortStrings>
<bt:String id="GroupLabel" DefaultValue="Contoso Add-in"/>
</bt:ShortStrings>
</Resources>
To learn more about these ribbon updates, watch the February 2026 recording of the Office Add-ins community call.
The post Prepare your add-in for Outlook ribbon improvements appeared first on Microsoft 365 Developer Blog.
Today, we’re bringing OpenAI’s GPT‑5.4 Thinking to Microsoft 365 Copilot and Microsoft Copilot Studio—available in addition to the recent GPT-5.3 Instant update. With GPT‑5.4 Thinking, Copilot can think deeper on complex work by combining advances in reasoning, coding, and agentic workflows—helping it work through technical prompts and longer tasks with higher-quality outputs, and less back-and-forth. Work IQ brings relevant work context into Copilot so it can reason, personalize, and help you turn deeper thinking into context-aware drafts, slides, and spreadsheets.
We are committed to bringing you the latest cutting-edge AI innovation and model choice built for work and tailored to your business needs—with the security, compliance, and privacy that you expect from Microsoft.
GPT-5.4 Thinking is now available in Copilot Studio early release cycle environments and begins rolling out today to Microsoft 365 Copilot users with priority access and Microsoft 365 Copilot Chat users with standard access. Learn more about standard versus priority access here.
In Copilot Chat, you can select GPT‑5.4 Think deeper from the model selector under More, and in Copilot Studio you can select GPT‑5.4 Reasoning.
Our team will continue to refine the experience based on your feedback. Learn more about Microsoft 365 Copilot and Microsoft Copilot Studio and start transforming work with Copilot today. For model details, learn more about GPT-5.4 Thinking here.
For the latest research insights on the future of work and generative AI, visit WorkLab.