Skip to content

Commit eae4852

Browse files
committed
preparing files to repository renaming
1 parent a03aaf9 commit eae4852

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# logcat-ui
1+
# logcat-viewer
22

33
:radio: An User Friendly ADB Logcat Viewer written in React and NodeJS
44

@@ -18,16 +18,16 @@ go to [http://localhost:8999](http://localhost:8999) in your browser.
1818

1919
## Screenshots
2020

21-
![screenshot-v1.0.0](https://github.com/lexmartinez/logcat-ui/raw/master/screenshots/screenshot-1.0.0.jpg)
21+
![screenshot-v1.0.0](https://github.com/lexmartinez/logcat-viewer/raw/master/screenshots/screenshot-1.0.0.jpg)
2222

2323
## Development setup
2424

2525
``` bash
2626
# clone repository
27-
git clone https://github.com/lexmartinez/logcat-ui.git
27+
git clone https://github.com/lexmartinez/logcat-viewer.git
2828

2929
# open project folder
30-
cd logcat-ui
30+
cd logcat-viewer
3131

3232
# install dependencies
3333
yarn install
@@ -38,4 +38,4 @@ yarn start
3838

3939
## License
4040

41-
This project is licensed under MIT License - see the [LICENSE.md](https://github.com/lexmartinez/logcat-ui/blob/master/LICENSE.md) file for details
41+
This project is licensed under MIT License - see the [LICENSE.md](https://github.com/lexmartinez/logcat-viewer/blob/master/LICENSE.md) file for details

bin/logcat-ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ const app = require('../index.js');
55
const port = 8999
66

77
app.listen(port, () => {
8-
console.log(`logcat-ui running on port ${port}`);
8+
console.log(`logcat-viewer running on port ${port}`);
99
open(`http://localhost:${port}`);
1010
});

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ app.get('/', (req, res) => res.sendFile(path.resolve(__dirname, 'dist/index.html
2525

2626
if (!module.parent) {
2727
server.listen(process.env.PORT || 8999, () => {
28-
console.log(`logcat-ui running on port ${server.address().port}`);
28+
console.log(`logcat-viewer running on port ${server.address().port}`);
2929
})
3030
} else {
3131
module.exports = server;

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
"author": "Lex Martinez<lex0316@gmail.com>",
2929
"repository": {
3030
"type": "git",
31-
"url": "git+https://github.com/lexmartinez/logcat-ui.git"
31+
"url": "git+https://github.com/lexmartinez/logcat-viewer.git"
3232
},
3333
"bugs": {
34-
"url": "https://github.com/lexmartinez/logcat-ui/issues"
34+
"url": "https://github.com/lexmartinez/logcat-viewer/issues"
3535
},
36-
"homepage": "https://github.com/lexmartinez/logcat-ui",
36+
"homepage": "https://github.com/lexmartinez/logcat-viewer",
3737
"license": "MIT",
3838
"dependencies": {
3939
"babel-preset-env": "^1.6.1",

0 commit comments

Comments
 (0)