5 Commits

7 changed files with 28 additions and 7 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.0"
Build = 75
Version = "1.0.1"
Build = 98
[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/bin/linux-amd64** или **fyne-cross/bin/windows-amd64** будут архивы, которые надо распаковать и пользоваться программой.
8. В папке **fyne-cross/dist/linux-amd64** или **fyne-cross/dist/windows-amd64** будут архивы, которые надо распаковать и пользоваться программой.

View File

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

2
dist/linux/usr/local/bin/.gitignore vendored Normal file
View File

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

View File

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

View File

@@ -80,14 +80,21 @@ 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 {
o.(*widget.Label).TextStyle.Bold = true
o.(*widget.Label).SizeName = theme.SizeNameSubHeadingText
label.TextStyle.Bold = true
label.SizeName = theme.SizeNameSubHeadingText
}
if i.Col == 0 {
o.(*widget.Label).TextStyle.Bold = true
label.TextStyle.Bold = true
}
o.(*widget.Label).SetText(data[i.Row][i.Col])
label.SetText(data[i.Row][i.Col])
})
list.SetRowHeight(0, 40)
list.SetColumnWidth(0, 200)