Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 13/umbraco-cms/extending/macro-parameter-editors.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: A guide to creating macro property editors in Umbraco
# Macro Parameter Editors

{% hint style="warning" %}
Macros will be removed in the next version. Consider using Partial Views or Blocks in Rich Text Editor.
Macros will be removed in Umbraco 14. Consider using Partial Views or Blocks in Rich Text Editor.
{% endhint %}

Every macro can contain parameters. Options for the Editor to set when they insert the Macro to customise the output. There are some useful default types. For example:
Expand Down
6 changes: 6 additions & 0 deletions 13/umbraco-cms/fundamentals/design/stylesheets-javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ You can use whichever tool you are comfortable with for bundling & minification

You can create various bundles of your site's CSS or JavaScript files in your code that can be rendered later in your views. There can be a single bundle for the entire site, or a common bundle for the files you want to be loaded on every page, as well as page-specific bundles, just by listing your resources in the order you like.

{% hint style="warning" %}

Smidge with RunTimeMinification setting is scheduled for removal on Umbraco 14. You can install the package separately if needed and read the [Smidge](https://github.com/Shazwazza/Smidge) documentation on how to get started.

{% endhint %}

**Step 1:** Create a `INotificationHandler<UmbracoApplicationStartingNotification>`

```csharp
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ description: "Information on the runtime minification settings section"

# Runtime minification settings

{% hint style="warning" %}

Smidge with RunTimeMinification setting is scheduled for removal on Umbraco 14. You can install the package separately if needed and read the [Smidge](https://github.com/Shazwazza/Smidge) documentation on how to get started.

{% endhint %}

This section allows you to configure the runtime minifications (defaults shown), used by ['Smidge - A lightweight runtime CSS/Javascript minification,combination, compression & management library for ASP.NET'](https://github.com/shazwazza/smidge)

```json
Expand All @@ -16,6 +22,7 @@ This section allows you to configure the runtime minifications (defaults shown),
}
}
```

## Use 'in memory' cache

This setting determines whether Smidge should save it's cached output in memory, or in a file on disk. If set to false, then the folder will be created at the wwwroot of your Umbraco site in a folder called 'Smidge'/
Expand Down Expand Up @@ -49,6 +56,7 @@ If you use a CacheBuster setting of "Version" you can add an additional configur
}
}
```

The actual 'Version' number will not be visible in the url of the assets, this is because it is combined, along with the Umbraco Version from configuration and the your project assembly dll, and then once combined a 'hash' is generated to obscure these details.

in the HTML link thus: ```<link href='/sb/umbraco-backoffice-init-css.css.v7a71f91360259c5f7c3337f152b0df01eeee36f0' rel='stylesheet' type='text/css'/>``` (when [`Umbraco:CMS:Hosting:Debug:false`](hostingsettings.md))
Expand Down
Loading