-
-
Notifications
You must be signed in to change notification settings - Fork 1
FAQ
While parts of Vino's codebase could theoretically be adapted for tracking other collections, such as tea or books, my primary interest lies in wine. This focus ensures a more dedicated and refined tool, adhering to the principle that striving for perfection in every domain might detract from achieving excellence in one. However, I'm open to discussing and assisting with adaptations for other use cases. If you're interested in using Vino for something other than wine, I'd be delighted to hear your ideas and explore potential solutions together.
My preference for Vino stems from a desire for data ownership, flexibility, and a tool conducive to learning about wine. Here are the main reasons for choosing Vino over services like Cellar Tracker or Vivino:
- Data Ownership: With Vino, your data is entirely yours.
- Customisation and Control: You can modify and correct data as needed.
- Offline Access: Vino doesn't require an internet connection.
- Learning Tool: Vino is designed to enhance your understanding and appreciation of wine.
- No Limitations: There's no cap on the amount of information you can record.
- Extensibility: Vino can be tailored and extended to fit your needs, thanks to Vulpea it is built upon.
Despite these advantages, I still use Vivino occasionally for:
- Reading tasting notes from respected individuals, aiding in discovering new and interesting wines.
- Sharing some of my notes with the local community, although my primary platform is Barberry Garden, which is built on top of Vino.
So, it's perfectly feasible to use both Vino and other services in tandem!
While the concept of orange wine is straightforward, defining the boundary between white and orange wines is less clear. One might argue that any deliberate skin contact qualifies a wine as orange, but I am not convinced. Additionally, the influence of maceration varies by grape variety. In my view, maceration is simply a winemaking technique, akin to oak ageing. It's an important detail to note, but not a defining characteristic.
That being said, if you believe otherwise, you can easily change the value of vino-colour-types to include orange.
Problem: You're trying to call vulpea-setup which doesn't exist in Vulpea v2.
Solution: Vulpea v2 uses a different initialization approach. Instead of vulpea-setup, configure Vulpea like this:
(setq vulpea-db-location (expand-file-name "vulpea.db" org-directory)
vulpea-db-sync-directories (list org-roam-directory))
(vulpea-db-autosync-mode +1)See the updated setup guide for complete instructions.
Problem: Vino can't locate notes you know exist.
Possible causes and solutions:
-
Database not synced: Run
(vulpea-db-sync-full-scan 'force)to force a complete database rebuild. -
Wrong sync directories: Ensure
vulpea-db-sync-directoriesincludes the directory containing your wine notes. -
Missing tags: Verify your notes have the correct tags (e.g.,
wineandcellarfor wine entries). Check withC-c C-qin the note. -
Autosync disabled: Ensure
vulpea-db-autosync-modeis enabled.
Problem: Getting type errors when using Vino functions.
Common causes:
-
Incorrect
vino-rating-propsformat: Verify your configuration matches the expected structure. The outer list should contain version numbers as keys:;; Correct (setq vino-rating-props `((1 . (("SCORE" . ,vino-rating-scale))))) ;; Wrong - missing version wrapper (setq vino-rating-props `(("SCORE" . ,vino-rating-scale)))
-
Scale/precision mismatch: Ensure
vino-rating-scaleis a float andvino-rating-precisionis an integer:(setq vino-rating-scale 5.0 ; Must be float vino-rating-precision 1) ; Must be integer
Problem: You've modified a note but changes aren't reflected in Vino.
Solution:
- If
vulpea-db-autosync-modeis enabled, save the buffer (C-x C-s) and wait a moment for the database to update. - If changes still don't appear, manually sync:
(vulpea-db-update-file (buffer-file-name)) - For wine entries with linked notes, run
M-x vino-entry-updateto synchronize all related data.
Problem: Template variables like ${timestamp} or ${slug} appear literally in filenames.
Solution: Ensure you're using the new Vulpea v2 template syntax. Replace old-style time formats:
;; Old (doesn't work)
'(:file-name "wine/grape/%<%Y%m%d%H%M%S>-${slug}.org")
;; New (correct)
'(:file-name "wine/grape/${timestamp}-${slug}.org")Problem: The final rating doesn't match your expectations.
Troubleshooting steps:
-
Check the averaging method: The default is arithmetic mean. Verify
vino-entry-rating-average-methodis set as expected. -
Verify rating precision: Check
vino-rating-precision- it determines rounding. -
Review individual ratings: Use
M-x vino-entry-find-fileto open the wine entry and examine the linked rating notes. -
Recalculate: Run
M-x vino-entry-updateon the wine entry to recalculate from scratch.
Problem: Getting SQLite database lock errors.
Solutions:
- Check if another Emacs instance is accessing the same database.
- Ensure no external programs are locking the database file.
- If the issue persists, close Emacs, delete any
.db-walor.db-shmfiles next to your database, and restart.
If you encounter issues not covered here:
- Check the wiki documentation for detailed guides.
- Review Vulpea v2 documentation for database-related issues.
- Search existing GitHub issues.
- Open a new issue with:
- Your Vino and Vulpea versions
- Minimal reproduction steps
- Relevant configuration
- Error messages (use
M-x toggle-debug-on-errorto get full backtraces)