Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
Fixed all "unused.py" refactoring errors, updated README, and updated…
Browse files Browse the repository at this point in the history
… version number
  • Loading branch information
grantwilk committed Sep 10, 2019
1 parent cb3373f commit 0eda0a8
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 23 deletions.
16 changes: 7 additions & 9 deletions README.md
@@ -1,12 +1,12 @@
[![atomic_combo_side_mono_fontdark1-min](https://remingtoncreative.com/wp-content/uploads/2019/07/atomic_combo_side_mono_fontdark1-min.png)](https://remingtoncreative.com/software/blender/atomic/)
[![atomic_combo_side_mono_dark1-min](https://remington.pro/wp-content/uploads/2019/08/atomic_combo_side_dark1_512px.png)](https://remington.pro/software/blender/atomic)

[**Learn More About Atomic Data Manager on its Official Product Page**](https://remingtoncreative.com/software/blender/atomic/)
[**Learn More About Atomic Data Manager on its Official Product Page**](https://remington.pro/software/blender/atomic)


## ENJOY A CLEANER PROJECT
Atomic Data Manager offers Blender artists an intelligent data management solution. This feature-packed add-on provides artists with every tool they need to keep unwanted and unused data out of their Blender files. Even better, Atomic's real-time data analysis and automated data removal tools allow its users to clean their projects in a flash.

![spring_window_shaded-min](https://remingtoncreative.com/wp-content/uploads/2019/07/spring_window_shaded-min.jpg)
![spring_window_shaded-min](https://remington.pro/wp-content/uploads/2019/07/spring_window_shaded-min.jpg)


## UNMATCHED FEATURE SET
Expand All @@ -24,13 +24,11 @@ Atomic Data Manager offers Blender artists an intelligent data management soluti
| Get a detailed breakdown of the data being used in your Blender projects. Surprisingly interesting and useful! | Atomic's sleek user interface packs numerous powerful features into a convenient and easily accessible space.|

#### Additional Features:
Pie Menu Controls, Advanced Fake User Options, Mass Delete Categories, Undo Accidental Deletions, Save Data-Blocks, Delete Data-Blocks, Replace Data-Blocks, Rename Data-Blocks, Reload Missing Files, Remove Missing Files, Replace Missing Files*, and Search for Missing Files*.

###### \* feature coming soon
Pie Menu Controls, Advanced Fake User Options, Mass Delete Categories, Undo Accidental Deletions, Save Data-Blocks, Delete Data-Blocks, Replace Data-Blocks, Rename Data-Blocks, Reload Missing Files, Remove Missing Files, Replace Missing Files, and Search for Missing Files.


## TAKE A VIDEO TOUR
[![video-thumb](https://remingtoncreative.com/wp-content/uploads/2019/08/atomic_addon_tour_play_button-min.jpg)](https://remingtoncreative.com/software/blender/atomic/#tour)
[![video-thumb](https://remington.pro/wp-content/uploads/2019/08/atomic_addon_tour_play_button-min.jpg)](https://remington.pro/software/blender/atomic/#tour)

| Keep Your Projects Clean | Reduce File Sizes | Optimize for Render Farms |
|--|--|--|
Expand All @@ -39,10 +37,10 @@ Pie Menu Controls, Advanced Fake User Options, Mass Delete Categories, Undo Acci

## GET ATOMIC

**Download:** [https://remingtoncreative.com/software/blender/atomic/](https://remingtoncreative.com/software/blender/atomic/)
**Download:** [https://remington.pro/software/blender/atomic/](https://remington.pro/software/blender/atomic)

**Older Versions:** [https://github.com/grantwilk/atomic-data-manager/releases](https://github.com/grantwilk/atomic-data-manager/releases)



**Like the Add-on?** [Consider Supporting Me!](https://remingtoncreative.com/support/)
**Like the Add-on?** [Consider Supporting Remington Creative](https://remington.pro/support/)!
4 changes: 2 additions & 2 deletions __init__.py
Expand Up @@ -36,12 +36,12 @@
"name": "Atomic Data Manager",
"author": "Remington Creative",
"blender": (2, 80, 0),
"version": (1, 0, 2),
"version": (1, 0, 3),
"location": "Properties > Scene",
"category": "Remington Creative",
"description": "An Intelligent Data Manager for Blender.",
"wiki_url":
"https://remingtoncreative.com/software/blender/atomic",
"https://remington.pro/software/blender/atomic",
"tracker_url":
"https://github.com/grantwilk/atomic-data-manager/issues"
}
Expand Down
18 changes: 9 additions & 9 deletions ops/direct_use_ops.py
Expand Up @@ -148,7 +148,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean All Operator
class ATOMIC_OT_clean_all(bpy.types.Operator):
"""Remove all unused.py data-blocks from the selected categories"""
"""Remove all unused data-blocks from the selected categories"""
bl_idname = "atomic.clean_all"
bl_label = "Clean All"

Expand Down Expand Up @@ -503,7 +503,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Collections Operator
class ATOMIC_OT_clean_collections(bpy.types.Operator):
"""Remove all unused.py collections from this project"""
"""Remove all unused collections from this project"""
bl_idname = "atomic.clean_collections"
bl_label = "Clean Collections"

Expand Down Expand Up @@ -535,7 +535,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Images Operator
class ATOMIC_OT_clean_images(bpy.types.Operator):
"""Remove all unused.py images from this project"""
"""Remove all unused images from this project"""
bl_idname = "atomic.clean_images"
bl_label = "Clean Images"

Expand Down Expand Up @@ -567,7 +567,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Lights Operator
class ATOMIC_OT_clean_lights(bpy.types.Operator):
"""Remove all unused.py lights from this project"""
"""Remove all unused lights from this project"""
bl_idname = "atomic.clean_lights"
bl_label = "Clean Lights"

Expand Down Expand Up @@ -599,7 +599,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Materials Operator
class ATOMIC_OT_clean_materials(bpy.types.Operator):
"""Remove all unused.py materials from this project"""
"""Remove all unused materials from this project"""
bl_idname = "atomic.clean_materials"
bl_label = "Clean Materials"

Expand Down Expand Up @@ -631,7 +631,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Node Groups Operator
class ATOMIC_OT_clean_node_groups(bpy.types.Operator):
"""Remove all unused.py node groups from this project"""
"""Remove all unused node groups from this project"""
bl_idname = "atomic.clean_node_groups"
bl_label = "Clean Node Groups"

Expand Down Expand Up @@ -663,7 +663,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Particles Operator
class ATOMIC_OT_clean_particles(bpy.types.Operator):
"""Remove all unused.py particle systems from this project"""
"""Remove all unused particle systems from this project"""
bl_idname = "atomic.clean_particles"
bl_label = "Clean Particles"

Expand Down Expand Up @@ -695,7 +695,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Textures Operator
class ATOMIC_OT_clean_textures(bpy.types.Operator):
"""Remove all unused.py textures from this project"""
"""Remove all unused textures from this project"""
bl_idname = "atomic.clean_textures"
bl_label = "Clean Textures"

Expand Down Expand Up @@ -727,7 +727,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Worlds Operator
class ATOMIC_OT_clean_worlds(bpy.types.Operator):
"""Remove all unused.py worlds from this project"""
"""Remove all unused worlds from this project"""
bl_idname = "atomic.clean_worlds"
bl_label = "Clean Worlds"

Expand Down
4 changes: 2 additions & 2 deletions ops/main_ops.py
Expand Up @@ -175,7 +175,7 @@ def invoke(self, context, event):

# Atomic Data Manager Clean Operator
class ATOMIC_OT_clean(bpy.types.Operator):
"""Remove all unused.py data-blocks from the selected categories"""
"""Remove all unused data-blocks from the selected categories"""
bl_idname = "atomic.clean"
bl_label = "Clean"

Expand Down Expand Up @@ -354,7 +354,7 @@ def execute(self, context):

# Atomic Data Manager Smart Select Operator
class ATOMIC_OT_smart_select(bpy.types.Operator):
"""Auto-select categories with unused.py data"""
"""Auto-select categories with unused data"""
bl_idname = "atomic.smart_select"
bl_label = "Smart Select"

Expand Down
2 changes: 1 addition & 1 deletion updater/addon_updater_ops.py
Expand Up @@ -679,7 +679,7 @@ def post_update_callback(module_name, res=None):
i.e. don't auto-restart the addon
Arguments:
module_name: returns the module name from updater, but unused.py here
module_name: returns the module name from updater, but unused here
res: If an error occurred, this is the detail string
"""

Expand Down

0 comments on commit 0eda0a8

Please sign in to comment.