- Installshield 2010 Sp1 Release Notes Templates Shield creates for the setup launcher now includes a compatibility section. Previously, without this compatibility section, a Program Compatibility Assistant (PCA) dialog box may have appeared at the end of an installation on Windows 7 and Windows Server 2.
- Manually Add a Transaction to a Campaign New; Release Notes April 2020. Release Notes June 2019; Release Notes May 2019. You can access the Weebly App Center.
June Release Notes: Exciting updates for your online store! Note: Features mentioned in this post may only be available in the new version of the website builder. Embed Code Section. JK guys, I don’t know Latin. But I do know how to read, and I just read our latest Release Notes: New Features and Apps from October. Go over to the blog, or read my takeaways below. Suggested Holiday Emails is a new feature on Promote, just in time to start your holiday marketing campaigns. New updates on mobile, Android and iOS.
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 DecoratedText
has been added to the Card Service. DecoratedText
adds textwith optional decorations and was added to replace the KeyValue
class.
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.
- The
RichTextValue
class now has aRichTextValue.getLinkUrl()
method that gets the URL of the specified value. - The
RichTextValueBuilder
class now has aRichTextValueBuilder.setLinkUrl()
method that sets the link URL for the specified value. - The
PivotTable
class now has aPivotTable.getSourceDataRange()
method that returns the source data range on which the pivot table is constructed. - The
PivotValue
class now has aPivotValue.remove()
method that removes the value from the pivot table.
April 2020
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 new
FILE_ORGANIZER
value in the Permission enum.If you haveFILE_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
BooleanCondition
class now has two new methods that retrieve the color of the condition'sbackground and font asColor
objects. - The
ConditionalFormatRuleBuilder
class now has seven new methods that set color-based format rules usingColor
objects. - The
GradientCondition
class 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
TextStyleBuilder
class 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
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 the
AddOns
object in the manifest.Is it better to download torrent or zip files. A normal download is generally the direct download, where you download stuff via the browser or a download client. A torrent download is downloading stuff via a torrent client. Is It Better To Download Torrent Or Zip File Download Another important thing to note is you aren’t anonymous when downloading files from the BitTorrent network. Even though the P2P file sharing-based network is highly decentralized, a technically sound person or the internet provider can track a user’s torrenting activity.
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.
Type of site | Web hosting service |
---|---|
Founded | March 29, 2006; 14 years ago (Beta) |
Founder(s) | |
Parent | Square, Inc. |
URL | weebly.com |
Weebly (/ˈwiːbli/) is a web hosting service, headquartered in San Francisco. Its parent company is Square, Inc. On acquisition in April 2018, Weebly had more than 625,000 paid subscribers.[2]
History[edit]
Weebly was founded in 2006 by Chief Executive Officer David Rusenko, Chief Technology Officer Chris Fanini, and former Chief Product Officer Dan Veltri.[3] Rusenko and Fanini both attended the College of Information Sciences and Technology at Pennsylvania State University (Penn State) while Veltri attended the university's Smeal College of Business. At the time, Penn State required all students to maintain an Internet portfolio, so they built upon this idea and created software that made it easy for anyone to build a personal website.[3]
Formal development of Weebly began in January 2006.[4] The invitational beta release was announced in June 2006.[5] The official private-beta launched in September 2006.[6]
In January 2007, Weebly was selected for Y Combinator’s winter startup program.[3]
In March 2007, Weebly re-launched with its 'WYSIWYG' editing interface.[7] Also in 2007, Weebly raised a US$650,000 financing round from several angel investors, including Ron Conway, Steve Anderson, Mike Maples, and Paul Buchheit.[3][7]
In 2008 Weebly added 'Pro' accounts and Google AdSense monetization features, as well as compatibility with Google Chrome and Safari.[8]
During its initial startup years, Weebly received criticism for its lack of CSS/HTML editing support, and in 2009 added this functionality. In 2010, the company added French, Italian, Spanish, and Chinese languages.[9]
In 2011, Weebly raised a growth-stage round from Sequoia Capital and added Roelof Botha to its board of directors.[10]
In April 2014, Weebly raised $35 million in Series C funding from Sequoia Capital and Tencent Holdings Ltd.
Rusenko stated in August 2013 that the company signed a lease for a 36,000 square feet (3,300 m2) warehouse in San Francisco, based on an expectation of ongoing growth. The new office will house the majority of a global team of 600 employees in 2014 when it moves into the property. As of August 25, 2013, Weebly had 80 employees and was based in an 11,000 square feet (1,000 m2) space in the Pacific Heights area of San Francisco.[11]
In October 2015, Weebly announced it would open a Berlin office in late 2015/early 2016 to offer European-based support and marketing.[citation needed] In April 2016, Weebly integrated JotForm software on its services.[12] On October 1, 2015, Weebly Carbon was released to allow plugin integration among other features.
In 2016, Weebly began to focus in on its ecommerce offerings with the release of Weebly 4 and Weebly Promote, an integrated marketing tool.[13]
As more sellers began using the company, the company created features for one click taxes, integrations with Shippo to streamline the shipping process, Facebook Ad creator, integrated email marketing and lead capture, abandoned cart features, the release of Mobile 5.0 to help sellers run their store from anywhere and deep integrations with Square payment processing.
In early 2018, co-founder Dan Veltri left the company to pursue other interests. In January 2018, Weebly hired its first VP of Brand, Alexis Contos, and her hire marked the first time the 12 person executive team was 50% women and 50% men.
On April 26, 2018, Square, Inc. announced it would acquire Weebly for approximately $365 million in cash and stock.[14]
Product[edit]
Weebly's free online website creator uses a simple widget-based site builder that operates in the web browser.[15][16][17][18] All the site elements are drag-and-drop,[15][18] and it automatically generates a mobile version of each website.[16] Storage is unlimited, but the service restricts individual file sizes.[16] Consumers are given the option to have any url ending in .weebly.com, .com, .net, .org, .co, .info, or .us. (example.weebly.com)
Android and iPhone apps are available that allow users to monitor their website traffic statistics, update blog posts and respond to comments, and add or update products if the user has an e-commerce online store.[19][20] Basic features for blogging and e-Commerce are supported: as of 2018, site owners could develop simple stores with payments through either PayPal, Stripe or Authorize.net.[2] Users can choose to incorporate advertisements in their pages, and visitor statistics can be tracked through an in-house tracking tool or Google Analytics.[16] Weebly also has integrated newsletter marketing features.[21]
As of 2020, Weebly was offered in 15 languages: English, French, Spanish, Italian, German, Portuguese, Polish, Norwegian, Dutch, Danish, Swedish, Chinese, Japanese, Russian and Turkish.[22]
Weebly Release Notes: New Apps From June 2019
Public relations and sponsorship[edit]
In April 2012, Weebly co-sponsored a hackathon hosted by Pennsylvania State University titled the 'PSUhackathon.'[23] Rusenko and Fanini, who are both alumni of the College of Information Sciences and Technology, spoke at and judged the event.
Awards and recognition[edit]
TIME listed Weebly among the 50 Best Websites of 2007.[15] In 2011, Business Insider included Weebly into its '15 Cool New Apps That Are Crushing It On Chrome' list.[24] Also in 2011, David Rusenko, Weebly's CEO and co-founder, earned a spot in Forbes' '30 Under 30: social/mobile' list.[25]
Censorship[edit]
In December 2014, the Indian government blocked Weebly in India, due to fears that ISIS propaganda was being spread through the site.[26] On December 31, the site was again made available throughout India.[27]
Weebly also applies censorship to its availability with a wide selection of geoblocked countries where Weebly is unavailable to internet users. Site owners are unable to login from these geoblocked locations to administer the site just as internet users cannot reach the site. According to Weebly official support forum, the exact list of blocked countries is secret, but the employees confirmed blocking of Côte d'Ivoire, Iran, Russia, Sri Lanka, Turkey, Ukraine, as well as much of Middle East, West and Central Africa.[28]
See also[edit]
References[edit]
Weebly Release Notes: New Apps From June 10
- ^Ha, Anthony (April 26, 2018). 'Square is acquiring website builder Weebly for $365M'. TechCrunch. Retrieved January 19, 2020.
- ^ abGagliordi, Natalie (April 26, 2018). 'Square buys website builder Weebly for $365 million'. ZDNet. Retrieved January 19, 2020.
- ^ abcdLevy, Steven (May 20, 2007). 'A Boot Camp for the Next Tech Billionaires'. Newsweek. Retrieved January 19, 2020.
- ^Guynn, Jessica (June 10, 2008). 'Weeblies aren't wobbling'. Los Angeles Times. Retrieved January 19, 2020.
- ^Veltri, Dan (June 29, 2006). 'Exciting Developments' (Press release). Weebly. Retrieved January 19, 2020.
- ^'Weebly private-beta launch' (Press release). Weebly. September 12, 2006. Retrieved January 19, 2020.
- ^ abRobinson, Blake (May 9, 2007). 'Weebly Launches blog Platform, Closes $650K Investment'. TechCrunch. Retrieved September 24, 2012.
- ^Adewumi, David (June 10, 2008). 'Weebly, a Simple web page creator,launches Adsense feature and pro accounts'. Venture Beat. Retrieved September 24, 2012.
- ^Ha, Anthony (February 24, 2010). 'Simple website builder Weebly goes international'. VentureBeat. Retrieved January 19, 2020.
- ^Botha, Roelof. 'Weebly: What we do'. SEQUOIA Capital. Retrieved September 24, 2012.
- ^Empson, Rip (25 August 2013). 'As Wix Heads Toward IPO, Weebly Looks To Expand With Big New SF Headquarters, Plans To Add 500+ Employees'. TechCrunch. AOL Inc. Retrieved 26 August 2013.
- ^Roy, Rohit (1 April 2016). 'Weebly Users Gain Access to Easy-to-use Form-Creator JotForm'. Martech Advisor.
- ^'How Weebly 4 Is Leading An E-commerce Revolution'. www.forbes.com. Retrieved 2018-04-25.
- ^'Square to Acquire Weebly'. Square, Inc. Retrieved 2018-04-26.
- ^ abcMary Murray Buner (July 8, 2007). '50 Best Websites 2007'. TIME Specials. Retrieved September 12, 2012.
- ^ abcdWeebly,Inc (September 19, 2012). 'Weebly'. iTunes Store. Retrieved September 24, 2012.
- ^Johnston, Mike (July 6, 2012). 'Weebly Review-The Website Builder that makes Web Design Fun'. CMS Critic. Retrieved September 24, 2012.
- ^ abRussell, Kate (February 15, 2008). 'Webscape'. BBC News. Retrieved September 24, 2012.
- ^'iPhone and Android Apps'. Weebly. Retrieved 27 April 2014.
- ^'12 Best Free Website Builders'. Retrieved 12 January 2018.
- ^Williams, Alex (January 9, 2020). '10 Best Website Builders (UK) in 2020'. hostingdata.co.uk. Retrieved January 19, 2020.
- ^'Company Info'. Weebly. Retrieved January 19, 2020.
- ^PSUhackathon (April 27, 2012). 'Sponsorship & Judges'. /psuhackathon.com. Archived from the original on April 27, 2012. Retrieved January 19, 2020.
- ^Hamburger, Ellis (May 17, 2011). '15 Cool New Apps That Are Crushing It On Chrome'. Business Insider. Retrieved January 18, 2020.
- ^'30 Under 30:Social/Mobile'. Forbes. 2011. Retrieved January 18, 2020.
- ^Stone, Jeff. 'Vimeo, DailyMotion, Pastebin Among Sites Blocked In India For 'Anti-India' Content From ISIS'. International Business Times.
- ^Sharma, Ravi (January 2, 2015). 'Indian government unblocks Vimeo, Dailymotion, 2 other websites'. The Times of India.
- ^'Weebly doesn't work in Russia'.
Weebly Release Notes: New Apps From June 2020
External links[edit]
Weebly Release Notes: New Apps From June 9th
- Official website