Skip to content

Commit fc861b8

Browse files
committed
Merge branch 'dev' into main
2 parents fa2b9be + 9c329ca commit fc861b8

File tree

13 files changed

+32
-16
lines changed

13 files changed

+32
-16
lines changed

apps/app-server/src/env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ declare namespace NodeJS {
5252
ZOHO_USER: string;
5353
ZOHO_PASSWORD: string;
5454

55-
STRIPE_PUBLISHABLE_KEY: string;
5655
STRIPE_SECRET_KEY: string;
5756
STRIPE_WEBHOOK_SECRET: string;
5857
STRIPE_MONTHLY_PRICE_ID: string;

apps/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@deepnotes/client",
33
"description": "DeepNotes",
44
"homepage": "https://deepnotes.app",
5-
"version": "1.0.3",
5+
"version": "1.0.4",
66
"author": "Gustavo Toyota <[email protected]>",
77
"dependencies": {
88
"@_ueberdosis/prosemirror-tables": "1.1.3",

apps/client/quasar.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ module.exports = configure(function (ctx) {
346346
target: 'AppImage',
347347
},
348348

349-
...(true // true for NSIS, false for AppX
349+
...(false // true for NSIS, false for AppX
350350
? {
351351
win: {
352352
target: 'nsis',
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#Mon Jul 17 11:07:10 AMT 2023
2-
VERSION_CODE=39
1+
#Mon Jul 24 09:09:25 AMT 2023
2+
VERSION_CODE=41

apps/client/src/code/pages/page/notes/note-collab.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ export const INoteCollab = once(() =>
5858

5959
wrapChildren: z.boolean().default(false),
6060
stretchChildren: z.boolean().default(true),
61+
62+
forceColorInheritance: z.boolean().default(false),
6163
})
6264
.default({}),
6365

apps/client/src/code/pages/page/notes/note.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,9 @@ export class PageNote extends PageElem() implements IPageRegion {
468468
}),
469469

470470
color: computed(() =>
471-
this.react.collab.color.inherit && this.react.region.type === 'note'
471+
this.react.region.type === 'note' &&
472+
(this.react.region.react.collab.container.forceColorInheritance ||
473+
this.react.collab.color.inherit)
472474
? this.react.region.react.color
473475
: colorNameToColorHex('notes', this.react.collab.color.value),
474476
),

apps/client/src/env.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ declare namespace NodeJS {
6464
ZOHO_USER: string;
6565
ZOHO_PASSWORD: string;
6666

67-
STRIPE_PUBLISHABLE_KEY: string;
6867
STRIPE_SECRET_KEY: string;
6968
STRIPE_WEBHOOK_SECRET: string;
7069
STRIPE_MONTHLY_PRICE_ID: string;

apps/client/src/layouts/PagesLayout/RightSidebar/NoteProperties/NoteProperties.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,19 @@
635635
"
636636
/>
637637

638+
<Gap style="height: 16px" />
639+
640+
<Checkbox
641+
label="Force color inheritance"
642+
:model-value="note.react.collab.container.forceColorInheritance"
643+
@update:model-value="
644+
changeProp($event, (selectedNote, value) => {
645+
selectedNote.react.collab.container.forceColorInheritance = value;
646+
})
647+
"
648+
:disable="page.react.readOnly || !note.react.collab.container.enabled"
649+
/>
650+
638651
<Gap style="height: 24px" />
639652

640653
<DeepBtn

apps/client/src/pages/home/Download/Download.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@
5151
padding: 18px 28px;
5252
line-height: normal;
5353
"
54-
:href="`https://github.com/DeepNotesApp/DeepNotes/releases/download/v${version}/DeepNotes-Setup-${version}.exe`"
54+
href="https://apps.microsoft.com/store/detail/deepnotes/9PH76W3HPQZJ"
55+
target="_blank"
5556
>
5657
<div>
57-
<div>Download for Windows (NSIS)</div>
58+
<div>Go to Microsoft Store</div>
5859

5960
<Gap style="height: 7px" />
6061

@@ -93,6 +94,7 @@
9394
line-height: normal;
9495
"
9596
href="https://play.google.com/store/apps/details?id=app.deepnotes"
97+
target="_blank"
9698
/>
9799

98100
<DeepBtn
@@ -106,6 +108,7 @@
106108
line-height: normal;
107109
"
108110
href="https://apps.apple.com/us/app/deepnotes-visual-note-taking/id6450611344"
111+
target="_blank"
109112
/>
110113
</div>
111114

@@ -123,7 +126,7 @@
123126
style="justify-content: center"
124127
>
125128
<PlatformCard
126-
:url="`https://github.com/DeepNotesApp/DeepNotes/releases/download/v${version}/DeepNotes-Setup-${version}.exe`"
129+
url="https://apps.microsoft.com/store/detail/deepnotes/9PH76W3HPQZJ"
127130
>
128131
<img
129132
src="~assets/platforms/windows.webp"

apps/client/src/pages/home/Index/Index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
<BillingFrequencyToggle v-model="billingFrequency" />
158158
</div>
159159

160-
<Gap style="height: 34px" />
160+
<Gap style="height: 48px" />
161161

162162
<PricingSection :billing-frequency="billingFrequency" />
163163
</template>

0 commit comments

Comments
 (0)