Skip to content

Commit cf63c2f

Browse files
committed
Merge branch 'master' into beta
2 parents 12687da + c07f539 commit cf63c2f

File tree

23 files changed

+189
-4733
lines changed

23 files changed

+189
-4733
lines changed

.github/workflows/android.publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
keyStorePassword: ${{ secrets.KEY_PASSWORD }}
114114
keyPassword: ${{ secrets.KEY_PASSWORD }}
115115
env:
116-
BUILD_TOOLS_VERSION: "33.0.0"
116+
BUILD_TOOLS_VERSION: "36.0.0"
117117

118118
- name: Build apks for Github release
119119
run: yarn release:android
@@ -128,7 +128,7 @@ jobs:
128128
keyStorePassword: ${{ secrets.PUBLIC_KEY_PASSWORD }}
129129
keyPassword: ${{ secrets.PUBLIC_KEY_PASSWORD }}
130130
env:
131-
BUILD_TOOLS_VERSION: "33.0.0"
131+
BUILD_TOOLS_VERSION: "36.0.0"
132132

133133
- name: Rename apk files
134134
run: |

apps/desktop/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@notesnook/desktop",
33
"productName": "Notesnook",
44
"description": "Your private note taking space",
5-
"version": "3.3.8-beta.1",
5+
"version": "3.3.8",
66
"appAppleId": "1544027013",
77
"private": true,
88
"main": "./dist/cjs/index.js",

apps/mobile/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ android {
125125
minSdkVersion rootProject.ext.minSdkVersion
126126
targetSdkVersion rootProject.ext.targetSdkVersion
127127
multiDexEnabled true
128-
versionCode 3090
128+
versionCode 3091
129129
versionName getNpmVersion()
130130
testBuildType System.getProperty('testBuildType', 'debug')
131131
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
- Add title and date clipped to web clips
1+
- Add notebooks, tags and colors to Home Screen Shortcuts
2+
- Change day format and use /day in notes
3+
- Add Setting to change default editor line height
4+
- Set a custom title for monographs
5+
- Add webpage title and date clipped to web clips
26
- Configure Week to start from Sunday or Monday
3-
- Change Note's creation date from properties
4-
- Set expiry date for notes for auto-deletion
5-
- Fix tag and notebook properties cannot be accessed from shortcuts
6-
- Fix editor features remain locked after login
7-
- Temporarily disable password changing and forgot password features
8-
- Note history now includes note title changes
9-
- Other minor bug fixes and improvements
7+
- Change Note's creation date
8+
- Set expiry date on notes
9+
- Temporarily disable password change and recovery options
10+
- Note history now includes note title
11+
- Minor bug fixes
1012

1113
Thank you for using Notesnook!

apps/mobile/app/hooks/use-actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,7 @@ export const useActions = ({
11691169
id: "expiry-date",
11701170
title: item.expiryDate ? strings.unsetExpiry() : strings.setExpiry(),
11711171
icon: item.expiryDate ? "bomb-off" : "bomb",
1172-
locked: features?.expiringNotes?.isAllowed,
1172+
locked: !features?.expiringNotes?.isAllowed,
11731173
onPress: async () => {
11741174
if (item.expiryDate) {
11751175
await db.notes.setExpiryDate(null, item.id);

apps/mobile/app/screens/add-reminder/index.tsx

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,6 @@ const RecurringModes = {
7373
const WeekDays = [0, 1, 2, 3, 4, 5, 6];
7474
const WeekDaysMon = [1, 2, 3, 4, 5, 6, 0];
7575
const MonthDays = new Array(31).fill(true);
76-
const WeekDayNames = {
77-
0: "Sunday",
78-
1: "Monday",
79-
2: "Tuesday",
80-
3: "Wednesday",
81-
4: "Thursday",
82-
5: "Friday",
83-
6: "Saturday"
84-
};
8576

8677
const ReminderNotificationModes = {
8778
Silent: "silent",
@@ -153,7 +144,8 @@ export default function AddReminder(props: NavigationProps<"AddReminder">) {
153144
const isSecondLast = index === selectedDays.length - 2;
154145
const joinWith = isSecondLast ? " & " : isLast ? "" : ", ";
155146
return recurringMode === RecurringModes.Week
156-
? strings.weekDayNames[day as keyof typeof WeekDayNames]() + joinWith
147+
? strings.weekDayNames[day as keyof typeof strings.weekDayNames]() +
148+
joinWith
157149
: `${day}${nth(day)} ${joinWith}`;
158150
})
159151
.join("");

apps/mobile/e2e/tests/note.e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ describe("NOTE TESTS", () => {
134134
.run();
135135
});
136136

137-
it.only("Assign colors to a note", async () => {
137+
it("Assign colors to a note", async () => {
138138
await TestBuilder.create()
139139
.prepare()
140140
.createNote()

apps/mobile/e2e/tests/sort.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { notesnook } from "../test.ids";
2121
import { TestBuilder } from "./utils";
2222

2323
describe("Sort & filter", () => {
24-
it("Sort by date-edited/date-created", async () => {
24+
it.only("Sort by date-edited/date-created", async () => {
2525
await TestBuilder.create()
2626
.prepare()
2727
.createNote("Note 1", "Note 1")
@@ -34,7 +34,7 @@ describe("Sort & filter", () => {
3434
.element(by.web.className("ProseMirror"))
3535
.typeText("Edited ", true);
3636
})
37-
.pressBack(2)
37+
.pressBack(1)
3838
.waitAndTapById("icon-sort")
3939
.wait(500)
4040
.waitAndTapByText("Date created")

apps/mobile/ios/Notesnook.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,7 +1029,7 @@
10291029
CODE_SIGN_IDENTITY = "Apple Development";
10301030
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
10311031
CODE_SIGN_STYLE = Automatic;
1032-
CURRENT_PROJECT_VERSION = 2170;
1032+
CURRENT_PROJECT_VERSION = 2171;
10331033
DEVELOPMENT_TEAM = 53CWBG3QUC;
10341034
ENABLE_BITCODE = NO;
10351035
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1135,7 +1135,7 @@
11351135
CODE_SIGN_IDENTITY = "Apple Development";
11361136
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
11371137
CODE_SIGN_STYLE = Manual;
1138-
CURRENT_PROJECT_VERSION = 2170;
1138+
CURRENT_PROJECT_VERSION = 2171;
11391139
DEVELOPMENT_TEAM = "";
11401140
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 53CWBG3QUC;
11411141
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1367,7 +1367,7 @@
13671367
CODE_SIGN_IDENTITY = "Apple Development";
13681368
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
13691369
CODE_SIGN_STYLE = Automatic;
1370-
CURRENT_PROJECT_VERSION = 2170;
1370+
CURRENT_PROJECT_VERSION = 2171;
13711371
DEBUG_INFORMATION_FORMAT = dwarf;
13721372
DEVELOPMENT_TEAM = 53CWBG3QUC;
13731373
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1410,7 +1410,7 @@
14101410
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
14111411
CODE_SIGN_STYLE = Manual;
14121412
COPY_PHASE_STRIP = NO;
1413-
CURRENT_PROJECT_VERSION = 2170;
1413+
CURRENT_PROJECT_VERSION = 2171;
14141414
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
14151415
DEVELOPMENT_TEAM = "";
14161416
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 53CWBG3QUC;
@@ -1453,7 +1453,7 @@
14531453
CODE_SIGN_ENTITLEMENTS = "Make Note/Make Note.entitlements";
14541454
CODE_SIGN_IDENTITY = "Apple Development";
14551455
CODE_SIGN_STYLE = Automatic;
1456-
CURRENT_PROJECT_VERSION = 2170;
1456+
CURRENT_PROJECT_VERSION = 2171;
14571457
DEBUG_INFORMATION_FORMAT = dwarf;
14581458
DEVELOPMENT_TEAM = 53CWBG3QUC;
14591459
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64;
@@ -1565,7 +1565,7 @@
15651565
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
15661566
CODE_SIGN_STYLE = Manual;
15671567
COPY_PHASE_STRIP = NO;
1568-
CURRENT_PROJECT_VERSION = 2170;
1568+
CURRENT_PROJECT_VERSION = 2171;
15691569
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
15701570
DEVELOPMENT_TEAM = "";
15711571
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 53CWBG3QUC;

0 commit comments

Comments
 (0)