summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg
AgeCommit message (Collapse)AuthorFilesLines
2003-04-22Now display package information in separate window...easier for those long ↵drw5-38/+180
descriptions. Also use click and hold to display info, not double-click.
2003-04-20Finally fixed it so that packages are not incorrectly marked as having an ↵drw4-16/+16
update available
2003-04-20adding dutch to the .pro-filescniehaus1-0/+1
2003-04-17Added better verbosity options and option to save ipkg output to a file (per ↵drw6-21/+79
'bugs' #856 & #857). Also fixed Ok/Cancel behavior on install options dialog.
2003-04-10qpetoolbar and qpemenubar are depreciatedharlekin2-68/+68
2003-03-29Move Configure option under the Actions menu, allowing me to remove the ↵drw1-11/+6
top-level menu 'Options' (which only had the Config entry under it).
2003-03-29Better fix for reading feed Packages files.drw1-32/+24
2003-03-29Fix for reading feed's Package file works this time. However, this is ↵drw1-3/+3
temporary until I re-do this part of the code this weekend (don't like the way it works).
2003-03-28Oops...undoing last update.drw1-3/+2
2003-03-28Fix bug in reading feed's Package filedrw1-2/+4
2003-03-27Slower, but more appropriate status parser. Now identifies the state_status ↵kergoth1-2/+10
column and compares against installed.. This fixes the bug introduced where it hit 'ok installed' but not 'prefer installed', both of which are valid entries.
2003-03-27Fix bug #780 - correctly identify whether a package is really installed or notdrw1-1/+1
2003-03-19Fix for bug #741drw4-8/+33
2003-03-15Added several checks to ensure we have a valid server or destination. Fixes ↵drw1-42/+72
bug #727, and also prevents several other segfault situations.
2003-03-08Use inline picsdrw1-2/+2
2003-03-04Remove AQPkg's own help window, use standard help systemdrw6-207/+0
2003-02-25Fix for bug #707 - remove package from status file only if package removal ↵drw2-6/+8
was successful.
2003-02-18Use a max line count on the QMultiLineEdit used for ipkg output, as users ↵kergoth1-0/+10
have reported performance issues when the line count gets huge.
2003-02-10Fixed bug where feed names could have spaces in themandyq1-7/+18
2003-02-06Change all vector<> to QList<>. First step in removing dependency on libstdc++.drw9-214/+245
2003-02-04More dialog clean-up. Except for QWhatsThis, the UI changes are pretty much ↵drw8-313/+79
done now for AQPkg
2003-02-04Updates to configure dialogdrw6-922/+239
2003-02-01Fix for gcc 3.2...drw1-2/+2
2003-02-01Many updates to install dialogdrw7-247/+164
2003-01-27Added translation for aqpkggroucho2-1/+18
Fixed a bug where aqpkg would not close the window, when the close button had been translated ;-)
2003-01-26Remove depends on a specific version.. it should be depending on >= or <= ↵kergoth1-1/+1
depending on what API the app in question is depending on.. given we're still in a development stage, this is unnecessary. Going forward better explicit depends will be necessary on every API change which introduces a new dependency.
2003-01-25Couple of text fixesandyq1-2/+2
2003-01-24Make the quick jump to keypad a toolbar like the find bar (option in config ↵drw2-30/+65
dialog will be removed).
2003-01-24Sorry about the flood on the cvs ml list, but this uses OPIEDIR to locate ↵kergoth1-1/+1
include.pro rather than a relative path.. then you dont have to alter the .pro when restructuring cvs.
2003-01-23add Replaces entry which has been forgotten when renamingmickeyl1-0/+1
2003-01-23Compile fix, if you use PATH_MAX, include linux/limits.h.kergoth1-0/+1
2003-01-23Minor fix for find function and more liberal use of progress widget to give ↵drw2-21/+26
feedback to user
2003-01-23Code optimizations for main windowdrw7-1142/+909
2003-01-19Updates to main package list, icons for installed/updated packages, ↵drw5-58/+47
QWhatsThis and a couple other tweaks
2003-01-18Fixed relinking of files when upgrade selected (now removes old links first ↵andyq1-8/+11
and recreates them after), also cut down on spurious failed to link errors on linking
2003-01-18Upgraded to 1.11andyq1-1/+1
2003-01-16i18n for new buildsystem :)kergoth1-0/+4
2003-01-12Updated version to 1.10andyq1-1/+1
2003-01-12Changed Packages meu to Actions to allow icons to fit on same lineandyq1-1/+1
2003-01-10Changed menu layoutdrw1-35/+33
2003-01-10Made find dialog a toolbar, fixed show options under View menudrw4-122/+125
2003-01-09Updates to main view, menu reorganization, etc.drw5-97/+194
2003-01-05Rename package to opie-aqpkgdrw1-0/+0
2003-01-05Remove unused dialog and menu shortcut key combos. Also added a bunch of ↵drw6-166/+60
tr()'s to existing strings. Note to translators: These strings might be changing in the next couple of weeks as I do some UI updates.
2003-01-04Delay initial load of ipkg info so app displays quicker, and add progress ↵drw9-44/+267
display for longer operations (such as loading packages for large feeds).
2002-12-28adding i18n-fixescniehaus1-4/+4
@@ -61,10 +61,10 @@ MainWindow :: MainWindow( QWidget *p, ch // Create the main menu menu = menuBar(); //new QMenuBar( this ); - menu->insertItem( "&Settings", settings ); - menu->insertItem( "&Edit", edit ); - menu->insertItem( "&Filter", filter ); - menu->insertItem( "&Help", help ); + menu->insertItem( tr( "&Settings" ), settings ); + menu->insertItem( tr( "&Edit" ), edit ); + menu->insertItem( tr( "&Filter" ), filter ); + menu->insertItem( tr( "&Help" ), help ); mgr = new DataManager(); mgr->loadServers();
2002-12-28@@ -37,7 +37,7 @@ MainWindow :: MainWindow( QWidget *p, chcniehaus1-1/+1
showMaximized(); #endif - setCaption( "AQPkg - Package Manager" ); + setCaption( tr( "AQPkg - Package Manager" ) ); // Create our menu help = new QPopupMenu( this );
2002-12-27Fixed bug where refresh lists would crashandyq1-1/+2
2002-12-20Refreshes available space on current destination after packages finished ↵andyq1-0/+2
installing
2002-12-20Should create links for installed dependant packages againandyq1-0/+15