Changeset 7926
- Timestamp:
- Feb 24, 2021, 11:31:05 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/3.18-stable (added) merged: 7921-7923 /tags/3.18 (added) merged: 7924
- Property svn:mergeinfo changed
-
trunk/build.xml
r7918 r7926 69 69 <property name="base.minorversion" value="19" /> 70 70 <property name="base.maintenanceversion" value="0" /> 71 <property name="base.versionsuffix" value=" -dev" />71 <property name="base.versionsuffix" value="" /> 72 72 <property name="base.version" 73 73 value="${base.majorversion}.${base.minorversion}.${base.maintenanceversion}" /> -
trunk/credits.txt
r7874 r7926 1 1 $Id$ 2 2 3 The current BASE team is (at BASE 3.1 7release)3 The current BASE team is (at BASE 3.18 release) 4 4 {{{ 5 5 Jari Häkkinen -
trunk/src/core/net/sf/basedb/core/Application.java
r7900 r7926 428 428 /** 429 429 Starts the BASE application. 430 @param installation TRUE if we are starting the application for 431 installation, FALSE for a normal start 430 @param options Options for how BASE should be started 432 431 @throws BaseException If BASE cannot be started 433 432 @see #start() -
trunk/src/core/net/sf/basedb/core/PropertyFilter.java
r7895 r7926 553 553 is ignored by the BASE core code. The rest of the property should be a unique 554 554 identifier for the extension that is handling the filter. 555 </ul> 555 556 <p> 556 557 The property may also start with $@. -
trunk/src/core/net/sf/basedb/core/Update.java
r7899 r7926 454 454 <td> 455 455 Added {@link ItemListSyncFilterData#getFilterGroup()}, {@link ItemListSyncFilterData#getLastSyncProperties()}, 456 {@link ItemListData#getSizeAtLastSync()}, {@link ItemListData#getMd5AtLastSync() .456 {@link ItemListData#getSizeAtLastSync()}, {@link ItemListData#getMd5AtLastSync()}. 457 457 The update will set the filterGroup value to 'A+' for all existing filters and generate a lastSyncProperties value from 458 458 current settings. The update will also set sizeAtLastSync to -1 for existing item lists. -
trunk/www/common/annotations/annotate.js
r7832 r7926 244 244 } 245 245 246 entry.visible = show; 246 247 Doc.showHide(entry.id, show); 247 248 } … … 751 752 { 752 753 var entry = annotations[i]; 753 if (entry. source == 'PRIMARY')754 if (entry.visible && entry.source == 'PRIMARY') 754 755 { 755 756 var checkbox = Doc.element('check.'+entry.id); … … 774 775 { 775 776 var entry = annotations[i]; 776 if (entry. source != 'PRIMARY')777 if (entry.visible && entry.source != 'PRIMARY') 777 778 { 778 779 var checkbox = Doc.element('check.'+entry.id);
Note: See TracChangeset
for help on using the changeset viewer.