Skip to content

Commit

Permalink
İlk sürüm yükleniyor
Browse files Browse the repository at this point in the history
  • Loading branch information
bugra9 committed Sep 14, 2017
1 parent 9d5a1d3 commit 3f5297a
Show file tree
Hide file tree
Showing 20 changed files with 6,397 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets":[
"es2015", "react"
]
}
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
dist
node_modules
npm-debug.log
*.sublime-project
*.sublime-workspace
Gemfile.lock

.DS_Store
Thumbs.db
37 changes: 36 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
# BootableUSBGUI
# BootableUSBGUI
BootableUSB (<https://github.com/bugra9/BootableUSB>) yazılımı için arayüz çalışmasıdır. Çalışması için BootableUSB yazılımı son sürümünün yüklü olması gerekmektedir.

<https://github.com/bugra9/BootableUSB/releases> bağlantısından paketlenmiş haline ulaşabilirsiniz.

### Ekran görüntüsü

Gelişmiş Seçenekler | Bölüm Düzeni ve Sistem Türü
:-------------------------:|:-------------------------:
![](https://s26.postimg.org/fllhkmuk9/bootable_USBGUI.png) | ![](https://s26.postimg.org/yf7ahmss9/bootable_USBGUI_2.png)

Biçimlendirirken | Kalıp dosyası kopyalanırken
:--------------------------:|:--------------------------:
![](https://s26.postimg.org/py7s6po3d/bootable_USBGUI_3.png) | ![](https://s26.postimg.org/b3sdk0ta1/bootable_USBGUI_4.png)

### Kaynak koddan yükleme
```
git clone https://github.com/bugra9/BootableUSBGUI
cd BootableUSBGUI
yarn install
```

### Kaynak koddan çalıştırma
```
yarn start
```

### Paketleme
```
yarn dist
```

### Lisans
MIT <https://github.com/bugra9/BootableUSBGUI/blob/master/LICENSE>

Bu programın KESİNLİKLE HİÇBİR TEMİNATI YOKTUR.
12 changes: 12 additions & 0 deletions electron-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
productName: BootableUSB
forceCodeSigning: true
files:
- "dist/index.html"
- "dist/index_bundle.js"
- "package.json"
- "main.js"
- "!node_modules"
asar: true
linux:
category: "GNOME;GTK;System;Utility"
packageCategory: "GNOME;GTK;System;Utility"
60 changes: 60 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
const electron = require('electron')
// Module to control application life.
const app = electron.app
// Module to create native browser window.
const BrowserWindow = electron.BrowserWindow

const path = require('path')
const url = require('url')

// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow

function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({width: 600, height: 650})

// and load the index.html of the app.
mainWindow.loadURL(url.format({
pathname: path.join(__dirname, 'dist/index.html'),
protocol: 'file:',
slashes: true
}))

// Open the DevTools.
// mainWindow.webContents.openDevTools()

// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)

// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})

app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
47 changes: 47 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "BootableUSBGUI",
"version": "0.1.0",
"description": "BootableUSB allows you to create bootable USB drives for Windows and Linux distributions.",
"main": "main.js",
"repository": "https://github.com/bugra9/BootableUSBGUI",
"author": "bugra9",
"license": "MIT",
"scripts": {
"start": "webpack && electron .",
"build": "webpack -p && electron-builder --dir",
"dist": "webpack -p && electron-builder",
"watch": "webpack --watch & electron ."
},
"dependencies": {
"gettext-parser": "^1.3.0",
"html-webpack-plugin": "^2.30.1",
"material-ui": "^0.19.1",
"material-ui-icons": "^1.0.0-beta.5",
"node-gettext": "^2.0.0",
"path": "^0.12.7",
"react": "^15.6.1",
"react-alert": "^2.3.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.72.0",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.8.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"electron": "^1.8.0",
"electron-builder": "^19.28.4",
"file-loader": "^0.11.2",
"raw-loader": "^0.5.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9"
}
}
54 changes: 54 additions & 0 deletions po/tr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
msgid ""
msgstr ""
"Project-Id-Version: bootableusb\n"
"Report-Msgid-Bugs-To: https://github.com/bugra9/BootableUSB/issues\n"
"POT-Creation-Date: 2017-09-14 09:55+0000\n"
"PO-Revision-Date: 2017-09-14 09:55+0000\n"
"Last-Translator: bugra9 <[email protected]>\n"
"Language-Team: Turkish <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tr\n"

msgid "USB Storage Device"
msgstr "USB Depolama Aygıtı"

msgid "ISO Image"
msgstr "ISO Yansıması"

msgid "Device"
msgstr "Aygıt"

msgid "Advanced Options"
msgstr "Gelişmiş Seçenekler"

msgid "HYBRIT"
msgstr "MELEZ"

msgid "Partition Scheme and target system type"
msgstr "Disk Bölüm Düzeni ve Hedef Sistem Türü"

msgid "%s partition scheme for BIOS or UEFI"
msgstr "BIOS ya da UEFI için %s bölüm düzeni"

msgid "%s partition scheme for BIOS"
msgstr "BIOS için %s Bölüm Düzeni"

msgid "%s partition scheme for UEFI"
msgstr "UEFI için %s Bölüm Düzeni"

msgid "%s partition scheme"
msgstr "%s Bölüm Düzeni"

msgid "File system"
msgstr "Dosya Sistemi"

msgid "New volume label"
msgstr "Yeni Birim Etiketi"

msgid "Persistent Storage"
msgstr "Kalıcı Depolama"

msgid "Start"
msgstr "Başlat"
Loading

0 comments on commit 3f5297a

Please sign in to comment.