Skip to content

Commit 99d8965

Browse files
committed
Remove update notification (#1538)
1 parent 4704c8d commit 99d8965

File tree

6 files changed

+0
-53
lines changed

6 files changed

+0
-53
lines changed

packages/core/app.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import insertLink from '@octolinker/helper-insert-link';
44
import * as storage from '@octolinker/helper-settings';
55
import helperSortUrls from '@octolinker/helper-sort-urls';
66
import normaliseResolverResults from '@octolinker/helper-normalise-resolver-results';
7-
import notification from './notification';
87
import Plugins from './plugin-manager.js';
98
import debugMode from './debug-mode.js';
109
import loader from './loader.js';
@@ -70,7 +69,6 @@ function watch(viewSpy) {
7069

7170
function init() {
7271
debugMode(storage.get('debugMode'));
73-
notification();
7472

7573
injection(() => {
7674
if (!blobReader.hasBlobs()) {

packages/core/notification.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

packages/core/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"repository": "https://github.com/octolinker/octolinker/tree/main/packages/core",
66
"license": "MIT",
77
"main": "./index.js",
8-
"releaseDescription": "Fix solidity import paths",
98
"dependencies": {
109
"@octolinker/blob-reader": "1.0.0",
1110
"@octolinker/helper-github-api": "1.0.0",

packages/helper-settings/SettingsForm.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,6 @@ export default class Form extends Component {
181181
checked={state.enablePrivateRepositories}
182182
onClick={linkState(this, 'enablePrivateRepositories')}
183183
/>
184-
<Checkbox
185-
name="showUpdateNotification"
186-
label="Update notification"
187-
description="Show a notification if a new version is available."
188-
checked={state.showUpdateNotification}
189-
onClick={linkState(this, 'showUpdateNotification')}
190-
/>
191184
</form>
192185
<hr />
193186
<Stats counter={stats.counter} />

packages/helper-settings/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const store = {};
44

55
const defaults = {
66
enablePrivateRepositories: true,
7-
showUpdateNotification: true,
87
stats: {
98
since: Date.now(),
109
counter: 0,

scripts/version.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@ sed -E "s/MARKETING_VERSION = [0-9.]+/MARKETING_VERSION = $npm_package_version/"
44
dot-json assets/manifest.json version $npm_package_version
55
dot-json packages/core/package.json version $npm_package_version
66

7-
echo "Please summarize this release in one sentence"
8-
read note
9-
dot-json packages/core/package.json releaseDescription "$note"
10-
117
git add assets/manifest.json packages/core/package.json safari/Shared.xcconfig

0 commit comments

Comments
 (0)