luci-app-p910nd: update to package-manager master openwrt-24.10
authorPaul Donald <newtwen+github@gmail.com>
Tue, 19 Nov 2024 01:30:42 +0000 (02:30 +0100)
committerPaul Donald <newtwen+github@gmail.com>
Tue, 19 Nov 2024 12:23:25 +0000 (13:23 +0100)
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js

index 9f934b15d0bf3225ac95a415d7002184808e8b23..2b9256a90bdd59bf97cfd8a8b2d1ea943e11f280 100644 (file)
 var pkg = {
        get Name() { return 'p910nd'; },
        get Description() { return _('Port 910n print daemon'); },
-       get URL() { return 'https://openwrt.org/packages/pkgdata/' + pkg.Name + '/'; }
+       get URL() { return 'https://openwrt.org/packages/pkgdata/' + pkg.Name + '/'; },
+       get pkgMgrURI() { return 'admin/system/package-manager'; },
 };
 
 return view.extend({
 
        option_install_kmod_lp: function() {    
-               window.open(L.url('admin/system/opkg') +
+               window.open(L.url(pkg.pkgMgrURI) +
                        '?query=kmod-lp', '_blank', 'noopener');
        },
        option_install_kmod_usb: function() {   
-               window.open(L.url('admin/system/opkg') +
+               window.open(L.url(pkg.pkgMgrURI) +
                        '?query=kmod-usb-printer', '_blank', 'noopener');
        },
 
@@ -45,7 +46,7 @@ return view.extend({
                        }),
                        // data[1]
 
-                       fs.exec_direct('/usr/libexec/opkg-call', [ 'list-installed' ], 'text').catch(function(err) {
+                       fs.exec_direct('/usr/libexec/package-manager-call', [ 'list-installed' ], 'text').catch(function(err) {
                                ui.addNotification(null, E('p', {}, _('Error calling "opkg list-installed": ' + err.message)));
                                console.log(err);
                                        return '';