├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── Daily Note.md ├── EXAMPLE.md ├── LICENSE.md ├── README.md ├── RELEASE.md ├── dailyNote.css ├── esbuild.config.mjs ├── getCurrentWeather.ts ├── getForecastWeather.ts ├── images ├── Demo.gif ├── Format1-1.png ├── Format2-1.png ├── Format3-1.png ├── Format3-2.png ├── Format4-1.png ├── Format4-2.png └── Statusbar-1.png ├── main.js ├── main.ts ├── manifest.json ├── package.json ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Daily Note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/Daily Note.md -------------------------------------------------------------------------------- /EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/EXAMPLE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/RELEASE.md -------------------------------------------------------------------------------- /dailyNote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/dailyNote.css -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /getCurrentWeather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/getCurrentWeather.ts -------------------------------------------------------------------------------- /getForecastWeather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/getForecastWeather.ts -------------------------------------------------------------------------------- /images/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Demo.gif -------------------------------------------------------------------------------- /images/Format1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format1-1.png -------------------------------------------------------------------------------- /images/Format2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format2-1.png -------------------------------------------------------------------------------- /images/Format3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format3-1.png -------------------------------------------------------------------------------- /images/Format3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format3-2.png -------------------------------------------------------------------------------- /images/Format4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format4-1.png -------------------------------------------------------------------------------- /images/Format4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Format4-2.png -------------------------------------------------------------------------------- /images/Statusbar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/images/Statusbar-1.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/main.js -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/package.json -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willasm/obsidian-open-weather/HEAD/versions.json --------------------------------------------------------------------------------