summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to v0.4.4 v0.4.4Andinus2020-03-151-1/+1
|
* Port path-only to cetus-nasaAndinus2020-03-152-0/+10
|
* Support Bing Photo of the DayAndinus2020-03-155-1/+254
|
* Add github mirror to readmeAndinus2020-03-151-2/+3
|
* Explain behaviour on media image typeAndinus2020-03-151-0/+7
|
* Bump version to v0.4.3 v0.4.3Andinus2020-03-151-1/+1
|
* Clean up repeat variable declarationAndinus2020-03-151-13/+5
|
* Handle if block within printDetails functionAndinus2020-03-151-3/+4
|
* Fix url on media types other than imageAndinus2020-03-151-1/+1
|
* Split getting api response into a functionAndinus2020-03-151-7/+18
|
* Fix url when media type is not an imageAndinus2020-03-151-1/+5
|
* Check media typeAndinus2020-03-151-8/+18
| | | | | | | Today's media type was video & that broke the program, currently this will check the media type & set background only if it's an image. It exits if media type is not an image, this behaviour might change later.
* Bump version to v0.4.2 v0.4.2Andinus2020-03-151-1/+1
|
* Add v0.4.1 demoAndinus2020-03-151-0/+1
|
* Fix cetus.Version functionAndinus2020-03-151-1/+1
|
* Update binary informationAndinus2020-03-151-1/+3
|
* Run gitlab-cli on push to master & merge requestsAndinus2020-03-151-3/+6
|
* Fix binary instructionsAndinus2020-03-151-4/+3
|
* Add installation instructionsAndinus2020-03-151-0/+19
|
* Reconfigure gitlab-ciAndinus2020-03-151-1/+4
|
* Bump version to v0.4.1 v0.4.1Andinus2020-03-141-1/+3
|
* Add version flagAndinus2020-03-143-12/+43
|
* Build linux image with gitlab-ciAndinus2020-03-141-0/+2
|
* Fix gitlab-cli errorAndinus2020-03-141-3/+5
|
* Beautify readmeAndinus2020-03-141-2/+2
|
* Add gitlab-ci build filesAndinus2020-03-141-0/+21
|
* Add project related links to readmeAndinus2020-03-141-1/+5
|
* Add css styles in headingAndinus2020-03-141-0/+2
|
* Add cetus-nasa program v0.4.0Andinus2020-03-143-0/+245
| | | | cetus-nasa uses NASA's API to get Astronomy Picture of the Day.
* Split project into multiple programsAndinus2020-03-143-173/+7
| | | | Re-initialization to split project into multiple programs
* Add v0.3.1 demo video to readmeAndinus2020-03-141-0/+1
|
* Add support for random photo as background v0.3.1Andinus2020-03-143-1/+62
|
* Unexport GetPathFromID & further break it in 2 functionsAndinus2020-03-141-12/+16
| | | | | appendSizeToPath will get repeated later so seperated it into a different function
* Break SetFromID in 2 functions v0.3.0Andinus2020-03-141-8/+13
| | | | | GetPathFromID returns the path of the photo & SetFromID first gets the path from GetPathFromID then uses background.Set to set the background
* Fix SetFromID & add usage in readmeAndinus2020-03-142-2/+9
|
* Add photoID supportAndinus2020-03-143-1/+75
| | | | photo-id flag can be used to set a specific photo as background
* Add background package & Set functionAndinus2020-03-141-0/+25
|
* Reinitialize projectAndinus2020-03-142-176/+2
|
* Restructure projectAndinus2020-03-141-0/+0
|
* Add install instructions & clean readmeAndinus2020-03-141-3/+35
|
* Narrow scope of the projectAndinus2020-03-142-208/+4
| | | | | | | | | Dropped support for Astronomy Picture of the Day & Bing Photo of the Day. I wrote this to get a new wallpaper at every startup or whenever I wish, in my opinion Unsplash Source is a better option & there is no point in keeping unused code.
* Fix Bing Photo of the Day fetcherAndinus2020-03-122-3/+3
|
* Restructure readmeAndinus2020-03-121-29/+29
|
* Explain how cetus is usefulAndinus2020-03-121-0/+3
|
* Add demo video url in readmeAndinus2020-03-121-0/+7
|
* Change mode to wall v0.2.0Andinus2020-03-122-31/+31
|
* Clarify readmeAndinus2020-03-121-6/+10
|
* Support Unsplash Source & Astronomy Picture of the DayAndinus2020-03-122-48/+95
|
* Support Bing Photo of the DayAndinus2020-03-122-62/+136
|
* Change scope of the projectAndinus2020-03-121-19/+24
|
171'>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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416