Skip to content

Commit f182511

Browse files
committed
Bump version
1 parent b325909 commit f182511

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Run the models on your machine to iterate without slowdowns from a service
1010

1111
## Installation
12-
1. Download the [latest version](https://github.com/carson-katri/dream-textures/releases/tag/0.0.4) from the Releases tab.
12+
1. Download the [latest version](https://github.com/carson-katri/dream-textures/releases/tag/0.0.5) from the Releases tab.
1313
2. Install the addon in Blender's preferences window.
1414
3. Follow the steps in the 'Dream Textures' preferences window to install the necessary dependencies.
1515
- _*Note for Windows users*_ - If you get an error when installing dependencies that looks similar to the one described [here](https://github.com/carson-katri/dream-textures/issues/13), your dependency file paths might be too long (can't be longer than 256 characters). You can solve it by telling Windows to allow long file paths in the registry:

__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,12 @@
1717
"description": "Use Stable Diffusion to generate unique textures straight from the shader editor.",
1818
"warning": "Requires installation of dependencies",
1919
"blender": (2, 80, 0),
20-
"version": (0, 0, 4),
20+
"version": (0, 0, 5),
2121
"location": "",
2222
"warning": "",
2323
"category": "Node"
2424
}
2525

26-
import warnings
27-
warnings.filterwarnings("ignore", category=DeprecationWarning)
28-
2926
import bpy
3027
from bpy.props import IntProperty, PointerProperty, EnumProperty
3128
import sys

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 0, 4)
1+
VERSION = (0, 0, 5)
22
def version_tag(version):
33
return f"{version[0]}.{version[1]}.{version[2]}"
44

0 commit comments

Comments
 (0)