Skip to content

Commit ab9c7cb

Browse files
committed
Merge branch 'release/1.6.4'
2 parents e50d68a + 3bd390d commit ab9c7cb

File tree

9 files changed

+664
-322
lines changed

9 files changed

+664
-322
lines changed

.gitmodules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
[submodule "inc/installer"]
66
path = inc/installer
77
url = git@github.com:siteorigin/siteorigin-installer.git
8+
branch = master

LICENSE

Lines changed: 619 additions & 285 deletions
Large diffs are not rendered by default.

build

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
== Changelog ==
22

3+
= 1.6.4 - 26 May 2025 =
4+
* Installer: Updated submodule.
5+
* Updated Tested up to tag.
6+
37
= 1.6.3 - 15 January 2025 =
48
* Resolved Uninstall Notice: Updated `register_uninstall_hook` callback to use a static class method, addressing a WordPress notice introduced in version 3.1.0.
59

js/css.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5417,13 +5417,13 @@ exports.comment = function(node) {
54175417
},{"fs":2,"path":5,"source-map":36,"source-map-resolve":25}],23:[function(require,module,exports){
54185418
'use strict';
54195419
var token = '%[a-f0-9]{2}';
5420-
var singleMatcher = new RegExp(token, 'gi');
5420+
var singleMatcher = new RegExp('(' + token + ')|([^%]+?)', 'gi');
54215421
var multiMatcher = new RegExp('(' + token + ')+', 'gi');
54225422

54235423
function decodeComponents(components, split) {
54245424
try {
54255425
// Try to decode the entire string first
5426-
return decodeURIComponent(components.join(''));
5426+
return [decodeURIComponent(components.join(''))];
54275427
} catch (err) {
54285428
// Do nothing
54295429
}
@@ -5445,12 +5445,12 @@ function decode(input) {
54455445
try {
54465446
return decodeURIComponent(input);
54475447
} catch (err) {
5448-
var tokens = input.match(singleMatcher);
5448+
var tokens = input.match(singleMatcher) || [];
54495449

54505450
for (var i = 1; i < tokens.length; i++) {
54515451
input = decodeComponents(tokens, i).join('');
54525452

5453-
tokens = input.match(singleMatcher);
5453+
tokens = input.match(singleMatcher) || [];
54545454
}
54555455

54565456
return input;

readme.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# [SiteOrigin CSS](https://siteorigin.com/css/)
2+
3+
Development repository for SiteOrigin CSS, a powerful CSS editor for WordPress with visual controls and real-time previews.
4+
5+
* **Stable Releases:** Download from the [WordPress.org plugin page](https://wordpress.org/plugins/so-css/).
6+
7+
## Contributing
8+
9+
You can contribute via issue reports and pull requests.
10+
11+
## Support
12+
13+
We offer two support tiers:
14+
15+
1. **Free Tier (Forum):** Please post questions and support requests on the [SiteOrigin Support Forum](https://siteorigin.com/thread/). All threads receive a reply from our team.
16+
2. **Premium Tier (Email):** If you have an active **SiteOrigin Premium** license, please email [support@siteorigin.com](mailto:support@siteorigin.com) for priority assistance.
17+
18+
## Documentation
19+
20+
* [User Documentation](https://siteorigin.com/css/getting-started/)

readme.txt

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22
Tags: css editor, visual css, live editing, theme editor, website styling
33
Requires at least: 3.9
44
Requires PHP: 7.0.0
5-
Tested up to: 6.7
5+
Tested up to: 6.8
66
Stable tag: trunk
77
Build time: unbuilt
8-
License: GPLv2 or later
8+
License: GPLv3
9+
License URI: http://www.gnu.org/licenses/gpl.html
910
Contributors: gpriday, alexgso
1011
Donate link: https://siteorigin.com/downloads/premium/
1112

12-
SiteOrigin CSS is the simple yet powerful CSS editor for WordPress. It gives you visual controls that let you edit the look and feel of your site in real-time.
13+
Powerful, simple CSS editing for WordPress. Visual controls & real-time previews for effortless site customization.
1314

1415
== Description ==
1516

16-
SiteOrigin CSS is the simple yet powerful CSS editor for WordPress. It gives you visual controls that let you edit the look and feel of your site in real-time.
17+
SiteOrigin CSS is the intuitive and powerful CSS editor designed to empower your WordPress site customization. Enjoy a seamless editing experience with real-time visual controls, making it easy to tweak your site's look and feel instantly. Whether you're a beginner or an advanced developer, SiteOrigin CSS has you covered.
1718

18-
We've created a site editing experience that will suit both beginners and advanced users alike. Beginners will love the simple visual controls and real-time preview. Advanced users will love the code autocompletion that makes writing CSS faster than ever.
19+
For beginners, our user-friendly visual controls and live previews eliminate the guesswork from CSS editing. See your changes as you make them, ensuring your site looks exactly as you envision. For advanced users, we offer robust code autocompletion, speeding up your workflow and making CSS writing faster and more efficient than ever before. Take full control of your site's design with SiteOrigin CSS and bring your creative vision to life.
1920

2021
[vimeo https://vimeo.com/129660380]
2122

@@ -72,6 +73,10 @@ SiteOrigin Premium includes access to our professional email support service, pe
7273

7374
== Changelog ==
7475

76+
= 1.6.4 - 26 May 2025 =
77+
* Installer: Updated submodule.
78+
* Updated Tested up to tag.
79+
7580
= 1.6.3 - 15 January 2025 =
7681
* Resolved Uninstall Notice: Updated `register_uninstall_hook` callback to use a static class method, addressing a WordPress notice introduced in version 3.1.0.
7782

@@ -94,26 +99,4 @@ SiteOrigin Premium includes access to our professional email support service, pe
9499
* Updated Tested up to tag.
95100
* Updated Required PHP version.
96101

97-
= 1.5.9 - 11 November 2023 =
98-
* Updated Tested up to tag.
99-
* Updated SiteOrigin Installer.
100-
101-
= 1.5.8 - 11 August 2023 =
102-
* Updated the SiteOrigin Installer submodule.
103-
104-
= 1.5.7 - 09 August 2023 =
105-
* Updated the expand/compress title depending on the state in the visual editor.
106-
* Updated the "Tested up to" version in the readme.txt file from 6.2 to 6.3, indicating compatibility with WordPress version 6.3.
107-
* Added SiteOrigin Installer submodule and functionality to handle the installer link and status in the editor and page templates.
108-
109-
= 1.5.6 - 07 April 2023 =
110-
* WordPress PHP Coding Standards improvements.
111-
* Updated `Tested up to` tag.
112-
113-
= 1.5.5 - 30 September 2022 =
114-
* Added a check to ensure WP Filesystem is setup.
115-
116-
= 1.5.4 - 28 September 2022 =
117-
* Developer: Introduced definable Custom CSS file name and location using `siteorigin_custom_css_file` and `siteorigin_css_enqueue_css`.
118-
119102
[View full changelog.](https://siteorigin.com/css/changelog/)

so-css.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?php
22
/*
33
Plugin Name: SiteOrigin CSS
4-
Description: An advanced CSS editor from SiteOrigin.
4+
Description: Powerful, simple CSS editing for WordPress. Visual controls & real-time previews for effortless site customization.
55
Version: dev
66
Author: SiteOrigin
7+
Text Domain: so-css
78
Author URI: https://siteorigin.com
89
Plugin URI: https://siteorigin.com/css/
9-
License: GPL3
10-
License URI: https://www.gnu.org/licenses/gpl-3.0.txt
11-
Text Domain: so-css
10+
License: GPLv3
11+
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1212
*/
1313

1414
// Handle the legacy CSS editor that came with SiteOrigin themes

0 commit comments

Comments
 (0)