Recommended Posts

You can read changelogs just fine, I use http://git.chromium.org/gitweb/?p=git/chromium.git;a=rss

 

Better one: http://git.chromium.org/gitweb/?p=chromium.git;a=shortlog

 

So they shifted to more like Mercurial system like Firefox.

 

Although unlike Firefox where they include Bug number as well, there is no such things.

 

Not to mention, its something but not like before where in single XML we can read Blink Changes and v8 changes as well, now we have to see commit message and open URL in tab to read particular changeset changes.

 

In short, it could be said that its something better than nothing but its still not up to the transparency level like before and convenience.

Oh, that's handy. Now they just need to fix the building of continuous builds. Maybe a bug should be filed?

 

I asked them on "chromium-discuss" Google Group but none bother to reply... You can file bug if you will be lucky you would get reply.

 

https://groups.google.com/a/chromium.org/forum/#!forum/chromium-discuss

 

My Post: https://groups.google.com/a/chromium.org/forum/#!topic/chromium-discuss/SVHS4t6A5L0

 

You can also ask them on "chromium-dev" Group - https://groups.google.com/a/chromium.org/forum/#!forum/chromium-dev

It's git not mercurial, and you can also use http://omahaproxy.appspot.com/ to get a lot of diffs and logs. There are already bugs filed for everything you guys mentioned, things just have to be handled differently with git providing the version numbers because hashes are not incremental numbers like svn revision numbers.

 

You can browse https://code.google.com/p/chromium/issues/list?can=2&q=label%3AInfra-Chrome&colspec=ID+Pri+M+Iteration+ReleaseBlock+Cr+Status+Owner+Summary+OS+Modified&cells=tiles and look at the bugs.

With Chrome 37 comes a change to how offline mode works in the browser. Offline Mode will be enabled by default starting with Chrome 37 which means that the experimental flag will no longer be provided.

 

The Chromium team has added three new experimental flags to the browser which you can use to enhance the feature further:

    chrome://flags/#enable-offline-auto-reload - If enabled, Chrome will keep track of pages that you visit while offline. This can be the case if you visit a link on a cached page that is not cached. The page fails to load because of that. Chrome remembers the page and will download it once an Internet connection is available so that you can access it next time the Internet becomes unavailable.

    chrome://flags/#enable-offline-auto-reload-visible-only - This works similar to the flag above but with the difference that only visible tabs will be loaded when Internet access becomes available.

    chrome://flags/#enable-offline-load-stale-cache - This is the preference that determines whether the show saved copy button is displayed on the connection error page. It is enabled by default, and you can use the preference to disable it.
 

  • Like 7

Google has added a feature to Chrome recently that allows you to lock down the browser using your Google password. While that may sound like a good idea, it has implications which you need to know about:

  1. Since you are linking your Google account to a profile, it is necessary to stay logged in whenever you use that profile in Chrome. This means that you are always signed in to Google when you use the feature.
  2. While you can lock your Chrome profile so that it cannot be accessed, you too cannot use Chrome at that time.
  3. You need to manually lock Chrome, there is no option to do this automatically (for instance when the computer goes to sleep or is turned off)
  4. The feature is experimental at the time of writing which means that it may or may not be integrated natively in the browser.
  5. Load chrome://flags/#enable-new-profile-management in the address bar and switch the preference to enabled. This enables the browser's new profile management.
  6. Click on the restart button to apply the change and relaunch the browser.

You will see a profile menu at the top right corner of the screen on restart.

 

  • Here you need to sign-in to a Google account using your account credentials.
  • Once you have done so, you see your profile picture and name listed in the menu.
  • Here you also find the lock button which you can click on to lock down the browser.
  • This switches Chrome to the user manager window that displays options to sign in again, create a new account, or browse as guest.
  • This page will remain until you sign in again or use one of the other options provided on the screen. It remains active when you close Chrome so that you can use it to lock down your browser profile completely using the feature.
Google to Fix Chrome Bug Killing Windows Laptop Battery

 

 

Google Chrome actually modifies system clock tick rates in Windows, thus making the processor wake up more often to check for events that might require additional power. Hence, increased battery consumption.

  • Like 7

Google to Fix Chrome Bug Killing Windows Laptop Battery

 

 

Google Chrome actually modifies system clock tick rates in Windows, thus making the processor wake up more often to check for events that might require additional power. Hence, increased battery consumption.

 

 

If anyone wants to see how its worse and detailed explanation, I recommend to read following blogpost: http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/

I think this work will be underway because of this project: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/P5LTJRwUhpQ

 

On side note:

--- Chrome improved drag'n'drop behavior on Linux and Google ChromeOS matching Windows

--- Chrome is shifting complex stuff like marquee (HTMLMarqueeElement) on JS inside Blink layout engine (blink-in-js).

 

@Boo Berry

 

Bad news, Chrome x64 continuous builds also shifted to Git now...

If anyone wants to see how its worse and detailed explanation, I recommend to read following blogpost: http://randomascii.wordpress.com/2013/07/08/windows-timer-resolution-megawatts-wasted/

I think this work will be underway because of this project: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/P5LTJRwUhpQ

 

On side note:

--- Chrome improved drag'n'drop behavior on Linux and Google ChromeOS matching Windows

--- Chrome is shifting complex stuff like marquee (HTMLMarqueeElement) on JS inside Blink layout engine (blink-in-js).

 

@Boo Berry

 

Bad news, Chrome x64 continuous builds also shifted to Git now...

Jeez, stop calling it bad news just because it takes some time till all tools are sorted :p

 

Moving everything to git is a huge undertaking for Google and will be a huge profit when they are done.

Refactor RTCP handling



This change is to refactor RTCP handling in media/cast such that RTCP
message parsing is done in CastTransportSender.

This side effect of this refactoring is much cleaner code: RTCP handling
code are grouped under one module. VideoSender and AudioSender do not
handle packets directly.

This also affect the architectutre in Chrome that RTCP message parsing
is now done in the browser process. A parsed RTCP message is passed to
the renderer instead of raw packets.

REATIONALE

RTCP is used as a feedback mechanism in Cast Streaming. It used to be
parsed and handled by VideoSender and AudioSender in the render process.
This was very ineffective because packetization and sending is done in
the browser process. This created inefficiencies in packet
retransmission. It also made improvement to the transport protocol /
algorithm much more difficult. A side effect is very messy code.



Net deleted 400 lines of code and simulation shows the same results.

BUG=393042

Review URL: https://codereview.chromium.org/387933005

Finally Chromium Snapshots changed from Git Hashes to SVN Number like before although changelogs has gone but no worries, I will rely on Git shortlogs.

 

EDIT: Huh!!! Its broken now: http://git.chromium.org/gitweb/?p=chromium.git;a=shortlog

 

Although this changelog does work: http://omahaproxy.appspot.com/ (Mentioned on last page by someone)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Posts

    • I don't understand the vision. Do people really want to buy a new computer from Dell with 6 browsers installed? We all keep asking for Microsoft to stop having so much junk on their OS, and adding a bunch of browsers seems to go against that. Ideally, we would just be asked what browser we want during OOBE but Google is just going to pay Dell a bunch of money to include Chrome. Additionally, would you want your phones to start including all the browsers too when you get them? The only thing I ever wanted was to be able to uninstall IE or edge and I believe you are now able to. I do agree that microsoft needs to chill with their "are you sure you don't want to try edge before you install chrome" ads when going to download chrome.
    • The funny thing here is that like 70% or so of the web browser users use 'Google Chrome' as web browser. What I don't understand is that why on earth would ANYONE choose 'Google Chrome' on Windows when 'Microsoft Edge' is not just better in most things, but it's already there right out of the box for the Windows users. Microsoft Edge has less data collection (yes, that's a fact), less RAM usage and is more optimized for Windows (as it's a Microsoft product) right out of the box. I'm sure you will come with the argument of bloat in Microsoft Edge. Sure, but most of that can be fixed with a simple tool (there are many good ones out there for this). Yes, that require a couple of clicks in the same way as it requires several clicks to install 'Google Chrome'. And I'm sure you really love the 4 GB of AI-slop data 'Google Chrome' is downloading for Chrome without you agreeing to it. Fun right? Sure, the way Microsoft is pushing 'Microsoft Edge' on users might not be the best way of doing it and might need to change. But I would never choose 'Google Chrome' over 'Microsoft Edge' today anyways. I'm sure there was a period back in the days when 'Google Chrome' actually was better in most things, but that period is not today.
    • JetBrains rolls out IntelliJ IDEA update with Markdown preview fixes and more by David Uzondu Image via JetBrains IntelliJ 2026.1.3 from JetBrains has landed, bringing several highly requested bug fixes that target common UI glitches and terminal rendering issues. If you run tmux inside the integrated terminal, the IDE no longer renders the cursor above the active line. The Markdown preview bug, which was fixed in this release, had annoyed developers for quite some time, as the preview pane failed to render images saved outside the project directory. Instead of displaying the actual image, the IDE simply showed a broken image icon, a problem that stuck around for two years before this update. Over on Windows, developers running WSL can now use wsl.exe to spin up their environments without losing terminal functionality. In previous builds, launching a terminal shell with something like wsl.exe -d ubuntu inside a Windows-based project broke both shell integration and active process detection. Other bug fixes in this release include: An issue where Gradle sync incorrectly reported success as a failure on WSL when using Gradle 9.5.0. A syntax highlighting bug that flagged valid Java for-loop initialization blocks with multiple statements as incorrect. A warning bug that triggered a false non-null local variable alert when using JSpecify annotations. A database generation bug that hid the option to use a DELETE statement instead of a TRUNCATE checkbox. A Kotlin highlighting failure where an assertion error in the Gradle redundant library inspection broke error highlighting. A UI bug where the ComboBox popup lacked a maximum height restriction. A Snowflake syntax error where DataGrip failed to support the "create temp" command. A Svelte syntax parsing failure that incorrectly flagged quotes inside inline expressions. A VCS repository manager deadlock that triggered thread pool exhaustion. A memory leak where the LazyTree component kept all previous versions of a tree in memory. IntelliJ 2026.1.3 is the third bug fix release for the IntelliJ 2026.1 series. The first one landed back in April with a fix for the WSL Python interpreter freeze, another fix for guest participants using Emmet abbreviations, and corrected WildFly server deployment errors.
    • That stupid annoying Sign in with Google on all these sites now... get the fk outta here
  • Recent Achievements

    • Collaborator
      Asgardi earned a badge
      Collaborator
    • Conversation Starter
      mobandz earned a badge
      Conversation Starter
    • Apprentice
      fernan99 went up a rank
      Apprentice
    • One Month Later
      nothanks earned a badge
      One Month Later
    • One Month Later
      B2Proxy earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      469
    2. 2
      PsYcHoKiLLa
      243
    3. 3
      Skyfrog
      79
    4. 4
      FloatingFatMan
      73
    5. 5
      Michael Scrip
      60
  • Tell a friend

    Love Neowin? Tell a friend!