Skip to content

Commit

Permalink
v3.2.8, updated stroke snap tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
vxlcoder committed May 23, 2022
1 parent c1dbeb2 commit 90e68e7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ NAME = RetopoFlow
VERSION = "v3.2.8"

# NOTE: one of the following must be uncommented
RELEASE = "alpha"
# RELEASE = "alpha"
# RELEASE = "beta"
# RELEASE = "official"
RELEASE = "official"


ifeq ($(RELEASE), "official")
Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"location": "View 3D > Header",
"blender": (2, 93, 0),
"version": (3, 2, 8),
"warning": "Alpha", # used for warning icon and text in addons panel
# "warning": "Alpha", # used for warning icon and text in addons panel
# "warning": "Beta",
# "warning": "Release Candidate 1",
# "warning": "Release Candidate 2",
Expand Down
2 changes: 1 addition & 1 deletion config/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
# important: update Makefile and root/__init__.py, too!
# TODO: make Makefile pull version from here or some other file?
# TODO: make __init__.py pull version from here or some other file?
retopoflow_version = '3.2.' # α β
retopoflow_version = '3.2.8' # α β
retopoflow_version_tuple = (3, 2, 8)

retopoflow_blendermarket_url = 'https://blendermarket.com/products/retopoflow'
Expand Down
11 changes: 7 additions & 4 deletions devnotes/versionbump.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ When doing a version bump, update the versions in the following files:

- `__init__.py`: `bl_info`
- update `"version": (3, 2, 5)`
- comment / uncomment the `warning` keys as needed
- comment / uncomment the `warning` keys as appropriate
- note: there is no `warning` for official releases
- `Makefile`
- update `VERSION = "v3.2.5"`
- comment / uncomment the `RELEASE` var as needed
- comment / uncomment the `RELEASE` var as appropriate
- note: there is a `RELEASE` for official releases
- `config/options.py`
- update `retopoflow_version = '3.2.5'`
- update `retopoflow_version_tuple = (3, 2, 5)`
- append α / β as applicable
- update `retopoflow_version_tuple = (3, 2, 5)` (no alpha, beta, etc.)
- add line to `help/changelist.md`
- `hive.json`
- update `"version": "3.2.5"`
- update `"version": "3.2.5"` (no alpha, beta, etc.)
2 changes: 1 addition & 1 deletion retopoflow/rftool_strokes/strokes_options.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h1>Span Insert Mode</h1>
<h1>Snap Stroke</h1>
<div class="contents">
<label>
<input type="checkbox" checked="BoundBool('''options['strokes snap stroke']''')" title="Allow stroke to snap to nearby geometry">
<input type="checkbox" checked="BoundBool('''options['strokes snap stroke']''')" title="Allows the start and end of the stroke to snap to nearby vertices">
Enable Stroke Snapping
</label>
<div class="labeled-input-text">
Expand Down

0 comments on commit 90e68e7

Please sign in to comment.