1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
|
Thu Jul 24 13:32:14 2014 +0200
-------------------------------------------------
0.1.0 first release
Thu Jul 24 13:33:43 2014 +0200
-------------------------------------------------
0.2.0 * added option for button and selected colors;
* added monovedek colorscheme;
* updated colorschemes.
Thu Jul 24 13:48:37 2014 +0200
-------------------------------------------------
0.2.1 * added "gnome colors noble dark" colorscheme
-------------------------------------------------
0.2.2 Merge pull request #3 from actionless/buttons
colorshemes: added 'random'
-------------------------------------------------
0.3 Merge pull request #5 from actionless/merge-upstream-0814
updated credits
-------------------------------------------------
0.4 Merge pull request #7 from actionless/old-tabs
reverted 'old' tabs appearance
-------------------------------------------------
0.5 fix(gtk3): selection fg
-------------------------------------------------
0.6 refactor: define current colors as variables
-------------------------------------------------
0.7 fix(colors: xresources): menu_bg
-------------------------------------------------
0.7.1 reverted old tabs' appearance for gtk3 (again)
-------------------------------------------------
0.8 chore: gtk3: remove unused *-dark style
-------------------------------------------------
0.9 changed default colorscheme
-------------------------------------------------
0.10 fix(themes: xfwm4): colors
Sun Apr 5 00:46:46 2015 +0200
-------------------------------------------------
0.10.1 use more abstract values in template
Tue Feb 16 04:41:50 2016 +0100
-------------------------------------------------
0.11 Merged everything from the upstream but changed png back to svg
-------------------------------------------------
0.12 fix(gtk3): toggle button appearance
Sat Mar 26 01:16:34 2016 +0100
-------------------------------------------------
0.13 Few GTK3 fixes
Sat Mar 26 01:30:50 2016 +0100
-------------------------------------------------
0.13.1 fix(gtk2): move back overrides for button and notebook tabs
-------------------------------------------------
0.14 Merge pull request #14 from actionless/gui
Gui
Tue Apr 12 19:54:12 2016 +0200
-------------------------------------------------
0.14.1 Minor GTK3 fixes and Arch packaging
Thu Apr 28 23:50:27 2016 +0200
-------------------------------------------------
0.15 Fixing up GTK 3.20
GTK3.20:
- merge with upstream
- notebook
- checkbox
GTK3.1{6,8}:
- unity fix
- checkbox
Wed May 4 17:03:49 2016 +0200
-------------------------------------------------
0.15.1 Minor improvements
GTK3.20:
- linked comboboxes
GTK3.{16,18,20}:
- menu item with checkbox or radio
- unchecked checkbox and radio
script fixes
Tue May 10 17:20:27 2016 +0200
-------------------------------------------------
0.16.0 Big GTK+ 3.20 revamp
(including fixes to improve work with dark colorschemes)
and
- configurable headerbar button (and preview for it in gui);
- add --make-opts arg for cli;
- fix missing messages list in spotify
Thu May 12 09:50:26 2016 +0200
-------------------------------------------------
0.16.1 Fix GTK+3.20 button and add Gnome-Colors/Shiki colorschemes
982d678 chore(colors): add all gnome-colors a.k.a. shiki
0eaf17d fix(gtk3.20: button): disabled button (especially in dark colorscheme)
32c2f22 fix(gtk3.20: button): border for light colorscheme
Sat Jun 18 17:33:40 2016 +0200
-------------------------------------------------
0.17.0 Options for roundness and gradient
* HEAD -> master 45b7674 chore(pkgbuild): bump version
* origin/master, origin/HEAD a724942 chore: merge with upstream
* | ee515f4 fix(oomoxify): compatibility with 1.0.31
* | 428cc3c theme(colors: promediumlight): fix gradient
* | 745d574 chore(colors): add monovedek-gray
* | 82cb2d6 fix(gtk3.20: button): make hover less 'glowing' - 2
* | 634784c Revert "fix(gtk3.20: button): make hover less 'glowing'"
Fri Jun 24 00:40:55 2016 +0200
-------------------------------------------------
0.18.0 Treeview for presets
* HEAD -> master, origin/master, origin/HEAD eed171b actionless refactor(gui: presets_list): s/listview/treeview/g
* 43ec963 actionless feat(gui: presets_list): group presets by directory name
* cada163 Yauhen Kirylau Merge pull request #39 from Luke-Nukem/master
|\
| * 1c4de97 Luke Jones Add Base-16 colour selection exported from Base16-Builder
* ddd0db0 Yauhen Kirylau chore(readme): add webupd8 ppa
* efe2e31 actionless chore(gui): update built themes
Sun Jul 3 22:27:52 2016 +0200
-------------------------------------------------
0.19.0 Generate iconset based on `gnome-colors`
* fd2c25a actionless chore(readme): add info regarding iconset generation
* 8880b4b actionless feat(gui): add possibility to choose colors for the icon theme, export it; apply global css only for preview area; show both stderr and stdout in the log
* 3bd41c4 actionless feat: add script to generate gnome-colors icon theme
* 16bbbcc actionless chore(gui): update built themes
* f567c4f actionless chore: add gnome-colors iconset original sources
* dc65121 actionless fix(gtk3.20): resolve warnings. closes #36
Wed Jul 6 15:50:27 2016 +0200
-------------------------------------------------
0.20.0 Gui improvements/fixes
eba6055 chore(themes): update iconthemes for gnome-colors and few retro themes
cff0f91 fix(gui: presets_list): focus correctly on child item
f5ea212 fix(gui): reload presets correctly if new one was added
a3f7009 fix(gui: presets_list): correct display of grouped items
8279e67 feat(gui: presets_list): distinguish default themes from user-added ones with the same name
df97e79 fix(gui: colors_list): workaround redraw issue via removing linked style for color input
f8c1ed7 fix(gui): workaround for redraw glitch when center section size changes
Sat Jul 9 13:46:40 2016 +0200
-------------------------------------------------
0.21.0 GTK2 HiDPI, Spotify improvements
d4876b8 feat(gui): implement gtk2 hidpi support
9cfa9eb feat(change_color, gtk2): imitate hidpi support for gtk2
ddcd64d Merge branch 'master' of github.com:actionless/oomox
3b7a53a feat(oomoxify): add missing color for hover over selected item - 2
a111a9d feat(oomoxify): implement possibility to explicitly define spotify colors via env vars; add missing color for hover over selected item
71c244c fix(gui: helpers: save colorscheme): don't skip unknown properties
bf516c8 chore(pkgbuild): use https instead of http for retrieving the source
Tue Aug 9 18:12:26 2016 +0200
-------------------------------------------------
0.22.0 Last versiong with GTK+ 3.16 support. Lots of new colorschemes; small fixes for gtk2 and gtk3.
fix(gtk320: treeview: progressbar, trough): border radius for focused item
fix(gtk2): treeview/list header match to gtk3 theme variant
fix(oomoxify; colors: retro: mac): generalize 'darker' function
chore(colors): add 2 themes
fix(colors: retro: excel): icon colors
fix(gtk3, gtk320: colorswatch): case when roundness is less than 1
chore(colors): add 'dhl' theme
Tue Aug 9 18:14:12 2016 +0200
-------------------------------------------------
0.22.1 Merge with upstream:
| * upstream/master c65721b Khurshid Alam [Gtk-3.18] Use old link color. Fixes #499
| * d2fecfd Jeremy Bicha Restore and fix Xfce desktop icon shadows. Fix #492
| * b0aaf84 Jeremy Bicha Don't install GTK3 source files. Fixes #503 (#504)
| * 749cfa3 Khurshid Alam [Gtk-3.18] Use dark mode tabs in gnometerminal (by default). Fixes #497
| * c565223 Khurshid Alam Drop support for Gtk-3.16
| * 58642c3 Khurshid Alam [Gtk-3.18] Provide gap between buttons in message dialog. Fixes #498
| * 76321bb Alexey Donoga Fix for issue #492 (#496)
Fri Sep 23 16:27:03 2016 +0200
-------------------------------------------------
0.23.0 Merge with Numix upstream and rework Spotify theme
* 854d4df feat(oomoxify): rework color 'algorithm' to be closer to
original spotify colorscheme (and ship old version with more 'dynamic'
colorscheme)
* 2416dc9 chore(gtk320: button): increase default minimal size
* ceb278a chore: merge with Numix upstream
* 5d35b74 chore(darker.sh): don't write debug messages
* 5d56661 feat(oomoxify): add '-w' option to 'normalize'
Wed Oct 12 12:20:03 2016 +0200
-------------------------------------------------
0.24.0 Confirmed GTK+ 3.22 support
* 8e56900 actionless fix(gtk3.20): font definitions
* 9e1bf2d actionless fix(assets): add assets removed by the merge with upstream
* 92d31d7 actionless fix(gtk3.20: button): flat button fg again
* cb075af actionless chore: merge with upstream
|\
| * upstream/master c138b78 Dustin Falgout Update README.md
| * 1d56b33 Dustin Falgout remove old svg files (part of #508)
Tue Oct 18 21:01:50 2016 +0200
-------------------------------------------------
0.24.1 GUI hotfix for GTK+ 3.22; GUI improvements
* f1c8e34 chore(gui): update built theme for GTK+ 3.20+
* fa50024 fix(gui): version check fix for GTK+ 3.22
* bf81bc1 Add display_name keys for main color inputs
* 147a730 Improve save_colorscheme to be deterministic
Thanks Alex Chew!
Mon Oct 31 17:48:08 2016 +0100
-------------------------------------------------
0.25.0 Openbox theme improvements; merge lots of GTK+ 3 fixes from Numix
* ee9fc5e feat(oomoxify): add one more selection color to match
* 4031174 fix(gtk320: button): after-mege amendment
* 0b72050 chore: merge with upstream
* 9dd1adc fix(scripts): add missing files
* 6360306 fix(openbox): replace all the hardcoded colors to theme variables or computed values
* 357ea43 feat(change_color.sh): export more theme variables; move scripts to ./scripts/ dir
* de3bd9b fix(openbox): set window border width to SPACING var
Tue Nov 15 18:33:28 2016 +0100
-------------------------------------------------
1.0-rc1 First release candidate
- update Oomoxify for the latest Spotify version;
- minor GTK fixes;
* 9d86df9 fix(gtk3.20: progress): progress, levelbar and scale BG color
* 7d64981 chore: merge with Numix upstream
* 97f52a7 feat(oomoxify): make bg shades more contrast to each other
* c28c2e7 feat(oomoxify): match latest spotify update
Thu Nov 17 01:57:10 2016 +0100
-------------------------------------------------
1.0-rc2 Second release candidate
- Major GUI improvements;
- Spotify update does not require anymore to flush oomox backup files;
- GTK+ 3.20 progressbar hotfix.
* ccdb5ff feat(gui): add possibility to apply theme to Spotify frmo the GUI
* 9d9243b feat(gui: export): resize script log view together with window
* 6b1a1f8 feat(oomoxify): add `--gui` option to use `gksu` intead of `sudo`
Mon Nov 21 21:16:31 2016 +0100
-------------------------------------------------
1.0-rc3 GUI and Spotify improvements
* f116ecd chore(themes): some clean-up/reordering
* 74e9fc8 feat(gui): better handle incorrect colors
* f06d180 fix(gui): make Save button inactive if theme wasn't changed
* 38481f0 chore(gui: color_list): make color inputbox a bit wider
* 917c0c5 theme(monovedek-gray): fix gnome-colors icons shade
* f93c959 refactor(gui): extract theme model into separate module and some minor refactoring elsewhere
* 1448087 feat: add possibility to select icons style and export ArchDroid iconset
Tue Nov 22 02:16:12 2016 +0100
-------------------------------------------------
1.0-rc4 Improve application headerbar
* b085494 feat(gui): hide icons and spotify exports under the menu
* 9b9754b feat(gui): implement remove and rename buttons
Sun Dec 4 22:25:15 2016 +0100
-------------------------------------------------
1.0.0 First stable release.
Minor adjustments in colorschemes and spotify generator; extend iconthemes fallbacks
* 60b8922 feat(archdroid): extend list of fallback themes
* 97ede4a feat(gnome-colors): extend list of fallback colorschemes (fixes lots of KDE apps like Dolphin)
* 3ce479f chore(themes: retro): add kdeish themes
* a729024 Revert "Revert "fix(oomoxify): don't skip messages.spa""
* 6df5955 fix(oomoxify): add SPOTIFY_HOVER_SELECTION_COLOR theme variable; s/SPOTIFY_ACTIVE_SELECTION_COLOR/SPOTIFY_SELECTED_TEXT_COLOR/g s/SPOTIFY_INACTIVE_SELECTION_COLOR/SPOTIFY_SELECTED_BUTTON_COLOR/g
Sun Feb 12 21:41:06 2017 +0100
-------------------------------------------------
1.0.1 Minor fixes
25aaaa3 Yauhen Kirylau feat(gtk3.20): set button and header button colors into style context
6e4bd77 Yauhen Kirylau feat(gtk3.20): set $wm_border colors and add a hack for exporting roundness and spacing
into style context
ac3331e Frank Yi Fix header button text using incorrect color setting
1a8c9bf Csaba Jakosa [Gtk-3.22][Gtk-3.20] Fix iconview background for Unity-Control-Center. Fixes #634
45210ca Csaba Jakosa [GTK 3.22] Add hover effect for menuitem under Unity-LIM. Fixes #632
a25d378 Yauhen Kirylau chore(readme): mention packages for newer ubuntu versions
Sat Feb 18 18:48:11 2017 +0100
-------------------------------------------------
1.1.0 Fix for spotify updates; re-organize themes; minor GTK+ 3.20+ theme improvements.
a1e8e6a fix(gtk3.20: calendar): fix highlight being unreadable with some theme color combinations
1b6df3e chore(gui): update built theme for GTK+ 3.20+
ea0b35f theme(gtk3.20: menu): increase padding for menuitems
4e89c8d chore(colors): reorganize colorschemes into directories
528d14c chore(gui): update built theme
60733f4 fix(gui: save_colorscheme): don't copy NOGUI parameter when cloning a theme
339f026 fix(oomoxify): one more fix for handling backup directory
Sat Mar 4 21:04:01 2017 +0100
-------------------------------------------------
1.2.0 Version 1.2.0
New features:
* generate Unity theme;
* generate Metacity theme;
* generate colorpalette for Qt5ct (tested with Fusion Qt5 theme);
* configure window manager border colors;
* support for theming GTK+ text caret;
* hotkeys and other GUI improvements;
Mon Mar 6 23:20:28 2017 +0100
-------------------------------------------------
1.2.1 Avoid overwriting existing theme presets and new style for preset list.
* 6c01f02 feat(gui: preset_list): use less contrast color for default (read-only) themes
* e6533d1 style(gui: preview): indent
* 32634d2 fix(po): new module name
* 486155d chore(gui): rename module to `oomox_gui`
* dd653c9 fix(gui: main): don't overwrite user theme when saving default one with the same name
* f194e79 style(gui: main): add .pylintrc, .flake8 and fix warning in gui.main
* da83122 feat(colors: random): randomize more colors
Sat Apr 1 18:46:28 2017 +0200
-------------------------------------------------
1.2.2 Spotify update; GUI improvements; temporarily disable GTK+3 backdrop for borders
032ceba Yauhen Kirylau feat(colors: xresources2): add WM_BORDER_FOCUS
64b782c Yauhen Kirylau feat(oomoxify): update for compatibility with 1.0.52; recolor context menus
1ee90eb Colomban Wendling feat(gui): limit the length of the color entry fields to 6
0f7d187 Colomban Wendling style(gui): avoid code duplication
f796109 Colomban Wendling feat(gui): update French translation
510bded Colomban Wendling feat(gui): add mnemonics to the export dialogs
05df537 Laurent Treguier doc(readme): add Fedora Copr instructions
Sat Apr 1 19:20:19 2017 +0200
-------------------------------------------------
1.2.3 Fix WM class; add more themes
b975edc Vlada Makhonina chore(colors: contrib, popart): add more themes
54176c1 Yauhen Kirylau chore(colors: lcars; unit01d): update to support new theming features
f096a1b Yauhen Kirylau chore(pkgbuild): add 'breeze-icons' to optdepends
1c2d842 Yauhen Kirylau fix(gui): set correct WM class
Sun Apr 9 13:28:52 2017 +0200
-------------------------------------------------
1.2.4 GTK+3.20 theme improvements
780908d fix(gtk3.20: notebook): use $spacing for tabs' padding; closes #56
3171ac5 feat(gtk3.20): revamp of checkboxes and radios inside menuitems; closes #81
391cfd6 fix(gtk3.20: popover): middle linked button
Fri May 5 19:27:32 2017 +0200
-------------------------------------------------
1.2.5 Speed-up theme generation and minor fixes
c4fcdfb Yauhen Kirylau feat(gtk3,3.20): use sassc (libsass) instead of ruby-sass
ed1b6d6 Yauhen Kirylau chore(gtk320: colors): remove hack for integration with awesomewm gtk theme
704d1ed Yauhen Kirylau feat(oomoxify): replace one more color
c351d2c Yauhen Kirylau fix(gtk3.20: toggle): replace deprecated :insensitive to :disabled
416de86 Trent McPheron Fix mix.sh. What was wrong with it? We were multiplying hex integers with decimal fractions, effectively almost halving any ratio passed to it. So instead of calculating in hex, we convert to decimal first.
Sat May 6 15:02:45 2017 +0200
-------------------------------------------------
1.2.6 fix dark theme variant
Mon Jul 17 22:35:20 2017 +0200
-------------------------------------------------
1.2.7 Spotify-related improvements, FreeBSD support
2017-07-17 c11b9e3 Yauhen Kirylau feat(oomoxify, PKGBUILD): add polkit support
2017-06-13 1a792d3 Youri Wijnands Use pacaur for AUR downloads
2017-06-11 6d2f45e Yauhen Kirylau style(gui: export): formatting
2017-06-11 a18efae Yauhen Kirylau feat(gui: export; oomoxify): add option to use custom font
2017-06-11 317fc81 Yauhen Kirylau feat(gui: export): increase timeout for longer types of exports
2017-06-11 559a6d4 Yauhen Kirylau feat(gui: export: oomoxify): add option to use system sans font
2017-06-11 6ade634 Yauhen Kirylau fix(oomoxify): typo in font-family attr
Tue Jul 18 23:07:21 2017 +0200
-------------------------------------------------
1.2.7.1 hotfix(oomoxify): revise polkit detection
Tue Jul 18 23:23:59 2017 +0200
-------------------------------------------------
1.2.8 Improve versioning schema
separate commit number with plus ("+") instead of minus ("-")
Sun Aug 20 21:16:07 2017 +0200
-------------------------------------------------
1.2.8.1 New repository infrastructure and small spotify improvements
2017-08-20 18b0b54 actionless chore(gtk-theme): update submodule
2017-08-20 251b7a9 actionless chore(PKGBUILD): add `grep` and `sed` to the deps
2017-08-20 300c516 actionless chore(themes): add `xresources3`
2017-08-20 5e9fcc5 actionless chore: add .gitattributes
2017-08-19 6a34e25 actionless chore(gui): update built theme
2017-08-19 bb4fdc1 actionless chore: update gtk-theme submodule
2017-08-19 2c83918 actionless chore: remove more leftovers from gtk theme - 2
Sun Aug 27 16:18:58 2017 +0200
-------------------------------------------------
1.3.0 Flat-Plat GTK+ theme support
610fca5 chore(PKGBUILD, readme): update version; mention Flat-Plat support in readme
2663ca6 feat(gui: theme_model): add ACCENT_BG for flat-plat theme
fea2660 chore(submodule: flat-plat; PKGBUILD): use upstream Flat-Plat
1ab5c51 feat(gui: preview; submodule: flat-plat): add specific overrides for sel and header FGs
06e6f81 chore(gnome-colors; PKGBUILD): bundle gnome-colors-common together with exported gnome-colors icon theme
42c949b chore(README, PKGBUILD): mention new dependencies
d310504 refactor(gui: preview): isolate oomox-gtk-theme - specific preview overrides
Sat Sep 9 19:48:10 2017 +0200
-------------------------------------------------
1.3.1 GTK+2 HiDPI support in Flat-Plat theme
Thu Sep 28 22:16:02 2017 +0200
-------------------------------------------------
1.4.0 Basic terminal colorscheme support; optimize memory usage.
0d93cc5 chore(pkgbuild): update version
abeda18 fix(gui: preview): remove debug print
21dbcf0 chore(colors: monovedek): rename theme variants
a229fd1 fix(colors: monovedek: old): fix fg color
4d6d6cc fix(gui: preview): reuse css providers
2ba1b22 fix(gui: main: ActionsEnum): make it compatible with `pympler` (could be also problems with `memory_profiler`
f44b454 style(gui: color_list): add refactor notice
Sat Sep 30 14:23:39 2017 +0200
-------------------------------------------------
1.4.1 Small spotify improvements for the latest update
446795c fix(spotify): zip -0
f302788 feat(spotify): support for 1.0.64; add
SPOTIFY_PRESSED_SELECTION_COLOR theme var
582a14c chore: update screenshot
Sun Nov 5 13:22:41 2017 +0100
-------------------------------------------------
1.4.2 Spotify improvements; few new themes
2017-11-05 f5a3086 Yauhen Kirylau feat(themes: popart: poke_ice): use new spotify theme options
2017-11-05 1ad65fc Yauhen Kirylau feat(oomoxify; gui: theme-model, export): expose spotify main colors to the GUI
2017-11-04 3388683 Yauhen Kirylau feat(colors: popart: lb3; gui: terminal_temlates): add new terminal template and use in in leigh-bowery-3 theme
2017-11-04 e46177e Yauhen Kirylau chore(colors): set terminal colorscheme for some of the themes
2017-10-26 a66bb1a Yauhen Kirylau fix(oomoxify): remove duplicated trap
2017-10-19 e223584 Yauhen Kirylau doc(readme): update text around screenshots
2017-10-19 5d0b209 Yauhen Kirylau doc(readme): add link to Slackbuild and add note about ubuntu ppa
Sun Dec 3 03:33:02 2017 +0100
-------------------------------------------------
1.4.3 Small portion of XFCE, oomoxify and GUI fixes.
3a5f043 chore(third-party: gtk-theme): update to the latest version
c43ef0e fix(oomoxify): update for new version
4c228d3 fix(oomoxify): generate other area-related bg-s for light themes based on SPOTIFY_AREA_BG
e71e56d fix(colors: popart: pokecenter): remove debug spotify values
34ece8c fix(oomoxify): match new sidebar fg color
650e669 chore(submodules: oomox-gtk-theme): update
8fa4ca9 fix(gui: preview): remove headerbar client buttons
Sat Dec 23 00:53:23 2017 +0100
-------------------------------------------------
1.4.4 Release 1.4.4
Features:
- save export options for spotify theme;
- show 'HiDPI' as theme option for GTK theme export;
- more color settings for Materia theme;
- use terminal colorscheme for error/warning/etc colors in Oomox GTK
themes;
- move all theme generators to separate git repositories.
Sat Dec 23 05:20:47 2017 +0100
-------------------------------------------------
1.4.4.1 Hotfix release 1.4.4.1
chore(submodules: gtk-theme): fix disabled checkboxes and radios
fix(preview): override more theme properties (fixes shaded button and headerbar when opened with vertex theme); also cache base theme css provider
feat(export: theme): create a copy of exported theme so now it's not required to save the theme before the export
Sun Dec 31 15:48:59 2017 +0100
-------------------------------------------------
1.4.5 Oomox GTK+3 theme improvements and Ubuntu packaging
Features:
- GUI: add descriptions to theme styles;
- Oomox-gtk-theme GTK+3: support gradient and roundness for notebook tabs.
Fixes:
- Oomox-gtk-theme GTK+3: disabled checkboxes and radios.
Mon Jan 1 18:08:24 2018 +0100
-------------------------------------------------
1.4.5.1 Hotfix for gnome-shell and locales with non-dot floating point character.
2018-01-01 14660a5 actionless chore(submodules: gtk-theme): fix shadow in gnome-shell
2018-01-01 194b8c9 actionless chore(submodules: materia): update with fix for gnome-shell
2018-01-01 27d1033 actionless fix(gui: theme_file): when opening theme ignore values which are not defined in the theme_model; related to #111
2017-12-31 265771a actionless chore(submodules: oomoxify, gtk-theme): force C numeric locale, fixes #113
Tue Jan 2 18:23:33 2018 +0100
-------------------------------------------------
1.4.5.2 Better gnome-shell support in Materia
2018-01-02 7868494 actionless chore(submodules: materia): fix gnome-shell theme if menubar is contrast to theme
2018-01-02 026880f actionless chore(submodules: materia): improve gnome-shell theme
2018-01-02 4fd8f7d actionless Merge branch 'master' of github.com:actionless/oomox
2018-01-02 469e8aa actionless hotfix(submodules: materia): problem with gnome-shell theme generation
2018-01-02 e33cc54 actionless hotfix(submodules: materia): problem with gnome-shell theme generation
2018-01-01 1720d66 actionless chore(submodules: materia): update with more fixes for gnome-shell
2018-01-01 2f721d6 actionless chore(submodules: materia): update with more fixes for gnome-shell
Sat Jan 6 06:25:00 2018 +0100
-------------------------------------------------
1.4.99 Big refactoring; reimplement all themes as plugins; hotfix for archdroid and new rsvg version
Wed Feb 14 18:55:23 2018 +0100
-------------------------------------------------
1.5.0 Release 1.5.0
OOMOX GTK THEME:
- New column header style in GTK+2 and 3. Special thanks @livanh!
- Configurable outline width and offset in GTK+3 theme
- GTK+3 theme improvements:
- refactor linked buttons;
- fix notebook tabs;
- better theme performance with dark colorscheme;
Fri Feb 16 12:39:14 2018 +0100
-------------------------------------------------
1.5.0.1 Version 1.5.0.1
2018-02-16 b2f8ab1 actionless fix(packaging): missing desktop file extension
2018-02-16 9c8ec8d actionless chore: bump version to 1.5.0.1
2018-02-16 9a79cb7 actionless chore(packaging): s/org.gtk.oomox/com.github.actionless.oomox.desktop/
2018-02-16 63e1b5a actionless chore(plugins: oomox): update submodule
2018-02-16 3b87fd1 actionless fix(packaging: ubuntu): remove build dir before start
Fri Feb 16 17:38:23 2018 +0100
-------------------------------------------------
1.5.0.2 Version 1.5.0.2
more flatpak packaging fixes (no functional changes)
Fri Feb 16 22:18:05 2018 +0100
-------------------------------------------------
1.5.0.3 Version 1.5.0.3
More flatpak-related fixes
Sat Feb 17 00:38:25 2018 +0100
-------------------------------------------------
1.5.0.4 Version 1.5.0.4
2018-02-17 1f2dbaf actionless fix(packaging: install.sh): iconpath
2018-02-17 a754da0 actionless fix(gui: main): don't add menu and menu button if no extra export plugins available
2018-02-16 2918d10 actionless fix(packaging: !flatpak): move icons from flatpak to common dir
Mon Feb 19 20:44:16 2018 +0100
-------------------------------------------------
1.5.0.5 Version 1.5.0.5
2018-02-19 e155dd3 actionless chore(packaging: flatpak): extract install command into script
2018-02-19 6b811e2 actionless chore(packaging): move appdata from flatpak to common packaging
2018-02-17 911961c actionless chore(travis): use arch for python 3.4;
Fri Mar 16 15:49:33 2018 +0100
-------------------------------------------------
1.6.0 Version 1.6.0
New Features:
- a plugin for importing colors from the images;
- a plugin for importing colors from Base16 project .YML themes;
- Oomox theme: brand-new Cinnamon theme, configuration of checkboxes and radios colors, headerbar/titlebar vary on focus;
- few new themes.
Fixes:
Fri Mar 30 16:32:33 2018 +0200
-------------------------------------------------
1.6.1 Version 1.6.1
- implement preview for checkboxes;
- Oomox theme improvements;
- added WCAG AA compliant terminal colortemplates `tempus` by @protesilaos;
- new 'Experimental' terminal theme generator.
2018-03-30 b248736 actionless chore(plugins: oomox, materia): update submodules
2018-03-28 81203d1 actionless fix(terminal): compatibility with python 3.4 and 3.5
Mon Jul 30 17:25:30 2018 +0200
-------------------------------------------------
1.6.2 Release 1.6.2
Notable changes:
2018-07-30 7533188a actionless chore(plugins: materia): update to dev version with roundness patch
2018-06-30 86407761 Heimen Stoffels Added Dutch translation (#152)
2018-05-30 42fd5472 nana-4 fix(packaging): correct installed icons
2018-05-03 70511332 actionless fix(theme_model; plugins: oomox): move caret options from common theme model to oomox plugin
2018-04-12 de72ccc1 actionless feat(plugin_api; plugins: pil, base16): support multiple file extensions in file format plugins
2018-03-31 6c35012a Andreas Backx doc(readme): described how to undo Spotify theme. #134
Tue Jul 31 23:50:48 2018 +0200
-------------------------------------------------
1.6.2.1 Maintenance release 1.6.2.1
Notable changes:
2018-07-31 1e195203 actionless chore(packaging): update dbus interface name
Wed Aug 8 22:47:10 2018 +0200
-------------------------------------------------
1.7 Release 1.7 "Arc-theme"
Notable changes:
2018-08-08 d4b3d0ff actionless feat(plugins, packaging): add arc-theme
2018-08-06 710064fc actionless fix(preview: terminal): add right padding to fix preview with too big/wide system monospace font
Fri Aug 10 01:36:19 2018 +0200
-------------------------------------------------
1.7.0.1 Release 1.7.0.1
Notable changes:
2018-08-10 f7188729 actionless fix(plugins: arc): monkeypatch border preview only for arc theme
2018-08-09 588ca724 actionless fix(packaging: flatpak, makefile): add APPDIR var
2018-08-09 2b56e040 actionless chore(plugins: arc): update submodule
Sun Aug 12 22:15:42 2018 +0200
-------------------------------------------------
1.7.0.2 Release 1.7.0.2
2018-08-12 19e82c1d actionless fix(plugins: arc): fix hdr btn borders' preview
2018-08-12 1c90a1a9 actionless fix(main): properly handle SIGINT (Ctrl+C)
2018-08-12 d15897d4 actionless fix(plugins: arc): remove gtk+2 pseudo-hidpi from export options
Sat Sep 22 07:12:57 2018 +0200
-------------------------------------------------
1.7.0.3 Release 1.7.0.3
Notable changes:
2018-08-15 e6688017 actionless fix(plugins: arc): export config name
2018-08-12 236bd5c4 actionless refactor: import gettext's _ explicitly
Tue Sep 25 20:50:11 2018 +0200
-------------------------------------------------
1.7.0.4 Release 1.7.0.4
Update Oomox and Materia plugins.
Tue Oct 2 15:00:11 2018 +0200
-------------------------------------------------
1.7.0.5 Release 1.7.0.5
Notable changes:
2018-10-02 f12f4bf9 actionless chore(plugins: materia): update submodule
2018-10-01 6403f5c7 actionless chore(plugins: arc): update submodule
2018-09-26 6a18887a actionless fix(terminal_templates): remove xterm- and urxvt-specific values
Tue Oct 16 15:18:18 2018 +0200
-------------------------------------------------
1.7.0.6 Release 1.7.0.6
Notable changes:
2018-10-16 b9e842f7 actionless fix(packaging: arch): add 'gnome-themes-extra' dep for materia theme plugin
2018-10-16 3dde2905 actionless chore(plugins: materia): update submodule
2018-10-09 99ecab1a actionless chore(plugins: oomox): update submodule
2018-10-08 7dc8f6d3 actionless chore(colors): add new colorthemes
Sat Nov 17 19:58:43 2018 +0100
-------------------------------------------------
1.7.1 Release 1.7.1
Notable changes:
2018-11-17 d74b1eb2 feat(presets_list): don't show directory name in children items
2018-11-17 03e8c5f4 fix(preview): make it fit better with different font size and so on
2018-11-17 1b2f71d6 feat: remove section names from GUI
2018-11-17 679fcf89 chore(plugins: oomox): update submodule (missing popover outline)
2018-11-16 de5030b0 feat: add import dialogs for plugins and show imported formats separately from native themix colorschemes
2018-11-16 981758cd fix(plugins: materia): update symlinks to generated css
|