userapi-ai 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +9 -1
- data/lib/userapi/version.rb +1 -1
- metadata +11 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2a312a94b6fe794c6864447a87b538ded2da5a079f66bd1bb4a8a6fcccb10ce
|
|
4
|
+
data.tar.gz: 5bd0aea4b27da2633785f9e03ffb6e36f621e2e235713c73eeac3650e5a5f818
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bb79c11f927d79eb97284cc0c1ccb099905c13108cb92078bd2705aa44279070b865c8ebc45d313840ee28015bfa6fb1f7abd2d8f9a2a9a766d86224f98b6d3
|
|
7
|
+
data.tar.gz: 2656128845097f9614ca64c26c353b9343df1a2794ee5e3990bbce8258b1508e09a7819e4ff4cbdace8a0fd5d307d8d37aa8a569c2331958ae6094cae68ca847
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.3.2] - 2024-03-24
|
|
4
|
+
- Fix description
|
|
5
|
+
|
|
6
|
+
## [0.3.0] - 2024-03-24
|
|
7
|
+
- Tools: crop
|
|
3
8
|
|
|
4
9
|
## [0.2.0] - 2024-03-24
|
|
5
|
-
|
|
10
|
+
- Raise StandardError on {"status"=>false, "error"=>"..."}
|
|
6
11
|
|
|
7
12
|
## [0.1.0] - 2024-03-24
|
|
8
13
|
|
data/README.md
CHANGED
|
@@ -107,7 +107,15 @@ See more [here](https://butternut-saffron-e5e.notion.site/Midjourney-userapi-ai-
|
|
|
107
107
|
|
|
108
108
|
#### Tools
|
|
109
109
|
|
|
110
|
-
You can split the quad-layout output from Midjourney into 4 separate images.
|
|
110
|
+
You can split the quad-layout output from Midjourney into 4 separate images.
|
|
111
|
+
|
|
112
|
+
Add the gem to your Gemfile:
|
|
113
|
+
|
|
114
|
+
```rb
|
|
115
|
+
gem "mini_magick"
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Now you can do some magick.
|
|
111
119
|
|
|
112
120
|
```ruby
|
|
113
121
|
response = client.status result
|
data/lib/userapi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: userapi-ai
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- Smolev
|
|
7
|
+
- Denis Smolev
|
|
8
|
+
- Nikita Zdr
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: exe
|
|
10
11
|
cert_chain: []
|
|
@@ -38,7 +39,10 @@ dependencies:
|
|
|
38
39
|
- - ">="
|
|
39
40
|
- !ruby/object:Gem::Version
|
|
40
41
|
version: '1'
|
|
41
|
-
description:
|
|
42
|
+
description: 'This library provides a convenient way to interact with the Midjourney
|
|
43
|
+
via API offered by the UserAPI.ai website. All major methods are available, including:
|
|
44
|
+
imagine, describe, upscale, variations, inpaint (vary region), pan, zoom, and reroll,
|
|
45
|
+
working in the remix mode.'
|
|
42
46
|
email:
|
|
43
47
|
- smolev@me.com
|
|
44
48
|
executables: []
|
|
@@ -60,11 +64,11 @@ files:
|
|
|
60
64
|
- lib/userapi/tools.rb
|
|
61
65
|
- lib/userapi/version.rb
|
|
62
66
|
- sig/userapi/ai.rbs
|
|
63
|
-
homepage: https://userapi.ai
|
|
67
|
+
homepage: https://userapi.ai
|
|
64
68
|
licenses:
|
|
65
69
|
- MIT
|
|
66
70
|
metadata:
|
|
67
|
-
homepage_uri: https://userapi.ai
|
|
71
|
+
homepage_uri: https://userapi.ai
|
|
68
72
|
source_code_uri: https://github.com/neonix20b/userapi-ai
|
|
69
73
|
changelog_uri: https://github.com/neonix20b/userapi-ai/blob/main/CHANGELOG.md
|
|
70
74
|
post_install_message:
|
|
@@ -73,9 +77,9 @@ require_paths:
|
|
|
73
77
|
- lib
|
|
74
78
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
75
79
|
requirements:
|
|
76
|
-
- -
|
|
80
|
+
- - ">="
|
|
77
81
|
- !ruby/object:Gem::Version
|
|
78
|
-
version:
|
|
82
|
+
version: 2.6.0
|
|
79
83
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
84
|
requirements:
|
|
81
85
|
- - ">="
|