Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow two instances of the app #55

Merged
merged 8 commits into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Ability to create duplicate windows
  • Loading branch information
lacymorrow committed Feb 19, 2021
commit 401aba96ecfe113eb52fb131f4622a602eed99ba
4 changes: 4 additions & 0 deletions src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const config = new Store( {
const APP_HEIGHT = 124
const CHILD_WINDOW_OFFSET = 25

const MAX_SHADOW_WINDOWS = 20

const SUPPORTED_IMAGE_FILE_TYPES = [ '.bmp', '.jpg', '.jpeg', '.png', '.gif', '.webp' ]

module.exports = {
Expand All @@ -39,5 +41,7 @@ module.exports = {
APP_HEIGHT,
CHILD_WINDOW_OFFSET,

MAX_SHADOW_WINDOWS,

SUPPORTED_IMAGE_FILE_TYPES
}
2 changes: 1 addition & 1 deletion src/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading