bump version & add changelog

This commit is contained in:
ammarahm-ed
2022-08-06 23:47:19 +05:00
parent c3f6f4c401
commit 9fbf03fe6a
5 changed files with 29 additions and 32 deletions

View File

@@ -1,10 +1,5 @@
- Fix group/subgroup with index 0 cannot be removed in toolbar
- Fix press events getting cancelled
- Fix a crash when opening merge dialog
- Fix auto backups not working on some devices
- Fix images placeholders are not loaded in editor
- Fix editor lags on large notes
- Fix cursor jumps to start on typing issue
- Improved note loading in editor
- Now you can disable double spaced lines in editor
- Uploading full quality images is not supported.
- Many bug fixes and performance improvements
Thank you for using Notesnook!

View File

@@ -1,3 +1,12 @@
import { FeatureType } from './src/components/sheets/new-feature';
export const features: FeatureType[] = [];
export const features: FeatureType[] = [
{
title: 'Configurable line spacing',
body: 'Many of you requested to be able to change line spacing on pressing enter. Now you can go to settings & configure line spacing in Editor section'
},
{
title: 'Disabled image compression',
body: 'Due to some performance reasons, previously image compression was enabled. From now on, images will be uploaded, as is in full quality.'
}
];

View File

@@ -1079,7 +1079,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEVELOPMENT_TEAM = 53CWBG3QUC;
ENABLE_BITCODE = NO;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
@@ -1152,7 +1152,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -1181,7 +1181,7 @@
CODE_SIGN_ENTITLEMENTS = Notesnook/Notesnook.entitlements;
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEVELOPMENT_TEAM = 53CWBG3QUC;
GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
HEADER_SEARCH_PATHS = (
@@ -1253,7 +1253,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = (
"$(inherited)",
@@ -1411,7 +1411,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 53CWBG3QUC;
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -1422,7 +1422,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.streetwriters.notesnook.notewidget;
@@ -1452,7 +1452,7 @@
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 53CWBG3QUC;
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -1463,7 +1463,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.streetwriters.notesnook.notewidget;
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1492,7 +1492,7 @@
CODE_SIGN_ENTITLEMENTS = "Make Note/Make Note.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 53CWBG3QUC;
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -1565,7 +1565,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.streetwriters.notesnook.share;
@@ -1595,7 +1595,7 @@
CODE_SIGN_IDENTITY = "iPhone Distribution";
CODE_SIGN_STYLE = Manual;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 2008;
CURRENT_PROJECT_VERSION = 2009;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 53CWBG3QUC;
GCC_C_LANGUAGE_STANDARD = gnu11;
@@ -1668,7 +1668,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 2.1.4;
MARKETING_VERSION = 2.1.5;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = org.streetwriters.notesnook.share;
PRODUCT_NAME = "$(TARGET_NAME)";

View File

@@ -1,12 +1,5 @@
- fix group/subgroup with index 0 cannot be removed in toolbar
- fix Fluid tabs sensitivity conflicting with press events
- fix incorrect bottom insets hide some part of the toolbar
- fix a crash when opening merge conflict dialog
- fix auto backups not working on some devices
- fix images placeholders are not loaded in editor
- fix toggling checklist opens the keyboard
- fix editor becomes very laggy on large notes
- fix cursor jumps to start on typing issue description
- improved note loading in editor for better UX
- Now you can disable double spaced lines in editor
- Uploading full quality images is not supported.
- Many bug fixes and performance improvements
Thank you for using Notesnook!

View File

@@ -1 +1 @@
export const APP_VERSION = 214;
export const APP_VERSION = 215;