/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})(); Unseen Status updates Archives - The Tach https://thetach.com/?tag=unseen-status-updates Mon, 09 Dec 2024 17:49:36 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 New WhatsApp Feature Alerts Users to Check Unread Messages https://thetach.com/?p=900 https://thetach.com/?p=900#respond Mon, 09 Dec 2024 17:47:43 +0000 https://thetach.com/?p=900 WhatsApp is still a leading player in the modes of communication worldwide, and this app is constantly updating the platform to make it even better.  The latest WhatsApp new feature delivers unread messages and unread Status updates to the surface level.  This enhancement ensures users stay informed about missed interactions while elevating their overall experience. ... Read more

The post New WhatsApp Feature Alerts Users to Check Unread Messages appeared first on The Tach.

]]> WhatsApp is still a leading player in the modes of communication worldwide, and this app is constantly updating the platform to make it even better.  The latest WhatsApp new feature delivers unread messages and unread Status updates to the surface level.  This enhancement ensures users stay informed about missed interactions while elevating their overall experience. By prioritizing innovation and user convenience, WhatsApp remains a preferred choice for billions worldwide.

Revolutionizing User Notifications

The newly unveiled WhatsApp new feature introduces reminders for unread messages and unseen Status updates, addressing a long-standing issue faced by users. Many individuals, especially those handling multiple conversations, often miss critical updates. This new feature allows messages and updates that are relevant to be brought to the attention of the recipients.

In a world where communication is of utmost importance, such an update re-emphasizes the company’s efforts to ensure that WhatsApp is developed to meet the ever-changing user demands. The focus on unread message notifications signifies a step toward making interactions more organized and stress-free for users.

How the New Feature Works

WhatsApp new feature for unread message notifications is powered by a sophisticated internal algorithm that prioritizes reminders based on user interaction history. Frequently contacted individuals are given precedence, ensuring that updates from these contacts are more likely to generate alerts.

Interestingly, this prioritization is done locally on the device, ensuring user privacy. The data is not uploaded to servers or stored in cloud backups. This means that if a user reinstalls WhatsApp, the prioritization is recalculated from scratch using the most recent interactions. This approach reflects WhatsApp’s commitment to privacy and security while delivering a feature designed for practicality.

Testing Through the WhatsApp Beta Program

This emerging WhatsApp new feature is still within the testing phase and has been made available in the WhatsApp beta version where users can try it out and give their comments. As you may know, beta testing is called for mainly when it comes to tuning the feature and preparing its roll-out for every user.

For Android users, to become part of the beta version of the application one has to open the Google Play Store and choose to be part of the beta version. It has been added to WhatsApp beta version 2.24.25.29, which also has support for displaying icons of unread messages and unseen Status. Once users join the beta program, they should ensure that their app remains updated to access the latest features and improvements.

Sticker-Sharing Update: A Convenient Addition

While the unread message notifications feature is a significant update, WhatsApp has also introduced an equally exciting sticker-sharing update.  This update makes it easier to send stickers as you can do it in one go through the whole pack. Before, sharing stickers was done where each sticker was sent separately, this was often cumbersome. 

Now, users can open the sticker picker, locate the desired pack, and use the three-dot menu to select “Send.” The recipient can then download the full pack directly, making the process seamless and efficient. This feature is already available on iOS with version 24.24.83 and is gradually being rolled out to more users. Android users can expect a similar update soon, further enhancing the app’s convenience.

Why These Features Matter

The introduction of unread message notifications and unseen  Status updates addresses common pain points experienced by WhatsApp users. There may be a delay in messages being read hence a delay in response or it may make users feel out of touch with their contacts due to a missed Status update. In particular, the issues mentioned above help WhatsApp to remain topical and convenient.

By doing so, the sticker-sharing update supports these efforts but also makes interaction with friends and other people more exciting. Stickers also have become an important attribute of online communication; they help people make individual and unique expressions of themselves. Reducing the workload of the application makes the process easier and users will engage in this aspect frequently.

Steps to Access the New Features

For users to be able to use these updates, their app must be downloaded with the latest version. That said, for Android users who are willing to try out new features for unread message notifications on WhatsApp there is no better way than to join the WhatsApp beta. Here how to get started:

Unread message notifications
Source: tribune.com

Type WhatsApp in the browser and look for the beta programs there. Go to the signup page to sign up for the beta program and make sure you have the latest version of the app. For sticker-sharing updates, iOS users should update if they are using version 24.24.83 or newer. Android users can expect the new update coming to them in the next couple of weeks.

Enhancing Privacy with Local Data Storage

A standout feature of this update is WhatsApp’s commitment to privacy. The algorithm for unread message notifications works entirely offline, using local data stored on the user’s device. This helps to make sure that one is not downloading interaction history to servers, or backing up data up.

This aspect of privacy makes WhatsApp stand out from other messaging applications thus enhancing its security feature reputation. The user can get the advantage of having integrated freeware that includes terrific features without putting data at risk.

WhatsApp Roadmap for the Future

The reported updates exemplify WhatsApp commitment to innovation, and the software appears to go only upward. Despite having many features that many people appreciate, we now have new features such as unread message notifications, improved ease of sharing stickers and so much more, all derived from user feedback, as well as improvements in technology.

Subsequent releases will still build on the improvements of the current system through enhancing communication, privacy, and convenience of the users. As WhatsApp grows, it remains a vital tool for connecting people worldwide.

Conclusion

The new WhatsApp feature for unread message notifications and unseen Status updates represents a significant enhancement to the app. By addressing missed interactions and improving notification management, WhatsApp ensures users can communicate effectively without unnecessary distractions.

The sticker-sharing update is another feature that expands the potential of the app since it adds a new layer of interactivity to the app: conversations. As these updates are launched around the world WhatsApp remains a perfect example company’s devotion to innovation, personal data protection, and consumer needs satisfaction. Given its relentless pursuit of enhancing the appreciation of both convenience and functionality, WhatsApp has renewed itself as one of the most prominent communication platforms today.

FAQs

What does the new WhatsApp feature include?

It provides unread message notifications and reminders for unseen Status updates.

How can I test the feature on my device?

Join the WhatsApp beta program via the Google Play Store or App Store.

How does WhatsApp prioritize notifications for unread messages?

It uses a local algorithm to prioritize updates based on interaction history.

Is the sticker-sharing update available for Android users?

It is being gradually rolled out, with availability expected soon.

Does WhatsApp store interaction data on servers?

No, all data is processed and stored locally on the user’s device.

The post New WhatsApp Feature Alerts Users to Check Unread Messages appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=900 0