mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-12 08:03:09 -04:00
Merge branch 'main' of https://gitlab.com/bignutty/labscore into main
This commit is contained in:
commit
4798e60585
14 changed files with 255 additions and 72 deletions
|
@ -30,7 +30,7 @@ module.exports.timestamp = function(time, flag = "t"){
|
|||
}
|
||||
|
||||
module.exports.stringwrap = function(content = "", length, newlines = true){
|
||||
if(!newlines) content = content.replace(/\n/, '')
|
||||
if(!newlines) content = content.replace(/\n/, ' ')
|
||||
if(content.length > length) return content.substr(0, length) + '...';
|
||||
return content;
|
||||
}
|
||||
|
|
|
@ -152,13 +152,17 @@ const Statics = Object.freeze({
|
|||
file: "brands/_clyde/clyde.png",
|
||||
revision: 0
|
||||
},
|
||||
ai_gemini: {
|
||||
file: "icons/aiv2/gemini_spark.png",
|
||||
revision: 0
|
||||
},
|
||||
ai_palm_idle: {
|
||||
file: "icons/core/ico_notice_palm_idle.png",
|
||||
revision: 0
|
||||
},
|
||||
ai_summary: {
|
||||
file: "icons/core/ico_notice_summary.png",
|
||||
revision: 0
|
||||
file: "icons/flamingo/web_summary.png",
|
||||
revision: 1
|
||||
},
|
||||
warning: {
|
||||
file: "icons/core/ico_notice_warning.png",
|
||||
|
@ -209,6 +213,7 @@ module.exports.STATIC_ICONS = Object.freeze({
|
|||
ai_bard_idle: staticAsset(Statics.icons.ai_bard_idle),
|
||||
ai_clyde: staticAsset(Statics.icons.ai_clyde),
|
||||
ai_clyde_idle: staticAsset(Statics.icons.ai_clyde_idle),
|
||||
ai_gemini: staticAsset(Statics.icons.ai_gemini),
|
||||
ai_palm_idle: staticAsset(Statics.icons.ai_palm_idle),
|
||||
ai_summary: staticAsset(Statics.icons.ai_summary),
|
||||
warning: staticAsset(Statics.icons.warning)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue