[Addon] RuneUI Enhancement

Raspberry Pi related support

Re: [Addon] RuneUI Enhancement

Postby hondagx35 » 11 Nov 2018, 11:47

rern wrote:
hondagx35 wrote:Did you change this?
On 0.4b it first searches for embedded covers.

Yes, I did. Cover art files get 1st priority.

rern


I personally do not like this for several reasons.
If possible please make it optional.

Frank
User avatar
hondagx35
 
Posts: 3042
Joined: 11 Sep 2014, 22:06
Location: Germany

Re: [Addon] RuneUI Enhancement

Postby rern » 12 Nov 2018, 04:57

hondagx35 wrote:
rern wrote:
hondagx35 wrote:Did you change this?
On 0.4b it first searches for embedded covers.

Yes, I did. Cover art files get 1st priority.

rern


I personally do not like this for several reasons.
If possible please make it optional.

Frank

Please be more specific, at least just some of the several reasons. So I can make it better or even drop it if it's that bad and revert back to default.

rern
rAudio @ https://github.com/rern/rAudio-1
Raspberry Pi 4B
Raspberry Pi 3B > SMSL M8 DAC
Raspberry Pi Zero W
User avatar
rern
 
Posts: 723
Joined: 14 Jul 2016, 08:15

Re: [Addon] RuneUI Enhancement

Postby Toube » 12 Nov 2018, 12:50

@rern,

any news for supporting YouTube addon for version 0.5?

-Toube
Toube
 
Posts: 131
Joined: 10 Oct 2018, 08:10

Re: [Addon] RuneUI Enhancement

Postby rlsten » 12 Nov 2018, 14:18

rern wrote:
rlsten wrote:...
3. I'm curious why the index bar in the library no longer works on my system. Older UI Enhancement versions work both on a local screen and on a remote PC screen.


3. It works fine on my PC, Android and iOS.
Try:
- Clear browser cache
- Reboot
- Switch to other browsers
- Flash new SD

rern


Hi rern,

I tried everything and the index bar still does not work. Would you mind giving me the location of the code that controls the index bar so I can compare it with the code in the versions I have that work?

Thanks very much,
Rod
rlsten
 
Posts: 118
Joined: 25 May 2015, 18:06

Re: [Addon] RuneUI Enhancement

Postby cmh714 » 12 Nov 2018, 17:59

Toube wrote:@rern,

any news for supporting YouTube addon for version 0.5?

-Toube


Seems like you havent understood the replies you have gotten to this question several times before......@rern didnt build the module for Youtube and doesnt seem to want to deal with it, he recommended going back to the dev that did make it....

GL
cmh714
 
Posts: 470
Joined: 04 May 2014, 03:06

Re: [Addon] RuneUI Enhancement

Postby Toube » 12 Nov 2018, 18:15

cmh714 wrote:
Toube wrote:@rern,

any news for supporting YouTube addon for version 0.5?

-Toube


Seems like you havent understood the replies you have gotten to this question several times before......@rern didnt build the module for Youtube and doesnt seem to want to deal with it, he recommended going back to the dev that did make it....

GL

So many topics resembling each other.. sorry about that.

-Toube
Toube
 
Posts: 131
Joined: 10 Oct 2018, 08:10

Re: [Addon] RuneUI Enhancement

Postby rern » 12 Nov 2018, 19:18

rlsten wrote:...
I tried everything and the index bar still does not work. Would you mind giving me the location of the code that controls the index bar so I can compare it with the code in the versions I have that work?

It's line#782 in the current one. You have to look for "Merge pull request ..." lines in History to get earlier versions to compare.
Please share what you've found.

rern
rAudio @ https://github.com/rern/rAudio-1
Raspberry Pi 4B
Raspberry Pi 3B > SMSL M8 DAC
Raspberry Pi Zero W
User avatar
rern
 
Posts: 723
Joined: 14 Jul 2016, 08:15

Re: [Addon] RuneUI Enhancement

Postby pastic » 12 Nov 2018, 20:21

hi @rern are the addons installation script working with Runeaudio 0.5beta (20180903_runeaudio_rpib2.img.gz)?

I did the install from the dev page, but even though it said installation successful after a while, when I rebooted my RPi3 I never got further than a black screen with "php font errors".

EDIT: now I re-flashed the SD-card and then directly used the install string from your Github "Addons page". INstalling and updating UI enhancements and then rebooting lands me eternally on the "RuneAudio is starting up" page.

Code: Select all
###### System info ######
Linux version 4.14.34-1-ARCH (alarm@alarmpi) (gcc version 7.3.1 20180312 (GCC)) #1 SMP Tue May 15 00:50:02 CDT 2018

System time:   Mon Nov 12 08:49:36 SST 2018
System load:   0.48 0.16 0.05 1/150 996
Hardware model:   Raspberry Pi 3 Model B Rev 1.2
Linux version:   4.14.34-1-ARCH
Build version:   janui-20180903-0
HW platform:   RaspberryPi (08)
pastic
 
Posts: 11
Joined: 23 Mar 2018, 00:07

Re: [Addon] RuneUI Enhancement

Postby rlsten » 12 Nov 2018, 21:01

Thanks, rern.

The index bar works for me in the version of enhance.js dated July 1, 2018. It works both for files on the SD Card and Network mounts.

I think the relevant text in that version is at lines 280-299, which I've copied below.

Code: Select all
// index link
$( '#db-index li' ).click( function() {
   var topoffset = !$( '#menu-top' ).is( ':hidden' ) ? 80 : 40;
   var indextext = $( this ).text();
   if ( indextext === '#' ) {
      window.scrollTo( 0, 0 );
      return
   }
   if ( GUI.currentpath.slice( 0, 3 ) === 'USB' ) {
      var datapathindex = GUI.currentpath +'/'+ indextext;
   } else {
      var datapathindex = '^'+ indextext;
      var dirmode = 1
   }
   var matcharray = $( '#database-entries li' ).filter( function() {
      var name = dirmode ? $( this ).find( 'span:eq( 0 )' ).text() : $( this ).attr( 'data-path' );
      return stripLeading( name ).match( new RegExp( datapathindex, 'i' ) );
   } );
   if ( matcharray.length ) window.scrollTo( 0, matcharray[0].offsetTop - topoffset );
} );
dbtop = 0;


I note that while db-index only appears at line 782 in the current version, there are also references to it in the July 1, 2018 version at lines 1112, 1197, 1516, 1554, and 1663, but I believe these refer to displaying or hiding the index bar rather than to its functionality.

I'm not experienced enough to know if the differences matter; I did cut and paste the old code in the current file, but the index bar still didn't work, except the # scrolled to the top.
rlsten
 
Posts: 118
Joined: 25 May 2015, 18:06

Re: [Addon] RuneUI Enhancement

Postby cmh714 » 12 Nov 2018, 21:04

pastic wrote:hi @rern are the addons installation script working with Runeaudio 0.5beta (20180903_runeaudio_rpib2.img.gz)?

Code: Select all
###### System info ######
Linux version 4.14.34-1-ARCH (alarm@alarmpi) (gcc version 7.3.1 20180312 (GCC)) #1 SMP Tue May 15 00:50:02 CDT 2018

Build version:   janui-20180903-0
HW platform:   RaspberryPi (08)



My Build version is -4 so I suspect you need to update first...
cmh714
 
Posts: 470
Joined: 04 May 2014, 03:06

support RuneAudio Donate with PayPal

PreviousNext

Return to Raspberry Pi

Who is online

Users browsing this forum: No registered users and 11 guests
cron