All Versions
11
Latest Version
Avg Release Cycle
112 days
Latest Release
3112 days ago

Changelog History
Page 1

  • v1.0.0 Changes

    September 21, 2015

    Get it

    compile 'net.grandcentrix.tray:tray:1.0.0-rc1'
    

    ๐Ÿ”„ Changelog

    • ๐Ÿ‘ Android M Auto Backup feature support (see the Documentation)
      • split up database for user and device specific data (device specific data can now be excluded from the auto backup)
      • TrayPreferences has now an optional 3. constructor parameter TrayStorage.Type, USER or DEVICE indicating the internal database (required for Android M Auto Backup). Default is USER
    • ๐Ÿ†• New methods and changes
      • PreferenceAccessor#wipe() clears the preference data and it's internal data (version)
      • TrayPreferences#annexModule(String name) imports a module by name and wipes it afterwards. This allows renaming of preferences without losing data
      • AbstractTrayPreference#annex(ModularizedStorage<TrayItem>) allows a storage to import another storage, wipes the imported afterwards
      • Preference #onCreate(...) and #onUpgrade(...) aren't abstract anymore because they don't require an implementation
    • ๐Ÿ—„ Deprecations (will be removed soon)
      • TrayAppPreferences is now deprecated. Use AppPreferences instead (renaming)
      • TrayModulePreferences is now deprecated. Use TrayPreferences instead to extend from for your own Preferences
    • Internal structure
      • new package structure. merged packages accessor, migration and storage into core
      • package provider contains a TrayStorage implementation with a ContentProvider. Is easy exchangeable with another TrayStorage implementation
      • ModularizedTrayPreference is now called AbstractTrayPreference
      • ModularizedStorage was renamed to TrayStorage
  • v1.0.0-rc3

    November 05, 2015
  • v1.0.0-rc2

    September 24, 2015
  • v1.0.0-rc1 Changes

    September 21, 2015

    Get it

    compile 'net.grandcentrix.tray:tray:1.0.0-rc1'
    

    ๐Ÿ”„ Changelog

    • ๐Ÿ‘ Android M Auto Backup feature support (see the Documentation)
      • split up database for user and device specific data (device specific data can now be excluded from the auto backup)
      • TrayPreferences has now an optional 3. constructor parameter TrayStorage.Type, USER or DEVICE indicating the internal database (required for Android M Auto Backup). Default is USER
    • ๐Ÿ†• New methods and changes
      • PreferenceAccessor#wipe() clears the preference data and it's internal data (version)
      • TrayPreferences#annexModule(String name) imports a module by name and wipes it afterwards. This allows renaming of preferences without losing data
      • AbstractTrayPreference#annex(ModularizedStorage<TrayItem>) allows a storage to import another storage, wipes the imported afterwards
      • Preference #onCreate(...) and #onUpgrade(...) aren't abstract anymore because they don't require an implementation
    • ๐Ÿ—„ Deprecations (will be removed soon)
      • TrayAppPreferences is now deprecated. Use AppPreferences instead (renaming)
      • TrayModulePreferences is now deprecated. Use TrayPreferences instead to extend from for your own Preferences
    • Internal structure
      • new package structure. merged packages accessor, migration and storage into core
      • package provider contains a TrayStorage implementation with a ContentProvider. Is easy exchangeable with another TrayStorage implementation
      • ModularizedTrayPreference is now called AbstractTrayPreference
      • ModularizedStorage was renamed to TrayStorage
  • v0.12.0 Changes

    May 05, 2017

    ๐Ÿ‘€ tray__authority is now deprecated. You'll see a big error in logcat when your are still using it. Instead the <applicationId>.tray will be used as authority.

    If you rely on a specific authority of the ContentProvider (and you really don't) you can change it. Read the wiki for more information.

    dependencies { compile 'net.grandcentrix.tray:tray:0.12.0'}
    
  • v0.11.1 Changes

    February 07, 2017
    • preference key cannot be empty #84, thx @eyedol
    • clearBut(TrayPreference) -> clearBut(AbstractTrayPreference) #89

      dependencies { compile 'net.grandcentrix.tray:tray:0.11.1'}

  • v0.11.0 Changes

    September 07, 2016
    ๐Ÿ”– Version 0.10.0 07.09.16
    • ๐Ÿšš all accessor methods return boolean indicating the success of i.e. put, remove. They will never again throw an error. #69
    • ๐Ÿ†• new contains() method #74
  • v0.10.0 Changes

    May 31, 2016
    • ๐Ÿ— All features and changes of the 1.0.0-rc preview builds
    • #65 Fix deletion of non string migrated shared preferences.
    Version 1.0.0 preview - postponed until the memory cache is ready
    1.0.0-rc3 05.11.15

    ๐Ÿš‘ > - hotfix for listener on Android 6.0 which has caused a infinity loop #55 โœ… > - the sample project includes now a way to test the multi process support compared to the SharedPreferences ๐Ÿšš > - removed unnecessary write operation for every version check #54

    1.0.0-rc2 24.09.15

    ๐ŸŒฒ > - added logging for all data changing methods. Enable via adb shell setprop log.tag.Tray VERBOSE

    1.0.0-rc1 21.09.15

    ๐Ÿ‘ > - Android M Auto Backup feature support (see the Documentation) ๐Ÿ‘‰ > - split up database for user and device specific data (device specific data can now be excluded from the auto backup) 0๏ธโƒฃ > - TrayPreferences has now an optional 3. constructor parameter TrayStorage.Type, USER or DEVICE indicating the internal database (required for Android M Auto Backup). Default is USER ๐Ÿ†• > - New methods and changes

    • PreferenceAccessor#wipe() clears the preference data and it's internal data (version)
    • TrayPreferences#annexModule(String name) imports a module by name and wipes it afterwards. This allows renaming of preferences without losing data
    • AbstractTrayPreference#annex(ModularizedStorage<TrayItem>) allows a storage to import another storage, wipes the imported afterwards โฌ†๏ธ > - Preference #onCreate(...) and #onUpgrade(...) aren't abstract anymore because they don't require an implementation ๐Ÿ—„ > - Deprecations (will be removed soon) ๐Ÿ—„ > - TrayAppPreferences is now deprecated. Use AppPreferences instead (renaming) ๐Ÿ—„ > - TrayModulePreferences is now deprecated. Use TrayPreferences instead to extend from for your own Preferences
    • Internal structure ๐Ÿ“ฆ > - new package structure. merged packages accessor, migration and storage into core ๐Ÿ“ฆ > - package provider contains a TrayStorage implementation with a ContentProvider. Is easy exchangeable with another TrayStorage implementation
    • ModularizedTrayPreference is now called AbstractTrayPreference
    • ModularizedStorage was renamed to TrayStorage
  • v0.9.2 Changes

    June 02, 2015
    • getContext() is working in TrayModulePreference#onCreate
    • ๐Ÿ’… applied new code style
  • v0.9.1 Changes

    May 18, 2015
    • saving null with mPref.put(KEY, null) works now
    • 0๏ธโƒฃ access to preference with throwing methods instead of default value (throws ItemNotFoundException). Example: mPref.getString(KEY); instead of mPref.getString(KEY, "defaultValue");
    • โœ… WrongTypeException when accessing a preference with a different type and the data isn't parsable. Float (10.1f) -> String works, String ("10.1") -> Float works, String ("test") -> Float throws!
    • javadoc in now included in aar