Skip to content

Commit

Permalink
Merge branch 'release/1.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Build Pipeline committed Jan 24, 2023
2 parents 6ea65d2 + aa3e0b0 commit cb7bd36
Show file tree
Hide file tree
Showing 14 changed files with 334 additions and 138 deletions.
21 changes: 21 additions & 0 deletions AppStore.xcassets/screenshot-color-key.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "screenshot-color-key.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions AppStore.xcassets/screenshot-color-picker.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "screenshot-color-picker.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,31 @@

## [Unreleased](https://gitlab.com/html-validate/html-validate/compare/Unreleased) ()

### Features

- **PlantUMLContentView** add saving state indicator ([a2ac033e07e874a](https://gitlab.com/html-validate/html-validate/commit/a2ac033e07e874a23cccc7c62e3489fbf61bd2a9))
- (SwiftUI+Conditional) add conditional view extension ([1f5b822dacbebb8](https://gitlab.com/html-validate/html-validate/commit/1f5b822dacbebb813314d4c7df1bf9c3c441b7cb))
- manage auto save document ([e1b9d4bccc235c6](https://gitlab.com/html-validate/html-validate/commit/e1b9d4bccc235c6df8fcf192033e6078be024f54))
- complete 'Save Custom Keyboard state' feature ([af060cd8bbe8d21](https://gitlab.com/html-validate/html-validate/commit/af060cd8bbe8d21e9847481fb1a163fd459ef664))
- add support for color button on custom keyboard that opens a color picker ([e93686ee94a86ea](https://gitlab.com/html-validate/html-validate/commit/e93686ee94a86ea2a5c1c13c70f19756df3250d5))
- **DebounceObject** add Debounce utility ([7e17ee05ade68b3](https://gitlab.com/html-validate/html-validate/commit/7e17ee05ade68b3a09ac6490aa6ae128569e8cba))
- start implementation of support for ColorPicker Key in custom keyboard ([f919613f397870d](https://gitlab.com/html-validate/html-validate/commit/f919613f397870d80b37f7f2182784f4308d9208))


### Documentation

- **readme** update readme ([bcee03131792841](https://gitlab.com/html-validate/html-validate/commit/bcee03131792841980a806d166fc2cf40d2293a0))

### Refactor

- move PlantUMLDocument in PlantUMLDocumentProxy ([aa37d8c80a8afae](https://gitlab.com/html-validate/html-validate/commit/aa37d8c80a8afae1634a4347a40e7f5ddf527182))

### ALM

- set next version build ([caf494a0fefa965](https://gitlab.com/html-validate/html-validate/commit/caf494a0fefa965f71050cc69c4196e8996990f1))
- update line editor package ([98e6d07c1cc7133](https://gitlab.com/html-validate/html-validate/commit/98e6d07c1cc71338e63cd766216dda1e04c37fd7))
- upgrade version from 1.0 to 1.1 ([8869f4cea125167](https://gitlab.com/html-validate/html-validate/commit/8869f4cea125167c701d69c24d92f94fd546b3d5))
- **usersettings.json** update configuration ([e522bbd48961481](https://gitlab.com/html-validate/html-validate/commit/e522bbd48961481e4b6caf40fbe03f9d2e75e38c))


"name: v1.0.14" is a release tag
Expand Down
17 changes: 11 additions & 6 deletions PlantUML/PlantUMLApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,24 @@ import SwiftUI

@main
struct PlantUMLApp: App {

init() {
URLCache.shared.memoryCapacity = 10_000_000 // ~10 MB memory space
URLCache.shared.diskCapacity = 100_000_000 // ~1GB disk cache space
}

var body: some Scene {
DocumentGroup(newDocument: PlantUMLDocument()) { file in

PlantUMLContentView(document: file.$document)
// .environment(\.editMode, Binding.constant(EditMode.active))
.environmentObject( PlantUMLDiagramObject( document: file.document))

if #available(iOS 16, *) {
PlantUMLContentView(
document: PlantUMLDocumentProxy( document: file.$document) )
// [Document based app shows 2 back chevrons on iPad](https://stackoverflow.com/a/74245034/521197)
.toolbarRole(.navigationStack)
}
else {
PlantUMLContentView(
document: PlantUMLDocumentProxy( document: file.$document))
}
}
}
}
Loading

0 comments on commit cb7bd36

Please sign in to comment.