Hi,
in RemoteMaster 2.02a (Device Upgrade Editor)
when I open Menu -> Options|Remotes|Edit preferred...
I can always enlarge the number of remotes in the list of "Preferred Remotes", but
I'm not able to reduce the number of remotes.
When I remove an entry from the "Preferred" list (lets say - had 3 entries before and 2 entries left),
press ok and then go back to the list, there are 3 entries in again.
But it seems, that the third one is random now, and so even the same entry
can be in the list more than once (e.g. two URC-7552 entries or even more).
The list stays wrong then even after closing and restarting RemoteMaster.
The only way to really get rid of unused entries is to edit the
RemoteMaster.properties file in the RMIR folder manually
(deleting a PreferredRemotes.x entry).
I just found out, that this problem already existed in previous RemoteMaster versions
(tried RM 1.97 standalone - same behavior).
Can someone confirm that problem?
RemoteMaster "Preferred Remotes" issue
Moderator: Moderators
Problem confirmed.
Bona fide bug. Thanx for the bug report. Fix:
Fixed version (Sounds like it is for something else, but fixes this problem too).
Bona fide bug. Thanx for the bug report. Fix:
Code: Select all
*** Preferences.java Sun Feb 16 21:22:24 2014
--- Preferences.java.orig Sun Feb 16 21:27:45 2014
***************
*** 139,145 ****
String name = file.getProperty( "PreferredRemotes." + i );
if ( name == null )
break;
! file.remove( "PreferredRemotes." + i );
}
int i = 0;
for ( Remote remote : remotes )
--- 139,145 ----
String name = file.getProperty( "PreferredRemotes." + i );
if ( name == null )
break;
! file.remove( name );
}
int i = 0;
for ( Remote remote : remotes )