Skip to content

Commit 9e6d67c

Browse files
fixed SearchManager.js on ui web reaction
1 parent 9911f97 commit 9e6d67c

File tree

2,958 files changed

+714013
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,958 files changed

+714013
-68
lines changed

.gitignore

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +0,0 @@
1-
```
2-
# Dependencies
3-
node_modules/
4-
5-
# Logs and temp files
6-
*.log
7-
*.tmp
8-
*.swp
9-
10-
# Environment
11-
.env
12-
.env.local
13-
*.env.*
14-
15-
# Editors
16-
.vscode/
17-
.idea/
18-
19-
# Python
20-
__pycache__/
21-
*.pyc
22-
*.pyo
23-
*.pyd
24-
25-
# Build outputs
26-
dist/
27-
build/
28-
*.min.js
29-
*.bundle.js
30-
31-
# Coverage
32-
coverage/
33-
htmlcov/
34-
.coverage
35-
36-
# OS generated files
37-
.DS_Store
38-
Thumbs.db
39-
40-
# Backup files
41-
*~
42-
*.bak
43-
*.swp
44-
45-
# IDE specific
46-
.vscode/
47-
.idea/
48-
.settings/
49-
.project
50-
51-
# Distribution / packaging
52-
.Python
53-
env/
54-
venv/
55-
ENV/
56-
.venv/
57-
.env/
58-
59-
# Testing
60-
.pytest_cache/
61-
.mypy_cache/
62-
.coverage
63-
coverage.xml
64-
```

dist/assets/icon-192.CruqDOv-.svg

Lines changed: 40 additions & 0 deletions
Loading

dist/assets/main.51kSM4X7.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/main.gVaaJvoX.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/manifest.87rUMN37.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "WeatherFlow",
3+
"short_name": "WeatherFlow",
4+
"description": "Professional weather application with vanilla JavaScript - PWA ready, fully accessible",
5+
"start_url": "/",
6+
"display": "standalone",
7+
"background_color": "#ffffff",
8+
"theme_color": "#4c6fff",
9+
"orientation": "portrait-primary",
10+
"icons": [
11+
{
12+
"src": "/icons/icon-192.svg",
13+
"sizes": "192x192",
14+
"type": "image/svg+xml",
15+
"purpose": "any maskable"
16+
},
17+
{
18+
"src": "/icons/icon-512.svg",
19+
"sizes": "512x512",
20+
"type": "image/svg+xml",
21+
"purpose": "any maskable"
22+
}
23+
],
24+
"categories": ["weather", "utilities", "productivity"],
25+
"screenshots": [
26+
{
27+
"src": "/screenshot.svg",
28+
"sizes": "1200x630",
29+
"type": "image/svg+xml",
30+
"platform": "wide"
31+
}
32+
],
33+
"shortcuts": [
34+
{
35+
"name": "Current Location",
36+
"short_name": "Location",
37+
"description": "Get weather for current location",
38+
"url": "/?location=current",
39+
"icons": [{ "src": "/icons/location.svg", "sizes": "192x192" }]
40+
},
41+
{
42+
"name": "Search Location",
43+
"short_name": "Search",
44+
"description": "Search for a location",
45+
"url": "/?search=true",
46+
"icons": [{ "src": "/icons/search.svg", "sizes": "192x192" }]
47+
}
48+
],
49+
"related_applications": [],
50+
"prefer_related_applications": false,
51+
"lang": "en-US",
52+
"dir": "ltr"
53+
}

dist/icons/icon-192.svg

Lines changed: 40 additions & 0 deletions
Loading

dist/icons/icon-512.svg

Lines changed: 40 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)