chore: add inner desktop as workspace so version gets bumped automatically
This commit is contained in:
@@ -2,8 +2,6 @@
|
||||
|
||||
<div align="center">
|
||||
|
||||
[](https://github.com/standardnotes/desktop/releases)
|
||||
[](https://github.com/standardnotes/desktop/blob/master/LICENSE)
|
||||
[](https://standardnotes.com/slack)
|
||||
[](https://twitter.com/standardnotes)
|
||||
|
||||
@@ -76,6 +74,6 @@ Followed by
|
||||
|
||||
## Installation
|
||||
|
||||
On Linux, download the latest AppImage from the [Releases](https://github.com/standardnotes/desktop/releases/latest) page, and give it executable permission:
|
||||
On Linux, download the latest AppImage from the [Releases](https://github.com/standardnotes/app/releases/latest) page, and give it executable permission:
|
||||
|
||||
`chmod u+x standard-notes*.AppImage`
|
||||
|
||||
@@ -238,8 +238,9 @@ const Urls = {
|
||||
Website: 'https://standardnotes.com',
|
||||
GitHub: 'https://github.com/standardnotes',
|
||||
Slack: 'https://standardnotes.com/slack',
|
||||
Discord: 'https://standardnotes.com/discord',
|
||||
Twitter: 'https://twitter.com/StandardNotes',
|
||||
GitHubReleases: 'https://github.com/standardnotes/desktop/releases',
|
||||
GitHubReleases: 'https://github.com/standardnotes/app/releases',
|
||||
}
|
||||
|
||||
function macAppMenu(appName: string): MenuItemConstructorOptions {
|
||||
@@ -596,6 +597,12 @@ function helpMenu(window: Electron.BrowserWindow, shell: Electron.Shell) {
|
||||
void shell.openExternal(Urls.GitHub)
|
||||
},
|
||||
},
|
||||
{
|
||||
label: str().discord,
|
||||
click() {
|
||||
void shell.openExternal(Urls.Discord)
|
||||
},
|
||||
},
|
||||
{
|
||||
label: str().slack,
|
||||
click() {
|
||||
|
||||
@@ -18,6 +18,7 @@ export function createEnglishStrings(): Strings {
|
||||
emailSupport: 'Email Support',
|
||||
website: 'Website',
|
||||
gitHub: 'GitHub',
|
||||
discord: 'Discord',
|
||||
slack: 'Slack',
|
||||
twitter: 'Twitter',
|
||||
toggleErrorConsole: 'Toggle Error Console',
|
||||
|
||||
@@ -23,6 +23,7 @@ interface AppMenuStrings {
|
||||
emailSupport: string
|
||||
website: string
|
||||
gitHub: string
|
||||
discord: string
|
||||
slack: string
|
||||
twitter: string
|
||||
toggleErrorConsole: string
|
||||
|
||||
@@ -144,7 +144,7 @@ export function setupUpdates(window: BrowserWindow, appState: AppState, backupsM
|
||||
}
|
||||
|
||||
export function openChangelog(state: UpdateState): void {
|
||||
const url = 'https://github.com/standardnotes/desktop/releases'
|
||||
const url = 'https://github.com/standardnotes/app/releases'
|
||||
if (state.latestVersion) {
|
||||
void shell.openExternal(`${url}/tag/v${state.latestVersion}`)
|
||||
} else {
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "standard-notes",
|
||||
"name": "@standardnotes/inner-desktop",
|
||||
"productName": "Standard Notes",
|
||||
"private": true,
|
||||
"description": "An end-to-end encrypted notes app for digitalists and professionals.",
|
||||
"author": "Standard Notes <help@standardnotes.com>",
|
||||
"version": "3.20.2",
|
||||
"version": "3.22.3-alpha.18",
|
||||
"main": "./dist/index.js",
|
||||
"installConfig": {
|
||||
"selfReferences": true
|
||||
|
||||
@@ -94,7 +94,7 @@ module.exports = function ({ onlyTranspileTypescript = false, experimentalFeatur
|
||||
from: 'app/node_modules',
|
||||
to: 'node_modules',
|
||||
globOptions: {
|
||||
ignore: ['**/standard-notes/**'],
|
||||
ignore: ['**/@standardnotes/inner-desktop/**'],
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"name": "@standardnotes/mobile",
|
||||
"version": "3.23.1-alpha.8",
|
||||
"user-version": "3.23.0",
|
||||
"author": "Standard Notes",
|
||||
"author": "Standard Notes.",
|
||||
"private": true,
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"scripts": {
|
||||
|
||||
Reference in New Issue
Block a user