anwilli5 / coin-collection-android-US

Repo for the Coin Collection Android app
GNU General Public License v3.0
10 stars 5 forks source link

Initial support for coin edit menu and copying #67

Closed sw23 closed 2 years ago

sw23 commented 2 years ago

Adding a coin options menu with support to edit the coin's name and mint, delete a coin, and copy a coin in a collection.

With this update it's now possible to insert custom coins, however adding separate 'add coin' and 'reorder coins' features would likely also improve the user experience.

I need to think a little more about how editing an existing collection should work with copied/edited coins. Right now when a collection is edited, the details from the old list are pulled into the new collection based on matching name/mint; now there can be multiple coins with the same name/mint, and any copied coins will be removed (because their names/mints won't match anything in the new set). We should at least generate a warning for this.

[Update] - I've updated the collection update code to preserve manually-entered coins, and should preserve their sort order in most cases.