koishi-plugin-bilibili-notify 3.4.0-alpha.4 → 3.4.0-alpha.5

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.
package/lib/index.cjs CHANGED
@@ -2305,6 +2305,7 @@ var GenerateImg = class GenerateImg extends koishi.Service {
2305
2305
  width: 100%;
2306
2306
  height: 100%;
2307
2307
  border-radius: 50%;
2308
+ border: 3px solid white;
2308
2309
  }
2309
2310
 
2310
2311
  .user-info {
@@ -2325,8 +2326,15 @@ var GenerateImg = class GenerateImg extends koishi.Service {
2325
2326
  padding: 0 10px;
2326
2327
  border: solid 2px white;
2327
2328
  overflow: hidden;
2329
+ }
2330
+
2331
+ .name-badge span {
2332
+ max-width: 100px;
2333
+ white-space: nowrap;
2334
+ text-overflow: ellipsis;
2335
+ overflow: hidden;
2328
2336
  font-weight: bold;
2329
- font-size: 14px;
2337
+ font-size: 12px;
2330
2338
  }
2331
2339
 
2332
2340
  .accompany {
@@ -2336,7 +2344,7 @@ var GenerateImg = class GenerateImg extends koishi.Service {
2336
2344
  height: 25px;
2337
2345
  background-color: ${bgColor[0]};
2338
2346
  border-radius: 25px;
2339
- border: solid 1px white;
2347
+ border: solid 2px white;
2340
2348
  overflow: hidden;
2341
2349
  }
2342
2350
 
@@ -2350,7 +2358,8 @@ var GenerateImg = class GenerateImg extends koishi.Service {
2350
2358
 
2351
2359
  .accompany span {
2352
2360
  color: white;
2353
- font-size: 11px;
2361
+ font-size: 10px;
2362
+ font-weight: bold;
2354
2363
  margin-right: 5px;
2355
2364
  }
2356
2365
 
@@ -2381,10 +2390,10 @@ var GenerateImg = class GenerateImg extends koishi.Service {
2381
2390
  </div>
2382
2391
  <div class="user-info">
2383
2392
  <div class="name-badge">
2384
- ${uname}
2393
+ <span>${uname}</span>
2385
2394
  </div>
2386
2395
  <div class="accompany">
2387
- <div class="master-avatar"></div><span>已陪伴主播 ${accompany} 天</span>
2396
+ <div class="master-avatar"></div><span>已服役 ${accompany} 天</span>
2388
2397
  </div>
2389
2398
  </div>
2390
2399
  </div>
package/lib/index.mjs CHANGED
@@ -2280,6 +2280,7 @@ var GenerateImg = class GenerateImg extends Service {
2280
2280
  width: 100%;
2281
2281
  height: 100%;
2282
2282
  border-radius: 50%;
2283
+ border: 3px solid white;
2283
2284
  }
2284
2285
 
2285
2286
  .user-info {
@@ -2300,8 +2301,15 @@ var GenerateImg = class GenerateImg extends Service {
2300
2301
  padding: 0 10px;
2301
2302
  border: solid 2px white;
2302
2303
  overflow: hidden;
2304
+ }
2305
+
2306
+ .name-badge span {
2307
+ max-width: 100px;
2308
+ white-space: nowrap;
2309
+ text-overflow: ellipsis;
2310
+ overflow: hidden;
2303
2311
  font-weight: bold;
2304
- font-size: 14px;
2312
+ font-size: 12px;
2305
2313
  }
2306
2314
 
2307
2315
  .accompany {
@@ -2311,7 +2319,7 @@ var GenerateImg = class GenerateImg extends Service {
2311
2319
  height: 25px;
2312
2320
  background-color: ${bgColor[0]};
2313
2321
  border-radius: 25px;
2314
- border: solid 1px white;
2322
+ border: solid 2px white;
2315
2323
  overflow: hidden;
2316
2324
  }
2317
2325
 
@@ -2325,7 +2333,8 @@ var GenerateImg = class GenerateImg extends Service {
2325
2333
 
2326
2334
  .accompany span {
2327
2335
  color: white;
2328
- font-size: 11px;
2336
+ font-size: 10px;
2337
+ font-weight: bold;
2329
2338
  margin-right: 5px;
2330
2339
  }
2331
2340
 
@@ -2356,10 +2365,10 @@ var GenerateImg = class GenerateImg extends Service {
2356
2365
  </div>
2357
2366
  <div class="user-info">
2358
2367
  <div class="name-badge">
2359
- ${uname}
2368
+ <span>${uname}</span>
2360
2369
  </div>
2361
2370
  <div class="accompany">
2362
- <div class="master-avatar"></div><span>已陪伴主播 ${accompany} 天</span>
2371
+ <div class="master-avatar"></div><span>已服役 ${accompany} 天</span>
2363
2372
  </div>
2364
2373
  </div>
2365
2374
  </div>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "koishi-plugin-bilibili-notify",
3
3
  "description": "Koishi bilibili notify plugin",
4
- "version": "3.4.0-alpha.4",
4
+ "version": "3.4.0-alpha.5",
5
5
  "main": "./lib/index.cjs",
6
6
  "typings": "lib/index.d.ts",
7
7
  "files": [