Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

V2.0#8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
lokesh-coder merged 21 commits intomasterfromdevelop
Mar 14, 2021
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
21 commits
Select commitHold shift + click to select a range
7f3020a
refactor: rewrite complete app code
lokesh-coderMar 10, 2021
8aa3b27
refactor: update styles
lokesh-coderMar 11, 2021
441f2c6
fix: update saved blobs
lokesh-coderMar 12, 2021
8964f49
fix: mobile layout
lokesh-coderMar 12, 2021
8dbb2ec
fix: toast message typo
lokesh-coderMar 12, 2021
f19ecd2
chore: update deps and seo
lokesh-coderMar 12, 2021
0d8c067
chore: remove yarn lock file
lokesh-coderMar 12, 2021
32a793f
refactor: update Layout name
lokesh-coderMar 12, 2021
b9c2517
fix: move footer component to common
lokesh-coderMar 12, 2021
de6d8cb
fix: remove chakra unneccessary code
lokesh-coderMar 14, 2021
9576f8b
fix: settings responsive width
lokesh-coderMar 14, 2021
e557bab
fix: set system color on default
lokesh-coderMar 14, 2021
bf6f242
fix: move static file to static dir
lokesh-coderMar 14, 2021
9a6eeef
fix: mobile device responsive styles
lokesh-coderMar 14, 2021
6371dbe
refactor: remove unsed code
lokesh-coderMar 14, 2021
1d05307
fix: update pwa settings
lokesh-coderMar 14, 2021
fec6571
refactor: rename files
lokesh-coderMar 14, 2021
f3616c8
fix: rename issue in vscode
lokesh-coderMar 14, 2021
0701c22
chore: update README
lokesh-coderMar 14, 2021
9292e6b
chore: update social preview image
lokesh-coderMar 14, 2021
eeff8e3
fix: resolve linting errors
lokesh-coderMar 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions.babelrc
View file
Open in desktop

This file was deleted.

20 changes: 10 additions & 10 deletions.eslintrc.js
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,19 +3,17 @@ module.exports = {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
extends: ['plugin:react/recommended', 'airbnb', 'react-app'],
settings: {
"import/resolver": {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.scss', '.css'],
moduleDirectory: ['node_modules', 'src/'],
extensions: ['.js', '.jsx', '.scss', '.css'],
moduleDirectory: ['node_modules', 'src/'],
},
},
},
globals: {
__PATH_PREFIX__: true,
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
Expand All@@ -26,9 +24,11 @@ module.exports = {
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: [
'react',
],
plugins: ['react'],
rules: {
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
'react/prop-types': [0],
'react/jsx-props-no-spreading': [0],
'object-curly-newline': 'off',
},
};
2 changes: 0 additions & 2 deletions.gitattributes
View file
Open in desktop

This file was deleted.

18 changes: 10 additions & 8 deletions.github/ISSUE_TEMPLATE/bug_report.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,14 +4,14 @@ about: Create a report to help us improve
title:''
labels:''
assignees:''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All@@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS:[e.g. iOS]
- Browser[e.g. chrome, safari]
- Version[e.g. 22]

- OS:[e.g. iOS]
- Browser[e.g. chrome, safari]
- Version[e.g. 22]

**Smartphone (please complete the following information):**
- Device:[e.g. iPhone6]
- OS:[e.g. iOS8.1]
- Browser[e.g. stock browser, safari]
- Version[e.g. 22]

- Device:[e.g. iPhone6]
- OS:[e.g. iOS8.1]
- Browser[e.g. stock browser, safari]
- Version[e.g. 22]

**Additional context**
Add any other context about the problem here.
1 change: 0 additions & 1 deletion.github/ISSUE_TEMPLATE/feature_request.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,7 +4,6 @@ about: Suggest an idea for this project
title:''
labels:''
assignees:''

---

**Is your feature request related to a problem? Please describe.**
Expand Down
70 changes: 70 additions & 0 deletions.gitignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,74 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variable files
.env*

# gatsby files
.cache/
public

# Mac files
.DS_Store

# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity

# app level
build/
.gitignore
coverage/
Expand Down
4 changes: 4 additions & 0 deletions.prettierignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
.cache
package.json
package-lock.json
public
4 changes: 4 additions & 0 deletions.prettierrc
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
33 changes: 33 additions & 0 deletions.todo
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@

✔ add pwa support @done
✔ darkmode @done
✔ animation @done
✔ save settings @done
✘ shortcuts @cancelled
✘ loop @cancelled
✔ clip image @done
✔ save blobs @done
✔ view saved blobs @done
✔ url id @done
✘ reset settigs @cancelled
✔ click logo to reoad to home @done
✔ complexity change no animation @done
✔ Sound from Zapsplat.com @done
✔ resize images @done
✔ add favicon @done
✔ update seo @done
✔ default image @done
✔ image clip fix @done


----

Features:
✔ Dark theme @done
✔ Faster initial load @done
✔ Image clipping @done
✔ Patterns view @done
✔ Save and manage blobs locally @done
✔ tiny sound @done
✔ offline support @done
✔ static url for sharing @done
6 changes: 5 additions & 1 deletionCONTRIBUTING.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,23 +15,27 @@ Run unit tests

```
# run test cases
npm run test
npm run test

# watch mode

npm run test:watch
```

### Linting

```
npm run lint
```

It's also a good idea to add an eslint plugin in your editor.

To fix lint errors from the command line:

```
npm run lint
```

## Submitting Pull Requests

This project follows [GitHub's standard forking model.](https://guides.github.com/activities/forking/). Please fork the project to submit pull requests.
2 changes: 1 addition & 1 deletionLICENSE
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c)2020 udaypydi
Copyright (c)2021 Lokesh Rajendran

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
42 changes: 19 additions & 23 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -3,7 +3,7 @@
<br>

<palign="center">
<imgsrc="https://user-images.githubusercontent.com/1754676/82777559-18537280-9e6c-11ea-9257-0a24645c91b0.png"alt="Blobs"></p>
<imgsrc="https://user-images.githubusercontent.com/1754676/111070745-0c1ecb80-84f9-11eb-9128-fff8b2ab2b40.png"alt="Blobs"></p>

</h3>

Expand All@@ -18,28 +18,24 @@
</pre>
</div>

###Preview

![preview](https://user-images.githubusercontent.com/1754676/84493278-20f9d480-acc5-11ea-8667-ee0df8f35442.png)

![preview2](https://user-images.githubusercontent.com/1754676/84492711-3a4e5100-acc4-11ea-942c-37f9cd802fcf.png)

###Blobs for flutter

&nbsp;

<divclass="highlight highlight-source-shell">
<pre>
<divalign="center"><strong >Blobs for flutter</strong></div>
<divalign="center"><aalign="center"href="https://pub.dev/packages/blobs">flutter_blobs</a></div>
</pre>
</div>

<pfloat="left">
<imgwidth="200"alt="style_custom_color"src="https://user-images.githubusercontent.com/1754676/82777008-6ebfb180-9e6a-11ea-9b85-fcac09cfca38.gif">
<imgwidth="200"alt="style_gradient"src="https://user-images.githubusercontent.com/1754676/82777164-f1e10780-9e6a-11ea-8d02-89217cd6e582.png">
<imgwidth="200"alt="blobs_with_child"src="https://user-images.githubusercontent.com/1754676/82777157-ef7ead80-9e6a-11ea-9b74-6224cf33d739.png">
</p>
<palign="center">
<imgsrc="https://user-images.githubusercontent.com/1754676/111070973-0f668700-84fa-11eb-9457-4d6282e90eec.png"alt="Social preview"></p>



###Features
- Choose any solid colors
- Set gradient colors
- Use Patterns
- Clip Image
- Outlined blob
- SVG Code - view/copy/download
- Flutter blob code
- Save and view blobs
- Tiny blob change sound
- PWA - Offline support
- Custom sharable URL
- Dark theme

###Development

Expand Down
1 change: 0 additions & 1 deletionconfig/assetsMock.js
View file
Open in desktop

This file was deleted.

11 changes: 0 additions & 11 deletionsconfig/paths.js
View file
Open in desktop

This file was deleted.

Loading

[8]ページ先頭

©2009-2025 Movatter.jp