Skip to content

Commit

Permalink
Change urls
Browse files Browse the repository at this point in the history
  • Loading branch information
manhtai committed Aug 6, 2021
1 parent 725342f commit 6275939
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 23 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Test](https://github.com/plainbelt/plainbelt/actions/workflows/test.yml/badge.svg)](https://github.com/plainbelt/plainbelt/actions/workflows/test.yml) ![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/plainbelt/plainbelt)
[![Test](https://github.com/plainlab/plainbelt/actions/workflows/test.yml/badge.svg)](https://github.com/plainlab/plainbelt/actions/workflows/test.yml) ![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/plainlab/plainbelt)

# PlainBelt

Expand Down Expand Up @@ -44,7 +44,7 @@

## Installation

Download binary file for your system on the releases page: https://github.com/plainbelt/plainbelt/releases.
Download binary file for your system on the releases page: https://github.com/plainlab/plainbelt/releases.

## Development setup

Expand All @@ -60,3 +60,7 @@ yarn package
```

Checkout the `release` folder and enjoy!

---

© 2021 PlainLab
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,22 +87,22 @@
],
"publish": {
"provider": "github",
"owner": "plainbelt",
"owner": "plainlab",
"repo": "plainbelt"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/plainbelt/plainbelt.git"
"url": "git+https://github.com/plainlab/plainlab.git"
},
"author": {
"name": "PlainBelt Maintainers",
"email": "pb@manhtai.com",
"url": "https://plainbelt.github.io"
"name": "PlainLab",
"email": "plainlab@protonmail.com",
"url": "https://plainlab.github.io"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/plainbelt/plainbelt/issues"
"url": "https://github.com/plainlab/plainbelt/issues"
},
"keywords": [
"electron",
Expand All @@ -115,7 +115,7 @@
"hot",
"reload"
],
"homepage": "https://github.com/plainbelt/plainbelt#readme",
"homepage": "https://github.com/plainlab/plainbelt#readme",
"jest": {
"testURL": "http://localhost/",
"moduleNameMapper": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/auto/Auto.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ const Auto = () => {
/>
</section>
<p className="mt-4 text-lg font-bold">PlainBelt</p>
<a href="https://plainbelt.github.io" className="opacity-50">
https://plainbelt.github.io
<a href="https://plainlab.github.io" className="opacity-50">
https://plainlab.github.io
</a>
{hotkey && (
<p className="mt-10 opacity-70">
Expand Down
2 changes: 1 addition & 1 deletion src/components/json/JsonFormatter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const JsonFormatter = () => {
const location = useLocation<LocationState>();

const [input, setInput] = useState(
'{"name":"PlainBelt","url":"https://github.com/plainbelt/plainbelt"}'
'{"name":"PlainBelt","url":"https://github.com/plainlab/plainbelt"}'
);
const [output, setOutput] = useState('');
const [opening, setOpening] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion src/components/qrcode/QrCodeGenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React, { useState } from 'react';
import { useDebouncedEffect } from '../../helpers/effectHooks';

const QRCodeGenerator = () => {
const [content, setContent] = useState('https://plainbelt.github.io');
const [content, setContent] = useState('https://plainlab.github.io');
const [qrCode, setQrCode] = useState();
const [opening, setOpening] = useState(false);
const [saving, setSaving] = useState(false);
Expand Down
8 changes: 4 additions & 4 deletions src/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,13 @@ export default class MenuBuilder {
{
label: 'Home Page',
click() {
shell.openExternal('https://plainbelt.github.io');
shell.openExternal('https://plainlab.github.io');
},
},
{
label: 'GitHub',
click() {
shell.openExternal('https://github.com/plainbelt/plainbelt');
shell.openExternal('https://github.com/plainlab/plainbelt');
},
},
],
Expand Down Expand Up @@ -242,13 +242,13 @@ export default class MenuBuilder {
{
label: 'Home Page',
click() {
shell.openExternal('https://plainbelt.github.io');
shell.openExternal('https://plainlab.github.io');
},
},
{
label: 'GitHub',
click() {
shell.openExternal('https://github.com/plainbelt/plainbelt');
shell.openExternal('https://github.com/plainlab/plainbelt');
},
},
],
Expand Down
12 changes: 6 additions & 6 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "plainbelt",
"productName": "plainbelt",
"version": "0.0.8",
"description": "A toolbelt for all your plain text",
"productName": "PlainBelt",
"version": "0.0.9",
"description": "A plain toolbelt for developers",
"main": "./main.prod.js",
"author": {
"name": "PlainBelt Maintainers",
"email": "pb@manhtai.com",
"url": "https://github.com/plainbelt"
"name": "PlainLab",
"email": "plainlab@protonmail.com",
"url": "https://github.com/plainlab"
},
"scripts": {
"electron-rebuild": "node -r ../.erb/scripts/BabelRegister.js ../.erb/scripts/ElectronRebuild.js",
Expand Down

0 comments on commit 6275939

Please sign in to comment.