Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit 565d5b9

Browse files
committed
Version bump
1 parent 62b190d commit 565d5b9

File tree

6 files changed

+73
-27
lines changed

6 files changed

+73
-27
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "raven-reader",
33
"productName": "Raven Reader",
4-
"version": "1.0.45",
4+
"version": "1.0.46",
55
"author": "Hello Efficiency Inc. <[email protected]>",
66
"description": "Simple desktop RSS Reader",
77
"license": "MIT",
Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
{"Connect Feedbin":"Connect Feedbin","Log into Feedbin":"Log into Feedbin","Connect Self-hosted (Google Reader API)":"Connect Self-hosted (Google Reader API)","Log into Self Hosted RSS Service":"Log into Self Hosted RSS Service","Enter username":"Enter username","Connect Fever":"Connect Fever","Log into Fever":"Log into Fever","Disconnect Self-hosted (Google Reader API)":"Disconnect Self-hosted (Google Reader API)","Copy link":"Copy link","Copy feed link":"Copy feed link","Edit feed":"Edit feed","Unsubscribe":"Unsubscribe"}
1+
{
2+
"Connect Feedbin": "Connect Feedbin",
3+
"Log into Feedbin": "Log into Feedbin",
4+
"Connect Self-hosted (Google Reader API)": "Connect Self-hosted (Google Reader API)",
5+
"Log into Self Hosted RSS Service": "Log into Self Hosted RSS Service",
6+
"Enter username": "Enter username",
7+
"Connect Fever": "Connect Fever",
8+
"Log into Fever": "Log into Fever",
9+
"Disconnect Self-hosted (Google Reader API)": "Disconnect Self-hosted (Google Reader API)",
10+
"Copy link": "Copy link",
11+
"Copy feed link": "Copy feed link",
12+
"Edit feed": "Edit feed",
13+
"Unsubscribe": "Unsubscribe",
14+
"start in tray": "start in tray"
15+
}

public/locales/en/translation.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,6 @@
9090
"Import and Export": "Import and Export",
9191
"Import subscriptions": "Import subscriptions",
9292
"Export subscriptions": "Export subscriptions",
93-
"Speech": "Speech"
93+
"Speech": "Speech",
94+
"Start in tray": "Start in tray"
9495
}

src/i18n.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ i18n
2424
})
2525

2626
window.api.i18nextElectronBackend.onLanguageChange((args) => {
27-
console.log(args)
2827
i18n.changeLanguage(args.lng, (error, t) => {
2928
if (error) {
3029
window.log.info(error)

src/main/tray.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77
import Store from 'electron-store'
88
import os from 'os'
99

10-
export default function createTray(mainWindow, i18nextMain) {
10+
export default function createTray (mainWindow, i18nextMain) {
1111
const store = new Store({
1212
encryptionKey: process.env.VUE_APP_ENCRYPT_KEY
1313
})
@@ -30,8 +30,8 @@ export default function createTray(mainWindow, i18nextMain) {
3030

3131
const contextMenu = Menu.buildFromTemplate([
3232
{
33-
label: i18nextMain.t('start in tray'),
34-
type: "checkbox",
33+
label: i18nextMain.t('Start in tray'),
34+
type: 'checkbox',
3535
checked: store.get('settings.start_in_trays'),
3636
click: () => {
3737
store.set('settings.start_in_trays', contextMenu.items[0].checked)

yarn.lock

Lines changed: 52 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,16 @@
249249
"@babel/traverse" "^7.12.5"
250250
"@babel/types" "^7.12.5"
251251

252-
"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13":
252+
"@babel/highlight@^7.10.4":
253+
version "7.13.8"
254+
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.13.8.tgz#10b2dac78526424dfc1f47650d0e415dfd9dc481"
255+
integrity sha512-4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw==
256+
dependencies:
257+
"@babel/helper-validator-identifier" "^7.12.11"
258+
chalk "^2.0.0"
259+
js-tokens "^4.0.0"
260+
261+
"@babel/highlight@^7.12.13":
253262
version "7.12.13"
254263
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz#8ab538393e00370b26271b01fa08f7f27f2e795c"
255264
integrity sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==
@@ -946,10 +955,10 @@
946955
global-agent "^2.0.2"
947956
global-tunnel-ng "^2.7.1"
948957

949-
"@eslint/eslintrc@^0.3.0":
950-
version "0.3.0"
951-
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz#d736d6963d7003b6514e6324bec9c602ac340318"
952-
integrity sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==
958+
"@eslint/eslintrc@^0.4.0":
959+
version "0.4.0"
960+
resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547"
961+
integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog==
953962
dependencies:
954963
ajv "^6.12.4"
955964
debug "^4.1.1"
@@ -958,7 +967,6 @@
958967
ignore "^4.0.6"
959968
import-fresh "^3.2.1"
960969
js-yaml "^3.13.1"
961-
lodash "^4.17.20"
962970
minimatch "^3.0.4"
963971
strip-json-comments "^3.1.1"
964972

@@ -2284,7 +2292,17 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.12.3, ajv@^6.12.4, ajv
22842292
json-schema-traverse "^0.4.1"
22852293
uri-js "^4.2.2"
22862294

2287-
ajv@^7.0.2, ajv@^7.0.3:
2295+
ajv@^7.0.2:
2296+
version "7.1.1"
2297+
resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.1.1.tgz#1e6b37a454021fa9941713f38b952fc1c8d32a84"
2298+
integrity sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ==
2299+
dependencies:
2300+
fast-deep-equal "^3.1.1"
2301+
json-schema-traverse "^1.0.0"
2302+
require-from-string "^2.0.2"
2303+
uri-js "^4.2.2"
2304+
2305+
ajv@^7.0.3:
22882306
version "7.1.0"
22892307
resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.1.0.tgz#f982ea7933dc7f1012eae9eec5a86687d805421b"
22902308
integrity sha512-svS9uILze/cXbH0z2myCK2Brqprx/+JJYK5pHicT/GQiBfzzhUVAIT6MwqJg8y4xV/zoGsUeuPuwtoiKSGE15g==
@@ -3859,7 +3877,7 @@ core-js@^3.1.3:
38593877
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.2.tgz#0a1fd6709246da9ca8eff5bb0cbd15fba9ac7044"
38603878
integrity sha512-FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A==
38613879

3862-
core-js@^3.6.5, core-js@^3.8.1:
3880+
core-js@^3.6.5:
38633881
version "3.9.0"
38643882
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.9.0.tgz#790b1bb11553a2272b36e2625c7179db345492f8"
38653883
integrity sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ==
@@ -3869,6 +3887,11 @@ core-js@^3.7.0:
38693887
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0"
38703888
integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==
38713889

3890+
core-js@^3.8.1:
3891+
version "3.9.1"
3892+
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.9.1.tgz#cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae"
3893+
integrity sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg==
3894+
38723895
[email protected], core-util-is@~1.0.0:
38733896
version "1.0.2"
38743897
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
@@ -5172,12 +5195,12 @@ eslint-visitor-keys@^2.0.0:
51725195
integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==
51735196

51745197
eslint@^7.7.0:
5175-
version "7.20.0"
5176-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.20.0.tgz#db07c4ca4eda2e2316e7aa57ac7fc91ec550bdc7"
5177-
integrity sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==
5198+
version "7.21.0"
5199+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.21.0.tgz#4ecd5b8c5b44f5dedc9b8a110b01bbfeb15d1c83"
5200+
integrity sha512-W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg==
51785201
dependencies:
51795202
"@babel/code-frame" "7.12.11"
5180-
"@eslint/eslintrc" "^0.3.0"
5203+
"@eslint/eslintrc" "^0.4.0"
51815204
ajv "^6.10.0"
51825205
chalk "^4.0.0"
51835206
cross-spawn "^7.0.2"
@@ -5190,7 +5213,7 @@ eslint@^7.7.0:
51905213
espree "^7.3.1"
51915214
esquery "^1.4.0"
51925215
esutils "^2.0.2"
5193-
file-entry-cache "^6.0.0"
5216+
file-entry-cache "^6.0.1"
51945217
functional-red-black-tree "^1.0.1"
51955218
glob-parent "^5.0.0"
51965219
globals "^12.1.0"
@@ -5605,10 +5628,10 @@ figures@^3.0.0:
56055628
dependencies:
56065629
escape-string-regexp "^1.0.5"
56075630

5608-
file-entry-cache@^6.0.0:
5609-
version "6.0.0"
5610-
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz#7921a89c391c6d93efec2169ac6bf300c527ea0a"
5611-
integrity sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==
5631+
file-entry-cache@^6.0.1:
5632+
version "6.0.1"
5633+
resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
5634+
integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
56125635
dependencies:
56135636
flat-cache "^3.0.4"
56145637

@@ -7825,12 +7848,12 @@ lodash.uniq@^4.5.0:
78257848
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
78267849
integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
78277850

7828-
lodash@^4.17.10:
7851+
lodash@^4.17.10, lodash@^4.17.20:
78297852
version "4.17.21"
78307853
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
78317854
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
78327855

7833-
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.3:
7856+
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.3:
78347857
version "4.17.20"
78357858
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
78367859
integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==
@@ -11018,7 +11041,7 @@ string-width@^3.0.0, string-width@^3.1.0:
1101811041
is-fullwidth-code-point "^2.0.0"
1101911042
strip-ansi "^5.1.0"
1102011043

11021-
string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
11044+
string-width@^4.0.0, string-width@^4.1.0:
1102211045
version "4.2.0"
1102311046
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
1102411047
integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
@@ -11027,6 +11050,15 @@ string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0:
1102711050
is-fullwidth-code-point "^3.0.0"
1102811051
strip-ansi "^6.0.0"
1102911052

11053+
string-width@^4.2.0:
11054+
version "4.2.2"
11055+
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
11056+
integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA==
11057+
dependencies:
11058+
emoji-regex "^8.0.0"
11059+
is-fullwidth-code-point "^3.0.0"
11060+
strip-ansi "^6.0.0"
11061+
1103011062
string.prototype.trimend@^1.0.1, string.prototype.trimend@^1.0.3:
1103111063
version "1.0.3"
1103211064
resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"

0 commit comments

Comments
 (0)