Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some enhancements and optimizations, fix some problems #51

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.pyc
*.todo
*.todo
/.idea
114 changes: 24 additions & 90 deletions Context.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -108,115 +108,56 @@
"command": "convert_sha1"
},
{
"caption": "-"
},
{
"caption": "Convert Unixtime <-> Datetime",
"command": "convert_time_format"
},
{
"caption": "Insert Current Datetime",
"command": "insert_timestamp"
},
{
"caption": "-"
"caption": "Calculate SHA224",
"command": "convert_sha224"
},
{
"args": {
"length": "6"
},
"caption": "Generate Password (6 char)",
"command": "generate_password"
"caption": "Calculate SHA256",
"command": "convert_sha256"
},
{
"args": {
"length": "8"
},
"caption": "Generate Password (8 char)",
"command": "generate_password"
"caption": "Calculate SHA384",
"command": "convert_sha384"
},
{
"args": {
"length": "12"
},
"caption": "Generate Password (12 char)",
"command": "generate_password"
"caption": "Calculate SHA512",
"command": "convert_sha512"
},
{
"args": {
"length": "16"
},
"caption": "Generate Password (16 char)",
"command": "generate_password"
},
{
"args": {
"length": "32"
},
"caption": "Generate Password (32 char)",
"command": "generate_password"
"caption": "-"
},
{
"args": {
"length": "40"
},
"caption": "Generate Password (40 char)",
"command": "generate_password"
"caption": "Pretify JSON String",
"command": "string_utilities_decode_json"
},
{
"args": {
"length": "64"
},
"caption": "Generate Password (64 char)",
"command": "generate_password"
"caption": "JSON Escape",
"command": "json_escape"
},
{
"args": {
"length": "6"
},
"caption": "Generate Password with spec symbols (6 char)",
"command": "generate_password_spec_symbols"
"caption": "JSON Unescape",
"command": "json_unescape"
},
{
"args": {
"length": "8"
},
"caption": "Generate Password with spec symbols (8 char)",
"command": "generate_password_spec_symbols"
"caption": "-"
},
{
"args": {
"length": "12"
},
"caption": "Generate Password with spec symbols (12 char)",
"command": "generate_password_spec_symbols"
"caption": "Convert Unixtime <-> Datetime",
"command": "convert_time_format"
},
{
"args": {
"length": "16"
},
"caption": "Generate Password with spec symbols (16 char)",
"command": "generate_password_spec_symbols"
"caption": "Insert Current Datetime",
"command": "insert_timestamp"
},
{
"args": {
"length": "32"
},
"caption": "Generate Password with spec symbols (32 char)",
"command": "generate_password_spec_symbols"
"caption": "-"
},
{
"args": {
"length": "40"
},
"caption": "Generate Password with spec symbols (40 char)",
"command": "generate_password_spec_symbols"
"caption": "Generate Password",
"command": "generate_password"
},
{
"args": {
"length": "64"
},
"caption": "Generate Password with spec symbols (64 char)",
"caption": "Generate Password with spec symbols",
"command": "generate_password_spec_symbols"
},
{
Expand All @@ -240,13 +181,6 @@
{
"caption": "-"
},
{
"caption": "Pretify JSON String",
"command": "string_utilities_decode_json"
},
{
"caption": "-"
},
{
"caption": "Convert PHP Object to Array",
"command": "php_object_to_array"
Expand Down
102 changes: 10 additions & 92 deletions Default.sublime-commands
Original file line number Diff line number Diff line change
Expand Up @@ -116,101 +116,11 @@
"command": "insert_timestamp"
},
{
"args": {
"length": "6"
},
"caption": "String Utilities: Insert Password (6 char)",
"caption": "String Utilities: Insert Password",
"command": "generate_password"
},
{
"args": {
"length": "8"
},
"caption": "String Utilities: Insert Password (8 char)",
"command": "generate_password"
},
{
"args": {
"length": "12"
},
"caption": "String Utilities: Insert Password (12 char)",
"command": "generate_password"
},
{
"args": {
"length": "16"
},
"caption": "String Utilities: Insert Password (16 char)",
"command": "generate_password"
},
{
"args": {
"length": "32"
},
"caption": "String Utilities: Insert Password (32 char)",
"command": "generate_password"
},
{
"args": {
"length": "40"
},
"caption": "String Utilities: Insert Password (40 char)",
"command": "generate_password"
},
{
"args": {
"length": "64"
},
"caption": "String Utilities: Insert Password (64 char)",
"command": "generate_password"
},
{
"args": {
"length": "6"
},
"caption": "String Utilities: Insert Password with spec symbols (6 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "8"
},
"caption": "String Utilities: Insert Password with spec symbols (8 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "12"
},
"caption": "String Utilities: Insert Password with spec symbols (12 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "16"
},
"caption": "String Utilities: Insert Password with spec symbols (16 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "32"
},
"caption": "String Utilities: Insert Password with spec symbols (32 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "40"
},
"caption": "String Utilities: Insert Password with spec symbols (40 char)",
"command": "generate_password_spec_symbols"
},
{
"args": {
"length": "64"
},
"caption": "String Utilities: Insert Password with spec symbols (64 char)",
"caption": "String Utilities: Insert Password with spec symbols",
"command": "generate_password_spec_symbols"
},
{
Expand All @@ -229,6 +139,14 @@
"caption": "String Utilities: Decode JSON",
"command": "string_utilities_decode_json"
},
{
"caption": "String Utilities: JSON Escape",
"command": "json_escape"
},
{
"caption": "String Utilities: JSON Unescape",
"command": "json_unescape"
},
{
"caption": "String Utilities: PHP object to array",
"command": "php_object_to_array"
Expand Down
Loading