Copy link to clipboard
Copied
Hi there, please has somebody information, that Dreamweaver was discontinued or not? Because while all other apps in CC bundle has actually marked as 2023 version, Dreamweaver is marked still as 2021 version. No new functions or improvements, the Bootstrap version inbuilded, is legacy etc.
I understand that legendary DW already has smaller users community (as a part of designers bundle, wich dont use programmers), but hope, DW isnt another app on the way to discontinued such as Flash, Fireworks, Dimension, Muse, and lot of more great apps is hybernate in CC plan.
Copy link to clipboard
Copied
Adobe announced, during a roundtable discussion with the developers, that DW is in a minimum maintenence mode. No new features or bug fixes are planned goiong forward. They only plan to continue with security updates, OS compatibility patches, and third party library updates for the current userbase.
Officially, it's not technically EOL, but the writing is obviously on the wall.
Copy link to clipboard
Copied
No, not End of Life. Dreamweaver CC is still maintained for older users. But it's not receiving new features.
If you wish to migrate to the latest Bootstrap versions, there's nothing stopping you. Simply replace Bootstrap 4 with latest Bootstrap 5 (or pre-release 6 5.3.0 alpha1) from the official Bootstrap CDN. The same goes for Font Awesome, Bootswatch Themes and Bootstrap Icons.
<!doctype html>
<html lang="en">
<head>
<title>Bootstrap 5.1.3 Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--minified Bootstrap 5 CSS-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<!--YOUR MARKUP & CONTENT GOES HERE...-->
<!--minified Bootstrap 5 JS bundle-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js">
</body>
</html>
Keep in mind that Bootstrap 5 has different markup & classes than previous release versions. Consult Bootstrap documentation for more details.
https://getbootstrap.com/docs/5.1/getting-started/introduction/