Skip to content

Commit 04a23b7

Browse files
Stanzillaadlk
authored andcommitted
fix(General): Convert many links from http to https (#967) @Stanzilla
1 parent 0ac7cef commit 04a23b7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
### General
55

66
* **App:** Various performance improvments
7-
* **Translations:** Improved translations. **[A million thanks to the amazing community. 🎉](http://i18n.meetfranz.com/)**
7+
* **Translations:** Improved translations. **[A million thanks to the amazing community. 🎉](https://i18n.meetfranz.com/)**
88

99

1010
### Features
@@ -29,7 +29,7 @@
2929

3030
### General
3131
* **App:** Update Electron version to 1.7.12 (fixes critical security vulnerability CVE-2018–1000006 ) ([c67d7d1](https://github.com/meetfranz/franz/commit/c67d7d1))
32-
* **Translations:** Improved translations. **[A million thanks to the amazing community. 🎉](http://i18n.meetfranz.com/)**
32+
* **Translations:** Improved translations. **[A million thanks to the amazing community. 🎉](https://i18n.meetfranz.com/)**
3333

3434
### Features
3535
* **App:** Invite Friends in Settings ([ab33c44](https://github.com/meetfranz/franz/commit/ab33c44))
@@ -100,7 +100,7 @@ fix(App): Bugfix Fix memory leak in recipe polling loop
100100
* **Service:** Add option to display disabled services in tabs ([1839eff](https://github.com/meetfranz/franz/commit/1839eff))
101101
* **Service:** Add option to mute service ([b405ba1](https://github.com/meetfranz/franz/commit/b405ba1))
102102
* **Service:** Add dialog to reload crashed services ([259d40c](https://github.com/meetfranz/franz/commit/259d40c)) ([dannyqiu](https://github.com/dannyqiu))
103-
* **Translations:** Added new translations and improved existing ones. **[A million thanks to the amazing community.](http://i18n.meetfranz.com/)**
103+
* **Translations:** Added new translations and improved existing ones. **[A million thanks to the amazing community.](https://i18n.meetfranz.com/)**
104104

105105

106106
### Bug Fixes

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ As a basic rule, before filing issues, feature requests or anything else. Take a
3333
* When only changing documentation, include `[ci skip]` in the commit description
3434

3535
### Javascript
36-
* Please use `es-lint` and the defined rules to maintain a consistent style
36+
* Please use `es-lint` and the defined rules to maintain a consistent style

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Franz 5 (beta)
77
[![Build status Windows](https://ci.appveyor.com/api/projects/status/9yman4ye19x4274o/branch/master?svg=true)](https://ci.appveyor.com/project/adlk/franz/branch/master)
8-
[![Build Status Mac](https://travis-ci.org/meetfranz/franz.svg?branch=master)](https://travis-ci.org/meetfranz/franz) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](http://meetfranz.com/payment.html)
8+
[![Build Status Mac](https://travis-ci.org/meetfranz/franz.svg?branch=master)](https://travis-ci.org/meetfranz/franz) [![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://meetfranz.com/payment.html)
99

1010
Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.
1111

src/components/auth/Signup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,15 @@ export default class Signup extends Component {
187187
{intl.formatMessage(messages.legalInfo)}
188188
<br />
189189
<Link
190-
to="http://meetfranz.com/terms"
190+
to="https://meetfranz.com/terms"
191191
target="_blank"
192192
className="link"
193193
>
194194
{intl.formatMessage(messages.terms)}
195195
</Link>
196196
&nbsp;&amp;&nbsp;
197197
<Link
198-
to="http://meetfranz.com/privacy"
198+
to="https://meetfranz.com/privacy"
199199
target="_blank"
200200
className="link"
201201
>

src/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const DEFAULT_APP_SETTINGS = {
2424
enableGPUAcceleration: true,
2525
};
2626

27-
export const FRANZ_SERVICE_REQUEST = 'http://bit.ly/franz-service-request';
28-
export const FRANZ_TRANSLATION = 'http://bit.ly/franz-translate';
27+
export const FRANZ_SERVICE_REQUEST = 'https://bit.ly/franz-service-request';
28+
export const FRANZ_TRANSLATION = 'https://bit.ly/franz-translate';
2929

3030
export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config', 'settings.json');

src/lib/Menu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ const _templateFactory = intl => [
285285
submenu: [
286286
{
287287
label: intl.formatMessage(menuItems.learnMore),
288-
click() { shell.openExternal('http://meetfranz.com'); },
288+
click() { shell.openExternal('https://meetfranz.com'); },
289289
},
290290
{
291291
label: intl.formatMessage(menuItems.changelog),
@@ -296,7 +296,7 @@ const _templateFactory = intl => [
296296
},
297297
{
298298
label: intl.formatMessage(menuItems.support),
299-
click() { shell.openExternal('http://meetfranz.com/support'); },
299+
click() { shell.openExternal('https://meetfranz.com/support'); },
300300
},
301301
{
302302
type: 'separator',

0 commit comments

Comments
 (0)