catime 0.2.0__tar.gz → 0.4.0__tar.gz
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.
- {catime-0.2.0 → catime-0.4.0}/.github/workflows/hourly-cat.yml +0 -1
- catime-0.4.0/PKG-INFO +45 -0
- catime-0.4.0/README.md +35 -0
- catime-0.4.0/catlist.json +442 -0
- catime-0.4.0/docs/app.js +223 -0
- catime-0.4.0/docs/apple-touch-icon.png +0 -0
- catime-0.4.0/docs/favicon-32.png +0 -0
- catime-0.4.0/docs/favicon.ico +0 -0
- catime-0.4.0/docs/icon-192.png +0 -0
- catime-0.4.0/docs/index.html +58 -0
- catime-0.4.0/docs/style.css +294 -0
- {catime-0.2.0 → catime-0.4.0}/pyproject.toml +4 -1
- {catime-0.2.0 → catime-0.4.0}/scripts/generate_cat.py +32 -5
- {catime-0.2.0 → catime-0.4.0}/src/catime/__init__.py +1 -1
- {catime-0.2.0 → catime-0.4.0}/src/catime/cli.py +42 -1
- catime-0.2.0/PKG-INFO +0 -25
- catime-0.2.0/README.md +0 -15
- catime-0.2.0/catlist.json +0 -15
- {catime-0.2.0 → catime-0.4.0}/.github/workflows/publish.yml +0 -0
- {catime-0.2.0 → catime-0.4.0}/.gitignore +0 -0
- {catime-0.2.0 → catime-0.4.0}/LICENSE +0 -0
|
@@ -30,7 +30,6 @@ jobs:
|
|
|
30
30
|
env:
|
|
31
31
|
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
|
|
32
32
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
33
|
-
CAT_ISSUE_NUMBER: '1'
|
|
34
33
|
NANOBANANA_MODEL: gemini-3-pro-image-preview
|
|
35
34
|
NANOBANANA_TIMEOUT: '180'
|
|
36
35
|
NANOBANANA_FALLBACK_MODELS: gemini-3-pro-image-preview,gemini-2.5-flash-image
|
catime-0.4.0/PKG-INFO
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: catime
|
|
3
|
+
Version: 0.4.0
|
|
4
|
+
Summary: AI-generated hourly cat images - a new cat every hour!
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Requires-Dist: httpx
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# <img src="docs/icon-192.png" width="32" height="32" alt="catime icon"> catime
|
|
12
|
+
|
|
13
|
+
AI-generated hourly cat images. A new cat every hour!
|
|
14
|
+
|
|
15
|
+
Every hour, a GitHub Actions workflow generates a unique cat image using [nanobanana-py](https://pypi.org/project/nanobanana-py/) (Gemini API), uploads it as a GitHub Release asset, and posts it to a monthly issue.
|
|
16
|
+
|
|
17
|
+
## Install & Usage
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
uvx catime # Show total cat count
|
|
21
|
+
uvx catime latest # View the latest cat
|
|
22
|
+
uvx catime 42 # View cat #42
|
|
23
|
+
uvx catime today # List today's cats
|
|
24
|
+
uvx catime yesterday # List yesterday's cats
|
|
25
|
+
uvx catime 2026-01-30 # List all cats from a date
|
|
26
|
+
uvx catime 2026-01-30T05 # View the cat from a specific hour
|
|
27
|
+
uvx catime --list # List all cats
|
|
28
|
+
uvx catime view # Open cat gallery in browser (localhost:8000)
|
|
29
|
+
uvx catime view --port 3000 # Use custom port
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## How It Works
|
|
33
|
+
|
|
34
|
+
- **Image generation:** [nanobanana-py](https://pypi.org/project/nanobanana-py/) with `gemini-3-pro-image-preview` (fallback: `gemini-2.5-flash-image`)
|
|
35
|
+
- **Image hosting:** GitHub Release assets
|
|
36
|
+
- **Cat gallery:** Monthly GitHub issues (auto-created)
|
|
37
|
+
- **Metadata:** `catlist.json` in the repo (records timestamp, model used, success/failure)
|
|
38
|
+
- **Gallery:** [GitHub Pages](https://yazelin.github.io/catime) waterfall gallery (`docs/`)
|
|
39
|
+
- **Schedule:** GitHub Actions cron, every hour at :00
|
|
40
|
+
|
|
41
|
+
## Setup (for your own repo)
|
|
42
|
+
|
|
43
|
+
1. Fork or clone this repo
|
|
44
|
+
2. Add `GEMINI_API_KEY` to repo Settings → Secrets
|
|
45
|
+
3. The workflow will auto-create monthly issues and a `cats` release
|
catime-0.4.0/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# <img src="docs/icon-192.png" width="32" height="32" alt="catime icon"> catime
|
|
2
|
+
|
|
3
|
+
AI-generated hourly cat images. A new cat every hour!
|
|
4
|
+
|
|
5
|
+
Every hour, a GitHub Actions workflow generates a unique cat image using [nanobanana-py](https://pypi.org/project/nanobanana-py/) (Gemini API), uploads it as a GitHub Release asset, and posts it to a monthly issue.
|
|
6
|
+
|
|
7
|
+
## Install & Usage
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
uvx catime # Show total cat count
|
|
11
|
+
uvx catime latest # View the latest cat
|
|
12
|
+
uvx catime 42 # View cat #42
|
|
13
|
+
uvx catime today # List today's cats
|
|
14
|
+
uvx catime yesterday # List yesterday's cats
|
|
15
|
+
uvx catime 2026-01-30 # List all cats from a date
|
|
16
|
+
uvx catime 2026-01-30T05 # View the cat from a specific hour
|
|
17
|
+
uvx catime --list # List all cats
|
|
18
|
+
uvx catime view # Open cat gallery in browser (localhost:8000)
|
|
19
|
+
uvx catime view --port 3000 # Use custom port
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## How It Works
|
|
23
|
+
|
|
24
|
+
- **Image generation:** [nanobanana-py](https://pypi.org/project/nanobanana-py/) with `gemini-3-pro-image-preview` (fallback: `gemini-2.5-flash-image`)
|
|
25
|
+
- **Image hosting:** GitHub Release assets
|
|
26
|
+
- **Cat gallery:** Monthly GitHub issues (auto-created)
|
|
27
|
+
- **Metadata:** `catlist.json` in the repo (records timestamp, model used, success/failure)
|
|
28
|
+
- **Gallery:** [GitHub Pages](https://yazelin.github.io/catime) waterfall gallery (`docs/`)
|
|
29
|
+
- **Schedule:** GitHub Actions cron, every hour at :00
|
|
30
|
+
|
|
31
|
+
## Setup (for your own repo)
|
|
32
|
+
|
|
33
|
+
1. Fork or clone this repo
|
|
34
|
+
2. Add `GEMINI_API_KEY` to repo Settings → Secrets
|
|
35
|
+
3. The workflow will auto-create monthly issues and a `cats` release
|
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"number": 1,
|
|
4
|
+
"timestamp": "2026-01-30 05:46 UTC",
|
|
5
|
+
"url": "https://github.com/yazelin/ccat/releases/download/cats/cat_2026-01-30_0546_UTC.png",
|
|
6
|
+
"model": "gemini-2.5-flash-image"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"number": 2,
|
|
10
|
+
"timestamp": "2026-01-30 05:56 UTC",
|
|
11
|
+
"url": "https://github.com/yazelin/ccat/releases/download/cats/cat_2026-01-30_0556_UTC.png",
|
|
12
|
+
"model": "gemini-3-pro-image-preview",
|
|
13
|
+
"status": "success"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"number": 3,
|
|
17
|
+
"timestamp": "2026-01-30 06:23 UTC",
|
|
18
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0623_UTC.png",
|
|
19
|
+
"model": "gemini-3-pro-image-preview",
|
|
20
|
+
"status": "success"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"number": 4,
|
|
24
|
+
"timestamp": "2026-01-30 06:33 UTC",
|
|
25
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0633_UTC.png",
|
|
26
|
+
"model": "gemini-3-pro-image-preview",
|
|
27
|
+
"status": "success"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"number": 5,
|
|
31
|
+
"timestamp": "2026-01-30 06:53 UTC",
|
|
32
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0653_UTC.png",
|
|
33
|
+
"model": "gemini-2.5-flash-image (fallback from gemini-3-pro-image-preview, reason: timeout after 180.0s)",
|
|
34
|
+
"status": "success"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"number": 6,
|
|
38
|
+
"timestamp": "2026-01-30 07:41 UTC",
|
|
39
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0741_UTC.png",
|
|
40
|
+
"model": "gemini-2.5-flash-image (fallback from gemini-3-pro-image-preview, reason: timeout after 180.0s)",
|
|
41
|
+
"status": "success"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"number": 7,
|
|
45
|
+
"timestamp": "2026-01-30 08:42 UTC",
|
|
46
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0842_UTC.png",
|
|
47
|
+
"model": "gemini-2.5-flash-image (fallback from gemini-3-pro-image-preview, reason: timeout after 180.0s)",
|
|
48
|
+
"status": "success"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"number": 8,
|
|
52
|
+
"timestamp": "2026-01-30 09:40 UTC",
|
|
53
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_0940_UTC.png",
|
|
54
|
+
"model": "gemini-3-pro-image-preview",
|
|
55
|
+
"status": "success"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"number": 9,
|
|
59
|
+
"timestamp": "2026-01-30 10:36 UTC",
|
|
60
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1036_UTC.png",
|
|
61
|
+
"model": "gemini-3-pro-image-preview",
|
|
62
|
+
"status": "success"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"number": 10,
|
|
66
|
+
"timestamp": "2026-01-30 11:30 UTC",
|
|
67
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1130_UTC.png",
|
|
68
|
+
"model": "gemini-3-pro-image-preview",
|
|
69
|
+
"status": "success"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"number": 11,
|
|
73
|
+
"timestamp": "2026-01-30 13:00 UTC",
|
|
74
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1300_UTC.png",
|
|
75
|
+
"model": "gemini-3-pro-image-preview",
|
|
76
|
+
"status": "success"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"number": 12,
|
|
80
|
+
"timestamp": "2026-01-30 14:01 UTC",
|
|
81
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1401_UTC.png",
|
|
82
|
+
"model": "gemini-3-pro-image-preview",
|
|
83
|
+
"status": "success"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"number": 13,
|
|
87
|
+
"timestamp": "2026-01-30 15:37 UTC",
|
|
88
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1537_UTC.png",
|
|
89
|
+
"model": "gemini-3-pro-image-preview",
|
|
90
|
+
"status": "success"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"number": 14,
|
|
94
|
+
"timestamp": "2026-01-30 16:42 UTC",
|
|
95
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1642_UTC.png",
|
|
96
|
+
"model": "gemini-3-pro-image-preview",
|
|
97
|
+
"status": "success"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"number": 15,
|
|
101
|
+
"timestamp": "2026-01-30 17:35 UTC",
|
|
102
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1735_UTC.png",
|
|
103
|
+
"model": "gemini-3-pro-image-preview",
|
|
104
|
+
"status": "success"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"number": 16,
|
|
108
|
+
"timestamp": "2026-01-30 18:45 UTC",
|
|
109
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1845_UTC.png",
|
|
110
|
+
"model": "gemini-3-pro-image-preview",
|
|
111
|
+
"status": "success"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"number": 17,
|
|
115
|
+
"timestamp": "2026-01-30 19:33 UTC",
|
|
116
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_1933_UTC.png",
|
|
117
|
+
"model": "gemini-3-pro-image-preview",
|
|
118
|
+
"status": "success"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"number": 18,
|
|
122
|
+
"timestamp": "2026-01-30 20:32 UTC",
|
|
123
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_2032_UTC.png",
|
|
124
|
+
"model": "gemini-3-pro-image-preview",
|
|
125
|
+
"status": "success"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"number": 19,
|
|
129
|
+
"timestamp": "2026-01-30 21:30 UTC",
|
|
130
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_2130_UTC.png",
|
|
131
|
+
"model": "gemini-3-pro-image-preview",
|
|
132
|
+
"status": "success"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"number": 20,
|
|
136
|
+
"timestamp": "2026-01-30 22:28 UTC",
|
|
137
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_2228_UTC.png",
|
|
138
|
+
"model": "gemini-3-pro-image-preview",
|
|
139
|
+
"status": "success"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"number": 21,
|
|
143
|
+
"timestamp": "2026-01-30 23:27 UTC",
|
|
144
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-30_2327_UTC.png",
|
|
145
|
+
"model": "gemini-3-pro-image-preview",
|
|
146
|
+
"status": "success"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"number": 22,
|
|
150
|
+
"timestamp": "2026-01-31 02:05 UTC",
|
|
151
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0205_UTC.png",
|
|
152
|
+
"model": "gemini-3-pro-image-preview",
|
|
153
|
+
"status": "success"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"number": 23,
|
|
157
|
+
"timestamp": "2026-01-31 04:25 UTC",
|
|
158
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0425_UTC.png",
|
|
159
|
+
"model": "gemini-3-pro-image-preview",
|
|
160
|
+
"status": "success"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"number": 24,
|
|
164
|
+
"timestamp": "2026-01-31 05:39 UTC",
|
|
165
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0539_UTC.png",
|
|
166
|
+
"model": "gemini-3-pro-image-preview",
|
|
167
|
+
"status": "success"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"number": 25,
|
|
171
|
+
"timestamp": "2026-01-31 06:42 UTC",
|
|
172
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0642_UTC.png",
|
|
173
|
+
"model": "gemini-3-pro-image-preview",
|
|
174
|
+
"status": "success"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"number": 26,
|
|
178
|
+
"timestamp": "2026-01-31 07:30 UTC",
|
|
179
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0730_UTC.png",
|
|
180
|
+
"model": "gemini-3-pro-image-preview",
|
|
181
|
+
"status": "success"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"number": 27,
|
|
185
|
+
"timestamp": "2026-01-31 08:33 UTC",
|
|
186
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0833_UTC.png",
|
|
187
|
+
"model": "gemini-3-pro-image-preview",
|
|
188
|
+
"status": "success"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"number": 28,
|
|
192
|
+
"timestamp": "2026-01-31 09:30 UTC",
|
|
193
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_0930_UTC.png",
|
|
194
|
+
"model": "gemini-3-pro-image-preview",
|
|
195
|
+
"status": "success"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"number": 29,
|
|
199
|
+
"timestamp": "2026-01-31 10:27 UTC",
|
|
200
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1027_UTC.png",
|
|
201
|
+
"model": "gemini-3-pro-image-preview",
|
|
202
|
+
"status": "success"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"number": 30,
|
|
206
|
+
"timestamp": "2026-01-31 11:22 UTC",
|
|
207
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1122_UTC.png",
|
|
208
|
+
"model": "gemini-3-pro-image-preview",
|
|
209
|
+
"status": "success"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"number": 31,
|
|
213
|
+
"timestamp": "2026-01-31 12:52 UTC",
|
|
214
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1252_UTC.png",
|
|
215
|
+
"model": "gemini-3-pro-image-preview",
|
|
216
|
+
"status": "success"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"number": 32,
|
|
220
|
+
"timestamp": "2026-01-31 13:42 UTC",
|
|
221
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1342_UTC.png",
|
|
222
|
+
"model": "gemini-3-pro-image-preview",
|
|
223
|
+
"status": "success"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"number": 33,
|
|
227
|
+
"timestamp": "2026-01-31 14:26 UTC",
|
|
228
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1426_UTC.png",
|
|
229
|
+
"model": "gemini-3-pro-image-preview",
|
|
230
|
+
"status": "success"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"number": 34,
|
|
234
|
+
"timestamp": "2026-01-31 15:26 UTC",
|
|
235
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1526_UTC.png",
|
|
236
|
+
"model": "gemini-3-pro-image-preview",
|
|
237
|
+
"status": "success"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"number": 35,
|
|
241
|
+
"timestamp": "2026-01-31 16:31 UTC",
|
|
242
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1631_UTC.png",
|
|
243
|
+
"model": "gemini-3-pro-image-preview",
|
|
244
|
+
"status": "success"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"number": 36,
|
|
248
|
+
"timestamp": "2026-01-31 17:25 UTC",
|
|
249
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1725_UTC.png",
|
|
250
|
+
"model": "gemini-3-pro-image-preview",
|
|
251
|
+
"status": "success"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"number": 37,
|
|
255
|
+
"timestamp": "2026-01-31 18:35 UTC",
|
|
256
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1835_UTC.png",
|
|
257
|
+
"model": "gemini-3-pro-image-preview",
|
|
258
|
+
"status": "success"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"number": 38,
|
|
262
|
+
"timestamp": "2026-01-31 19:22 UTC",
|
|
263
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_1922_UTC.png",
|
|
264
|
+
"model": "gemini-3-pro-image-preview",
|
|
265
|
+
"status": "success"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"number": 39,
|
|
269
|
+
"timestamp": "2026-01-31 20:28 UTC",
|
|
270
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_2028_UTC.png",
|
|
271
|
+
"model": "gemini-3-pro-image-preview",
|
|
272
|
+
"status": "success"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"number": 40,
|
|
276
|
+
"timestamp": "2026-01-31 21:24 UTC",
|
|
277
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_2124_UTC.png",
|
|
278
|
+
"model": "gemini-3-pro-image-preview",
|
|
279
|
+
"status": "success"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"number": 41,
|
|
283
|
+
"timestamp": "2026-01-31 22:25 UTC",
|
|
284
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_2225_UTC.png",
|
|
285
|
+
"model": "gemini-3-pro-image-preview",
|
|
286
|
+
"status": "success"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"number": 42,
|
|
290
|
+
"timestamp": "2026-01-31 23:24 UTC",
|
|
291
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-01-31_2324_UTC.png",
|
|
292
|
+
"model": "gemini-3-pro-image-preview",
|
|
293
|
+
"status": "success"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"number": 43,
|
|
297
|
+
"timestamp": "2026-02-01 02:35 UTC",
|
|
298
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0235_UTC.png",
|
|
299
|
+
"model": "gemini-3-pro-image-preview",
|
|
300
|
+
"status": "success"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"number": 44,
|
|
304
|
+
"timestamp": "2026-02-01 05:02 UTC",
|
|
305
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0502_UTC.png",
|
|
306
|
+
"model": "gemini-3-pro-image-preview",
|
|
307
|
+
"status": "success"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"number": 45,
|
|
311
|
+
"timestamp": "2026-02-01 06:52 UTC",
|
|
312
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0652_UTC.png",
|
|
313
|
+
"model": "gemini-3-pro-image-preview",
|
|
314
|
+
"status": "success"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"number": 46,
|
|
318
|
+
"timestamp": "2026-02-01 07:38 UTC",
|
|
319
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0738_UTC.png",
|
|
320
|
+
"model": "gemini-3-pro-image-preview",
|
|
321
|
+
"status": "success"
|
|
322
|
+
},
|
|
323
|
+
{
|
|
324
|
+
"number": 47,
|
|
325
|
+
"timestamp": "2026-02-01 08:35 UTC",
|
|
326
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0835_UTC.png",
|
|
327
|
+
"model": "gemini-3-pro-image-preview",
|
|
328
|
+
"status": "success"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"number": 48,
|
|
332
|
+
"timestamp": "2026-02-01 09:33 UTC",
|
|
333
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_0933_UTC.png",
|
|
334
|
+
"model": "gemini-3-pro-image-preview",
|
|
335
|
+
"status": "success"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"number": 49,
|
|
339
|
+
"timestamp": "2026-02-01 10:28 UTC",
|
|
340
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1028_UTC.png",
|
|
341
|
+
"model": "gemini-3-pro-image-preview",
|
|
342
|
+
"status": "success"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"number": 50,
|
|
346
|
+
"timestamp": "2026-02-01 11:23 UTC",
|
|
347
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1123_UTC.png",
|
|
348
|
+
"model": "gemini-3-pro-image-preview",
|
|
349
|
+
"status": "success"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"number": 51,
|
|
353
|
+
"timestamp": "2026-02-01 12:54 UTC",
|
|
354
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1254_UTC.png",
|
|
355
|
+
"model": "gemini-3-pro-image-preview",
|
|
356
|
+
"status": "success"
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
"number": 52,
|
|
360
|
+
"timestamp": "2026-02-01 13:44 UTC",
|
|
361
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1344_UTC.png",
|
|
362
|
+
"model": "gemini-3-pro-image-preview",
|
|
363
|
+
"status": "success"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"number": 53,
|
|
367
|
+
"timestamp": "2026-02-01 14:28 UTC",
|
|
368
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1428_UTC.png",
|
|
369
|
+
"model": "gemini-3-pro-image-preview",
|
|
370
|
+
"status": "success"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"number": 54,
|
|
374
|
+
"timestamp": "2026-02-01 15:27 UTC",
|
|
375
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1527_UTC.png",
|
|
376
|
+
"model": "gemini-3-pro-image-preview",
|
|
377
|
+
"status": "success"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"number": 55,
|
|
381
|
+
"timestamp": "2026-02-01 16:33 UTC",
|
|
382
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1633_UTC.png",
|
|
383
|
+
"model": "gemini-3-pro-image-preview",
|
|
384
|
+
"status": "success"
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"number": 56,
|
|
388
|
+
"timestamp": "2026-02-01 17:26 UTC",
|
|
389
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1726_UTC.png",
|
|
390
|
+
"model": "gemini-3-pro-image-preview",
|
|
391
|
+
"status": "success"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"number": 57,
|
|
395
|
+
"timestamp": "2026-02-01 18:37 UTC",
|
|
396
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1837_UTC.png",
|
|
397
|
+
"model": "gemini-3-pro-image-preview",
|
|
398
|
+
"status": "success"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"number": 58,
|
|
402
|
+
"timestamp": "2026-02-01 19:26 UTC",
|
|
403
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_1926_UTC.png",
|
|
404
|
+
"model": "gemini-3-pro-image-preview",
|
|
405
|
+
"status": "success"
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"number": 59,
|
|
409
|
+
"timestamp": "2026-02-01 20:29 UTC",
|
|
410
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_2029_UTC.png",
|
|
411
|
+
"model": "gemini-3-pro-image-preview",
|
|
412
|
+
"status": "success"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"number": 60,
|
|
416
|
+
"timestamp": "2026-02-01 21:26 UTC",
|
|
417
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_2126_UTC.png",
|
|
418
|
+
"model": "gemini-3-pro-image-preview",
|
|
419
|
+
"status": "success"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"number": 61,
|
|
423
|
+
"timestamp": "2026-02-01 22:27 UTC",
|
|
424
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_2227_UTC.png",
|
|
425
|
+
"model": "gemini-3-pro-image-preview",
|
|
426
|
+
"status": "success"
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"number": 62,
|
|
430
|
+
"timestamp": "2026-02-01 23:27 UTC",
|
|
431
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-01_2327_UTC.png",
|
|
432
|
+
"model": "gemini-3-pro-image-preview",
|
|
433
|
+
"status": "success"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"number": 63,
|
|
437
|
+
"timestamp": "2026-02-02 02:26 UTC",
|
|
438
|
+
"url": "https://github.com/yazelin/catime/releases/download/cats/cat_2026-02-02_0226_UTC.png",
|
|
439
|
+
"model": "gemini-3-pro-image-preview",
|
|
440
|
+
"status": "success"
|
|
441
|
+
}
|
|
442
|
+
]
|