This commit is contained in:
Troplo 2022-08-07 01:12:32 +10:00
parent 0d6e209fc6
commit ab7a433c69
3 changed files with 6 additions and 30 deletions

View file

@ -1,6 +1,7 @@
{ {
"name": "colubrina", "name": "colubrina",
"version": "1.0.19", "version": "1.0.20",
"description": "Simple instant communication.",
"private": true, "private": true,
"author": "Troplo <troplo@troplo.com>", "author": "Troplo <troplo@troplo.com>",
"scripts": { "scripts": {

View file

@ -169,7 +169,7 @@
<v-row v-if="!loading" @drop="handleDrag" no-gutters> <v-row v-if="!loading" @drop="handleDrag" no-gutters>
<v-col class="flex-grow-1 flex-shrink-1 pb-0" id="chat-col"> <v-col class="flex-grow-1 flex-shrink-1 pb-0" id="chat-col">
<v-card <v-card
class="d-flex flex-column fill-height rounded-xl mb-n3" class="d-flex flex-column fill-height rounded-0 mb-n3"
style="overflow: auto; height: calc(100vh - 24px - 40px)" style="overflow: auto; height: calc(100vh - 24px - 40px)"
color="card" color="card"
elevation="0" elevation="0"

View file

@ -94,43 +94,18 @@ module.exports = {
builderOptions: { builderOptions: {
appId: "com.troplo.colubrina", appId: "com.troplo.colubrina",
win: { win: {
target: [ target: ["portable", "nsis", "zip"],
{
target: "nsis",
arch: ["x64", "ia32", "armv7l", "arm64"]
}
],
publish: ["github"] publish: ["github"]
}, },
linux: { linux: {
target: [ target: ["AppImage", "deb", "tar.gz", "snap", "rpm"],
{
target: "AppImage",
arch: ["x64", "ia32", "armv7l", "arm64"]
},
{
target: "deb",
arch: ["x64", "ia32", "armv7l", "arm64"]
},
{
target: "snap",
arch: ["x64", "ia32", "armv7l", "arm64"]
},
{
target: "pacman",
arch: ["x64", "ia32", "armv7l", "arm64"]
},
{
target: "tar.gz",
arch: ["x64", "ia32", "armv7l", "arm64"]
}
],
publish: ["github"], publish: ["github"],
category: "Network", category: "Network",
synopsis: "Instant Messaging", synopsis: "Instant Messaging",
maintainer: "Troplo <troplo@troplo.com>" maintainer: "Troplo <troplo@troplo.com>"
}, },
mac: { mac: {
target: ["dmg", "zip"],
publish: ["github"] publish: ["github"]
} }
} }