-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixing breaking changes for Blender 2.92 * Changing Plugin version descriptions * Adding bpy autocomplete to latest 2.92 version
- Loading branch information
1 parent
a04e909
commit 153f8c1
Showing
116 changed files
with
17,510 additions
and
6,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import sys | ||
import typing | ||
from . import utils_languages_menu | ||
from . import settings | ||
from . import bl_extract_messages | ||
from . import utils_rtl | ||
from . import utils | ||
from . import utils_languages_menu | ||
from . import merge_po | ||
from . import utils | ||
from . import utils_rtl | ||
from . import bl_extract_messages | ||
from . import utils_cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import sys | ||
import typing | ||
|
||
|
||
def cleanup_po(args, settings): | ||
''' | ||
''' | ||
|
||
pass | ||
|
||
|
||
def language_menu(args, settings): | ||
''' | ||
''' | ||
|
||
pass | ||
|
||
|
||
def main(): | ||
''' | ||
''' | ||
|
||
pass | ||
|
||
|
||
def rtl_process_po(args, settings): | ||
''' | ||
''' | ||
|
||
pass | ||
|
||
|
||
def strip_po(args, settings): | ||
''' | ||
''' | ||
|
||
pass | ||
|
||
|
||
def update_po(args, settings): | ||
''' | ||
''' | ||
|
||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import sys | ||
import typing | ||
from . import keymap_hierarchy | ||
from . import platform_helpers | ||
from . import keymap_from_toolbar | ||
from . import platform_helpers | ||
from . import io | ||
from . import keymap_hierarchy | ||
from . import versioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import sys | ||
import typing | ||
|
||
|
||
def keyconfig_update(keyconfig_data, keyconfig_version): | ||
''' | ||
''' | ||
|
||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.