<?xml version="1.0"?>
<rss version="2.0"><channel><title>News: Software News</title><link>https://nsaneforums.com/news/software-news/page/157/?d=2</link><description>News: Software News</description><language>en</language><item><title>Back to BASIC&#x2014;the Most Consequential Programming Language in the History of Computing</title><link>https://nsaneforums.com/news/software-news/back-to-basic%E2%80%94the-most-consequential-programming-language-in-the-history-of-computing-r24499/</link><description><![CDATA[<p>
	<span style="font-size:18px;"><strong>Coding was a preserve of elites, until BASIC hit the streets.</strong></span>
</p>

<p>
	 
</p>

<p>
	<strong>I was entering</strong> the miseries of seventh grade in the fall of 1980 when a friend dragged me into a dimly lit second-floor room. The school had recently installed a newfangled Commodore PET computer, a squat and angular box that glowed in the corner. “You gotta try this,” he told me, and handed over a piece of paper on which he’d handwritten a program.
</p>

<p>
	 
</p>

<p>
	I plunked it out on the PET’s chunky mechanical keyboard.
</p>

<p>
	 
</p>

<p>
	10 PRINT "CLIVE"
</p>

<p>
	20 GOTO 10<br />
	<br />
	I typed “RUN,” hit Enter, and watched as my name spilled down the screen in bright green-on-black text, over and over.
</p>

<p>
	 
</p>

<p>
	For a 12-year-old in the pre-internet era? This was electrifying. I had typed a couple of commands—ones that seemed easily understandable—and the machine had obeyed. I felt like I’d just stolen fire from Zeus himself.
</p>

<p>
	 
</p>

<p>
	I also realized, studying that tiny two-line program, that it was an infinite loop. The computer would run the code until the sun burned out, or someone unplugged it. There are not many ways, when you’re a preteen, to grasp the fabric of infinity. But I’d just done so, thanks to this strangely accessible computer language: BASIC.
</p>

<p>
	 
</p>

<p>
	The next day I and my nerdy friends raided the library. We found 101 Games in BASIC, a book with code for making versions of checkers, Battleship, and the like. It was our Necronomicon. We’d heard about computer programming, of course, but never suspected it was something kids could do.
</p>

<p>
	 
</p>

<p>
	But BASIC? Holy crap. It seemed practically self-explanatory—commands like IF and THEN let you make logical decisions, INPUT let you ask a user a question and work with their response. This was programming that achieved a neat midpoint between the mind of a human and that of the machine.
</p>

<p>
	 
</p>

<p>
	This is why I’ve long argued that BASIC is the most consequential language in the history of computing. It’s a language for noobs, sure, but back then most everyone was a noob. Throughout the ’70s and ’80s, BASIC sent a shock wave through teenage tech culture. Kids who were lucky or privileged enough (or both) to gain access to computers that ran BASIC—the VIC-20, the Commodore 64, janky Sinclair boxes in the UK—immediately started writing games, text adventures, chatbots, databases. In the ’90s, they became the generation that built all the internet apps and code that made cyberspace mainstream. BASIC brought coding out of the ivory towers, and thereby tilted the world on its axis.
</p>

<p>
	 
</p>

<p>
	<strong>It’s hard to</strong> overstate how abstruse, before BASIC, most coding was. In the 1950s and ’60s you generally used machine language, which had commands like “sal 665” and “sal 667.” (Those tell the computer to move its accumulator, a crucial region of memory, right or left. Got it?)
</p>

<p>
	 
</p>

<p>
	A few early visionaries attempted to make languages for normies. In the 1950s, the pioneering computer scientist Grace Hopper designed a language called FLOW-MATIC (a name whose badassery has yet to be outdone) that used plain-English-like commands such as IF EQUAL TO and READ-ITEM. Hopper wanted everyday businessfolk to be able to write—or at least read—code. Her innovations were later folded into COBOL, the language of banking and backend systems.
</p>

<p>
	 
</p>

<p>
	But it was BASIC that really blew the lid off. It was created in 1964 by John George Kemeny and Thomas Kurtz, two math professors at Dartmouth College who figured—in a stance that presaged the Learn to Code movement of the 2010s—that coding ought to be something any liberal arts student could learn.
</p>

<p>
	<br />
	For someone just getting into this weird craft, BASIC felt positively thaumaturgic. It was spellcasting: You uttered words that brought iron and silicon to life, and made them do things. (As the software engineer Erin Spiceland puts it, coding is “telling rocks what to think.”) If you were, as I was, marinated in Tolkien and other florid high-fantasy novels, there was a deep romance in the idea that everyday language could affect reality. Speak, friend, and enter.
</p>

<p>
	 
</p>

<p>
	BASIC also encouraged tinkering. Unusually for the time, it was an “interpreted” language. With many previous languages, you wrote the code, but before you could run it you had to “compile” it into a little package of 1s and 0s. This was a halting affair: Write, compile, then run it. With BASIC, in contrast, the machine responded instantly. You wrote a few lines, hit RUN, and boom—the machine interpreted it, right then and there.
</p>

<p>
	 
</p>

<p>
	This transformed coding into a conversation with the machine. Programming was like thinking out loud. I’d be working on a chatbot, for example, so I’d enter a few lines into the parser—then hit RUN to see how it performed. I’d add a few more lines, observe what worked and what didn’t, then run again. This back-and-forth dance with the machine made the whole process of coding less forbidding. It felt less like doing Very Important Design and more like just messing around. Many of the world’s most popular languages (like JavaScript and Python) are now also interpreted on the fly. But BASIC was among the first.
</p>

<p>
	 
</p>

<p>
	BASIC also created the world’s first mass open-source culture. People shared code freely: If a friend wrote a cool blackjack game, we’d all make a copy—by hand, like scribes in medieval monasteries—and run it ourselves. Each month, Compute magazine printed reams of BASIC mailed in by hobbyists. I spent one afternoon painstakingly typing hundreds of lines of Conway’s “Game of Life” that I’d found in an issue, then watched, mesmerized, as an artificial organism bloomed onscreen.
</p>

<p>
	 
</p>

<p>
	There’s a saying in the world of programmers that code is written primarily for other coders to read, and only secondarily for the machine to run. BASIC proved this at scale.
</p>

<p>
	 
</p>

<p>
	<strong>But as a </strong>practical language? For making shippable software?
</p>

<p>
	 
</p>

<p>
	BASIC wasn’t always great.
</p>

<p>
	 
</p>

<p>
	Graphics, for example, ran glacially. I tried to craft a space-shooter, and it was unplayably sluggish. This is part of why so many BASIC game makers focused instead on text adventures: Words, at least, rendered speedily. The Cambrian explosion of text-based dungeon crawlers in the late ’70s and ’80s was in part a product of BASIC’s built-in limitations.
</p>

<p>
	 
</p>

<p>
	BASIC also had a few truly ill-considered elements. Infamously, it included the benighted command GOTO (read as “go to”). This let you write code that hopscotched around: If the program got to line 120, you could tell the computer to suddenly GOTO line 25, for example.
</p>

<p>
	 
</p>

<p>
	For a newbie coder, this was an easy way to write things! But it encouraged complex “spaghetti” structure, where the logic bounded and zigzagged all over the place. If I wrote a longish program—going into the hundreds or thousands of lines—and used several dozen GOTO statements, my code would become a maze of mysteries, impenetrable even to myself. The computer scientist Edsger Dijkstra so loathed this style that he wrote an entire essay inveighing against it: “Go To Statement Considered Harmful.” Anyone who learned to program on BASIC would be, as he later wrote, “mentally mutilated beyond hope of regeneration.”
</p>

<p>
	 
</p>

<p>
	Dijkstra was being hyperbolic. But he wasn’t entirely wrong: After its heyday, BASIC plummeted in popularity. Newer languages emerged that encouraged cleaner, more modern styles of writing and ran more speedily. BASIC still lives on these days—itself modernized, with GOTO (mostly) banished—in the world of Microsoft Visual Basic, which many non-coder officefolk have used to kludge together apps for internal use. But these days, only 4 percent of professional developers will admit to using BASIC. Me, when I started programming again in the 2010s—after a 25-year gap—I turned instead to newer languages like Python and JavaScript.
</p>

<p>
	 
</p>

<p>
	Every once in a while, though, I’ll hunt down an emulator for the Commodore PET. I’ll type in that ur-program I first wrote, more than 40 years ago, and hit RUN.
</p>

<p>
	 
</p>

<p>
	Still feels like magic.
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.wired.com/story/back-to-basic-the-most-consequential-programming-language/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24499</guid><pubDate>Mon, 29 Jul 2024 16:06:45 +0000</pubDate></item><item><title>TikTok Has a Nazi Problem</title><link>https://nsaneforums.com/news/software-news/tiktok-has-a-nazi-problem-r24497/</link><description><![CDATA[<p>
	<span style="font-size:18px;"><strong>Not only is TikTok’s algorithm promoting Neo-Nazi content, extremist organizations are also using the platform to recruit new members and encourage real-world action.</strong></span>
</p>

<p>
	 
</p>

<p>
	Neo-Nazis and white supremacists are sharing Hitler-related propaganda and trying to recruit new members on TikTok, according to a new report from the Institute for Strategic Dialogue (ISD) shared exclusively with WIRED. The TikTok algorithm is also promoting this content to new users, researchers found, as extremist communities are leveraging the huge popularity of TikTok among younger audiences to spread their message.
</p>

<p>
	 
</p>

<p>
	The report from ISD details how hundreds of extremist TikTok accounts are openly posting videos promoting Holocaust denial and the glorification of Hitler and Nazi-era Germany, and suggesting that Nazi ideology is a solution to modern-day issues such as the alleged migrant invasion of Western countries. The accounts also show support for white supremacist mass shooters and livestream-related footage or recreations of these massacres. Many of the accounts use Nazi symbols in their profile pictures or include white supremacist codes in their usernames.
</p>

<p>
	 
</p>

<p>
	Nathan Doctor, an ISD researcher who authored the report, says he began his investigation earlier this year when he came across one neo-Nazi account on TikTok while conducting research for another project.
</p>

<p>
	 
</p>

<p>
	He was quickly able to unmask a much broader network of accounts that appeared to be actively helping each other through liking, sharing, and commenting on each other’s accounts in order to increase their viewership and reach.
</p>

<p>
	 
</p>

<p>
	The groups promoting neo-Nazi narratives are typically siloed in more fringe platforms, like Telegram, the encrypted messaging app. But Telegram has become a place to discuss recruitment techniques for TikTok specifically: White supremacist groups there share videos, images, and audio tracks that members can use, explicitly telling other members to cross-post the content on TikTok.
</p>

<p>
	 
</p>

<p>
	“We posted stuff on our brand new tiktok account with 0 followers but had more views than you could ever have on bitchute or twitter,” one account in a Neo-Nazi group posted on Telegram about their outreach on TikTok. “It just reaches much more people.”
</p>

<p>
	 
</p>

<p>
	Others have followed suit. One prominent neo-Nazi has often asked his thousands of Telegram followers to “juice,” or algorithmically boost, his TikTok videos to increase their viral potential.
</p>

<p>
	 
</p>

<p>
	An extremist Telegram channel with 12,000 followers urged members to promote the neo-Nazi documentary Europa: The Last Battle by blanketing TikTok with reaction videos in an effort to make the film go viral. Researchers from ISD found dozens of videos on TikTok featuring clips from the film, some with over 100,000 views. “One account posting such snippets has received nearly 900k views on their videos, which include claims that the Rothschild family control the media and handpick presidents, as well as other false or antisemitic claims,” the researchers wrote.
</p>

<p>
	 
</p>

<p>
	This is far from the first time the role that TikTok’s algorithm plays in promoting extremist content has been exposed. Earlier this month, the Global Network on Extremism and Technology reported that TikTok’s algorithm was promoting the “adoration of minor fascist ideologues.” The same researchers found last year that it was boosting Eurocentric supremacist narratives in Southeast Asia. Earlier this month, WIRED reported how TikTok’s search suggestions were pushing young voters in Germany towards the far-right Alternative for Germany party ahead of last month’s EU elections.
</p>

<p>
	<br />
	“Hateful behavior, organizations and their ideologies have no place on TikTok, and we remove more than 98 percent of this content before it is reported to us,” Jamie Favazza, a TikTok spokesperson tells WIRED. “We work with experts to keep ahead of evolving trends and continually strengthen our safeguards against hateful ideologies and groups.”
</p>

<p>
	 
</p>

<p>
	Part of the reason platforms like TikTok have in the past been unable to effectively clamp down on extremist content is due to the use of code language, emojis, acronyms, and numbers by these groups. For example, many of the neo-Nazi accounts used a juice box emoji to refer to Jewish people.
</p>

<p>
	 
</p>

<p>
	“At present, self-identified Nazis are discussing TikTok as an amenable platform to spread their ideology, especially when employing a series of countermeasures to evade moderation and amplify content as a network,” the researchers write in the report.
</p>

<p>
	 
</p>

<p>
	But Doctor points out that even when viewing non-English-language content, spotting these patterns should be possible. “Despite seeing content in other languages, you can still pretty quickly recognize what it means,” says Doctor. “The coded nature of it isn't an excuse, because if it's pretty easily recognizable to someone in another language, it should be recognizable to TikTok as well.”
</p>

<p>
	 
</p>

<p>
	TikTok says it has more than “40,000 trust and safety professionals” working on moderation around the globe, and the company says its Trust and Safety Team has specialists in violent extremism who constantly monitor developments in these communities, including the use of new coded language.
</p>

<p>
	 
</p>

<p>
	While many of the identified accounts are based in the US, Doctor found that the network was also international.
</p>

<p>
	 
</p>

<p>
	“It's definitely global, it's not even just the English language,” Doctor tells WIRED. “We found stuff in French, Hungarian, German. Some of these are in countries where Naziism is illegal. Russian is a big one. But we even found things that were a bit surprising, like groups of Mexican Nazis, or across Latin America. So, yeah, definitely a global phenomenon.”
</p>

<p>
	 
</p>

<p>
	Doctor did not find any evidence that the international groups were actively coordinating with each other, but they were certainly aware of each others’ presence on TikTok: “These accounts are definitely engaging with each others' content. You can see, based on comment sections, European English-speaking pro-Nazi accounts reacting with praise toward Russian-language pro-Nazi content.”
</p>

<p>
	 
</p>

<p>
	The researchers also found that beyond individual accounts and groups promoting extremist content, some real-world fascist or far-right organizations were openly recruiting on the platform.
</p>

<p>
	 
</p>

<p>
	Accounts from these groups posted links in their TikTok videos to a website featuring antisemitic flyers and instructions on how to print and distribute them. They also boosted Telegram channels featuring more violent and explicitly extremist discourse.
</p>

<p>
	 
</p>

<p>
	In one example cited by ISD, an account whose username contains an antisemitic slur and whose bio calls for an armed revolution and the complete annihilation of Jewish people, has shared incomplete instructions to build improvised explosive devices, 3D-printed guns, and “napalm on a budget.”
</p>

<p>
	 
</p>

<p>
	To receive the complete instructions, the account holder urged followers to join a “secure groupchat” on encrypted messaging platforms Element and Tox. Doctor says that comments under the account holder’s videos indicate that a number of his followers had joined these chat groups.
</p>

<p>
	 
	</p><p>
		ISD reported this account, along with 49 other accounts, in June for breaching TikTok’s policies on hate speech, encouragement of violence against protected groups, promoting hateful ideologies, celebrating violent extremists, and Holocaust denial. In all cases, TikTok found no violations, and all accounts were initially allowed to remain active.
	</p>


<p>
	 
</p>

<p>
	A month later, 23 of the accounts had been banned by TikTok, indicating that the platform is at least removing some violative content and channels over time. Prior to being taken down, the 23 banned accounts had racked up at least 2 million views.
</p>

<p>
	 
</p>

<p>
	The researchers also created new TikTok accounts to understand how Nazi content is promoted to new users by TikTok’s powerful algorithm.
</p>

<p>
	 
</p>

<p>
	Using an account created at the end of May, researchers watched 10 videos from the network of pro-Nazi users, occasionally clicking on comment sections but stopping short of any form of real engagement such as liking, commenting, or bookmarking. The researchers also viewed 10 pro-Nazi accounts. When the researchers then flipped to the For You feed within the app, it took just three videos for the algorithm to suggest a video featuring a World War II-era Nazi soldier overlayed with a chart of US murder rates, with perpetrators broken down by race. Later, a video appeared of an AI-translated speech from Hitler overlaid with a recruitment poster for a white nationalist group.
</p>

<p>
	 
</p>

<p>
	Another account created by ISD researchers saw even more extremist content promoted in its main feed, with 70 percent of videos coming from self-identified Nazis or featuring Nazi propaganda. After the account followed a number of pro-Nazi accounts in order to access content on channels set to private, the TikTok algorithm also promoted other Nazi accounts to follow. All 10 of the first accounts recommended by TikTok to this account used Nazi symbology or keywords in their usernames or profile photos, or featured Nazi propaganda in their videos.
</p>

<p>
	 
</p>

<p>
	“In no way is this particularly surprising,” says Abbie Richards, a disinformation researcher specializing in TikTok. "These are things that we found time and time again. I have certainly found them in my research."
</p>

<p>
	 
</p>

<p>
	Richards wrote about white supremacist and militant accelerationist content on the platform in 2022, including the case of neo-Nazi Paul Miller, who, while serving a 41-month sentence for firearm charges, featured in a TikTok video that racked up more than 5 million views and 700,000 likes during the three months it was on the platform before being removed.
</p>

<p>
	 
</p>

<p>
	Marcus Bösch, a researcher based in Hamburg University who monitors TikTok, tells WIRED that the report’s findings “do not come as a big surprise,” and he’s not hopeful there is anything TikTok can do to fix the problem.
</p>

<p>
	 
</p>

<p>
	“I’m not sure exactly where the problem is,” Bösch says. “TikTok says it has around 40,000 content moderators, and it should be easy to understand such obvious policy violations. Yet due to the sheer volume [of content], and the ability by bad actors to quickly adapt, I am convinced that the entire disinformation problem cannot be finally solved, neither with AI nor with more moderators.”
</p>

<p>
	 
</p>

<p>
	TikTok says it has completed a mentorship program with Tech Against Terrorism, a group that seeks to disrupt terrorists’ online activity and helps TikTok identify online threats.
</p>

<p>
	 
</p>

<p>
	“Despite proactive steps taken, TikTok remains a target for exploitation by extremist groups as its popularity grows,” Adam Hadley, executive director of Tech Against Terrorism, tells WIRED. “The ISD study shows that a small number of violent extremists can wreak havoc on large platforms due to adversarial asymmetry. This report therefore underscores the need for cross-platform threat intelligence supported by improved AI-powered content moderation. The report also reminds us that Telegram should also be held accountable for its role in the online extremist ecosystem.”
</p>

<p>
	 
</p>

<p>
	As Hadley outlines, the report’s findings show that there are significant loopholes in the company’s current policies.
</p>

<p>
	 
</p>

<p>
	“I've always described TikTok, when it comes to far-right usage, as a messaging platform,” Richards said. “More than anything, it's just about repetition. It's about being exposed to the same hateful narrative over and over and over again, because at a certain point you start to believe things after you just see them enough, and they start to really influence your worldview.”
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.wired.com/story/tiktok-nazi-content-moderation/" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24497</guid><pubDate>Mon, 29 Jul 2024 15:58:30 +0000</pubDate></item><item><title>Linux Mint 22: Excellent Distro for Windows Users [Video]</title><link>https://nsaneforums.com/news/software-news/linux-mint-22-excellent-distro-for-windows-users-video-r24494/</link><description><![CDATA[<div class="ipsEmbeddedVideo" contenteditable="false">
	<div>
		<iframe allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen="" frameborder="0" height="113" referrerpolicy="strict-origin-when-cross-origin" src="https://www.youtube-nocookie.com/embed/_qZI6i21jB4?feature=oembed" title="Linux Mint 22: Excellent Distro for Windows Users" width="200"></iframe>
	</div>
</div>

<p>
	 
</p>

<p>
	<a href="https://www.youtube.com/@ExplainingComputers" rel="external nofollow" target="_blank">ExplainingComputers</a> (1.03M subscribers)
</p>

<p>
	 
</p>

<p>
	July 28, 2024
</p>

<p>
	 
</p>

<p>
	Video length: 23m 35s
</p>

<p>
	 
</p>

<p>
	00:54 Getting Linux Mint
</p>

<p>
	03:10 Installation
</p>

<p>
	06:11 NVIDIA GPU driver
</p>

<p>
	07:16 What’s New?
</p>

<p>
	11:11 Applications
</p>

<p>
	14:43 Updates &amp; Snapshots (Timeshift)
</p>

<p>
	18:06 Fixing the Font! (Ubuntu Classic)
</p>

<p>
	20:29: Xfce &amp; MATE Editions
</p>

<p>
	22:43 Wrap
</p>

<p>
	 
</p>

<p>
	<a href="https://www.youtube.com/watch?v=_qZI6i21jB4" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24494</guid><pubDate>Mon, 29 Jul 2024 02:58:21 +0000</pubDate></item><item><title>Microsoft confirms Remote Desktop issues in Windows Server KB5040437 update</title><link>https://nsaneforums.com/news/software-news/microsoft-confirms-remote-desktop-issues-in-windows-server-kb5040437-update-r24492/</link><description><![CDATA[<p>
	Unlike consumer versions of Windows 11, Windows Server 2022 is not getting optional non-security updates, so the OS usually receives only one update every month as part of the Patch Tuesday routine. On July 9, Windows Server 2022 received KB5040437 under build number 20348.2582. Now, Microsoft has confirmed a bug affecting Remote Desktop capabilities.
</p>

<p>
	 
</p>

<p>
	Microsoft has updated the official documentation for KB5040437. In the revised document, the company mentions intermittent issues in organizations that use legacy protocol in Remote Desktop Gateway (Remote Procedure Call over HTTP). As a result, systems drop the connection, forcing users to reconnect to the server.
</p>

<p>
	 
</p>

<p>
	Fortunately, there is a workaround for the problem. While Microsoft is working on a patch, IT admins can track the issues by locating terminations of the TSGateway service with the exception code 0xc0000005. Also, they can mitigate the problem with two options:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Option 1: Disallow connections over pipe, and port \pipe\RpcProxy\3388 through the Remote Desktop Gateway. </strong>
	</p>

	<p>
		 
	</p>

	<p>
		This process will require the use of connection applications, such as firewall software. Consult the documentation for your connection and firewall software for guidance on disallowing and porting connections.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Option 2: Edit the registry of client devices, by removing a key related to RDGClientTransport</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Open the Windows Registry Editor and navigate to the following registry location:<br>
		HKCU\Software\Microsoft\Terminal Server Client\RDGClientTransport
	</p>

	<p>
		 
	</p>

	<p>
		Find the registry key titled ‘DWORD’ and set the ‘Value Data’ field to ‘0x0’.
	</p>
</blockquote>

<p>
	It is also worth noting that the problem affects not only Windows Server 2022 but older versions as well. The same behavior may be observed on Windows Server 2019, 2016, 2012, and 2012 R2. Server editions are also susceptible to <a href="https://www.neowin.net/news/kb5040442--kb5040427-microsoft-confirms-windows-pcs-boot-into-bitlocker-recovery/" rel="external nofollow">another recently confirmed bug</a> that causes Windows systems to boot into BitLocker recovery after installing <a href="https://www.neowin.net/news/windows-11-patch-tuesday-update-out-now-for-23h2-22h2-kb5040442-and-21h2-kb5040431/" rel="external nofollow">July 2024 Patch Tuesday updates</a>.
</p>

<p>
	 
</p>

<p>
	You can find more information about confirmed issues in KB5040437 <a href="https://support.microsoft.com/en-us/topic/july-9-2024-kb5040437-os-build-20348-2582-5b28d9b8-fcba-43bb-91e6-062f43c7ec7c" rel="external nofollow">here</a> (via <a href="https://winfuture.de/news,144175.html" rel="external nofollow">WinFuture</a>).
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-confirms-remote-desktop-issues-in-windows-server-kb5040437-update/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24492</guid><pubDate>Sun, 28 Jul 2024 19:16:32 +0000</pubDate></item><item><title>Microsoft 365 Roadmap Weekly: Check out the new features coming to Teams</title><link>https://nsaneforums.com/news/software-news/microsoft-365-roadmap-weekly-check-out-the-new-features-coming-to-teams-r24491/</link><description><![CDATA[<p>
	It's time once again to take a look back at last week's new entries that <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week#owRoadmapMainContent" rel="external nofollow">were put in the Microsoft 365 roadmap website</a>. Last week, we decided to make the column <a href="https://www.neowin.net/news/microsoft-365-roadmap-weekly-check-out-all-the-upcoming-outlook-improvements/" rel="external nofollow">all about the new Outlook features that are coming soon</a>. This week, we will do the same for all the Teams features that are due in the coming weeks and months.
</p>

<p>
	 
</p>

<p>
	In September, <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week&amp;searchterms=409537" rel="external nofollow">users for Teams on the desktop</a> will get some new camera features:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		Users will be able to toggle certain camera capabilities provided by the camera OEMs natively on Teams Rooms on Windows. Capabilities covered with this feature includes group framing, active speaker framing, and edge composed IntelliFrame.
	</p>
</blockquote>

<p>
	If you work with Teams as an IT admin for education organizations, you will also <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week&amp;searchterms=408527" rel="external nofollow">get some new features in September for all platforms</a>.
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		Education IT admins can now create team templates from Microsoft Teams admin center. As an admin, you can use templates to easily deploy consistent teams across your organization. With templates, your users can quickly create rich collaboration spaces with predefined settings, channels, and apps.
	</p>
</blockquote>

<p>
	The desktop and Mac versions of Teams will get some <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week&amp;searchterms=409226" rel="external nofollow">new webinar and town hall features in September</a>:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		This feature will now allow event organizers to set sensitivity labels for town halls and webinars. These labels are visible to organizers when creating an event instance once selected, and notify organizers if the details of the event being created are not valid for the selected sensitivity.
	</p>
</blockquote>

<p>
	If you use Teams on iOS and Android, you will be able to be invited to<a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week&amp;searchterms=409228" rel="external nofollow"> join a presentation with the external presenter feature</a> in September. Also, desktop and Mac users for Teams will be able <a href="https://www.microsoft.com/en-us/microsoft-365/roadmap?filters=New%20Last%20Week&amp;searchterms=408529" rel="external nofollow">to receive a notification in their Activity feed</a> when an intelligent meeting recap is ready in September as well.
</p>

<p>
	 
</p>

<p>
	That's our look at the new Teams features that were added to the Microsoft 365 roadmap site this past week. We will be back for another check on the site next Sunday. See you then.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-365-roadmap-weekly-check-out-the-new-features-coming-to-teams/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24491</guid><pubDate>Sun, 28 Jul 2024 19:15:10 +0000</pubDate></item><item><title>Explorer Patcher update adds new taskbar features, ARM64 and Windows 11 24H2 support</title><link>https://nsaneforums.com/news/software-news/explorer-patcher-update-adds-new-taskbar-features-arm64-and-windows-11-24h2-support-r24485/</link><description><![CDATA[<p>
	Explorer Patcher, a popular UI-tweaking app for Windows 11, received a new pre-release update. It delivers two important changes: a new Windows 10 taskbar implementation with new features and ARM64 support so that you can use Explorer Patcher on the latest Copilot+ PCs, such as the Surface Pro 11 or the Surface Laptop 7.
</p>

<p>
	 
</p>

<p>
	With Explorer Patcher 22621.3880.66.3, Windows 11 users can try a new Windows 10 taskbar implementation. It uses code bits from Windows 11 version 22H2, which makes it possible to use the app on Windows 11 24H2 and newer.
</p>

<p>
	 
</p>

<p>
	As for features, with the new "Windows 10 (ExplorerPatcher" variant, you get the following:
</p>

<p>
	 
</p>

<ul>
	<li>
		Snap Group support
	</li>
	<li>
		Virtual Desktop Switcher support (hover the cursor over the Task View button)
	</li>
	<li>
		Animated Start, Search, and Task View icons
	</li>
	<li>
		End Task support
	</li>
</ul>

<p>
	 
</p>

<p>
	It is also worth noting that the app is still having problems with the default antivirus, so if you want to try the latest Explorer Patcher update, add it to the exception list. In addition, you will have to manually download the new taskbar variant in the form of a DLL file from GitHub. Here is how to do it Properly:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		If you want to use the new taskbar implementation, you can download the appropriate DLL for your system from <a href="https://github.com/ExplorerPatcher/ep_taskbar_releases/releases/latest" rel="external nofollow">the Releases page</a> of its releases repository, and then manually putting it in C:\Program Files\ExplorerPatcher without the architecture specifier.
	</p>

	<p>
		 
	</p>

	<p>
		For example, for 226xx builds on x64-based systems, download ep_taskbar.2.amd64.dll, rename to ep_taskbar.2.dll, and lastly put it in C:\Program Files\ExplorerPatcher.
	</p>
</blockquote>

<p>
	Sounds tedious and messy? It is. But that is the nature of tinkering and using third-party tweaks, so it is strongly recommended not to use pre-release versions on a mission-critical machine.
</p>

<p>
	 
</p>

<p>
	Here is the rest of the changelog:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			Introduced support for ARM64 devices:
			<ul>
				<li>
					These builds are only tested on and made to work with 24H2 ARM64 builds. Older ARM64 Windows versions than 24H2 may not work as expected.
				</li>
				<li>
					An ARM64 device to support the making and testing of ARM64 builds is not cheap, so please consider donating @Amrsatrio via Ko-fi to recoup the costs.
				</li>
			</ul>
		</li>
		<li>
			Added an "Update now" button into update notifications for easier updating.
		</li>
		<li>
			Revised how files are packed in ep_setup for smaller size and easier maintenance.
		</li>
		<li>
			EP's taskbar implementation for 24H2 is now available <a href="https://github.com/ExplorerPatcher/ep_taskbar_releases/releases/latest" rel="external nofollow">in its releases repository</a>, as ep_taskbar.5.dll. If you want to try this out, follow the steps explained above.
		</li>
	</ul>
</blockquote>

<p>
	You can download the latest Explorer Patcher <a href="https://github.com/valinet/ExplorerPatcher/releases" rel="external nofollow">from GitHub</a> (<a href="https://www.deskmodder.de/blog/2024/07/27/explorerpatcher-unterstuetzt-auch-windows-11-24h2-und-arm/" rel="external nofollow">via Deskmodder</a>).
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/explorer-patcher-update-adds-new-taskbar-features-arm64-and-windows-11-24h2-support/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24485</guid><pubDate>Sun, 28 Jul 2024 07:59:29 +0000</pubDate></item><item><title>Windows 11 taskbar has a hidden "End Task" feature, how to turn it on</title><link>https://nsaneforums.com/news/software-news/windows-11-taskbar-has-a-hidden-end-task-feature-how-to-turn-it-on-r24484/</link><description><![CDATA[<p>
	Microsoft has added a feature to Windows 11 that allows you to end tasks directly from the taskbar, but it's turned off by default.
</p>

<h2>
	How It Works
</h2>

<p>
	When the "End Task" feature is enabled, you can right-click on an app icon in the taskbar and see an "End Task" option.
</p>

<p>
	 
</p>

<p>
	<img alt="Taskbar end task" class="ipsImage" height="571" width="559" src="https://www.bleepstatic.com/images/news/u/1097497/Windows%2011/End-Task.jpg">
</p>

<p>
	 
</p>

<p>
	When you select this option, it uses the Task Manager's existing end task future for that specific app. This allows you to close that specific app without opening the Task Manager.
</p>

<p>
	 
</p>

<p>
	This feature is useful when a program becomes unresponsive, allowing you to quickly end the task.
</p>

<p>
	 
</p>

<p>
	Microsoft has also modified the taskbar's end task logic to allow the feature to work smoothly even when an app is broken with a "not responding" dialog.
</p>

<h2>
	Steps to Enable "End Task" on the Taskbar
</h2>

<p>
	The "End Task" feature has been available for a while now, but some of you may not be aware of it. To turn it on or off, try these steps:
</p>

<p>
	 
</p>

<ol>
	<li>
		Open the <strong>Settings</strong> app on your Windows 11 device.
	</li>
	<li>
		Navigate to <strong>System</strong> and then <strong>For developers</strong>.
		<p>
			<img alt="End Task" class="ipsImage" height="465" width="720" src="https://www.bleepstatic.com/images/news/u/1097497/Windows%2011/End-Task-feature.jpg">
		</p>

		<p>
			 
		</p>
	</li>
	<li>
		Find the <strong>End Task</strong> option and toggle it to <strong>On</strong>.
	</li>
</ol>

<p>
	 
</p>

<p>
	Once this setting is enabled, you can easily end tasks by right-clicking on the app icon in the taskbar and selecting "End Task."
</p>

<p>
	 
</p>

<p>
	<a href="https://www.bleepingcomputer.com/news/microsoft/windows-11-taskbar-has-a-hidden-end-task-feature-how-to-turn-it-on/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24484</guid><pubDate>Sun, 28 Jul 2024 07:59:11 +0000</pubDate></item><item><title>AMD releases new chipset driver for Windows 10 and 11</title><link>https://nsaneforums.com/news/software-news/amd-releases-new-chipset-driver-for-windows-10-and-11-r24478/</link><description><![CDATA[<p>
	If you have a computer powered by a modern Ryzen or Threadripper processor, then there is a new chipset driver for you to download. AMD has released version 6.07.22.037 with bug fixes and unknown "new program support."
</p>

<p>
	 
</p>

<p>
	Here are the official release notes with highlights and known issues:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Release Highlights</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			New program support added.
		</li>
		<li>
			Bug fixes.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Known Issues</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Some driver names on a non-English OS may appear in English.
		</li>
		<li>
			The uninstall summary may incorrectly display the uninstall status as Failed. 
		</li>
		<li>
			Occasionally, Ryzen PPKG may not install/upgrade. 
		</li>
	</ul>
</blockquote>

<p>
	Here is a more detailed list of new drivers in the package, including the AMD Power Management Framework (PMF) driver for the new Ryzen AI 300 processor series:
</p>

<p>
	 
</p>

<table border="1" cellpadding="1" cellspacing="1" style="width:100%">
	<thead>
		<tr>
			<th scope="col">
				Driver
			</th>
			<th scope="col">
				Version
			</th>
			<th scope="col">
				What is new
			</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
				AMD PSP Driver
			</td>
			<td>
				5.32.0.0
			</td>
			<td>
				Bug fixes
			</td>
		</tr>
		<tr>
			<td>
				PT GPIO Driver
			</td>
			<td>
				3.0.2.0
			</td>
			<td>
				Bug Fixes
			</td>
		</tr>
		<tr>
			<td>
				AMD PPM Provisioning File Driver
			</td>
			<td>
				8.0.0.38
			</td>
			<td>
				Bug Fixes
			</td>
		</tr>
		<tr>
			<td>
				AMD USB4 CM Driver
			</td>
			<td>
				1.0.0.42
			</td>
			<td>
				Bug fixes
			</td>
		</tr>
		<tr>
			<td>
				AMD AMS Mailbox Driver
			</td>
			<td>
				4.0.0.833
			</td>
			<td>
				Bug Fixes
			</td>
		</tr>
		<tr>
			<td>
				AMD SFH1.1 Driver
			</td>
			<td>
				1.1.0.21
			</td>
			<td>
				Bug Fixes
			</td>
		</tr>
		<tr>
			<td>
				AMD Interface Driver (AMD PCI, AMD SMBus, AMD Hetero, AMD RCEC)
			</td>
			<td>
				2.0.0.20
			</td>
			<td>
				New program support added
			</td>
		</tr>
		<tr>
			<td>
				AMD PMF <a href="https://www.neowin.net/news/amd-ryzen-ai-300-exceeds-microsoft-copilot-pc-requirement-beats-qualcomm-apple-intel/" rel="external nofollow">Ryzen AI 300 Series Driver</a>
			</td>
			<td>
				24.6.18.0
			</td>
			<td>
				New driver added
			</td>
		</tr>
	</tbody>
</table>

<p>
	 
</p>

<p>
	AMD Chipset Software driver 6.07.22.037 is available for the following platforms:
</p>

<p>
	 
</p>

<table border="1" cellpadding="1" cellspacing="1" style="width:100%">
	<thead>
		<tr>
			<th scope="col">
				A Series
			</th>
			<th scope="col">
				B Series
			</th>
			<th scope="col">
				X Series
			</th>
			<th scope="col">
				TRX/WRX
			</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>
				AMD A320<br>
				AMD A520
			</td>
			<td>
				AMD B350<br>
				AMD B450<br>
				AMD B550<br>
				AMD B650<br>
				AMD B650E
			</td>
			<td>
				AMD X370<br>
				AMD X470<br>
				AMD X570<br>
				AMD X670<br>
				AMD X670E
			</td>
			<td>
				AMD TRX40<br>
				AMD TRX50<br>
				AMD WRX80<br>
				AMD WRX90
			</td>
		</tr>
	</tbody>
</table>

<p>
	 
</p>

<p>
	Supported operating systems include only 64-bit Windows 10 and 11. You can download the latest AMD Chipset Driver <a href="https://www.amd.com/en/resources/support-articles/release-notes/rn-ryzen-chipset-6-07-22-037-.html" rel="external nofollow">from the official website</a>. Detailed release notes and the list of supported processors are available on the same page.
</p>

<p>
	 
</p>

<p>
	In case you missed it, AMD recently released its first drivers for the upcoming Windows 11 version 24H2 release. They include <a href="https://www.neowin.net/news/amd-releases-new-chipset-drivers-for-windows-10-and-11-2/" rel="external nofollow">the previous chipset driver</a> and <a href="https://www.neowin.net/news/amd-2461-driver-adds-support-for-windows-11-24h2-once-human-and-more/" rel="external nofollow">a recent Radeon Software graphics driver</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/amd-releases-new-chipset-driver-for-windows-10-and-11/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24478</guid><pubDate>Sat, 27 Jul 2024 19:13:41 +0000</pubDate></item><item><title>Windows 11 Insider Beta Channel Build 22635.4000 (KB5040546) adds a new taskbar feature</title><link>https://nsaneforums.com/news/software-news/windows-11-insider-beta-channel-build-226354000-kb5040546-adds-a-new-taskbar-feature-r24473/</link><description><![CDATA[<p>
	This is not a typo. Microsoft has indeed released a second build of Windows 11 this week for members of the Windows Insider Program in the Beta Channel. The new build number is 22635.4000, under KB5040546. It includes a new taskbar feature, among other additions, changes and bug fixes.
</p>

<p>
	 
</p>

<p>
	Here is the change log:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Changes and Improvements gradually being rolled out to the Beta Channel with toggle on</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		This update includes a small set of general improvements and fixes that improve the overall experience for Insiders running this build on their PCs.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Taskbar &amp; System Tray]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We’re beginning to try out showing jump lists when you hover your mouse cursor over apps on the taskbar that have jump lists and are inactive. Should you see this experience, let us know what you think via Feedback Hub.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Voice Access]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We are making improvements for the spelling and corrections experience in voice access. You will now be able to use the experience for the entirety of voice access session. The spelling experience will now enable you to dictate the characters at a faster speed and offer more editing flexibility inside the experience with dictation commands, namely selection, deletion and text navigation commands.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Widgets]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We are rolling out an update to the Widgets Board to improve security and the APIs for creating widgets and feeds for users in EEA regions. As part of this update, the Microsoft Start Experiences app will power the Microsoft Start widget and feed experiences. Also, as part of this update, some existing widgets will be removed and others will be modified, temporarily affecting their functionality. This update sets the foundation for new widgets and other features in development, set to roll out soon.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Fixes gradually being rolled out to the Beta Channel with toggle on</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Fix and underlying issue causing the Notification Center to get stuck and not open sometimes for some Insiders with the latest builds. This is also believed to be the same underlying cause as some Insiders finding that the Add a Device dialog didn’t appear when trying to add Bluetooth devices in Settings.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Changes and Improvements gradually being rolled out to everyone in the Beta Channel</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Fixed some issues causing Narrator to not work as expected when navigating through the Recent, Favorites, and Shared tab items for Insiders with the recent updates to Home in File Explorer.
		</li>
		<li>
			Fixed an issue causing the context menu in Home or Gallery to open in the wrong position when using Arabic or Hebrew display languages.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Known issues</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We’re investigating a couple of issues causing an increase in explorer.exe crashes for some Insiders with the latest builds.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Insiders in the Beta Channel with the updated Recent, Favorites, and Shared sections on the File Explorer homepage may see the following known issues:
		</li>
		<li>
			Files shared with you may not appear if there has been no interaction with that file.
		</li>
		<li>
			Keyboard focus may be lost on selection of an unselected tab item.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[Input]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We are working on the fix for an issue causing the emoji panel to close when trying to switch to the kaomoji and symbols sections, or after selecting an emoji.
	</p>
</blockquote>

<p>
	You can check out the <a href="https://blogs.windows.com/windows-insider/2024/07/26/announcing-windows-11-insider-preview-build-22635-4000-beta-channel/" rel="external nofollow">full blog post here</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-insider-beta-channel-build-226354000-kb5040546-adds-a-new-taskbar-feature/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24473</guid><pubDate>Fri, 26 Jul 2024 20:55:28 +0000</pubDate></item><item><title>Windows 11 Insider Dev Channel Build 26120.1330 (KB5040543) adds new Power setting and more</title><link>https://nsaneforums.com/news/software-news/windows-11-insider-dev-channel-build-261201330-kb5040543-adds-new-power-setting-and-more-r24472/</link><description><![CDATA[<p>
	It's been a little while, but Microsoft has finally released a new Windows Insider Dev Channel build of Windows 11. The build number is 26120.1330, under KB5040543. It adds a new Power setting, along with some other additions, fixes, and known issues.
</p>

<p>
	 
</p>

<p>
	Here is the changelog:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Changes and Improvements gradually being rolled out to the Dev Channel with toggle on</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We’re rolling out the ability to duplicate a tab by right-clicking on a tab in File Explorer.
	</p>

	<p>
		 
	</p>

	<figure class="image image--expandable">
		<img alt="windows 11" class="ipsImage" height="302" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721841158_fe-duplicate-tab-1024x429.jpg">
		<figcaption>
			Option to duplicate tab when right-clicking on a tab in File Explorer highlighted in a red square.
		</figcaption>
	</figure>

	<p>
		<strong>[Narrator]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We have made several changes to improve the performance of Narrator scan mode. This is expected to make scan mode responses much quicker, especially while using Microsoft Edge, and reading through large documents. To try out scan mode, turn on Narrator first (Win key + Ctrl + Enter), and then turn scan mode ON by pressing Caps Lock + Spacebar during a Narrator session.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Settings]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We’re beginning to roll out improvements to Settings &gt; System &gt; Power &amp; battery including the ability to set your Power Mode for both when your PC is plugged in when it’s on battery along with a few other UI improvements to the page.
	</p>

	<p>
		 
	</p>

	<figure class="image image--expandable">
		<img alt="windows 11" class="ipsImage" height="507" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1722014226_power-battery-settings-changes-1024x721.jpg">
		<figcaption>
			Ability to set your Power Mode for both when your PC is plugged in when it’s on battery in Settings highlighted in red square.
		</figcaption>
	</figure>

	<p>
		<strong>[For Developers]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Updated the logic for the “End Task” option in the taskbar so that it no longer shows a Not Responding dialog to give confirmation before ending the task.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Other]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Updated System Info (msinfo32) to now follow your text size preference under Settings &gt; Accessibility &gt; Text Size.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Fixes for everyone in the Dev Channel</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Settings]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Fixed an issue where the Windows Update page in Settings was not displaying correctly for Insiders using certain languages (no text showed). If you are impacted by this on Build 26120.1252, updating to this flight should still happen on its own, however you may need to wait a little bit.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Known issues</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[IMPORTANT]</strong> Windows Insiders joining the Dev Channel on PCs running Windows 11, version 24H2 Build 26100.xxxx will see “(repair version)” noted next to the latest Dev Channel build from Windows Update. This is nothing to worry about as all it means is that an in-place upgrade will happen to update your PC to the latest build in the Dev Channel.
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>[NEW]</strong> The BitLocker Recovery screen issue documented here may also impact Windows Insiders in the Dev Channel.
		</li>
		<li>
			Adding additional languages or optional features may fail with error 0x800f081f.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Sandbox]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Windows Sandbox will fail to launch with error 0x80370106.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Task Manager]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Navigating between different pages in Task Manager may crash Task Manager.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[NEW]</strong> We’re investigating an issue causing graphs on the Performance page in Task Manager to not show the correct colors when using dark mode again.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Input]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[NEW]</strong> We’re working on the fix for an issue causing text suggestions for the hardware keyboard to not work properly (selecting one unexpectedly concatenates).
	</p>
</blockquote>

<p>
	You can find the <a href="https://blogs.windows.com/windows-insider/2024/07/26/announcing-windows-11-insider-preview-build-26120-1330-dev-channel/" rel="external nofollow">full blog post here</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-insider-dev-channel-build-261201330-kb5040543-adds-new-power-setting-and-more/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24472</guid><pubDate>Fri, 26 Jul 2024 20:54:30 +0000</pubDate></item><item><title>Windows 11 gets much-needed File Explorer improvements in the latest non-security update</title><link>https://nsaneforums.com/news/software-news/windows-11-gets-much-needed-file-explorer-improvements-in-the-latest-non-security-update-r24471/</link><description><![CDATA[<p>
	On July 25, Microsoft released the latest non-security update for Windows 11. <a href="https://www.neowin.net/news/kb5040527-windows-11-gets-start-menu-drag-drop-and-pin-apps-file-explorer-tab-duplication/" rel="external nofollow">KB5040527</a> arrived for Windows 11 version 22H2 and 23H2 users with build numbers 22621.3958 and 22631.3958. As it usually goes for updates like this, it mainly focused on fixing feature bugs (no security updates in this one) and delivering some new stuff.
</p>

<p>
	 
</p>

<p>
	While most users will most likely not bother downloading KB5040527, some may actually want to get the July 2024 non-security update for Windows 11, primarily because of File Explorer.
</p>

<p>
	 
</p>

<p>
	In KB5040527, Microsoft introduced several much-needed changes and fixes. For starters, you can now duplicate tabs—right-click any tab and select the "Duplicate tab" option to create a copy. The same feature is currently being tested in the Windows Insider Program.
</p>

<p>
	 
</p>

<p>
	As for fixes, the update resolves memory leaks when working with archives, broken search results, sudden dropdown popups, blank areas at the top of the app, broken navigation buttons, image flashes in the Gallery section and more.
</p>

<p>
	 
</p>

<p>
	Here is the full list of File Explorer changes you get with KB5040527:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			New! When you right-click a tab, you have the choice to duplicate it.
		</li>
		<li>
			A memory leak occurs when you interact with archive folders.
		</li>
		<li>
			File Explorer stops responding when you browse within it.
		</li>
		<li>
			When you search from Home for the first time, you might not get any results.
		</li>
		<li>
			The address bar dropdown menu might appear when you do not expect it.
		</li>
		<li>
			When you use the Save dialog to save a file to Gallery, an error occurs. Because of this update, your file saves to the Pictures library instead.
		</li>
		<li>
			The search box does not show the correct folder name when you are in Gallery.
		</li>
		<li>
			A blank area shows at the top of File Explorer.
		</li>
		<li>
			The back and forward mouse buttons do not work when you hover over the Recommended Files section of Home.
		</li>
		<li>
			Images flash when you view them in the Gallery.
		</li>
	</ul>
</blockquote>

<p>
	If you want to download KB5040527, head to <strong>Settings &gt; Windows Update</strong> and click "Download and Install" under "2024-07 Cumulative Update Preview for Windows 11 Version 23H2 for x64-based Systems (KB5040527) is available." Keep in mind that the update is in preview, so it is better to back up important data before proceeding. If you do not want to risk it, the changes listed above will arrive in future mandatory updates (Patch Tuesday).
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-gets-much-needed-file-explorer-improvements-in-the-latest-non-security-update/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24471</guid><pubDate>Fri, 26 Jul 2024 20:53:37 +0000</pubDate></item><item><title>Microsoft updates Windows 11 23H2 and 22H2 initial setup (OOBE) with KB5041655</title><link>https://nsaneforums.com/news/software-news/microsoft-updates-windows-11-23h2-and-22h2-initial-setup-oobe-with-kb5041655-r24470/</link><description><![CDATA[<p>
	Microsoft has prepared and released a new OOBE update for Windows 11 versions 22H2 and 23H2. It is now available under KB5041655, and its goal is to improve the initial setup experience of your Windows-based machine.
</p>

<p>
	 
</p>

<p>
	For those unfamiliar, OOBE stands for out-of-box experience. It is Windows' onboarding process, during which you set up basic settings, login with your Microsoft account, restore from a backup, customize your computer, and reject a metric ton of ads, such as Microsoft 365, Game Pass, Edge, and more.
</p>

<p>
	 
</p>

<p>
	Every now and then, Microsoft releases new OOBE updates, which arrive on end systems whenever customers connect to the internet during the initial setup. For example, you bought a new computer, powered it on, connected to the internet, and started setting it up. That is when your system gets the latest OOBE update.
</p>

<p>
	 
</p>

<p>
	You can always skip this part by setting up your computer offline and using the oobe\bypassnro command. Not only does this let you create an offline account, but it also bypasses several annoyances, such as ads and <a href="https://www.neowin.net/news/windows-11-is-now-automatically-enabling-onedrive-folder-backup-without-asking-permission/" rel="external nofollow">OneDrive's annoying Known Folder Backup feature</a>.
</p>

<p>
	 
</p>

<p>
	Microsoft rarely explains what is new in the latest OOBE update for Windows 11. KB5041655 has only the following in its description:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		This update improves the Windows 11, version 22H2 and Windows 11, version 23H2 out-of-box experience (OOBE). This update applies only to the Windows 11 OOBE process and is available only when OOBE updates are installed.
	</p>
</blockquote>

<p>
	You can check out the complete list of new files included in KB5041655 <a href="https://support.microsoft.com/en-us/topic/kb5041655-out-of-box-experience-update-for-windows-11-version-22h2-and-23h2-july-25-2024-bb8dd514-f7f7-47fe-8443-0ac8c40bd35e" rel="external nofollow">on the official support page</a>. However, you will not find anything useful or informative among them.
</p>

<p>
	 
</p>

<p>
	Speaking of more useful updates, Microsoft recently released the latest non-security updates for Windows 10 and 11. <a href="https://www.neowin.net/news/windows-10-kb5040525-non-security-update-is-out-with-universal-print-group-policy-fixes/" rel="external nofollow">Windows 10 received KB5040525</a>, and <a href="https://www.neowin.net/news/kb5040527-windows-11-gets-start-menu-drag-drop-and-pin-apps-file-explorer-tab-duplication/" rel="external nofollow">Windows 11 users received KB5040527</a>. Both updates contain fixes, feature changes, and other improvements. Note that those updates do not contain security patches, and they are optional to install. The June 2024 non-security updates caused <a href="https://www.neowin.net/news/microsoft-pauses-windows-11-kb5039302-rollout-as-it-breaks-pcs-and-causes-infinite-restarts/" rel="external nofollow">quite a lot of trouble</a>, which is why many users only download mandatory monthly updates.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-updates-windows-11-23h2-and-22h2-initial-setup-oobe-with-kb5041655/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24470</guid><pubDate>Fri, 26 Jul 2024 20:51:52 +0000</pubDate></item><item><title>Firefox 128.0.3 fixes the problem with websites not loading, on-screen keyboard, and more</title><link>https://nsaneforums.com/news/software-news/firefox-12803-fixes-the-problem-with-websites-not-loading-on-screen-keyboard-and-more-r24469/</link><description><![CDATA[<p>
	On July 23, Mozilla released <a href="https://www.neowin.net/news/firefox-12802-is-out-with-with-fixes-for-ad-blockers-windows-on-arm-visual-glitches-more/" rel="external nofollow">a small bug-fixing update for Firefox 128</a>, which is currently the latest Firefox version in the Release channel. Now, just a few days later, developers shipped another release. Version 128.0.3 brings three bug fixes to resolve problems with websites not loading when connecting via HTTP/2, collapsed table rows, and the on-screen keyboard on Windows.
</p>

<p>
	 
</p>

<p>
	Here are the official release notes for Mozilla Firefox 128.0.3
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			Fixed an issue causing some sites to not load when connecting via HTTP/2. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1908161" rel="external nofollow">Bug 1908161</a>, <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1909666" rel="external nofollow">Bug 1909666</a>)
		</li>
		<li>
			Fixed collapsed table rows not appearing when expected in some situations. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1907789" rel="external nofollow">Bug 1907789</a>)
		</li>
		<li>
			Fixed the Windows on-screen keyboard potentially concealing the web page when displayed. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1907766" rel="external nofollow">Bug 1907766</a>)
		</li>
	</ul>
</blockquote>

<p>
	Firefox 128.0.3 is now available for download <a href="https://www.mozilla.org/en-US/firefox/" rel="external nofollow">from the official Mozilla website</a> or through the browser. You can either wait for Firefox to update itself automatically in the background or head to Menu &gt; Help &gt; About Firefox. Those using Firefox on Windows can also get the browser from the Microsoft Store.
</p>

<p>
	 
</p>

<p>
	Full release notes for Mozilla Firefox 128.0.3 are available <a href="https://www.mozilla.org/en-US/firefox/128.0.3/releasenotes/" rel="external nofollow">on the official website</a>.
</p>

<p>
	 
</p>

<p>
	In case you missed it, <a href="https://www.neowin.net/news/mozilla-releases-firefox-1280-with-improved-translate-private-mode-and-a-new-esr-release/" rel="external nofollow">Mozilla released Firefox 128 earlier this month.</a> It was a big update with plenty of new features, such as the ability to translate portions of web pages, a reworked UI for cleaning the browsing data, DRM-protected content support in Private Browsing mode, a new API that offers an alternative for ad tracking, new localization, and plenty of various fixes.
</p>

<p>
	 
</p>

<p>
	Firefox 128 is available in the regular Release channel and Extended Support Release. However, Windows 7, 8, and 8.1 users are still getting support and updates for Firefox 115 ESR, which should remain supported "<a href="https://www.neowin.net/news/mozilla-wants-you-to-like-firefox-over-chrome-edge-with-extended-windows-7881-support/" rel="external nofollow">past the currently planned date</a>." For now, there is no information on when exactly Mozilla plans to pull the plug on now-deceased Windows versions.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/firefox-12803-fixes-the-problem-with-websites-not-loading-on-screen-keyboard-and-more/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>

<p>
	 
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="56074" data-embedcontent="" src="https://nsaneforums.com/topic/457378-mozilla-firefox-browser-12803/?do=embed&amp;comment=1835096&amp;embedComment=1835096&amp;embedDo=findComment#comment-1835096"></iframe>]]></description><guid isPermaLink="false">24469</guid><pubDate>Fri, 26 Jul 2024 20:50:34 +0000</pubDate></item><item><title>Oracle releases VirtualBox 7.1 Beta with a refreshed UI, ARM virtualization for Linux, more</title><link>https://nsaneforums.com/news/software-news/oracle-releases-virtualbox-71-beta-with-a-refreshed-ui-arm-virtualization-for-linux-more-r24468/</link><description><![CDATA[<p>
	Oracle is working on a big update for VirtualBox, a popular virtualization software that is available on Windows, macOS, and Linux. Version 7.1 is currently in beta, and the first release is now available for everyone to try.
</p>

<p>
	 
</p>

<p>
	VirtualBox 7.1 Beta 1 includes multiple changes and new features, such as a "modernized look and feel" with the ability to switch between basic and advanced settings, a new performance dashboard for local VMs performance usage, instances cloning and reset, ARM virtualization for Linux, IPv6 support for NAT, and more. In addition, users can try improved screen recording performance, better accessibility, and more.
</p>

<p>
	 
</p>

<p>
	Here is the official changelog published on VirtualBox forums:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		This is a major update. The following major new features were added:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			GUI: Modernized look and feel, offering a selection between Basic and Experienced user level with reduced or full UI functionality
		</li>
		<li>
			OCI: Performance dashboard shows resource usage like for local VMs
		</li>
		<li>
			OCI: Function to clone compute instances
		</li>
		<li>
			OCI: Function to reset compute instances
		</li>
		<li>
			Oracle VirtualBox Extension Pack: Ajustment to the PUEL license, removing the duplicated evaluation option, for limited time evaluation use please download it from the Oracle Software Delivery Cloud
		</li>
		<li>
			VRDE: If user does not set up TLS with custom certificates, enable it with self-signed certificate, including issuing a new one before the old one expires
		</li>
		<li>
			NAT: new engine with IPv6 support
		</li>
		<li>
			macOS/ARM host: ARM virtualization for Linux and BSD VMs
		</li>
		<li>
			Linux host and guest: Added Wayland support for Clipboard sharing (bug #20808)
		</li>
	</ul>
</blockquote>

<blockquote class="QuoteNewsStyle">
	In addition, the following items were fixed and/or added:
</blockquote>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			Screen recording: improve performance
		</li>
		<li>
			EFI: Add new Microsoft DB/KEX certificates to newly created VMs
		</li>
		<li>
			GUI: Improved overall accessibility
		</li>
		<li>
			GUI: Migration to recent Qt version.
		</li>
	</ul>
</blockquote>

<p>
	You can give VirtualBox 7.1 Beta 1 a try by heading to <a href="https://forums.virtualbox.org/viewtopic.php?t=111989" rel="external nofollow">the official forum</a>. If you prefer stable releases, check out <a href="https://www.neowin.net/news/virtualbox-fixes-tpm-windows-event-viewer-bug-shared-clipboard-issue-adds-uefi-certs/" rel="external nofollow">the recently released update under version 7.0.20</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/oracle-releases-virtualbox-71-beta-with-a-refreshed-ui-arm-virtualization-for-linux-more/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24468</guid><pubDate>Fri, 26 Jul 2024 20:47:54 +0000</pubDate></item><item><title>Microsoft releases Edge 127 with Password Monitor improvements and more</title><link>https://nsaneforums.com/news/software-news/microsoft-releases-edge-127-with-password-monitor-improvements-and-more-r24460/</link><description><![CDATA[<p>
	Microsoft has released Edge 127 to the general public on the Stable Channel. The latest update fixes bugs, improves reliability, and adds some small features. Also, Microsoft reminded users about the <a href="https://www.neowin.net/news/microsoft-has-delayed-a-previously-announced-hardware-requirement-change-for-edge/" rel="external nofollow">SSE3 requirement in Edge 128</a> (no Edge soon for you <a href="https://www.neowin.net/news/microsoft-is-ending-edge-support-on-computers-without-sse3/" rel="external nofollow">if you still use a two-decade-old processor</a>) and Token Binding deprecation.
</p>

<p>
	 
</p>

<p>
	Microsoft Edge 127 contains all the fixes and small improvements from the three updates the browser previously received in the Dev Channel. You can find them here:
</p>

<p>
	 
</p>

<ul>
	<li>
		<a href="https://www.neowin.net/news/microsoft-edge-127-arrives-in-the-dev-channel-with-settings-improvements-and-more/" rel="external nofollow">Microsoft Edge 127.0.2610.3</a>
	</li>
	<li>
		<a href="https://www.neowin.net/news/microsoft-updates-edge-dev-with-new-icons-and-fixes/" rel="external nofollow">Microsoft Edge 127.0.2638.2</a>
	</li>
	<li>
		<a href="https://www.neowin.net/news/edge-127026518-is-out-in-the-dev-channel-with-various-improvements/" rel="external nofollow">Microsoft Edge 127.0.2651.8</a>
	</li>
</ul>

<p>
	 
</p>

<p>
	In addition, Edge 127 brings security patches for <a href="https://msrc.microsoft.com/update-guide" rel="external nofollow">18 different vulnerabilities</a> (two Edge-specific and 16 originating from Chromium).
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Improved reliability</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Fixed a browser crash that happened when using the Microsoft Edge Password Generator.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Fixes</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>Updated HttpAllowlist policy</strong>. Automatic HTTPS should now respect the HttpAllowlist policy, which provides a list of hostnames that HTTP should be permitted on.
		</li>
		<li>
			<strong>Resolved issue</strong>. Fixed an issue that prevented the Translate icon in the omnibox from being clickable.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Announcement</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>SSE3 Requirement</strong>. Microsoft Edge will stop supporting CPUs that lack SSE3 in Microsoft Edge 128. Devices with such CPUs won't receive any more updates. For more information, see Microsoft Edge Supported Operating Systems.
		</li>
		<li>
			<strong>Token Binding</strong>. Token Binding uses cryptographic certificates on both ends of the TLS connection in an attempt to close the security gap of bearer tokens, which might be lost or stolen. We're planning to deprecate Token Binding in Microsoft Edge version 130. The AllowTokenBindingForUrls policy is deprecated and will be obsolete in Microsoft Edge version 130.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Feature updates</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>Removal of mutation events</strong>. Support for mutation events was removed. The MutationObserver API can be used instead. Administrators can use the MutationEventsEnabled policy as a temporary workaround. Enterprises should still work to remove their dependencies on these mutation events. For more information, see Intent to Ship: Deprecate Mutation Events (google.com).
		</li>
		<li>
			<strong>Gift Card Redemption History in the Hub</strong>. Users with an MSA or Microsoft Entra ID Linked Account can view and utilize information from gift card redemptions through Pay with Rewards or the Rewards Dashboard. Once a user successfully redeems a gift card with Pay with Rewards, information relating to their gift card (date, card number/pin, redemption status) redemption is added to a Redemption History. This information is located in the Wallet hub. Admins can control availability of this feature using the EdgeWalletCheckoutEnabled policy. Note: This feature is a controlled feature rollout. If you don't see this feature, check back as we continue our rollout.
		</li>
		<li>
			<strong>Password Monitor policy update</strong>. When the PasswordMonitorAllowed policy is enabled as mandatory, users won't see the consent screen to turn on the feature. Also, when set to Mandatory enabled, the UI in Settings will be disabled but remain in the 'On' state, and a briefcase icon is made visible next to it with this description displayed on hover - "This setting is managed by your organization." For more information, see Password Monitor auto-enabled for users.
		</li>
	</ul>
</blockquote>

<p>
	To update Microsoft Edge to version 127, head to <strong>Menu &gt; Help and Feedback &gt; About Microsoft Edge</strong> or edge://settings/help.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-releases-edge-127-with-password-monitor-improvements-and-more/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>

<p>
	 
</p>
<iframe allowfullscreen="" data-controller="core.front.core.autosizeiframe" data-embedauthorid="56074" data-embedcontent="" src="https://nsaneforums.com/topic/457363-microsoft-edge-1270265174/?do=embed&amp;comment=1835058&amp;embedComment=1835058&amp;embedDo=findComment#comment-1835058"></iframe>]]></description><guid isPermaLink="false">24460</guid><pubDate>Fri, 26 Jul 2024 07:32:55 +0000</pubDate></item><item><title>Windows Insiders can try out accessing their Android phone files remotely in File Explorer</title><link>https://nsaneforums.com/news/software-news/windows-insiders-can-try-out-accessing-their-android-phone-files-remotely-in-file-explorer-r24459/</link><description><![CDATA[<figure class="image image--expandable">
	<img alt="windows 11" class="ipsImage" height="430" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721942843_pffe_blogpost_fe@2x.jpg">
</figure>

<p>
	Microsoft has already released new Windows 11 Insider builds this week for the <a href="https://www.neowin.net/news/windows-11-insider-beta-build-226353936-kb5040535-has-new-open-with-dialog-designs/" rel="external nofollow">Beta</a>, <a href="https://www.neowin.net/news/windows-11-insider-canary-channel-build-26257-lets-you-duplicate-a-tab-in-file-explorer/" rel="external nofollow">Canary</a>, and <a href="https://www.neowin.net/news/windows-11-release-preview-channel-build-261001297-kb5040529-adds-a-host-of-features/" rel="external nofollow">Release Preview</a> channels. However, the Insider team is not quite done yet. It has just announced a new release for all members of the Windows Insider program who also own an Android smartphone and who are using Windows 11.
</p>

<p>
	 
</p>

<p>
	<a href="https://blogs.windows.com/windows-insider/2024/07/25/ability-to-access-your-android-phone-in-file-explorer-begins-rolling-out-to-windows-insiders/" rel="external nofollow">In a blog post</a>, the company says this update will allow them to access the files on their Android phone remotely on their Windows PC. It states:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		With this new experience, you will be able to wirelessly browse through all your folders and files, including media that is on your Android phone. You can open them, copy them to your PC, copy PC files to your phone, rename files, move them, and delete them.
	</p>
</blockquote>

<p>
	There are some requirements for this new feature besides having a Windows 11 PC and being a member of the Windows Insider program. One is that the mobile device must have Android 11 or higher installed. The other is that you have to have the beta version of the Link to Windows app installed on your Android phone, with version 1.24071 or higher.
</p>

<p>
	 
</p>

<figure class="image image--expandable">
	<img alt="windows 11" class="ipsImage" height="538" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721942850_pffe_blogpost_cdeh-1024x766.jpg">
</figure>

<p>
	The blog post added:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		To enable this experience, go to <strong>Settings &gt; Bluetooth &amp; devices &gt; Mobile Devices</strong> and choose “Manage devices” and allow your PC to access your Android phone. You’ll then be able to see a toggle to show your phone in File Explorer. If you do not see this toggle, that means the experience hasn’t yet rolled out to you yet.
	</p>
</blockquote>

<p>
	As you might expect, there are some known issues with this feature.
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			When you delete phone files on your PC, they are moved to a new Recycle Bin folder on your phone. Currently, these deleted files remain in the Recycle Bin for 5 days, even though the dialog indicates 30 days. An update is being made to ensure automatic deletion after 30 days.
		</li>
		<li>
			Occasionally, deleted files in the new Recycle Bin folder on your phone may not appear in File Explorer on your PC. This issue will be resolved in a future update.
		</li>
		<li>
			Sometimes, operations performed on phone files from your PC may not sync back to the phone. As a workaround, you can log out of your Windows account on your PC and log back in.
		</li>
	</ul>
</blockquote>

<p>
	Member of the Windows Insider program can send their own feedback on the Android remote file access feature by going into the Feedback Hub (WIN + F) under <strong>Devices and Drivers &gt; Linked devices</strong>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-insiders-can-try-out-accessing-their-android-phone-files-remotely-in-file-explorer/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24459</guid><pubDate>Fri, 26 Jul 2024 07:30:59 +0000</pubDate></item><item><title>Microsoft: Windows "must prioritize change and innovation" in resiliency post-CrowdStrike</title><link>https://nsaneforums.com/news/software-news/microsoft-windows-must-prioritize-change-and-innovation-in-resiliency-post-crowdstrike-r24458/</link><description><![CDATA[<p>
	Millions of people were negatively affected, directly or indirectly, as a result of <a href="https://www.neowin.net/news/crowdstrike-finally-explains-in-brief-what-caused-the-global-windows-blue-screen-outage/" rel="external nofollow">CrowdStrike's faulty update</a> that launched early on Friday, July 19. Microsoft said later that <a href="https://www.neowin.net/news/microsoft-crowdstrikes-outage-affected-85-million-windows-pcs-worldwide/" rel="external nofollow">8.5 million Windows PC were hit</a> with the botched CrowdStrike update. The results were major <a href="https://www.neowin.net/news/the-crowdstrike-windows-outage-continues-to-affect-tons-of-critical-businesses-worldwide/" rel="external nofollow">businesses being hit with lengthy amounts of downtime</a> and even some critical systems like 911 calls were shut down temporarily.
</p>

<p>
	 
</p>

<p>
	Today, Microsoft posted a new article on its <a href="https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-resiliency-best-practices-and-the-path-forward/ba-p/4201550" rel="external nofollow">Windows IT Pro blog</a> that talked about how the company has tried to help bring back the shutdown PCs. That includes having over 5,000 of its support engineers working constantly to restore those systems. It also released guides of how users could bring back the <a href="https://www.neowin.net/news/microsoft-releases-step-by-step-guides-about-fixing-crowdstrike-blue-screens-of-death/" rel="external nofollow">CrowdStrike affected PCs</a>, <a href="https://www.neowin.net/news/microsoft-updates-crowdstrike-recovery-tool-with-two-new-options-and-adk-detection-fix/" rel="external nofollow">including a recovery tool</a>.
</p>

<p>
	 
</p>

<p>
	The blog post added:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		This incident shows clearly that Windows must prioritize change and innovation in the area of end-to-end resilience. These improvements must go hand in hand with ongoing improvements in security and be in close cooperation with our many partners, who also care deeply about the security of the Windows ecosystem.
	</p>
</blockquote>

<p>
	While it did not offer any specifics on any future plans to improve Windows resilience, the blog post did mention a couple of recent company efforts, including <a href="https://www.neowin.net/news/microsoft-outs-details-system-requirements-of-windows-11s-new-vbs-enclave-security-feature/" rel="external nofollow">VBS enclaves</a>, and the <a href="https://learn.microsoft.com/en-us/azure/attestation/overview" rel="external nofollow">Microsoft Azure Attestation</a> service. It stated:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		These examples use modern Zero Trust approaches and show what can be done to encourage development practices that do not rely on kernel access. We will continue to develop these capabilities, harden our platform, and do even more to improve the resiliency of the Windows ecosystem, working openly and collaboratively with the broad security community.
	</p>
</blockquote>

<p>
	The blog post ended with Microsoft stating that it will share what it has learned from this incident, as well as discuss "changes designed to strengthen the broader ecosystem moving forward." It also mentions a list of things businesses can do to make sure they can recover quickly from a similar issue. That includes common sense solutions such as backing up data often and security, and creating a way to restore Windows PCs quickly.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-windows-must-prioritize-change-and-innovation-in-resiliency-post-crowdstrike/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24458</guid><pubDate>Fri, 26 Jul 2024 07:29:12 +0000</pubDate></item><item><title>Windows 11 is finally making it easy to change your mouse wheel scroll direction</title><link>https://nsaneforums.com/news/software-news/windows-11-is-finally-making-it-easy-to-change-your-mouse-wheel-scroll-direction-r24448/</link><description><![CDATA[<h3>
	An upcoming update will add the ability to change the behavior of your mouse scroll wheel in Windows Settings.
</h3>

<h2 id="what-you-need-to-know-3">
	What you need to know
</h2>

<ul>
	<li>
		The latest Windows 11 preview build includes a new setting to switch the scrolling direction on mice.
	</li>
	<li>
		Up until now, it's not been possible to do this without editing the Windows Registry or downloading a third-party app.
	</li>
	<li>
		Users have been able to configure this behavior on touchpads for many years.
	</li>
</ul>

<p>
	 
</p>

<hr>
<p>
	 
</p>

<p>
	Microsoft is finally adding an option to flip the behavior of your mouse's scroll wheel to the <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/software-apps/windows-11" data-before-rewrite-redirect="/tag/windows-11" data-component-tracked="1" data-hl-processed="none" data-url="https://www.windowscentral.com/software-apps/windows-11" href="https://www.windowscentral.com/software-apps/windows-11" rel="external nofollow">Windows 11</a> Settings app, letting users change the direction of scrolling with just a few clicks. Up until now, switching the scroll direction on a mouse <a data-analytics-id="inline-link" data-before-rewrite-localise="https://www.windowscentral.com/how-reverse-scrolling-direction-windows-10" data-component-tracked="1" href="https://www.windowscentral.com/how-reverse-scrolling-direction-windows-10" rel="external nofollow">required editing the Windows Registry</a>, but that will no longer be the case soon.
</p>

<p>
	 
</p>

<p>
	Spotted in the <a data-analytics-id="inline-link" data-component-tracked="1" data-hl-processed="none" data-url="https://blogs.windows.com/windows-insider/2024/07/24/announcing-windows-11-insider-preview-build-26257-canary-channel/#:~:text=%5BADDED%5D%20We%20have%20updated%20Settings%20%3E%20Bluetooth%20%26%20Device%20%3E%20Mouse%20to%20now%20include%20the%20option%20to%20turn%20off%20enhanced%20mouse%20pointer%20precision%20for%20those%20that%20would%20prefer%20to%20not%20use%20it%20and%20have%20added%20a%20new%20option%20for%20changing%20mouse%20scrolling%20direction" href="https://blogs.windows.com/windows-insider/2024/07/24/announcing-windows-11-insider-preview-build-26257-canary-channel/#:~:text=%5BADDED%5D%20We%20have%20updated%20Settings%20%3E%20Bluetooth%20%26%20Device%20%3E%20Mouse%20to%20now%20include%20the%20option%20to%20turn%20off%20enhanced%20mouse%20pointer%20precision%20for%20those%20that%20would%20prefer%20to%20not%20use%20it%20and%20have%20added%20a%20new%20option%20for%20changing%20mouse%20scrolling%20direction" referrerpolicy="no-referrer-when-downgrade" target="_blank" rel="external nofollow">latest Windows 11 preview build</a>, the ability to change the scrolling direction on mice is being added to the mouse settings page in the Windows Settings app. By default, it's set to "down motion scrolls down," as that's what most people are likely used to. However, some people prefer the opposite, where a down motion actually scrolls up.
</p>

<div>
	<div>
		<p>
			<picture><source sizes="(min-width: 1000px) 970px, calc(100vw - 40px)" srcset="https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-320-80.jpg.webp 320w, https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-480-80.jpg.webp 480w, https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-650-80.jpg.webp 650w, https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-970-80.jpg.webp 970w, https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-1024-80.jpg.webp 1024w, https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75-1200-80.jpg.webp 1200w" type="image/webp"></source></picture>
		</p>

		<p>
			 
		</p>

		<p>
			<img alt="Scrolling direction option in Windows 11" class="ipsImage" height="720" width="720" src="https://cdn.mos.cms.futurecdn.net/Mk8dJvwjQLt5J2KyEgAd75.jpg">
		</p>

		<p>
			<em><span>The option to change the scrolling direction on mice is coming. </span><span itemprop="copyrightHolder">(Image credit: Microsoft)</span></em>
		</p>

		<p>
			 
		</p>

		<p>
			Changing this behavior mimics touchpads, which attempt to replicate a touchscreen. So a two-finger swipe down on a touchpad will scroll a page up. This behavior is reversed with a mouse wheel, but some people don't like that. If you are one of those people, you'll soon be able to change it to match the direction as if you were using a touchpad or touchscreen with ease in the Settings app.
		</p>

		<p>
			 
		</p>

		<p>
			Users have been able to change the behavior of scrolling on a touchpad within the Windows Settings app for many years, but for whatever reason the company is only just getting around to adding the same option for mice. Users have been able to change this behavior with third-party software for years, but it's nice to get a built-in native option for users to easily configure.
		</p>

		<p>
			 
		</p>

		<div id="slice-container-newsletterForm-articleInbodyContent-MwnCmVyNkTfnnzikgpdnHW">
			<div data-hydrate="true">
				<p>
					<a href="https://www.windowscentral.com/software-apps/windows-11/windows-11-is-finally-making-it-easy-to-change-your-mouse-wheel-scroll-direction" rel="external nofollow">Source</a>
				</p>

				<p>
					 
				</p>

				<p>
					<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
				</p>

				<p>
					<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
				</p>

				<p>
					<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
				</p>
			</div>
		</div>
	</div>
</div>
]]></description><guid isPermaLink="false">24448</guid><pubDate>Thu, 25 Jul 2024 18:54:51 +0000</pubDate></item><item><title>Windows 11 Release Preview Channel build 26100.1297 (KB5040529) adds a host of features</title><link>https://nsaneforums.com/news/software-news/windows-11-release-preview-channel-build-261001297-kb5040529-adds-a-host-of-features-r24447/</link><description><![CDATA[<p>
	Microsoft has released a new build of Windows 11, version 24H2 , for members of the Windows Insider Program in the Release Preview channel. The new build number is 26100.1297, under KB5040529. There are a ton of new features in this build that have been included in earlier Beta, Dev, and Canary preview builds. Some of the features will be rolled out normally while others will be released gradually
</p>

<p>
	 
</p>

<p>
	Here is the changelog:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Gradual rollout</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>These might not be available to all users because they will roll out gradually.</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Lock screen] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> Sports, traffic, and finance content will appear along with weather. To turn on this feature, go to <strong>Settings &gt; Personalization &gt; Lock screen.</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Start menu]</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>New!</strong> The new account manager is on the Start menu. When you use a Microsoft account to sign in to Windows, you will get a glance at your account benefits. This feature also makes it easy to manage your account settings.
		</li>
		<li>
			<strong>New!</strong> You can now also pin apps from the Start menu to the taskbar by dragging and dropping items directly to taskbar from the pinned section in the Start menu.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> You can now use your mouse to drag files between breadcrumbs in the File Explorer address bar. A breadcrumb shows the path to your current file location in the address bar. For example, there are three breadcrumbs in the path This PC &gt; Windows (C:) &gt; Program Files.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Emoji] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> This update adds support for Emoji 15.1. Windows supports Unicode symbol-like shapes for family groupings. But Windows will keep using people for them. Also, you can choose the right or left facing direction for some people emoji. The new emoji are:
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Horizontal and vertical head shake
		</li>
		<li>
			Phoenix
		</li>
		<li>
			Lime
		</li>
		<li>
			Brown mushroom
		</li>
		<li>
			Broken chain
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Share]</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>New! </strong>This update adds a feature that stops you from accidentally closing the Windows share window. Clicking outside of the window will no longer close it. To close it, select the close button at the upper-right corner.
		</li>
		<li>
			<strong>New!</strong> You can directly share to specific Microsoft Teams channels and group chats in the Windows share window. To do so, you must sign in using a Microsoft Entra ID.
		</li>
		<li>
			<strong>New!</strong> You can now create quick response (QR) codes for webpage URLs and cloud files from the Windows share window. Select the share button in the Microsoft Edge toolbar and choose “Windows share options.” Then, you can share the URLs and files across your devices.
		</li>
		<li>
			<strong>New!</strong> You can now send email to yourself from the Windows share window. You will receive the email at the email address that is in your Microsoft account.
		</li>
		<li>
			<strong>New!</strong> You can now copy files from the Windows Share window. Just click the new Copy
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Backup] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> Windows will now back up many of your sound settings (this includes your sound scheme). This only occurs if you turn on Remember my preferences and select the checkboxes for Personalization and Other Windows settings. To find these, go to Settings &gt; Accounts &gt; Windows backup. Then, you can use the Windows Backup app to restore those settings on a new device.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Settings] </strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			<strong>New! </strong>This update adds a new Game Pass recommendation card on the Settings home page. This home page shows on Home and Pro editions when you sign in to Windows using your Microsoft account. The card appears if you actively play games on your PC.
		</li>
		<li>
			<strong>New!</strong> This update adds a page to Settings &gt; Accounts called Linked devices. On it, you can manage your PCs and Xbox consoles. This page only shows on Home and Pro editions when you sign in to Windows using your Microsoft account (MSA).
		</li>
		<li>
			<strong>New!</strong> This update puts the “Add now” button in Settings &gt; Account. When you select it, you can add a recovery email address if you have not added one for your Microsoft account yet. The button only shows if you sign in to your Microsoft account.
		</li>
		<li>
			<strong>New! </strong>This update includes updated visuals for the “Rename your PC” and “Change date and time” dialogs to match the Windows 11 visuals.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>[Task Manager]</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			This update changes the units for DDR speed from MHz to MT/s.
		</li>
		<li>
			This update addresses an issue that affects USB devices. Ejecting them using the Safely Remove Hardware option fails. This occurs when Task Manager is open.
		</li>
		<li>
			This update affects process handles. Task Manager releases them more quickly when it stops a process.
		</li>
		<li>
			This update makes Task Manager more reliable.
		</li>
		<li>
			This update affects the sort order of processes in Task Manager. Performance is better when you change the order.
		</li>
		<li>
			This update makes Task Manager more accessible by improving: Keyboard focus, Tab key navigation, Text scaling, The readout of item names by screen readers, High contrast heatmaps and more.
		</li>
		<li>
			This update makes resizing the Task Manager window easier when you grab the top of its window.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Normal rollout</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>This update includes the following features and improvements that are rolling out as part of this update. bolded in brackets indicate the area of the change being documented.</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[PC Manager]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> This update adds PC Manager to devices in China.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Widgets]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> The Widgets icons on the taskbar are no longer pixelated or fuzzy. This update also gives you a larger set of animated icons.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Azure Virtual Desktop] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New! </strong>You can now use OneDrive as a RemoteApp in Azure Virtual Desktop.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Virtual Filtering Platform (VFP)]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>New!</strong> In Windows nodes, VFP has more support for packet drop collection. This will make it easier to troubleshoot issues.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Server vNext]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		In the latest build, the cache size display behavior is not what you expect.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Group Policy Preferences Item Level Targeting (ILT) and Local Users and Groups]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		You cannot choose a group from the target domain for ILT. Also, you cannot choose an account from Local Users and Groups. The forest does not appear. This issue occurs when you deploy multiple forests, and the target domain has a one-way trust with the domain of the admin. This issue affects Enhanced Security Admin Environment (ESAE), Hardened Forests (HF), or Privileged Access Management (PAM) deployments.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Kernel Vulnerable Driver Blocklist file (DriverSiPolicy.p7b)] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		This update adds to the list of drivers that are at risk for Bring Your Own Vulnerable Driver (BYOVD) attacks.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Share button]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		On USB controllers, the button might not work with Game Bar.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Local Security Authority Subsystem Service (LSASS)] </strong>
	</p>

	<p>
		 
	</p>

	<p>
		It fails at times when you set Field Engineering logging to 5.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[NetAdapterCx module]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Devices that use certain WLAN cards stop responding.
	</p>
</blockquote>

<p>
	You can check out the <a href="https://blogs.windows.com/windows-insider/2024/07/25/releasing-windows-11-build-26100-1297-to-the-release-preview-channel/" rel="external nofollow">full blog post here</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-release-preview-channel-build-261001297-kb5040529-adds-a-host-of-features/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24447</guid><pubDate>Thu, 25 Jul 2024 18:51:42 +0000</pubDate></item><item><title>KB5040527: Windows 11 gets Start menu drag drop and pin apps, File Explorer Tab duplication</title><link>https://nsaneforums.com/news/software-news/kb5040527-windows-11-gets-start-menu-drag-drop-and-pin-apps-file-explorer-tab-duplication-r24446/</link><description><![CDATA[<p>
	Microsoft has published a new Windows 11 update today under KB5040527 (builds 22621.3958 and 22631.3958). This is the C release or the non-security preview update for July 2024 for versions 22H2 and 23H2. The new update brings several new features including the drag and drop of pinned apps from the Start menu to the Taskbar, File Explorer Tab duplication, and more.
</p>

<p>
	 
</p>

<p>
	The full changelog is given below:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<h3>
		Highlights
	</h3>

	<div class="ocpAlert">
		<p>
			<strong>Note: </strong>Below is a summary of the key issues that this update addresses when you install this KB. If there are new features, it lists them as well. The bold text within the brackets indicates the item or area of the change we are documenting.
		</p>
	</div>

	<h3>
		Gradual rollout
	</h3>

	<ul>
		<li>
			<p>
				<strong>[Notification for Windows Share in China]</strong> <strong><em>New!</em></strong> For nearby sharing to work, Wi-Fi and Bluetooth must be on. If they are off when you turn on nearby sharing, Windows will ask you to allow them to be turned on.
			</p>
		</li>
		<li>
			<p>
				<strong>[Start menu]</strong> <strong><em>New! </em></strong>You can drag apps from the Pinned section of the menu and pin them to the taskbar.
			</p>

			<p>
				 
			</p>
		</li>
		<li>
			<p>
				<strong>[Taskbar]</strong>
			</p>

			<p>
				 
			</p>

			<ul>
				<li>
					<p>
						<strong><em>New!</em> </strong> When the taskbar has keyboard focus (WIN + T), you can press a letter, and you will go to the app whose name starts with that letter. When you press a letter more than once, you will go to the next app whose name starts with that letter. Pressing a letter more than once only works if there are multiple pinned or open apps whose name starts with that letter. If you are using an uncombined taskbar, when you press a letter, you go to the window whose name starts with that letter. Also, when you press Home and End, the keyboard focus changes to the first and last items in the taskbar.
					</p>
				</li>
				<li>
					<p>
						The End task option no longer shows a not responding dialog before it stops a task. This option is only available when you turn on End task in <strong>Settings</strong> &gt; <strong>System</strong> &gt; <strong>For Developers</strong>.
					</p>

					<p>
						 
					</p>
				</li>
			</ul>
		</li>
		<li>
			<p>
				<strong>[File Explorer] </strong>
			</p>

			<p>
				 
			</p>

			<ul>
				<li>
					<p>
						<strong><em>New! </em> </strong>When you right-click a tab, you have the choice to duplicate it.
					</p>
				</li>
				<li>
					<p>
						A memory leak occurs when you interact with archive folders.
					</p>
				</li>
				<li>
					<p>
						File Explorer stops responding when you browse within it.
					</p>
				</li>
				<li>
					<p>
						When you search from Home for the first time, you might not get any results.
					</p>
				</li>
				<li>
					<p>
						The address bar dropdown menu might appear when you do not expect it.
					</p>
				</li>
				<li>
					<p>
						When you use the Save dialog to save a file to Gallery, an error occurs. Because of this update, your file saves to the Pictures library instead.
					</p>
				</li>
				<li>
					<p>
						The search box does not show the correct folder name when you are in Gallery.
					</p>
				</li>
				<li>
					<p>
						A blank area shows at the top of File Explorer.
					</p>
				</li>
				<li>
					<p>
						The back and forward mouse buttons do not work when you hover over the Recommended Files section of Home.
					</p>
				</li>
				<li>
					<p>
						Images flash when you view them in the Gallery.
					</p>

					<p>
						 
					</p>
				</li>
			</ul>
		</li>
		<li>
			<p>
				<strong>[Desktop icons]</strong> Spacing between them might become very wide.
			</p>
		</li>
	</ul>
</blockquote>

<p>
	You may find more details about the update <a href="https://support.microsoft.com/en-us/topic/july-25-2024-kb5040527-os-builds-22621-3958-and-22631-3958-preview-de3e1e24-0c07-4210-9777-8e03a1446bae" rel="external nofollow">here</a> on Microsoft's official website.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/kb5040527-windows-11-gets-start-menu-drag-drop-and-pin-apps-file-explorer-tab-duplication/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24446</guid><pubDate>Thu, 25 Jul 2024 18:50:00 +0000</pubDate></item><item><title>Linux Mint 22 "Wilma" is out now with Linux 6.8 and GTK4 themes</title><link>https://nsaneforums.com/news/software-news/linux-mint-22-wilma-is-out-now-with-linux-68-and-gtk4-themes-r24445/</link><description><![CDATA[<p>
	The Linux Mint team has <a href="https://blog.linuxmint.com/?p=4731" rel="external nofollow" target="_blank">just announced</a> the availability of Linux Mint 22 "Wilma", alongside the official release notes. While it has just been announced, some users downloaded it a few days early while it was still propagating out to Linux Mint's extensive list of mirrors.
</p>

<p>
	 
</p>

<p>
	The headline feature in the release notes is better language support. When you install Linux Mint 22 now, only the languages you chose, and English, will remain at the end of the installation, saving you a significant amount of space. You may not have realized it, but this was not optimized in older versions.
</p>

<p>
	 
</p>

<p>
	While we are on the topic of languages, the installation media now includes English, German, Spanish, French, Russian, Portuguese, Dutch, and Italian for offline installations. Other languages will require that you have an internet connection.
</p>

<p>
	 
</p>

<p>
	In terms of new technology, here's what's relevant to this version:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			Linux Mint 22 ships with modern components and the new Ubuntu 24.04 package base.
		</li>
		<li>
			To guarantee better compatibility with modern hardware, the kernel is version 6.8 and Linux Mint 22.x point releases will follow the HWE series.
		</li>
		<li>
			The default sound server switched to Pipewire.
		</li>
		<li>
			The Software Sources received support for the new Debian DEB822 format.
		</li>
		<li>
			Themes were updated to support GTK4.
		</li>
		<li>
			JXL support was added to Pix and a new thumbnailer was implemented for it.
		</li>
		<li>
			All software using libsoup2 was migrated to libsoup3.
		</li>
		<li>
			HiDPI support improvements were made in the boot sequence, in Plymouth and Slick-Greeter.
		</li>
	</ul>
</blockquote>

<p>
	Another nice improvement in Linux Mint 22 is the work that has gone into the mintinstall Software Manager. It now loads faster than before with the main window appearing instantly. It also includes improved multi-threading, a new preferences page, and a banner slideshow.
</p>

<p>
	 
</p>

<p>
	We've spoken about it previously but the new Software Manager now disables unverified Flatpaks by default to improve the security of your system and verified Flatpaks now show their maintainer name for added trust. If you enable unverified Flatpaks, they will be clearly marked.
</p>

<p>
	 
</p>

<p>
	Finally, Linux Mint 22 comes with the Cinnamon 6.2 desktop. Here's what's new:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<ul>
		<li>
			Less printer added notifications (silenced for 2 hours)
		</li>
		<li>
			Wayland support: Clutter polkit agent
		</li>
		<li>
			Spices: keybindings support
		</li>
		<li>
			Better avatar support in polkit agent and user applet
		</li>
		<li>
			Workspace switcher: middle click removes the workspace being hovered
		</li>
		<li>
			Keybindings: ability to search by binding
		</li>
		<li>
			Cornerbar applet: shift+click action added
		</li>
		<li>
			Applets: improved precision in reporting VPN and battery states
		</li>
	</ul>
</blockquote>

<p>
	If you are running the Linux Mint 22 Beta, you don't need to do an upgrade to jump to Stable, just open the Update Manager and apply available updates. If you're on Linux Mint 21.3, upgrade instructions will be issued in the coming days, though, if it's anything like previous releases you'll get an update to the Update Manager and then an upgrade option will be available from within the Update Manager's menus.
</p>

<p>
	 
</p>

<p>
	If you want to install Linux Mint 22 as a clean install then you just need to grab your favorite edition from the <a href="https://www.linuxmint.com/download.php" rel="external nofollow" target="_blank">downloads page</a>. You can choose between Cinnamon, Xfce, and Mate.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/linux-mint-22-wilma-is-out-now-with-linux-68-and-gtk4-themes/" rel="external nofollow" target="_blank">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>

<p>
	 
</p>
<iframe allowfullscreen="" class="ipsEmbed_finishedLoading" data-controller="core.front.core.autosizeiframe" data-embedauthorid="113165" data-embedcontent="" data-embedid="embed2627900911" src="https://nsaneforums.com/topic/457239-linux-mint-22/?do=embed&amp;comment=1834753&amp;embedComment=1834753&amp;embedDo=findComment#comment-1834753" style="overflow: hidden; height: 334px; max-width: 502px;"></iframe>]]></description><guid isPermaLink="false">24445</guid><pubDate>Thu, 25 Jul 2024 18:47:02 +0000</pubDate></item><item><title>Microsoft 365 Insiders can check out easier ways to edit tables in Word on the web</title><link>https://nsaneforums.com/news/software-news/microsoft-365-insiders-can-check-out-easier-ways-to-edit-tables-in-word-on-the-web-r24444/</link><description><![CDATA[<p>
	Earlier this month, Microsoft announced<a href="https://www.neowin.net/news/microsoft-is-rolling-out-even-more-improvements-for-excel-on-the-web/" rel="external nofollow"> improvements to the web edition of its Excel spreadsheet program</a>. They included easier ways to insert and move rows and columns in the spreadsheet. Today, Microsoft says it has started to roll out similar improvements for using tables in the web version of its Word app.
</p>

<p>
	 
</p>

<p>
	In a <a href="https://insider.microsoft365.com/en-us/blog/edit-tables-with-ease-in-word-for-the-web" rel="external nofollow">post on the Microsoft 365 Insider blog</a>, the company stated:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		Now you can effortlessly insert a row or column into a table right where you need it with a single click, without having to right-click or access the ribbon to make your changes. You can also move an existing row or column to a new location in the table quickly and easily (no cutting or pasting necessary).
	</p>
</blockquote>

<p>
	Word on the web users who want to add a new row or column to an existing table in the file can do so now by moving the cursor to the location for the additional row or column. Then the + icon should show up next to the location for the new row or column. You can then select it to add that new addition to the table.
</p>

<p class="img-center">
	<img alt="microsoft word" class="ipsImage" height="252" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721925129_insert-new-row-or-column-in-word-gif.gif">
</p>

<p>
	In order to move an existing row or column to a new location in the table in Word on the web, you first take your cursor to the row or column you want to move. You should then see four dots at the top of the column or the start of the row. You can then click on the four dots and you should see a blue line show up to help guide you. You can then move the selected row or column with your cursor where you want it to be placed in the table.
</p>

<p>
	 
</p>

<p>
	Right now, the new table editing features in Word on the web are available for Targeted Release users. They won't be generally available for all Word web users until sometime in September 2024.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/microsoft-365-insiders-can-check-out-easier-ways-to-edit-tables-in-word-on-the-web/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24444</guid><pubDate>Thu, 25 Jul 2024 18:45:30 +0000</pubDate></item><item><title>Windows 11 Insider Canary Channel Build 26257 adds some new mouse setting options [Update]</title><link>https://nsaneforums.com/news/software-news/windows-11-insider-canary-channel-build-26257-adds-some-new-mouse-setting-options-update-r24439/</link><description><![CDATA[<p>
	<strong>Update: July 25</strong> - Microsoft updated the blog post for the new Windows 11 Insider Canary Build 26257 release after its initial release. It now shows the build has some additional mouse settings along with a new known issue. We have updated the post to include these additions
</p>

<p>
	 
</p>

<hr>
<p>
	 
</p>

<p>
	Microsoft has released the latest Windows 11 build for members of the Windows Insider program in the Canary Channel. The new build number is 26257. It includes a way to duplicate a tab in File Explorer and more.
</p>

<p>
	 
</p>

<p>
	Here is the change log:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Changes and Improvements</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		We’re rolling out the ability to duplicate a tab by right-clicking on a tab in File Explorer.
	</p>

	<figure class="image image--expandable">
		<img alt="windows 11" class="ipsImage" height="302" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721841158_fe-duplicate-tab-1024x429.jpg">
		<figcaption>
			Option to duplicate tab when right-clicking on a tab in File Explorer highlighted in a red square.
		</figcaption>
	</figure>

	<p>
		<strong>[Input]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[ADDED]</strong> We have updated Settings &gt; Bluetooth &amp; Device &gt; Mouse to now include the option to turn off enhanced mouse pointer precision for those that would prefer to not use it and have added a new option for changing mouse scrolling direction.
	</p>

	<p>
		 
	</p>

	<figure class="image image--expandable">
		<img alt="windows 11" class="ipsImage" height="518" width="720" src="https://cdn.neowin.com/news/images/uploaded/2024/07/1721893529_enhanced-mouse-scrolling-direction-1024x738.jpg">
		<figcaption>
			New options for enhanced mouse pointer precision changing mouse scrolling direction highlighted in red boxes.
		</figcaption>
	</figure>

	<p>
		<strong>[Networking]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		If you use the netsh wlan show networks command, you should be able to read SSIDs that are UTF-8 encoded. This means that Wi-Fi SSIDs with Unicode characters (like emojis) should be properly displayed in netsh output. This change is beginning to roll out so not all Insiders in the Canary Channel will see it right away.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[For Developers]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Updated the logic for the “End Task” option in the taskbar so that it no longer shows a Not Responding dialog to give confirmation before ending the task.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Other]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Updated System Info (msinfo32) to now follow your text size preference under Settings &gt; Accessibility &gt; Text Size.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Fixes</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Fixed an underlying issue causing some Insiders to see bugchecks in recent builds citing KERNEL_SECURITY_CHECK_FAILURE.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[File Explorer]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Did some work to help address an issue where the address bar dropdown might appear unexpectedly while you were using File Explorer.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Settings]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		Fixed an underlying issue leading to some of the pop-up windows in Settings unexpectedly appearing left aligned, for example, the window for selecting a custom color for Dynamic Lighting.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>Known issues</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[General]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[IMPORTANT NOTE]</strong> We are investigating reports that some Windows Insiders in the Canary and Dev Channels are stuck on Build 26040 or Build 23620. The investigation is ongoing, however if you are impacted by this and really want to get onto the latest build in the Canary or Dev Channel today – you can download the latest ISO here and do a clean install and opt your device back into flighting in the Canary or Dev Channels.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Windows Sandbox]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[NEW]</strong> Windows Sandbox will fail to launch with error 0x80370106.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Input]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[NEW]</strong> We are working on the fix for an issue causing the emoji panel to close when trying to switch to the kaomoji and symbols sections, or after selecting an emoji.
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[Task Manager]</strong>
	</p>

	<p>
		 
	</p>

	<p>
		<strong>[ADDED] </strong>We’re investigating an issue causing graphs on the Performance page in Task Manager to not show the correct colors when using dark mode again
	</p>
</blockquote>

<p>
	You can check out the <a href="https://blogs.windows.com/windows-insider/2024/07/24/announcing-windows-11-insider-preview-build-26257-canary-channel/" rel="external nofollow">full blog post here</a>.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/windows-11-insider-canary-channel-build-26257-lets-you-duplicate-a-tab-in-file-explorer/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24439</guid><pubDate>Thu, 25 Jul 2024 07:57:37 +0000</pubDate></item><item><title>Edge 128.0.2730.0 is out in the Dev Channel with various improvements</title><link>https://nsaneforums.com/news/software-news/edge-128027300-is-out-in-the-dev-channel-with-various-improvements-r24438/</link><description><![CDATA[<p>
	This week's feature update for Microsoft Edge in the Dev Channel is now live under version 128.0.2730.0. You will not find much inside it—only a small icon for autofill suggestions and a list of various reliability improvements and bug fixes. Also, there are patches for Android and iOS versions of Microsoft Edge Dev (the iOS version is closed-testing).
</p>

<p>
	 
</p>

<p>
	Here are the official release notes:
</p>

<p>
	 
</p>

<blockquote class="QuoteNewsStyle">
	<p>
		<strong>Added Features:</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Included an icon in the footer elements for autofill suggestions.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Improved Reliability:</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Resolved an issue when signing into an AAD account would cause a crash on Android.
		</li>
		<li>
			Resolved an issue where the browser crashes when playing YouTube videos after a restart.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Changed Behavior:</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Resolved an issue where the UI overlapped during AAD login and after a successful sync under favorites.
		</li>
		<li>
			Resolved an issue where the search button icon lacked sufficient contrast in high contrast mode.
		</li>
		<li>
			Resolved an issue where, upon opening the same group in browser, all tabs initially load, but a few tabs subsequently disappear.
		</li>
		<li>
			Fixed an issue where the buttons overlapped on screens with smaller resolutions, even when the browser was maximized.
		</li>
		<li>
			Mac: Resolved an issue where the FRE page was skipped, and the browser was unresponsive on Mac and Mac Arm platforms upon launch.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>Android:</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Resolved an issue where the Sign-In page’s layout and color scheme were not consistent with other pages on android.
		</li>
		<li>
			Resolved an issue where the Immersive Translate panel was displayed in the middle of the screen on android.
		</li>
	</ul>

	<p>
		 
	</p>

	<p>
		<strong>iOS:</strong>
	</p>

	<p>
		 
	</p>

	<ul>
		<li>
			Fixed an issue where the ‘Continue’ button was displayed in a lower position on the implicit sign-in page on iOS.
		</li>
		<li>
			Fixed an issue where users were unable to rearrange or drag items using single-point mode on the All-menu page in iOS.
		</li>
		<li>
			Resolved an issue where clicking ‘sync settings’ on the implicit sign-in page caused the account information to appear blank.
		</li>
	</ul>
</blockquote>

<p>
	You can download Microsoft Edge Dev <a href="https://www.microsoft.com/en-us/edge/download/insider?form=MA13FJ" rel="external nofollow">from the official Edge Insider website</a>. It supports Windows 10 and 11, macOS, Linux, and Android (get it <a href="https://play.google.com/store/apps/details?id=com.microsoft.emmx.dev" rel="external nofollow">from the Google Play Store</a>). Microsoft plans to release Edge 128 in the Stable Channel on the week of August 22, 2024.
</p>

<p>
	 
</p>

<p>
	<a href="https://www.neowin.net/news/edge-128027300-is-out-in-the-dev-channel-with-various-improvements/" rel="external nofollow">Source</a>
</p>

<p>
	 
</p>

<p>
	<span style="font-size:12px;"><em>Hope you enjoyed this news post.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>Thank you for appreciating my time and effort posting news every single day for many years.</em></span>
</p>

<p>
	<span style="font-size:12px;"><em>2023: Over 5,800 news posts | 2024 (till end of June): 2,839 news posts</em></span>
</p>
]]></description><guid isPermaLink="false">24438</guid><pubDate>Thu, 25 Jul 2024 07:56:29 +0000</pubDate></item><item><title>Apple Maps launches on the web to take on Google</title><link>https://nsaneforums.com/news/software-news/apple-maps-launches-on-the-web-to-take-on-google-r24422/</link><description><![CDATA[<p>
	<span style="font-size:20px;">More than a decade after its debut, Apple Maps is getting its largest expansion ever — and making a big move to take on its main competitor.</span>
</p>

<p>
	 
</p>

<p>
	Apple Maps is finally available on the web. Through a beta that launched Wednesday afternoon, you can now get driving and walking directions, as well as view ratings and reviews from the web version of Apple Maps in a desktop or mobile browser.
</p>

<p>
	 
</p>

<p>
	Apple Maps is available through the beta.maps.apple.com site. You can do most of what you can in the iOS version of the app, including view guides, order food directly from Maps, explore cities, and get information about businesses. Apple says it’s going to launch additional features, like Look Around, in the coming months.
</p>

<p>
	 
</p>

<p style="text-align:center;">
	&lt; View the six (6) images on the <a href="https://www.theverge.com/2024/7/24/24205449/apple-maps-web-beta" rel="external nofollow">source page</a>. &gt;
</p>

<p style="text-align:center;">
	 
</p>

<p>
	The web-based version of Apple Maps is only available in English for now, and is compatible with Safari and Chrome on Mac and iPad, along with Chrome and Edge on Windows PCs. Apple plans on rolling out support for other languages, browsers, and platforms in the future. Apple notes that all developers using its MapKit JS tool can link out to Maps on the web.
</p>

<p>
	 
</p>

<p>
	Users have long requested Apple Maps on the web since the app’s launch on iPhone in 2012. Now that it’s finally here, Apple Maps will be able to directly compete with Google, which has long been available on the web. Apple has been gradually adding new features to its mapping service, including detailed city maps, multi-stop routing, cycling directions, EV routing, offline navigation, and more.
</p>

<p>
	 
</p>

<p>
	<em>Developing...</em>
</p>

<p>
	 
</p>

<p>
	<strong><a href="https://www.theverge.com/2024/7/24/24205449/apple-maps-web-beta" rel="external nofollow">Source</a></strong>
</p>
]]></description><guid isPermaLink="false">24422</guid><pubDate>Wed, 24 Jul 2024 19:34:26 +0000</pubDate></item></channel></rss>
