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
* Add lintian overrides for missing upstream changelog.
* Merge changes from 313.30-2.
* Upload to unstable.
-- Andreas Beckmann <anbe@debian.org> Mon, 21 Oct 2013 11:54:36 +0200
nvidia-settings (319.32-1) experimental; urgency=low
* New upstream release 319.32.
- Updated the nvidia-settings control panel to report more detailed
clocking information.
- Fixed a bug that could cause nvidia-settings to crash when switching
VTs after changing some settings.
- Added a "Prefer Consistent Performance" PowerMizer Mode to the
nvidia-settings control panel, available on Quadro boards that
support this feature.
* New upstream release 319.23.
- Fixed a bug that prevented some drop-down menus in nvidia-settings
from working correctly when using older versions of GTK+.
* Refresh patch 08_fix_format-security.
* Drop patch 06_fix_typos, fixed upstream.
-- Andreas Beckmann <anbe@debian.org> Fri, 05 Jul 2013 13:42:15 +0200
nvidia-settings (319.17-1) experimental; urgency=low
* New upstream release 319.17. (Closes: #708570)
- Updated nvidia-settings to preserve the relative positioning of displays
when changing from a layout where multiple displays are on the same X
screen to one where the same displays span multiple X screens.
- Fixed nvidia-settings to dlopen(3) "libvdpau.so.1", rather than
"libvdpau.so".
* New upstream release 319.12.
- Added an Underscan feature in the nvidia-settings X Server
Display Configuration page which allows the configuration of an
underscan border around the ViewPortOut. This feature was
formerly known as Overscan Compensation.
- Updated the nvidia-settings command line interface to accept display
device names, as well as optional target qualifiers, e.g.
nvidia-settings -q [DVI-I-0]/RefreshRate
nvidia-settings -q [GPU-1.DVI_I-1]/RefreshRate
- Updated the nvidia-settings command line interface to no longer assume
the "X screen 0" target, when no target is specified in query and assign
operations. Instead, all valid targets of the attribute are processed.
- Added a VDPAU page to the nvidia-settings control panel, to display
information about the decoding capabilities of VDPAU-capable GPUs.
* Refresh/update patches 06_fix_typos, 07_fix_hyphenation,
10_libxnvctrl_so_0.
* New patch 08_fix_format-security: Fix -Werror=format-security errors.
* Add Build-Depends: libvdpau-dev.
-- Andreas Beckmann <anbe@debian.org> Fri, 24 May 2013 12:41:59 +0200
nvidia-settings (313.30-2) unstable; urgency=low
* Merge changes from 310.51-1.
* Upload to unstable.
-- Andreas Beckmann <anbe@debian.org> Sat, 19 Oct 2013 23:21:13 +0200
nvidia-settings (313.30-1) experimental; urgency=low
* New upstream release 313.30.
* Bump Breaks: nvidia-alternative (<< 313.30-2) against old incompatible
experimental versions.
-- Andreas Beckmann <anbe@debian.org> Mon, 13 May 2013 17:12:44 +0200
nvidia-settings (313.18-1) experimental; urgency=low
* New upstream release 313.18.
- Added support in NV-CONTROL and in nvidia-settings for changing the
Double Precision performance boost mode on supported GPUs.
- Fixed a bug in nvidia-settings that allowed unavailable features to
be selected in some drop-down menus.
* Update symbols control files.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 16 Jan 2013 21:44:29 +0100
nvidia-settings (310.51-1) unstable; urgency=low
* New upstream release 310.51.
- Augmented the resolution drop-down in the display configuration
page of nvidia-settings with "implicit resolutions": for common
resolutions, if a mode with that resolution is not available for
a display device, that resolution will be simulated through
MetaMode ViewPort scaling.
* New upstream release 310.32.
- Fixed a bug that sometimes prevented rotation controls in the nvidia-
settings control panel from working after changing resolutions.
- Fixed a bug in nvidia-settings that could cause the wrong
resolution to be set in basic mode for setups based on one
display per X screen.
* Add Build-Conflicts: libxnvctrl-dev, to avoid accidently building the
legacy packages against the shared library.
* Merge changes from 304.108-2.
* Upload to unstable.
-- Andreas Beckmann <anbe@debian.org> Fri, 18 Oct 2013 21:57:22 +0200
nvidia-settings (310.19-1) experimental; urgency=low
* New upstream release 310.19.
- Added support for configuring stereo in nvidia-settings when stereo is
enabled in the X configuration file.
- Added support for configuring the ViewPortIn and ViewPortOut for display
devices in nvidia-settings.
- Fixed MetaMode bookkeeping when modifying the display configuration in
the "X Server Display Configuration" page of nvidia-settings.
- Added support for configuring rotation and reflection per display device
in nvidia-settings.
* New upstream beta 310.14.
* Upload to experimental.
-- Andreas Beckmann <debian@abeckmann.de> Fri, 23 Nov 2012 19:00:48 +0100
nvidia-settings (304.108-2) unstable; urgency=low
* More generic "nvidia-alternative" substitution.
-- Andreas Beckmann <anbe@debian.org> Sat, 14 Sep 2013 19:43:45 +0200
nvidia-settings (304.108-1) unstable; urgency=low
* New upstream release 304.108.
- Fixed a bug in nvidia-settings that could cause the wrong
resolution to be set in basic mode for setups based on one
display per X screen.
-- Andreas Beckmann <anbe@debian.org> Sun, 18 Aug 2013 20:32:16 +0200
nvidia-settings (304.88-2) unstable; urgency=low
* 13_clean.diff: New. Recurse into libXNVCtrl during clean.
* Fix building twice in a row.
* 14_install_docs.diff: New. Fix permissions of installed manpage.
* Use canonical Vcs-* URLs.
* Bump Standards-Version to 3.9.4. No changes needed.
* Renumber patches to avoid numbering conflicts with -legacy-*.
* Add support for "legacy" substitution like in nvidia-graphics-drivers.
* Add support for renaming control files for legacy use.
* Add support for generating legacy-aware watch files.
* Make nvidia-settings and nvidia-settings-legacy-* co-installable.
- Install everything to /usr/lib/nvidia/current.
- nvidia-alternative manages the alternative symlinks.
(Closes: #688749)
-- Andreas Beckmann <anbe@debian.org> Mon, 13 May 2013 00:36:04 +0200
nvidia-settings (304.88-1) unstable; urgency=low
* New upstream release 304.88.
* Update menu title. Thanks Gaudenz Steinlin. (Closes: #688746)
-- Andreas Beckmann <anbe@debian.org> Wed, 03 Apr 2013 10:55:54 +0200
nvidia-settings (304.84-1) unstable; urgency=low
* New upstream release 304.84.
* Update my email address and drop DMUA.
-- Andreas Beckmann <anbe@debian.org> Sun, 10 Mar 2013 16:00:54 +0100
nvidia-settings (304.64-1) unstable; urgency=low
* New upstream release 304.64.
- Fixed a bug that sometimes prevented the display device / X screen
selection menu from being displayed in nvidia-settings.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 07 Nov 2012 11:02:15 +0100
nvidia-settings (304.60-1) unstable; urgency=low
* New upstream release 304.60.
- Updated nvidia-settings to save and restore per-monitor color correction
settings when RandR 1.2 or later is available.
- Fixed a bug that caused too many display devices to appear in the X Screen
page of nvidia-settings when SLI is enabled.
- Fixed a bug in nvidia-settings that made it report the status of ECC
configuration incorrectly.
- Updated nvidia-settings to report Dedicated GPU Memory (i.e., the
memory dedicated exclusively to the GPU) and Total GPU Memory (i.e.,
Dedicated GPU Memory plus any TurboCache(TM)-accessible system memory)
separately on the GPU information page.
- Added reporting of the current utilization of Dedicated GPU Memory to
the GPU information page of nvidia-settings.
* New upstream release 304.51.
- Fixed a bug that sometimes caused the display layout area of the
nvidia-settings control panel to be laid out incorrectly.
-- Andreas Beckmann <debian@abeckmann.de> Fri, 26 Oct 2012 10:09:56 +0200
nvidia-settings (304.48-1) unstable; urgency=low
* New upstream release.
- Fixed a bug that prevented the "Reset Hardware Defaults" button in
the Display Settings page of nvidia-settings from being activated.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 12 Sep 2012 12:56:39 +0200
nvidia-settings (304.43-1) unstable; urgency=low
* New upstream release.
- Fixed a bug that caused gnome-settings-daemon to revert display
configuration changes made by nvidia-settings.
- Updated nvidia-settings to use RandR per-CRTC gamma control, when
available. When controlling an X server with support for RandR 1.2,
nvidia-settings will display the color correction widget as a tab
within each display device page, instead of a per-X screen color
correction page.
- Added the ability to select and move X screens in the "X Server Display
Configuration" page of nvidia-settings via Ctrl-(Left)Click + Drag
-- Andreas Beckmann <debian@abeckmann.de> Mon, 10 Sep 2012 02:57:11 +0200
nvidia-settings (304.37-1) unstable; urgency=low
* New upstream release.
* Add Breaks: xserver-xorg-video-nvidia (<< 302). (Closes: #681182)
* Add Conflicts: xserver-xorg-video-nvidia-legacy-173xx. (Closes: #685049)
* Note: Use nvidia-settings-legacy-173xx for the legacy driver.
-- Andreas Beckmann <debian@abeckmann.de> Tue, 14 Aug 2012 10:27:39 +0200
nvidia-settings (302.17-2) unstable; urgency=low
* debian/rules: Really use the hardened CPPFLAGS.
* Support building with DEB_BUILD_OPTIONS=noopt.
* Enable verbose build by default.
-- Andreas Beckmann <debian@abeckmann.de> Sat, 30 Jun 2012 19:33:08 +0200
nvidia-settings (302.17-1) unstable; urgency=low
* New upstream release.
- Fixed a bug that caused the link configuration of DisplayPort devices to
be reported incorrectly in nvidia-settings. [302.11]
* Upload to unstable.
* Switch to debhelper 9 to get the hardening build flags.
* 10_libxnvctrl_so_0.diff, debian/rules: Use the hardened CPPFLAGS/LDFLAGS.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 27 Jun 2012 09:18:18 +0200
nvidia-settings (302.07-1) experimental; urgency=low
* New upstream release.
- Added a "CurrentMetaMode" attribute to the nvidia-settings command
line, to query and set the current MetaMode.
As an example, these two commands are equivalent:
xrandr --output DVI-I-2 --mode 1280x1024 --pos 0x0 \
--output DVI-I-3 --mode 1920x1200 --pos 1280x0
nvidia-settings --assign CurrentMetaMode=\
"DVI-I-2: 1280x1024 +0+0, DVI-I-3: 1920x1200 +1280+0"
- Removed overscan compensation configurability from NV-CONTROL and
nvidia-settings. This can be configured, with finer granularity,
through the ViewPortIn and ViewPortOut MetaMode attributes.
See "Configuring Multiple Display Devices on One X Screen" in the
README for details.
- Removed Flat Panel Scaling configurability in nvidia-settings.
Any desired scaling can be configured through the new "ViewPortIn"
and "ViewPortOut" MetaMode attributes.
- Expose the following additional FSAA modes via NV-CONTROL,
nvidia-settings, and through X visuals and GLXFBConfigs:
16X multisample FSAA on all GeForce GPUs
Coverage sample FSAA on G80 and above GeForce GPUs
32X multisample FSAA on G80 and above Quadro GPUs
64X multisample FSAA on Fermi and above Quadro GPUs
- Added a new, higher resolution icon for nvidia-settings.
- Added a checkbox to nvidia-settings to control the texture clamping
attribute. When the box is checked, OpenGL textures are clamped
according to the OpenGL specification. When it is unchecked, GL_CLAMP
is remapped to GL_CLAMP_TO_EDGE for borderless 2D textures.
- Removed the "Display" and "X Screen" tabs from the "X Server Display
Configuration Page" of nvidia-settings, and added a new "Selection"
dropdown menu for selecting X screens or display devices. This
makes it easier to select X screens/Displays that are hidden.
* Upload to experimental.
* Drop patches 00_destdir, 03_build_xnvctrl_with_fpic: fixed upstream.
* Refresh patches 04_link_as-needed, 06_fix_typos, 07_fix_hyphenation,
10_libxnvctrl_so_0 and adjust for buld system changes.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 09 May 2012 13:09:16 +0200
nvidia-settings (295.49-1) unstable; urgency=low
* New upstream release.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 09 May 2012 11:58:10 +0200
nvidia-settings (295.33-2) unstable; urgency=low
* Add 10_libxnvctrl_so_0.diff: build libXNVCtrl.so.0 shared library.
* Add libnvctrl0 package. (Closes: #666909)
-- Andreas Beckmann <debian@abeckmann.de> Fri, 13 Apr 2012 08:10:30 +0200
nvidia-settings (295.33-1) unstable; urgency=low
* New upstream release.
* Update Standards-Version to 3.9.3, no changes needed.
* Use the final copyright-format/1.0 URL.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 04 Apr 2012 14:35:52 +0200
nvidia-settings (295.20-1) unstable; urgency=low
* New upstream release.
- Split the DFP configuration page in nvidia-settings into multiple
tabs, allowing the controls to be displayed on smaller screens.
* Switch debian/copyright to DEP-5 format and add more license statements
found in the source.
-- Andreas Beckmann <debian@abeckmann.de> Wed, 15 Feb 2012 21:16:29 +0100
nvidia-settings (290.10-1) unstable; urgency=low
* New upstream release. (Closes: #639009)
* Add pkg-config to Build-Depends and Depends. Thanks Mackenzie Morgan!
-- Andreas Beckmann <debian@abeckmann.de> Wed, 23 Nov 2011 13:12:07 +0100
nvidia-settings (280.13-1) unstable; urgency=low
* New upstream release.
* Remove nvidia-common dependency from libnvctrl-dev. (Closes: #636821)
-- Andreas Beckmann <debian@abeckmann.de> Sat, 06 Aug 2011 12:20:34 +0200
nvidia-settings (275.21-1) unstable; urgency=low
* New upstream release.
- Fixed a bug that caused nvidia-settings to crash when configuring
multiple X screens after all monitors were unplugged from one of
the X screens.
- Fixed a bug in nvidia-settings that caused the display configuration
page to show extra disabled displays after connecting a new monitor.
* Recommend libgl1-nvidia-glx-any (for libGL.so.1).
-- Andreas Beckmann <debian@abeckmann.de> Sat, 23 Jul 2011 12:28:54 +0200
nvidia-settings (275.09.07-1) unstable; urgency=low
[ Andreas Beckmann ]
* New upstream release.
- Fixed a bug that caused nvidia-settings to crash while saving the X
configuration file on some Linux distributions. [275.09]
* Drop dependency on nvidia-common in favor of nvidia-installer-cleanup.
[ Russ Allbery ]
* Add DM-Upload-Allowed: yes.
-- Russ Allbery <rra@debian.org> Thu, 16 Jun 2011 07:27:48 -0700
nvidia-settings (270.41.06-1) unstable; urgency=low
[ Andreas Beckmann ]
* new upstream release (closes: #587691)
- Added support for configuring the dithering depth used when driving
a flat panel with a GeForce 8 family or Quadro 4600/5600 or
newer GPU. See the "Dithering Controls" in the Flat Panel page
in nvidia-settings. [260.19.06]
- Added GPU "Processor Clock" reporting to the nvidia-settings PowerMizer
page. [260.19.04]
- Added support for configuring the dithering mode used when driving
a flat panel with a GeForce 8 family or Quadro 4600/5600 or
newer GPU. See the "Dithering Controls" in the Flat Panel page
in nvidia-settings. [260.19.04]
- Added ColorSpace and ColorRange features for HDMI. These give
the ability to output YUV over HDMI and select full/reduced
color range on RGB over HDMI. ColorSpace and ColorRange
are X Configuration options and can be changed dynamically
through nvidia-settings. [260.19.04]
- Fixed a regression in 256.29 where Performance Level clock
frequencies were reported incorrectly in nvidia-settings. [256.35]
- Fixed a bug that caused nvidia-settings to crash when rendering
its thermal gauge widget if the range of valid values for the thermal
sensor was empty. [256.35]
- Improved Thermal Settings reporting in nvidia-settings to
accurately reflect hardware configurations with multiple thermal
sensors. [256.25]
* update patches:
- 00_destdir.diff: redo for new upstream build system
- 02_fix_manpage_type.diff: remove, fixed upstream
- 03_build_xnvctrl_with_fpic.diff: redo for new upstream build system
- 04_add_missing_linked_library.diff: remove, obsolete
* adjust paths, upstream now uses an objdir during build
* debian/changelog: add missing history: 1.0+20060516-2, 1.0+20060516-3
* update to Standards-Version: 3.9.2 (no changes needed)
* update to debhelper 8
* add Vcs-* URLs
* add watch file
* simplify debian/rules
* new package libxnvctrl-dev for the NV-CONTROL X extension
* fix installation of examples (closes: #280602)
* add 04_link_as-needed.diff to link with -Wl,--as-needed
* add 05_nostrip.diff to let dh_strip do the stripping
* add 06_fix_typos.diff to correct some misspellings noticed by lintian
* add 07_fix_hyphenation.diff to fix hyphen-used-as-minus-sign misuse
* drop debian/nvidia-settings.png.uue in favor of doc/nvidia-settings.png
* add 08_nvidia-settings.desktop.diff to substitute placeholders and drop
debian/nvidia-settings.desktop in favor of doc/nvidia-settings.desktop
* add 09_do_not_exit_on_no_scanout.diff from Ubuntu, rediff,
restores support for legacy drivers (96xx, 173xx) (closes: #605490)
* add Pre-Depends: nvidia-installer-cleanup | nvidia-common
[ Russ Allbery ]
* Add myself and Andreas Beckmann to Uploaders, remove Randall Donald.
-- Russ Allbery <rra@debian.org> Sun, 15 May 2011 17:38:35 -0700
nvidia-settings (195.36.24-1) unstable; urgency=low
* New upstream release.
* Remove 05_remove_X_XF86VidModeGetGammaRampSize_checks.diff - stolen
upstream
* Add myself to Uploaders field.
-- Fathi Boudra <fabo@debian.org> Tue, 18 May 2010 10:49:55 +0300
nvidia-settings (190.53-1) unstable; urgency=low
* New upstream release (closes: #564792)
[ Fathi Boudra ]
* Ship nv-control-dpy binary with nvidia-settings package
(closes: #564654)
* Add 05_remove_X_XF86VidModeGetGammaRampSize_checks.diff:
The protocol defines were moved to a different header in recent versions of
the XF86VidMode protocol packages, which breaks the build.
* Update debian/control:
- Bump debhelper version to 7.4.13
- Bump Standards-Version from 3.8.3 to 3.8.4 (no changes needed)
* Update debian/copyright: add myself to packaging copyright
* Update debian/nvidia-settings.install: add nvidia-control-dpy
* Update debian/rules:
- Enable parallel build (pass --parallel option to dh)
- Build samples to ship nv-control-dpy binary
- Add override_dh_installexamples to avoid built samples binaries install
-- Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org> Wed, 17 Feb 2010 10:27:28 +0100
nvidia-settings (190.42-1) unstable; urgency=low
* New upstream release (closes: #561143)
[ Fathi Boudra ]
* Switch to dpkg-source 3.0 (quilt) format
- Remove quilt build dependency
- Remove debian/README.source file
- Remove quilt option to dh
* Document patches with DEP-3
* Add 04_add_missing_linked_library.diff to fix FTBFS with binutils-gold
(closes: #556755)
-- Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org> Wed, 06 Jan 2010 11:09:53 +0100
nvidia-settings (185.18.31-1) unstable; urgency=low
* New upstream release
[ Fathi Boudra ]
* Update debian/control:
- Bump Standards-Version from 3.8.2 to 3.8.3
* Add debian/README.source file
-- Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org> Sat, 22 Aug 2009 09:18:50 +0200
nvidia-settings (185.18.14-2) unstable; urgency=low
[ Fathi Boudra ]
* Clean XF86Config-parser directory (closes: 494456)
* Fix some glitches on the desktop file
-- Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org> Mon, 27 Jul 2009 09:29:21 +0200
nvidia-settings (185.18.14-1) unstable; urgency=low
* New upstream release
[ Fathi Boudra ]
* Add patches:
- 00_destdir.diff
Define DESTDIR, ROOT and X11R6_LIB_DIR variables in the Makefile
- 01_allow_dark_themes.diff
Allow nvidia-settings to work with dark backgrounds - Merged from Ubuntu
- 02_fix_manpage_type.diff
Fix typo in nvidia-settings manpage (closes: #409589)
- 03_build_xnvctrl_with_fpic.diff
Build xnvctrl with -fPIC (closes: #494526)
* Bump debian/compat from 4 to 7
* Update debian/control:
- Add quilt build dependency
- Remove xutils build dependency
- Replace xlibmesa-gl-dev by libgl1-mesa-dev build dependency
- Bump debhelper version from 4.0.0 to 7.2
- Bump Standards-Version from 3.6.2 to 3.8.2
- Remove nvidia-glx recommends
* Update debian/copyright: add some missing copyrights.
* Update debian/docs: nvidia-settings-user-guide.txt is removed from source
* Update debian/menu: update section to follow Debian menu policy 2.1
* Add debian/nvidia-settings.desktop and uuencoded nvidia-settings.png files
(closes: #317993)
* Add debian/nvidia-settings.install to install the desktop file and
NVCtrl related files
* Add debian/nvidia-settings.manpages file
* Rewrite debian/rules and use dh feature from debhelper >= 7.2
-- Debian NVIDIA Maintainers <pkg-nvidia-devel@lists.alioth.debian.org> Sat, 25 Jul 2009 13:16:52 +0200
nvidia-settings (180.22-1) unstable; urgency=low
* New upstream release
-- Randall Donald <rdonald@debian.org> Sat, 10 Jan 2009 21:42:18 -0800
nvidia-settings (173.14.09-1) unstable; urgency=low
* New upstream release
-- Randall Donald <rdonald@debian.org> Tue, 24 Jun 2008 10:41:09 -0700
nvidia-settings (169.07-1) unstable; urgency=low
* New upstream release
* reinclude nvctrl headers (closes: #434885)
* depend on nvidia-glx (169.07). there are legacy versions now too.
-- Randall Donald <rdonald@debian.org> Sun, 23 Dec 2007 17:07:10 -0800
nvidia-settings (1.0+20070502-1) unstable; urgency=low
* New upstream release.
-- Randall Donald <rdonald@debian.org> Sat, 12 May 2007 14:34:59 -0700
nvidia-settings (1.0+20060516-3) unstable; urgency=low
* ship include files for XNVCtrl (closes: #392324)
-- Randall Donald <rdonald@debian.org> Mon, 16 Oct 2006 15:16:06 -0700
nvidia-settings (1.0+20060516-2) unstable; urgency=low
* install libXNVCtrl.a (closes: #375191)
-- Randall Donald <rdonald@debian.org> Sat, 7 Oct 2006 15:47:08 -0700
nvidia-settings (1.0+20060919-1) UNRELEASED; urgency=low
* New upstream release (20060919)
* include /usr/lib/libXNVCtrl.a (closes: #375191)
-- Randall Donald <rdonald@debian.org> Sat, 7 Oct 2006 14:31:44 -0700
nvidia-settings (1.0+20060516-1) unstable; urgency=low
* add build depend on m4. (closes: #369661)
* New upstream (nvidia-settings-1.0.tar.gz 05/16/06 )
-- Randall Donald <rdonald@debian.org> Fri, 2 Jun 2006 23:21:01 -0700
nvidia-settings (1.0+20060404-1) unstable; urgency=low
* New upstream (nvidia-settings-1.0.tar.gz 04/04/06)
* fix for xorg7 (closes: #366243)
-- Randall Donald <rdonald@debian.org> Wed, 17 May 2006 19:21:28 -0700
nvidia-settings (1.0+20051122-1) unstable; urgency=low
* New upstream. (nvidia-settings-1.0-11-22-05.tar.gz)
-- Randall Donald <rdonald@debian.org> Wed, 28 Dec 2005 14:10:15 -0800
nvidia-settings (1.0+20050729-1) unstable; urgency=low
* New upstream.
* update standards version: 3.6.2
* correct fsf address
-- Randall Donald <rdonald@debian.org> Mon, 7 Nov 2005 10:54:24 -0800
nvidia-settings (1.0+20050525-2.2) unstable; urgency=low
* Non-maintainer upload
* corrected X11R6_LIB_DIR for x86_64 (closes: #321295, #327337)
-- tony mancill <tmancill@debian.org> Fri, 30 Sep 2005 08:44:56 -0700
nvidia-settings (1.0+20050525-2.1) unstable; urgency=low
* Non-maintainer upload
* adds build-depends on libxv-dev (closes: #324594)
-- tony mancill <tmancill@debian.org> Sun, 11 Sep 2005 10:49:58 -0700
nvidia-settings (1.0+20050525-2) unstable; urgency=low
* Change build-depends from xlibs-static-dev to libxxf86vm-dev
(closes: #318814)
-- Randall Donald <rdonald@debian.org> Tue, 19 Jul 2005 13:56:09 -0700
nvidia-settings (1.0+20050525-1) unstable; urgency=low
* upstream from May 25 2005
* add date to version name. (how about that for an idea, duh)
-- Randall Donald <rdonald@debian.org> Mon, 20 Jun 2005 15:19:10 -0700
nvidia-settings (1.0+3-1) unstable; urgency=low
* upstream from 03/22/05
* add libxrandr-dev and xlibmesa-gl-dev to build depends
-- Randall Donald <rdonald@debian.org> Sat, 2 Apr 2005 04:51:20 +0000
nvidia-settings (1.0+2-3) unstable; urgency=low
* patch for rebuilding libXNVCtrl.a runtime. Thanks
to Tollef Fog Heen <tfheen@raw.no> (closes: 265640)
* change arch to only those supported by nvidia.
-- Randall Donald <rdonald@debian.org> Sat, 13 Nov 2004 12:41:47 -0800
nvidia-settings (1.0+2-2) unstable; urgency=low
* Build against libs in unstable, not experimental. (closes: #280221)
-- Randall Donald <rdonald@debian.org> Mon, 8 Nov 2004 02:29:31 -0800
nvidia-settings (1.0+2-1) unstable; urgency=low
* New upstream from Nov 5, 2004.
-- Randall Donald <rdonald@debian.org> Sun, 7 Nov 2004 00:02:46 -0800
nvidia-settings (1.0+1-1) unstable; urgency=low
* New upstream (minor quit dialog change) but no new upstream
version number.
-- Randall Donald <rdonald@debian.org> Thu, 5 Aug 2004 13:52:07 -0700
nvidia-settings (1.0-3) unstable; urgency=low
* Fix Author(s) :p
* install debian menu.
-- Randall Donald <rdonald@debian.org> Sat, 3 Jul 2004 19:09:17 -0700
nvidia-settings (1.0-2) unstable; urgency=low
* Fix Build-Depends
-- Randall Donald <rdonald@debian.org> Wed, 30 Jun 2004 22:39:18 -0700
nvidia-settings (1.0-1) unstable; urgency=low
* Initial Release.
-- Randall Donald <rdonald@debian.org> Wed, 30 Jun 2004 16:45:52 -0700