Skip to content

Commit

Permalink
Merge branch 'dev-v5' into main-v5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeavon committed May 8, 2024
2 parents 4b1ddb6 + 1a4da8e commit be92e39
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 126 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ Slimsy Change log
- 4.1.0 - Minor tweaks only from the beta release
- 5.0.0 - Umbraco v13.2 compatability
- 4.2.0 - Added AppendSourceDimensions & EncodeCommas options
- 5.1.0 - Added AppendSourceDimensions & EncodeCommas options
- 5.1.0 - Added AppendSourceDimensions & EncodeCommas options
- 5.1.1 & 4.2.1 - Added AutoOrient global option
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Add/Edit `appsettings.json`
"BackgroundColor": "",
"AppendSourceDimensions": true,
"EncodeCommas": true,
"AutoOrient": true
}
```

Expand Down
29 changes: 7 additions & 22 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 5.1.1.{build}
version: 5.1.2.{build}

os: Visual Studio 2022

Expand Down Expand Up @@ -27,6 +27,11 @@ dotnet_csproj:
file_version: '$(appveyor_file_version)'
informational_version: '$(semver)'

before_build:
- pwsh: |
dotnet tool install --global GitVersion.Tool --version 5.*
dotnet-gitversion $env:APPVEYOR_BUILD_FOLDER /l console /nofetch /b $env:APPVEYOR_REPO_BRANCH
build_script:
- cmd: >-
cd build
Expand Down Expand Up @@ -67,24 +72,4 @@ deploy:
secure: SASQGWG/4zNns7bwSSsJ5RPvKcKfJsBeEPuw69wsVPA3PO739QmzVtc5VwQwgvbr
artifact: /.*\.nupkg/
on:
branch: dev-v4

# NuGet Deployment for releases
- provider: NuGet
server:
api_key:
secure: adk3pI9HCByZg2VRxplX9UR6qHf97bA3as6dusxLswCKI8BQQE8DO5a0frLrI+EO
artifact: /.*\.nupkg/
on:
branch: main-v4
appveyor_repo_tag: true

# NuGet Deployment for releases
- provider: NuGet
server:
api_key:
secure: adk3pI9HCByZg2VRxplX9UR6qHf97bA3as6dusxLswCKI8BQQE8DO5a0frLrI+EO
artifact: /.*\.nupkg/
on:
branch: main-v5
appveyor_repo_tag: true
branch: dev-v4
2 changes: 1 addition & 1 deletion src/Slimsy.TestSite/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"Slimsy": {
"WidthStep": 180,
"UseCropAsSrc": false,
"UseCropAsSrc": true,
"DefaultQuality": 70,
"Format": "",
"BackgroundColor": "white",
Expand Down
Binary file modified src/Slimsy.TestSite/umbraco/Data/Umbraco.sqlite.db
Binary file not shown.
3 changes: 2 additions & 1 deletion src/Slimsy.TestSite/wwwroot/css/umbraco-starterkit-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1989,7 +1989,8 @@ article {

article img {
max-width: 100%;
width:100%
width:100%;
height:auto
}

article iframe, article img {
Expand Down
233 changes: 132 additions & 101 deletions src/Slimsy/Services/SlimsyService.cs

Large diffs are not rendered by default.

0 comments on commit be92e39

Please sign in to comment.