Weebly Release Notes: New Features And Apps From April



Google is committed to advancing racial equity for Black communities. See how.

Re: Weebly Release Notes: New Features & Apps from January 2018 Thank you for the feedback, @afa Have you already submitted your feature requests or voted on any current ones? The comments for requests are super important for our team to see and we definitely appreciate you taking the time to voice your opinion. Jul 21, 2020 Weebly has a large app store, where you can suggest or even build your own apps. Installing apps only takes a couple of clicks, and apps are ready in your site in seconds. WordPress has thousands of plugins to choose from, with new ones being built and added all the time. Note: Features mentioned in this post may only be available in the new version of the website builder. Instagram Shopping - Carousel Layout &. Oct 03, 2018 Download MacOS Mojave v10.14 (18A391) App Store DMG for Mac Free. Click on below button to start MacOS Mojave v10.14 (18A391) App Store DMG Download for Mac OS X. This is completely Tested and Working Latest Version Mac OS App of MacOS Mojave v10.14 (18A391) App Store DMG. Dec 05, 2018 MacOS 10.14.2 Release Notes.

This page lists the major changes in each release of Google Apps Script. It isintended to help developers identify recent changes in behavior. For olderchanges, see the release notes for2019,2018,2017,2016,2015,2014,2013,2012,2011, or2010.

December 2020

December 7, 2020

The Apps Script integrated development environment, or IDE, has been fullyredesigned. Along with a completely new interface, the following features havebeen updated:

  • The editor now has a collapsible left sidebar to navigate to the Apps Scriptproject overview, settings, executions, and triggers.
  • The editor’s resources panel now includes files, advanced services, andlibraries.
  • Autoformatting has been added to the editor.
  • Autocomplete in the editor has been enhanced to be faster, more consistent,and extends its support to user-defined functions and JavaScript languagefeatures. You can add JSDoc to your functions for better autocompletesuggestions.
  • The editor now supports codeblock and function collapsing.
  • Keyboard shortcuts and a Command Palette has been added to the editor. PressF4 to view the Command Palette and available keyboard shortcuts.
  • The editor now includes a contextual right-click menu with options such as GoTo Symbol, Rename Symbols, and Command Palette.
  • Enhancements have been made to the debugger’s performance and speed.
  • Logs now stream in real-time as you run a script.
  • The deployments dialog auto-detects the deployment types from the scriptproject’s manifest. You can change or add more types as needed.
  • Deployments have been merged with versions. Each time you create a newdeployment, a new version is automatically created. clasp users areunaffected by this change.
  • A single deployment can be an add-on deployment , web app, library, or APIexecutable. Any deployment can be used as a library.
  • Now only one deployment can be active at a time. This change doesn’t affectexisting active deployments. clasp users are unaffected by this change.
  • You can no longer explicitly deactivate published web apps. Instead, deletethe deployment that has the web app. To reactivate the web app, deploy itagain.
  • The debugger is no longer supported in the Rhino runtime. To use the debugger,migrate your script to the V8 runtime.
  • Testing Editor Add-ons is not yet supported in this release and will be addedin 2021. To test Editor Add-ons, switch back to the legacy IDE.

To switch back to the legacy IDE from within the editor, at the top, clickUse legacy editor.

October 2020

October 23, 2020

An advanced service for Google Tables has been added to Apps Script. The Tables serviceallows scripts to programmatically read and edit rows within Tables.

September 2020

September 3, 2020

New classes and methods have been added to support ConnectedSheets.

The following new classes have been added to the Spreadsheet service:

New methods to support Connected Sheets have been added to the followingclasses in the Spreadsheet service:

August 2020

August 27, 2020

A new class called DecoratedTexthas been added to the Card Service. DecoratedText adds textwith optional decorations and was added to replace the KeyValueclass.

July 2020

July 27, 2020

To help simplify Google Drive’s folder structure and sharingmodels, new methods have been added to the Drive serviceand some existing methods have been deprecated.

The DriveApp now has anenforceSingleParent(value)method that enables or disables enforceSingleParent behavior.

The File class now has the followingmethods:

  • file.getTargetId(): Getsa shortcut's file ID.
  • file.getTargetMimeType():Returns the mime type of the item a shortcut points to.
  • file.moveTo(destination):Moves a file to a specified destination folder.

The Folder class now has the followingmethods:

  • folder.createShortcut(targetId):Creates a shortcut to the provided Drive item ID, and returns it.
  • folder.moveTo(destination):Moves an item to the provided destination folder.

The following Folder class methods havebeen deprecated:

  • addFile(File)
  • addFolder(Folder)
  • removeFile(File)
  • removeFolder(Folder)

June 2020

June 12, 2020

New methods have been added to the Spreadsheet service.

New
  • The RichTextValue class now has a RichTextValue.getLinkUrl() method that gets the URL of the specified value.
  • The RichTextValueBuilder class now has a RichTextValueBuilder.setLinkUrl() method that sets the link URL for the specified value.
  • The PivotTable class now has a PivotTable.getSourceDataRange() method that returns the source data range on which the pivot table is constructed.
  • The PivotValue class now has a PivotValue.remove() method that removes the value from the pivot table.

April 2020

Weebly Release Notes: New Features And Apps From April Fools

April 22, 2020

A new simple trigger, onSelectionChange(e),has been added for Google Sheets. The onSelectionChange(e) trigger runsautomatically when a user changes the selection in a spreadsheet.

April 2, 2020

The following has been added to theSpreadsheet service

  • A new Drawing class has been addedto support drawings.
  • You can now get your drawings with the Sheet.getDrawings() method.

The following has been added to theDrive service

  • There's a newFILE_ORGANIZER value in the Permission enum.If you have FILE_ORGANIZER permission on a shared drive, you can edit, trash,and move content within that drive.

February 2020

February 28, 2020

The following methods have been added to theSpreadsheet serviceto support the use of theme colors. Many of these methods duplicate theeffect of existing color methods, but let you useColor objects instead of stringsas parameters and return types:

  • The Banding class now has16 new methods that manipulate color in the banding columns and rows usingColor objects.
  • The BooleanConditionclass now has two new methods that retrieve the color of the condition'sbackground and font as Colorobjects.
  • The ConditionalFormatRuleBuilderclass now has seven new methods that set color-based format rules usingColor objects.
  • The GradientConditionclass now has three new methods that retrieve condition colors asColor objects.
  • The Range class now has eightnew methods that get and set font and background colors usingColor objects.
  • The Sheet class now has twonew methods that get and set tab colors usingColor objects.
  • The Slicer class now has twonew methods that get and set the background color of the slicer usingColor objects.
  • The TextStyleBuilderclass now has aTextStyleBuilder.setForegroundColorObject(color)method that updates the foreground color of the style builder using aColor object.
  • The TextStyle class now hasaTextStyle.getForegroundColorObject()method that gets the foreground color of the style as aColor object.

February 5, 2020

Apps Script now supports the V8 runtime.This enables modern JavaScript features and syntax in Apps Script. You canmigrate existing scripts touse V8 and its features.

January 2020

January 21, 2020

Weebly Release Notes: New Features And Apps From April 13

Release

To support the launch ofG Suite Add-ons,the following manifest changes, service, classes, and methods have been addedto Apps Script:

  • The Apps Script manifest structurehas been updated to provide configuration controls forG Suite Add-ons.All add-on manifest settings are specified in theAddOnsobject in the manifest.

    Manifest fields that previously supportedGmail add-ons still exist,but are now deprecated. SeeUpgrading your published add-ons forinstructions on how to upgrade a Gmail add-on into a G Suite add-on.

  • The Card servicehas been extended with the following classes and methods that provide newwidgets and event responses:

  • The Conference Data service hasbeen added to Apps Script. The service helpsG Suite Add-ons thatextend Google Calendar to stay in sync with third-party conferencingapplications. This service is only useful to developers whomanage a conferencing application and want to make it available inGoogle Calendar.

Release-->

Download the April '19 Release Notes PDF (last updated October 11, 2019)

The April ’19 release notes describe all new features releasing from April 2019 through September 2019 for Dynamics 365 and Power Platform. Previews for some features will start in February 2019. You can either browse the release notes online or download the document as a PDF file.

April ’19 Release Overview

The April ’19 wave of releases for Dynamics 365 and Power Platform provides you with significant capabilities to transform your business.

These release notes describe functionality that may not have been released yet. Delivery timelines and projected functionality may change or may not ship (see Microsoft policy).

Dynamics 365

The enhancements to Dynamics 365 applications in the April ’19 release include hundreds of new capabilities across Sales, Marketing, Customer Service, Portal, Field Service, Project Service Automation, Finance and Operations, Talent, Retail, and Business Central. We're adding a new set of mixed reality experiences using Microsoft Layout and Microsoft Remote Assist.

Microsoft Forms Pro is a brand new enterprise survey app built on top of Microsoft Forms and integrated with Dynamics 365 and Common Data Service for Apps.

The April '19 release delivers continued investments in artificial intelligence capabilities that leverage the power of Microsoft AI research, tools, data, and the Power Platform to help organizations transform customer service, sales, and marketing functions. Dynamics 365 Sales Insights provides actionable insights to drive personalized engagement and proactive decision-making. Dynamics 365 Market Insights enables business users to gather actionable insights based on what consumers say, seek, and feel about their brands and products. Dynamics 365 Customer Service Insights optimizes the customer experience through AI enhanced analysis.

The April '19 release introduces three brand new AI apps:

  • Dynamics 365 Virtual Agent for Customer Service provides AI-powered chat bots to optimize the customer experience.
  • Dynamics 365 Customer Insights enables every organization to unify and understand their customer data to harness it for intelligent insights and actions.
  • Dynamics 365 Fraud Protection enables the e-commerce merchants to drive down fraud loss, increase bank acceptance rates to yield higher revenue, and improve the online shopping experience.

The April ’19 release signifies a key milestone for Dynamics 365. It is the first major update where all our customers across Dynamics 365 will be on the latest version and on a consistent update schedule. It is also a template of how major updates will be done going forward in April and October every year.

Here are the key dates for the April ’19 release.

MilestoneDateDescription
Release notes availableJanuary 21, 2019Learn about the new capabilities across Dynamics 365 and Power Platform.
Preview availableFebruary 1, 2019Try new capabilities in the April ’19 update before they are deployed in production. Learn more
Release notes updatesFebruary 21, 2019Updates to release notes with additional apps and capabilities.
Virtual launch eventApril 2, 2019Hear from James Phillips, Alysa Taylor, and the product leaders as they preview what’s new. Register now
General availabilityApril 5, 2019April ’19 update available for production deployment. Learn more

Power Platform

Weebly Release Notes: New Features And Apps From April 7

New Power Platform capabilities combine Power BI, PowerApps, Microsoft Flow, and Common Data Service for Apps into an unmatched palette of tools to extend, customize, and integrate Dynamics 365 and Office 365 into your environment. The April '19 release provides major improvements to enable business analysts and makers to build higher-quality reports, apps, and workflows more easily, while still supporting more advanced enterprise and administrator requirements.

Data Integration

Data Integration provides built-in connectivity to the Power Platform and more, with data across hundreds of business systems, enabling rich and intelligent experiences. The Common Data Model provides semantic consistency for canonical business entities across Dynamics 365 and Common Data Service for Apps, increasing value and saving time for application developers, ISV partners, and integrators.

We’ve done this work to help you—our partners, customers, and users—drive the digital transformation of your business on your terms. We’re looking forward to engaging with you as you put these new services and capabilities to work, and we’re eager to hear your feedback as you dig into the April ’19 release.

Weebly Release Notes: New Features And Apps From April 10

Japanese era update

On May 1, 2019, a new Japanese era and associated calendar will begin. Microsoft is making our April '19 wave of business applications ready to support the new Japan era in May. This includes Dynamics 365 applications, solutions, and Power Platform components, as well as regulatory features in these products and services for the Japanese market. Updates for new era support will be deployed in a similar way to other critical Dynamics 365 updates.

Weebly Release Notes: New Features And Apps From April 17

Tell us what you think

Weebly Release Notes: New Features And Apps From April 11

Let us know your thoughts. Share your feedback on a community forum for Dynamics 365 or Power Platform (Power BI, PowerApps, and Microsoft Flow). We’ll use your feedback to make improvements.





Comments are closed.