Skip to content

Commit

Permalink
Releaze 1.0.18 (44) with fixed saving about flag settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarex committed Jun 5, 2024
1 parent f17827e commit 384b893
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog


### 1.0.18 (44)
Bugfix:
- Fixed saving about flag settings.

### 1.0.18 (43)
New Features:
- Support for `com.nutstore.down` UTI.
Expand Down
8 changes: 4 additions & 4 deletions QLMarkdown.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1618,7 +1618,7 @@
CODE_SIGN_ENTITLEMENTS = QLExtension/QLExtension.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = NO;
Expand Down Expand Up @@ -1658,7 +1658,7 @@
CODE_SIGN_ENTITLEMENTS = QLExtension/QLExtension.entitlements;
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = NO;
Expand Down Expand Up @@ -1916,7 +1916,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = NO;
Expand Down Expand Up @@ -1962,7 +1962,7 @@
CODE_SIGN_IDENTITY = "-";
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 43;
CURRENT_PROJECT_VERSION = 44;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = "";
ENABLE_HARDENED_RUNTIME = NO;
Expand Down
1 change: 1 addition & 0 deletions QLMarkdown/Settings+ext.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ extension Settings {
defaultsDomain["guess-engine"] = guessEngine.rawValue

defaultsDomain["debug"] = self.debug
defaultsDomain["about"] = self.about
defaultsDomain["inline-link"] = openInlineLink
defaultsDomain["render-as-code"] = self.renderAsCode

Expand Down
1 change: 1 addition & 0 deletions QLMarkdown/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1101,6 +1101,7 @@ document.addEventListener('scroll', function(e) {
initStylesPopup()

self.debugMode = settings.debug
self.isAboutVisible = settings.about
self.renderAsCode = settings.renderAsCode

self.qlWindowSizeCustomized = settings.qlWindowWidth ?? 0 > 0 && settings.qlWindowHeight ?? 0 > 0
Expand Down

0 comments on commit 384b893

Please sign in to comment.