summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndinus <andinus@inventati.org>2020-03-15 13:41:18 +0530
committerAndinus <andinus@inventati.org>2020-03-15 13:41:18 +0530
commit16842fa8ade95fcb45ad9d47275633d094769f15 (patch)
treecfb2d5d6f6abb9cb29068a3539466e7c5bfaa398
parente29b16b8daaf473df93a89869f9befd22253dac2 (diff)
downloadcetus-16842fa8ade95fcb45ad9d47275633d094769f15.tar.gz
Explain behaviour on media image type
-rw-r--r--README.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.org b/README.org
index bfdcd34..ca97559 100644
--- a/README.org
+++ b/README.org
@@ -15,6 +15,10 @@ sources for fetching the background.
 
 * NASA Astronomy Picture of the Day
 cetus-nasa uses NASA's API to get the Astronomy Picture of the Day.
+
+*Note*: If the returned media type is not image then cetus-nasa will only print
+details & not try to set background.
+
 ** Features
 - set APOD as background
 - fetch information on APOD
@@ -31,6 +35,9 @@ cetus-nasa -random
 # set 2020-01-05 APOD as background
 cetus-nasa -date 2020-01-05
 
+# 2020-03-15 APOD is a video, cetus will only print details
+cetus-nasa -date 2020-03-15
+
 # change api endpoint & api key
 cetus-nasa -api https://api.nasa.gov/planetary/apod \
            -api-key DEMO_KEY
>129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375