Newer
Older
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
courtesy of Pablo P Duncan (http://10k.dhs.org/~dmron/arch.html).
* You can use any image you like for the background, by using
--menu-bg FILE to select one. I had a small amount of fun using
Britney as my menu background. Strange, but true.
Wed Jun 14 18:53:06 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added --progress-gran NUM. Sets the progressive-loading
granularity to NUM, an integer between 0 and 100. This is the
percentage of the image to load before updating the display. 0 is
super-smooth, but slightly slower than 100, which loads the whole
image before showing anything. Use lower numbers to get
responsiveness over slow network connections...
Sat Jun 10 21:25:33 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Zooming is back, and it's as it was before. I'm still not happy
with it, but it works again anyhow. Next: fix, fix, fix.
* Don't forget, you need to hold control to get menus now...
Sat Jun 10 12:36:58 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Only render the current viewport. Big optimisation I should have
done earlier. Makes zooming big images smooooooooth ;-)
* Nearly finished the zooming rewrite, but it's disabled right now
(it's still a bit crappy).
Sat Jun 10 00:05:10 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed check drawing after resize. Edge resistance against *all*
the edges, not just two of them ;-)
Fri Jun 9 21:31:01 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fix fullscreen mode to work with new image placement code. Make
it work with --auto-zoom and --stretch too.
* Perform an antialiased pass after panning if needed.
Fri Jun 9 19:48:05 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Edge resistance when panning. Much better.
Thu Jun 8 22:02:50 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* First part of zooming/scaling rewrite. Only panning so far, but
it works nice. Zooming is current *disabled*.
Sun Jun 4 15:44:05 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added a wrapper to imlib2. I was getting some subtle bugs from
the singleton context (accidentally leaving context_antialias on,
not blending when I should be etc), and to fix them I was adding
lines and lines of context_set this, context_set that. I've
wrapped the imlib calls in an imlib1
lots-of-params-per-function-call stylee, and now it's much more
readable and harder to break.
* In the process, made big speedups by not antialiasing when I
needn't, or blending when I shouldn't etc. Also blew away a few
hundred lines of context-setting.
Fri Jun 2 22:58:50 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed pixmap resizing bug properly this time ;-)
Thu Jun 1 19:36:19 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Correct oversite in sizing pixmaps.
Wed May 24 20:21:14 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Massively speeded up image rendering and therefore zooming by
actually *thinking* about what I was doing and using a tiled
pixmap GC and XFillRectangle for drawing the background
checkerboard pattern. Much better. I'll clean it up a bit
next.
Wed May 24 00:09:12 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed bug with --no-progressive and window resizing. The
rendering and resizing code is a *mess* now, which I'll have to
fix tomorrow (lots of duplication and a complex codepath). But at
least it works properly right now :-)
Tue May 23 22:19:30 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Optimised event handling from nasty big switch() to a table of
pointers to functions.
Sun May 21 20:53:37 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* About.png contributed by Phil Morris (marmot)
<marmot@vennercs.com>
Sun May 21 10:01:39 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Gratituous eyecandy in the about box 'cos Boris asked nicely ;-)
Sat May 20 01:09:15 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Wired cam into the Makefile.am
Fri May 19 19:21:01 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* You can now use --action with list or customlists too. In these
modes, the action is run automatically for each file listed.
Thu May 18 21:34:03 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Quotes, escaped quotes and escaped spaces in config files work
as one would expect. I think. Don't they?
Thu May 18 20:43:16 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* \n now gets you a newline in a feh-interpreted string.
Thu May 18 20:26:54 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Changed how -l and -L work. -L is now --customlist, which takes
a string argument. The string is a feh-printf format specifier,
just like those used for action definitions. (Eg %f for filename,
%w for width etc). The format specifier is used to form the list
output for each file. Example usage:
feh -L "<img src=\"%f\" alt=\"feh\" width=\"%w\" height=\"%h\">" pr0n.png
Stuck a new theme in the example.fehrc config, and found how lame
my config parsing code is :-) Quotes and escaped quotes currently
*do not* work right. I'm fixing it now :-)
Tue May 16 17:51:40 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Ignore duplicate MotionNotify events
* Same for ConfigureNotify
* Saved some wasted cycles
Mon May 15 22:49:07 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hehe. Now I made a release I can break stuff again =P You can
resize the window again now, and it works okay, except zooming
isn't quite right when the window is bigger than the image right
now. I have to redo *all* that zooming code over the next week
or so 'cos it was shortsighted to start with :-(
Sun May 14 17:34:48 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* New "Image Info" submenu. It tells you stuff. About the
image. Hence the name.
Sun May 14 16:03:53 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Reorganised and tidied the headers somewhat. Various cleanups.
Sat May 13 20:53:12 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Add -N, --no-menus option for people who Just Want The Pr0n [tm]
Sat May 13 20:35:08 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now you can press 'r' to reload images too.
Sat May 13 20:24:18 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hide menu, *then* perform action. Otherwise hitting "reload" on
an http:// image over a slow connection keeps the mouse grab until
finished. Messy ;-)
Sat May 13 19:54:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Make the menus slightly prettier. I wish I had an artistic bone
somewhere in my body...
Sat May 13 18:04:58 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Use realpath() to cleanup paths before sticking them in a
filelist. Added --menu-font, -M so that you can use whatever font
you like for menus.
Sat May 13 00:11:06 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Menus. They need some work, but are mostly good.
* I owe many thanks to raster here, 'cos I pinched some functions
from efm to save time :-)
* Added --auto-zoom. Currently only works with --no-progressive, I
need to fix that soonish...
Tue May 9 22:04:37 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now --filelist is -f, relegating -font to -e. *shrug*.
Tue May 9 21:57:14 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now --theme is -t instead of -C (duh).
Tue May 9 21:35:34 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now --action is A, and --ignoreaspect is X.
Tue May 9 21:30:59 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now randomize is -z, which makes a little more sense.
Tue May 9 21:15:57 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Swapped -g and -c so that --collage gets the -c it fits, and
randomize gets -g. I need to rework all these short options,
they're a mess right now. Sorry if I break anyone's configs doing
this :-(
Tue May 9 21:09:15 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Removed -B, --booth, as it's just a combo of options now doable
in the config file. I stuck it in the example config instead...
Mon May 8 22:38:11 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Don't apply colormods to each whole image. First scale it to
thumbnail size, then apply the colormod to that.
Mon May 8 22:08:41 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Made --alpha actually do stuff. I finally grokked color
modifiers, and now they're fun ;-) Imlib2.h is really gonna need
some comments at some point though - I had proper trial-and-error
fun and games there for a while ;-)
Mon May 8 21:58:54 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* D'oh! if(foo & bar) isn't quite the same as if(foo &&
bar). Stupid cheap keyboards ;-)
Mon May 8 13:12:01 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fun with dmalloc
Mon May 8 13:10:12 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Ensure backgrounds of index and montage images are black by
default. Imlib2's behaviour changed in this respect at some point.
Sun May 7 18:42:57 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed breakage (and segfault) when preloading images in verbose
mode if any of the images are unloadable. Stupid typo.
Sun Apr 30 16:02:11 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -n, --reverse. Reverses the sort order.
Use this to invert the order of the filelist. Eg to sort in
reverse width order, use -nSwidth
Sun Apr 30 15:13:25 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* In slideshow and muliwindow modes, DELETE now removes the
current file from the filelist. CTRL+DELETE deletes the files from
the filesystem and removes it from the filelist.
Sun Apr 30 14:48:04 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Filelists can now be saved to and loaded from files, very much
like the playlists used by music players.
* Here's the details:
-e, --filelist FILE
This option is similar to the playlists used by music
software. If FILE exists, it will be read for a list
of files to load, in the order they appear. The for-
mat is a list of image filenames, absolute or rela-
tive to the current directory, one filename per line.
If FILE doesn't exist, it will be created from the
internal filelist at the end of a viewing session.
This is best used to store the results of complex
sorts (-Spixels for example) for later viewing. Any
changes to the internal filelist (such as deleting a
file or it being pruned for being unloadable) will be
saved to FILE when feh exits. You can add files to
filelists by specifying them on the commandline when
also specifying the list.
* I quite like this option. The reason I added was that I've been
testing some boundary conditions by recursing through complex
directory trees / sorting 10,000 images by pixel size etc, and
that can take a while. Now I can do it once, save the filelist,
and refer to that in future. You can of course use it to organise
and group pics too. ~/lists/britney.list, ~/lists/laetitia.list.
Hmmmmmm.
Sun Apr 30 02:40:01 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* PageUp/PageDown in slideshows will jump back/forward about
1/20th of the total number of files...
Sat Apr 29 21:42:45 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hrm. Actually wait for X to resize the window before rendering
the pixmap, or the resize sometimes gets delayed...
Sat Apr 29 04:52:20 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Heh. Sanely handle deleting the only/last image in the
slideshow.
Thu Apr 27 16:10:35 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* You can delete files using ctrl-del in multiwindow mode too now.
* Smoothing now occurs as soon as you stop zooming. This also
massively tidied the event loop and killed a couple of nasty
globals.
Thu Apr 27 14:39:44 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Spilt off the part of main_loop which loops for ever from the
part that responds to events. I now have a feh_main_iteration that
processes events and returns afterwards. This means I can process
events from outside the main loop. I'm gonna use this and the
new interruptable progressive loaders to do funky stuff soon ;-)
Thu Apr 27 03:29:33 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Progressive loading api change.
Tue Apr 25 01:41:52 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* I'm bored, and a little drunk, so I made it pass -pedantic, for
kicks.
Mon Apr 24 22:29:52 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Make sure nothing's cached.
Mon Apr 24 19:53:23 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Changed some of the debugging macros.
* Found and fixed wasted extra loops in option file parsing.
Mon Apr 24 16:48:15 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Feh is hereby rereleased under a less restrictive license. Much
as I want to propagate Free software, I don't want to be a Free
software Nazi. Do with it what you wish.
* Various fixups, tweaks, and readability improvements.
Mon Apr 24 04:47:44 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Finally got off my arse and made the text center under the
images in index mode.
Mon Apr 24 04:21:49 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Now that I have the config file, feh can safely be called
without any paramters, they can all be defined in the theme.
This leaves my:
if(argc < 2) show_usage();
looking pretty stupid.
Mon Apr 24 03:53:16 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added --fontpath, to allow an extra directory to be specified in
which to look for fonts. You can add this to /etc/fehrc or
~/.fehrc to make it permanent. Something like:
feh --fontpath /usr/share/ttfonts
Sat Apr 22 01:48:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* A slideshow delay of zero is now permitted. It means "go as fast
as you can". I like it ;-) You can pause with the middle mouse
button.
Wed Apr 19 19:42:45 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -g, --collage. Collage mode is like montage mode, except
the image thumbnails are distributed randomly. Run test26 for an
example.
Tue Apr 11 18:20:21 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Make included getopt actually work if needed :)
Sat Mar 25 17:42:43 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Event loop and zooming tweak.
Sat Mar 25 02:09:08 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay, well, seeing as feh isn't resize-friendly (it's just not
designed for it - use gimp for that stuff ;), I'm disabling
resizing of the window. Bite me :)
Fri Mar 24 19:22:51 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Muhahaha. Config file. It had to be done, there are so many
options now. This is totally optional of course, if you don't
create one, you'll never notice the difference. Here's how it
works...
* If ~/.fehrc exists, or if not, but /etc/fehrc exists, feh will
look in it for name/options pairs. An example entry would be:
imagemap -rVq --thumb-width 40 --thumb-height 30
* You can use the theme in two ways. Either
feh -C themename [images]
or you can create a symbolic link to feh with the name of the
options you want it to use. So from the example above:
ln -s `which feh` ~/bin/imagemap
Now I just run 'imagemap' to use those options.
A cooler example is
mkindex -iO index.jpg --title-font 20thcent/24 .
Notice the '.' at the end.
Now with a symlink I can create a mkindex command which will
create an index.jpg in the current directory. I just run:
$ mkindex.
* An example.fehrc is provided with a couple of cool examples.
Fri Mar 24 19:17:27 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Slightly increased the default index mode font size.
Fri Mar 24 16:59:28 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Modified index mode to only show the image name below each
thumbnail, and added -I, --fullindex mode to provide the other
info (size, dimensions). Squashed a bug where the index print was
always made 30 pixels too tall ;)
Thu Mar 23 22:45:15 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Feh will now read options from the environment variable
FEH_OPTIONS if it is set. These options will be loaded before
commandline ones, and so can be overidden. The syntax is the same
as the commandline, so multiples are allowed (eg "-Vq -Sname")
I would recommend export FEH_OPTIONS="-Vq" as being quite handy.
Wed Mar 22 22:52:53 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Well, it might be an idea to tell wget to ignore server-cached
data when reloading webcams :)
DOH!
Wed Mar 22 19:57:04 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Better man page. Examples of cool usage.
Wed Mar 22 18:17:11 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Man page! Whee!
Wed Mar 22 04:14:12 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added format specifiers for actions. %w width, %h height, %p
pixels, %s size, %t type (jpeg etc).
Wed Mar 22 03:50:24 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* User definable actions for slideshow and multiwindow modes. Use
-X or --action STRING to define an action. The action will be run
when the ENTER key is pressed. The action should be in the form of
a shell command, using %f to represent the image filename
(including path), and %n to refer to it's name. Example:
feh -X "mv %f ~/images/%n"
Use this to go through some images and pick out the good ones :)
More format specifiers will follow...
Wed Mar 22 02:55:37 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay. I found a naughty bug of mine. If the last image of a
montage/index was not loadable - core was dumped. Nice bug. Fun to
find =) I blame redhat.
Tue Mar 21 15:45:02 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Major cruft removal and tidying of code path. Progressive
loading code slightly less complex now.
Tue Mar 21 15:18:08 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Big optimisation for progressive loading in fullscreen mode. I
was recreating the pixmap at every iteration - damnit ;)
Mon Mar 20 21:54:22 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Dammit. Why do I find these things *after* a release?
Mon Mar 20 19:24:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Released 0.7.0
Sun Mar 19 20:55:57 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Main event loop tidy up.
Sat Mar 18 21:59:55 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added a coupla more tests...
Sat Mar 18 21:56:08 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed stupid segfault using --list when there are no loadable
images.
Sat Mar 18 14:06:08 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* --list tidy up.
Sat Mar 18 02:56:03 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* More --verbose twiddles.
Sat Mar 18 02:18:39 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Made the --verbose output more useful, and prettier ;)
Sat Mar 18 00:37:17 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Made the -V, --verbose option give cooler output on loading
mulitple images. It's pretty flim now.
Sat Mar 18 00:32:42 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -U, --loadables, and -u, --unloadables. They don't show
images, just list all the files from the filelist that are
loadable or unloadable, respectively.
Fri Mar 17 22:58:14 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Don't need to create checkerboard for list mode, montage mode,
index mode, etc...
Fri Mar 17 22:43:27 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* We don't need to allocate space for the file info unless we
intend to use it. Saves RAM on big file lists...
Fri Mar 17 22:18:50 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Big changes. I am tired ;)
* You can now sort the filelist in any mode.
* Sorting by name/filename is *fast*
* Sorting by image properties such as width, height, type etc
incurs a delay at startup while the images are preloaded. This
could get big for large lists of files.
* Added a -p, --preload option to force preloading before running
a slideshow. This weeds out images that imlib2 can't load so that
the initial number of slides is accurate. Normally, the bad/non
images are weeded out as you go, causing the number of slides to
update as things go. Preload is great for montage and index modes,
as it ensures the correctly sized space is allocated for the
images/thumbnails/whatever.
Fri Mar 17 19:22:18 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* List modes can now sort by image info using -S, --sort. Allowed
sort modes are width, height, pixels, size, format, name,
filename. Default sort mode is none (ie order specified/read).
* eg. feh -lSpixels * to see the highest resolution images...
Fri Mar 17 18:04:03 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -L, --longlist to allow for more detailed listings. Lists
are sorted by filename now too. (Until I write more sorting
options...)
Thu Mar 16 19:47:16 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Slightly cleaner --list stuff...
Thu Mar 16 17:46:39 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -l, --list mode. Doesn't display images, just analyses
them a little and spits out an 'ls' style listing with some basic
info. Useful in scripts. I intend to extend this somewhat soon.
Thu Mar 16 16:40:19 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -q, --quiet option. Stops non-fatal image load errors
being reported. Useful when you want to do feh * on a directory
with some images, some other stuff. You'll only see what imlib2
can load.
Wed Mar 15 21:32:48 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed bug using the short versions of --limit-width and
--limit-height
Wed Mar 15 21:17:26 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Better still. Font size increases in fullscreen mode, but -d
works in windowed modes too now.
Wed Mar 15 20:58:50 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hrm. Much better.
Wed Mar 15 20:36:54 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -d, --draw_filename for use with fullscreen mode. It
sticks the filename up in the top left. Needs some more work yet.
Sat Mar 11 23:35:20 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added proper commandline option parsing courtesy of getopt_long
:) Obviously not everyone has this, so I include it myself. Now
you can combine args in nice ways: "feh -kR20 http://some.webcam"
* It passes "make test" okay, but I reserve the right to have
broken something =) Let me know?
Sat Mar 11 01:34:36 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* 0.6.4 released
Tue Mar 7 23:07:40 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed evil segv due to uninitialised gc.
Sat Mar 4 16:33:29 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* --help output for the new options.
* Added --booth, with is a shortcut for a fullscreen slideshow
with an auto-change every 20 seconds...
Sat Mar 4 15:59:44 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Bah. Disabled zooming in fullscreen mode for now. I'll do the
math and fix it later.
* I think I'm gonna have to rewrite shedloads of it to support
window resizing etc...
Sat Mar 4 14:46:42 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed progressive loading in fullscreen mode. Those callbacks
*are* on crack, but for them to make sense would be a big rewrite
I don't have time for now =)
* Unfortunately, zooming in fullscreen mode is broken, I'm looking
at this now. Also, I get a weird segv when I do "feh -F directory"
but not when I do "feh -F file" or "feh -F file1 file2", and not
when I do "feh directory" or "feh -b directory" etc. I'm trying to
work this out, but the fullscreen thing should be independent of
the filelist thing...
Fri Mar 3 22:44:25 PST 2000 Michael Jennings <mej@eterm.org>
* Added two new options. --randomize will take the file list and
rearrange it into a random order. --full-screen or -F will create
a screen-sized borderless window (akin to a screensaver) and will
center the image within it. NOTE: At this point, full screen mode
only works if you disable the progressive callback. I'm waaaay too
tired right now to try to make sense out of gilbertt's callback
logic. :-) I'll try to fix it this weekend if he doesn't beat me
to it.
Wed Mar 1 15:13:04 PST 2000 Michael Jennings <mej@eterm.org>
* Math lib
Sun Feb 20 15:22:00 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Remove some crufty duplication.
Sat Feb 19 17:11:49 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Reduced mem usage, tuned file handling. Tidied up.
Sat Feb 19 00:55:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added -b, --borderless option. Can you guess what it does?
Fri Feb 18 23:51:14 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Well, if I wasn't so dumb, I'd have realised that my last
comment only holds true for depths > 4000 or so. I don't have that
here. So, s/massive/fscking enormous/g.
* Fixed the *actual* problem, which was, of course, that I forgot
to close my damn dirents.
* Pull out the cl00bats, for I have goofed.
Fri Feb 18 23:33:54 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay, okay. I suck. There is a mild problem I have to fix when
running recursively on *massive* hierarchy's. Basically, I run out
of file descriptors :( At least it now aborts when this happens, but
I need to fix this.
Fri Feb 18 21:13:32 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* configure.in: less stupid
Fri Feb 18 20:51:53 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* index.c: misc tidyups
Fri Feb 18 20:41:02 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Misc fixes and cleanups.
Fri Feb 18 16:34:49 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Stupid, stupid, stupid. I am stupid.
Thu Feb 17 23:14:09 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Ooh. Cool. Now slideshow/deletion numbering works more sanely -
thanks to the new filelist code.
Thu Feb 17 23:13:22 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hehe. That was more dumb than usual. Deleting files somewhat
destroyed the list, and caused nice segfaults.
Thu Feb 17 22:05:40 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* More file-list fixes.
Thu Feb 17 21:55:53 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Note to self: if you prepend everything to a list, the resultant
list will be in reverse. You'll be needing to fix that =)
Thu Feb 17 21:35:15 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Thank goodness for that :) I totally reworked the file handling
code, and things are cleaner internally now. The change shouldn't
show to a user, but for me, things are better.
* I broke stuff badly with this change, and only now have I got
everything back on track. There may be issues still, but it seems
good now, and I'll keep playing with it...
Wed Feb 9 21:59:09 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Removed all the image modification code from feh, seeing as
dphase is working on ee2. No point duplicating everything :)
* I figure feh can view pr0n, while ee2 modifies it :) Something
like that, anyway.
* I never wanted the modification stuff in here really, it was
just feature creep. Feh is a viewer and montager. That is all :)
Tue Jan 11 21:11:11 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hrm. Just so you know what order they come in, the images are
now saved in /tmp (actually whatever tempdir is set up on your
system) in the format "number"_"unique bit"_"original filename"
Tue Jan 11 20:52:19 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay. The cached images are now deleted. The filenames are no
longer crap. ("Unique prefix"_feh_"original filename")
* New option -k, --keep-http, tell feh *not* to delete the files,
so that you can later claim them from /tmp. Saves you
downloading them again if you like them.
* A happy side effect of this is that if you use -k and -R to keep
http and reload, and point the thing at a webcam, you'll capture
each frame and save it as a separate image.
* I *can't* imagine why anyone would *want* that, but I thought
I'd pass it on ;-)
Tue Jan 11 19:51:40 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Caching of images loaded via http. When in slideshow mode, and
the --reload option is not specified, a file loaded by http will
be stored in /tmp to avoid reloading from the web it every time
you loop through the slideshow or whatever.
* The --reload option disables caching
* Right now, the cached images are left in temp with crap
filenames. I'm gonna fix it up so that they are normally deleted
on program exit, but there will be an option to save them to the
current directory. (So you still have the images after viewing
them).
Tue Jan 11 19:07:07 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* New option, -R, --reload. Lets you specify a time in seconds,
feh will reload the image for you after this time. This works for
normal files and urls. The image will not be cached, so it is
ideal for viewing webcam images etc.
Mon Jan 10 22:48:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Whee. Now feh can load images from urls.
* Specify an image starting with http:// and feh will use wget to
load the image, store it in a temporary file and view it.
* You must have wget installed for this to work.
* I have some optimisations to add, the image is currently not
cached, so if you have http files in a slideshow, they will reload
each time you get to them ;) I'll do this soon.
Sat Jan 8 18:44:05 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Finally got around to adding timers to feh. Now there is a new
option, -D, or --slideshow-delay NUM. NUM is the time in seconds
between changing slides for you. There is a new test to
demonstrate this option.
* The timer will pause while you zoom, and will be reset if you
change slides yourself.
* The timers code is loosely based on raster's epplet timer
code, 'cos its cool. No need to re-invent the wheel ;)
Mon Jan 3 18:29:46 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay. feh is now capable of some minor touch-ups. Nothing major,
and no image saving yet, but it tests the selection and
modification code.
* We're not writing a full-blown editor here... The idea is to
browse through your images, select one, make minor changes if you
want, then set it as your desktop background.
* To test, toggle the various modes and use the left mouse button
to use 'em.
* 'c' - crop image to rectangle
* 'o' - increase contrast of rectangle
* 'b' - increase brightness of rectangle
* 'g' - increase gamma of rectangle
* 'Escape' - exit modification mode.
* I'll leave the rest of the modification stuff to Andrew ;-) I
guess maybe we should have some persistant rectangle selections,
but I don't want to go too far.
Sat Jan 1 22:25:49 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* I prefer LineOnOffDash drawing more for selections :)
Sat Jan 1 22:12:37 2000 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* I'm alive!!! Somewhat hungover though ;)
* So, some changes to the rectangle selection code, some by
Andrew, some by me :) Again, press 'r' to test it.
Sun Dec 26 22:57:53 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Take the gc creation out of the loop, as much as poss.
* Is xmas over now?
* Am I still drunk?
Fri Dec 24 13:22:19 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* I've switched to using XFindContext et al to associate X Windows
with internal structures. Much faster than my rubbish list
searching.
* Dammit. Why don't people tell me you can *do* stuff like this ;)
Fri Dec 24 01:01:49 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* And now we can crop :) Thanks Andrew.
Thu Dec 23 20:45:39 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* We can now draw selection rectangles on windows using XORed
lines. This rules. Once the editing functions and menus are in
place, we'll use them to do stuff :)
* For now, press r to toggle line drawing, so you can see it for
yourself. Click and drag lmb to see.
Wed Dec 22 23:37:27 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* More stuff from Andrew (hoss), we're starting to add stuff for
drawing rectangles, applying mods to rectangles, setting
backgrounds (under any wm) and other stuff like that.
Wed Dec 22 21:49:10 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Memory usage down by ONE THIRD :)
* I finally did the checkerboard bg thing the Right Way, and saved
lots of wasted RAM. Hooray.
Wed Dec 22 20:47:11 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* And now index mode has a go at recommending the image size for
you, if you specify one too small.
Wed Dec 22 18:23:42 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hehe. Found it. Little bugger. *squish*
Wed Dec 22 18:12:43 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* More modify.c submissions from Andrew, including the start of
some very funky background setting and image scaling ::)
* A total rewrite of the index generating code to take into
account the font size and string length. The old version was
pretty unflim, so its nice to clean it up a bit. However, the niew
code still has a couple of issues, which I am looking into.
Wed Dec 22 13:21:12 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay, index mode now kinda takes into account the height of the
font you use. Width is on its way, but is more tricky.
Wed Dec 22 02:17:01 1999 Michael Jennings <mej@eterm.org>
* Removed a warning, and added "make testclean"
Tue Dec 21 23:28:20 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* More modify.c submissions from Andrew, and some initial menu
work. The menus are not compiled in right now, and would core if I
did, so don't touch 'em for now :) They are only 5 mins work atm.
* I have #ifdef'ed out the code which uses X86VidMode extensions
until I can find out how common it is not to have them :)
Tue Dec 21 18:40:39 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* The winwidget_rerender_image() function now checks for changed
dimensions and acts accordingly, and the rotate() function now
updates the width and height attributes. The modify.c functions
are now available for testing using 1-9, 0, -, = key presses.
Tue Dec 21 18:01:15 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Encorporated modify.c, contributed by Andrew Glover
<aglover@axe.net>. These functions wrap imlib2 modification
functions, and will be handy when I make some menus :) We'll be
able to do scaling, tiling, color modifiers, and more.
Tue Dec 21 03:28:30 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* And now the thing won't go mad when you hold down a change-slide
button in Slideshow mode... Before it stored *all* the KeyPresses
and responded to *all* of them. Hehe. It was fun watching it go
round though :)
Mon Dec 20 17:35:25 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hehe. Ooops. I only need to blend on zoom if the image *has* an
alpha channel. Hehe. Ok, now zooming is *much* faster and
smoother, and I am slightly less of an idiot.
Mon Dec 20 16:46:58 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay, I'm still a newbie at this X stuff :) Made some
optimisations to the main loop which speed things up a
bunch.
* Added better error handling when loading images.
* The Q or q key can now be used to exit the app in any mode.
Mon Dec 20 15:22:43 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added some utility functions, so I don't have to write
if((s=malloc(blah))==NULL){fprintf("oops\n");exit(2);}
15 million times. It really bugs me ;-)
Mon Dec 20 12:53:28 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Hehe. I like slideshow mode so much its now the default :)
Having multiple images pop up one-per-window can be quite evil, so
Slideshow mode is prefered. To open multiple images
one-per-window, you now need to specify -w or -multiwindow.
* I also fixed a couple of things, lowered slideshow overhead,
tightened up the main loop somewhat, and a coupla things really
late last night which I can't remember ;-)
Sun Dec 19 22:06:43 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* For packaging reasons, I have changed the scripts to run feh in
the current dir, if it is there, but to fall back on the installed
copy.
Sun Dec 19 20:29:33 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Added a .spec file for feh. Contributed by Alistair Sutton
<metallica@freenet.co.uk>, (who is obviously a metallica fan ;),
and has written specs for me before ::) Thanks dude :)
* Urm. I haven't actually tested this yet :)
Sun Dec 19 18:55:39 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Slideshow mode now has keyboard control ::)
Mouse button 1 still changes slides, but you now have:
p, P, <BACKSPACE>, <LEFT> Goto previous slide
n, N, <SPACE>, <RIGHT> Goto next slide
<HOME> Goto first slide
<END> Goto last slide
<DELETE> Delete the file currently being viewed
q, Q Quit the slideshow
More to come.
Sun Dec 19 15:43:07 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Big performance improvements in the main loop. Squashed another
couple of bugs, and made things real stable. Tightened up the
tests somewhat, and split the source up more clearly.
Sun Dec 19 02:58:35 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Fixed a number of bugs introduced by the new progressive loading
and zooming code ::)
Sat Dec 18 22:11:02 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Whee. Progressive loading works :) It can be disabled with -P,
--noprogressive, if you don't want it. Can't think why though. It
rocks. Thanks again go to Raster. Progressive loading callbacks
*rule*.
Sat Dec 18 18:15:18 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* The fonts are now installed, and loaded from the installation
directory.
Sat Dec 18 15:45:39 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Okay then, there is now a checkerboard background when
zooming out. There is a more memory efficent way of doing this,
but I'll do that later...
Sat Dec 18 14:31:58 1999 Tom Gilbert <gilbertt@linuxbrit.co.uk>
* Wheeeee! Thanks to Raster's example code, we now have zooming
Raster, you are my hero :)
So, middle-mouse button and drag -> zoom.
There are some things to tidy up (eg adding a background when