6 Commits

7 changed files with 7 additions and 28 deletions

View File

@@ -4,8 +4,8 @@ Website = "https://gui-for-ffmpeg.projects.kor-elf.net/language/en"
Icon = "assets/icon.png"
Name = "GUI for FFmpeg"
ID = "net.kor-elf.projects.gui-for-ffmpeg"
Version = "1.0.1"
Build = 98
Version = "1.0.0"
Build = 75
[LinuxAndBSD]
GenericName = "GUI for FFmpeg"

View File

@@ -36,4 +36,4 @@
6. * fyne-cross windows
* fyne-cross linux
7. Создаться папка **fyne-cross/dist** и там будет созданна папка с тем названием под которую Вы компилировали приложения (linux-amd64 или windows-amd64).
8. В папке **fyne-cross/dist/linux-amd64** или **fyne-cross/dist/windows-amd64** будут архивы, которые надо распаковать и пользоваться программой.
8. В папке **fyne-cross/bin/linux-amd64** или **fyne-cross/bin/windows-amd64** будут архивы, которые надо распаковать и пользоваться программой.

View File

@@ -5,8 +5,3 @@ Run "make user-uninstall" to uninstall from ~/.local/
System install
Run "sudo make install" to install the application.
Run "sudo make uninstall" to uninstall the application.
The program can be launched via the start menu in the Audio/Video or Standard section.
You can also call the program via the terminal:
gui-for-ffmpeg

View File

@@ -5,8 +5,3 @@
Установить для всей системы
Запустить "sudo make install" Для установки в систему.
Запустить "sudo make uninstall" Для удаления из системы.
Программу можно запустить через пуск в разделе Аудио/Видео или Стандартные.
Также можно вызвать программу через терминал:
gui-for-ffmpeg

View File

@@ -1,2 +0,0 @@
*
!.gitignore

View File

@@ -1,2 +0,0 @@
*
!.gitignore

View File

@@ -80,21 +80,14 @@ func HelpFFplay() fyne.CanvasObject {
return widget.NewLabel("")
},
func(i widget.TableCellID, o fyne.CanvasObject) {
label := o.(*widget.Label)
label.TextStyle.Bold = false
label.SizeName = theme.SizeNameText
if i.Row == 0 {
label.TextStyle.Bold = true
label.SizeName = theme.SizeNameSubHeadingText
o.(*widget.Label).TextStyle.Bold = true
o.(*widget.Label).SizeName = theme.SizeNameSubHeadingText
}
if i.Col == 0 {
label.TextStyle.Bold = true
o.(*widget.Label).TextStyle.Bold = true
}
label.SetText(data[i.Row][i.Col])
o.(*widget.Label).SetText(data[i.Row][i.Col])
})
list.SetRowHeight(0, 40)
list.SetColumnWidth(0, 200)