Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
P
Pardus Kataliz - pardusacikhack
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
kataliz
Pardus Kataliz - pardusacikhack
Commits
d08150bd
Kaydet (Commit)
d08150bd
authored
May 04, 2021
tarafından
Emincan Özcan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
design update
üst
330bbfbc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
10 deletions
+18
-10
background.js
desktop-client/src/background.js
+6
-3
Bucket.vue
desktop-client/src/components/Bucket.vue
+6
-1
AppPackages.vue
desktop-client/src/views/AppPackages.vue
+2
-2
tailwind.config.js
desktop-client/tailwind.config.js
+4
-4
No files found.
desktop-client/src/background.js
Dosyayı görüntüle @
d08150bd
...
...
@@ -14,8 +14,9 @@ protocol.registerSchemesAsPrivileged([
async
function
createWindow
()
{
// Create the browser window.
const
win
=
new
BrowserWindow
({
width
:
800
,
height
:
600
,
show
:
false
,
width
:
1200
,
height
:
740
,
webPreferences
:
{
// Use pluginOptions.nodeIntegration, leave this alone
// See nklayman.github.io/vue-cli-plugin-electron-builder/guide/security.html#node-integration for more info
...
...
@@ -23,11 +24,13 @@ async function createWindow() {
preload
:
path
.
join
(
__dirname
,
"../preload.js"
),
},
});
win
.
maximize
();
win
.
show
();
if
(
process
.
env
.
WEBPACK_DEV_SERVER_URL
)
{
// Load the url of the dev server if in development mode
await
win
.
loadURL
(
process
.
env
.
WEBPACK_DEV_SERVER_URL
);
if
(
!
process
.
env
.
IS_TEST
)
win
.
webContents
.
openDevTools
();
//
if (!process.env.IS_TEST) win.webContents.openDevTools();
}
else
{
createProtocol
(
"app"
);
// Load the index.html when not in development
...
...
desktop-client/src/components/Bucket.vue
Dosyayı görüntüle @
d08150bd
...
...
@@ -17,7 +17,12 @@
</button>
</div>
</div>
<button
@
click=
"exportToFile"
>
Dışa Aktar
</button>
<button
class=
"bg-pardus-yellow px-4 py-2 text-sm text-gray-900 font-medium rounded-md shadow-md w-full mt-4"
@
click=
"exportToFile"
>
Kurulum Dosyası Olarak Dışa Aktar
</button>
</div>
</
template
>
...
...
desktop-client/src/views/AppPackages.vue
Dosyayı görüntüle @
d08150bd
...
...
@@ -26,7 +26,7 @@
<div
v-for=
"pkg in filteredAppPackages"
:key=
"pkg.id"
class=
"bg-gray-700 bg-opacity-50 rounded-xl shadow-
lg pt-2 pb-8 overflow-hidden flex flex-col justify-betwe
en relative"
class=
"bg-gray-700 bg-opacity-50 rounded-xl shadow-
xg pt-4 pb-8 overflow-hidd
en relative"
>
<button
class=
"absolute rounded-tl-lg right-0 bottom-0 px-2 py-2 text-gray-900 bg-pardus-yellow flex items-center"
...
...
@@ -42,7 +42,7 @@
>
<IconCheck
class=
"h-12 w-12 text-white"
/>
</span>
<div>
<div
class=
"mb-4"
>
<img
class=
"w-full object-contain h-24"
:src=
"pkg.image_url"
/>
<h3
class=
"font-medium text-gray-200 mx-4 text-xl mt-4"
>
{{
pkg
.
name
}}
...
...
desktop-client/tailwind.config.js
Dosyayı görüntüle @
d08150bd
...
...
@@ -3,11 +3,11 @@ module.exports = {
darkMode
:
false
,
// or 'media' or 'class'
theme
:
{
extend
:
{
spacing
:
{
128
:
"36rem"
,
},
//
spacing: {
//
128: "36rem",
//
},
colors
:
{
"pardus-yellow"
:
"#
FFCC00
"
,
"pardus-yellow"
:
"#
ffcb01
"
,
},
},
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment