Compare commits

...
14 changed files with 84 additions and 5 deletions
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.1.599](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)
**Note:** Version bump only for package @standardnotes/clipper
## [1.1.598](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)
**Note:** Version bump only for package @standardnotes/clipper
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/clipper",
"description": "Web clipper browser extension for Standard Notes",
"version": "1.1.598",
"version": "1.1.599",
"private": true,
"scripts": {
"build-mv2": "yarn clean && webpack --config ./webpack.config.prod.js",
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.110.204](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)
**Note:** Version bump only for package @standardnotes/desktop
## [3.110.203](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)
**Note:** Version bump only for package @standardnotes/desktop
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@standardnotes/desktop",
"main": "./app/dist/index.js",
"version": "3.110.203",
"version": "3.110.204",
"license": "AGPL-3.0",
"author": "Standard Notes.",
"private": true,
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.58.266](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)
**Note:** Version bump only for package @standardnotes/mobile
## [3.58.265](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)
**Note:** Version bump only for package @standardnotes/mobile
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/mobile",
"version": "3.58.265",
"version": "3.58.266",
"author": "Standard Notes.",
"private": true,
"license": "AGPL-3.0",
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.4.906](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)
**Note:** Version bump only for package @standardnotes/releases
## [1.4.905](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)
**Note:** Version bump only for package @standardnotes/releases
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/releases",
"version": "1.4.905",
"version": "1.4.906",
"repository": {
"type": "git",
"url": "https://github.com/standardnotes/app",
+4
View File
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [3.202.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)
**Note:** Version bump only for package @standardnotes/web
## [3.202.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)
**Note:** Version bump only for package @standardnotes/web
+11
View File
@@ -1,5 +1,16 @@
{
"versions": [
{
"version": "3.202.4",
"title": "[3.202.4](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-07)",
"date": null,
"body": "**Note:** Version bump only for package @standardnotes/web",
"parsed": {
"_": [
"Note: Version bump only for package @standardnotes/web"
]
}
},
{
"version": "3.202.3",
"title": "[3.202.3](https://github.com/standardnotes/app/compare/@standardnotes/[email protected]...@standardnotes/[email protected]) (2026-09-04)",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@standardnotes/web",
"version": "3.202.3",
"version": "3.202.4",
"license": "AGPL-3.0",
"main": "dist/app.js",
"author": "Standard Notes",
@@ -8,6 +8,7 @@ import { ListedMenuGroup } from './ListedMenuGroup'
import ListedMenuItem from './ListedMenuItem'
import Spinner from '@/Components/Spinner/Spinner'
import MenuSection from '@/Components/Menu/MenuSection'
import ListedSunsettingBanner from '@/Components/Preferences/Panes/Listed/ListedSunsettingBanner'
type ListedActionsMenuProps = {
application: WebApplication
@@ -121,6 +122,7 @@ const ListedActionsMenu = ({ application, note }: ListedActionsMenuProps) => {
return (
<>
<ListedSunsettingBanner variant="menu" />
{isFetchingAccounts && (
<div className="flex w-full items-center justify-center p-4">
<Spinner className="h-5 w-5" />
@@ -4,6 +4,7 @@ import { WebApplication } from '@/Application/WebApplication'
import { ButtonType, ListedAccount } from '@standardnotes/snjs'
import { useCallback, useEffect, useState } from 'react'
import ListedAccountItem from './ListedAccountItem'
import ListedSunsettingBanner from './ListedSunsettingBanner'
import Button from '@/Components/Button/Button'
import HorizontalSeparator from '@/Components/Shared/HorizontalSeparator'
import PreferencesPane from '../../PreferencesComponents/PreferencesPane'
@@ -62,6 +63,7 @@ const Listed = ({ application }: Props) => {
return (
<PreferencesPane>
<ListedSunsettingBanner />
{accounts.length > 0 && (
<PreferencesGroup>
<PreferencesSegment>
@@ -0,0 +1,44 @@
export const LISTED_SUNSETTING_PREFERENCES_NOTE =
'Note: The Listed platform will permanently shut down December 31, 2026. Your data published on Listed will still be available in your personal Standard Notes account.'
export const LISTED_SUNSETTING_ACTIONS_NOTE = 'Listed will permanently shut down on December 31, 2026.'
const LearnMoreLink = () => {
return (
<a
target="_blank"
className="underline hover:no-underline"
href="https://listed.to/@Listed/76799/an-update-about-listed"
>
Learn more
</a>
)
}
type Props = {
variant?: 'pane' | 'menu'
}
const ListedSunsettingBanner = ({ variant = 'pane' }: Props) => {
const message = variant === 'menu' ? LISTED_SUNSETTING_ACTIONS_NOTE : LISTED_SUNSETTING_PREFERENCES_NOTE
if (variant === 'menu') {
return (
<div className="bg-warning-faded m-1 mb-3 rounded border border-border p-3 text-sm text-text">
<p className="m-0 font-bold">
{message} <LearnMoreLink />
</p>
</div>
)
}
return (
<div className="bg-warning-faded mb-3 flex max-w-full flex-col rounded border border-solid border-border p-6 text-sm text-text">
<p className="m-0 font-bold">
{message} <LearnMoreLink />
</p>
</div>
)
}
export default ListedSunsettingBanner