mirror of https://github.com/procxx/kepka.git
Branding changes, minor readme fix
This commit is contained in:
parent
69661217d2
commit
eba069a406
|
@ -95,7 +95,7 @@ Furthermore, the pixel shortage is over. We want to see:
|
|||
|
||||
### Test your changes!
|
||||
|
||||
Before you submit a pull request, please test your changes. Verify that Telegram Desktop still works and your changes don't cause other issue or crashes.
|
||||
Before you submit a pull request, please test your changes. Verify that Kepka still works and your changes don't cause other issue or crashes.
|
||||
|
||||
### Write a good commit message
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!--
|
||||
Thanks for reporting issues of Telegram Desktop!
|
||||
Thanks for reporting issues of Kepka!
|
||||
|
||||
To make it easier for us to help you please enter detailed information below.
|
||||
-->
|
||||
|
@ -17,7 +17,7 @@ Tell us what happens instead
|
|||
### Configuration
|
||||
**Operating system:**
|
||||
|
||||
**Version of Telegram Desktop:**
|
||||
**Version of Kepka:**
|
||||
|
||||
**Used theme**:
|
||||
|
||||
|
|
|
@ -69,3 +69,5 @@ Session.vim
|
|||
_build_
|
||||
_conan_build_
|
||||
|
||||
.idea/
|
||||
cmake-build-debug/
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
|||
Telegram Desktop is licensed under the GNU General Public License
|
||||
Kepka is licensed under the GNU General Public License
|
||||
version 3 with the addition of the following special exception:
|
||||
|
||||
In addition, as a special exception, the copyright holders give
|
||||
|
|
|
@ -21,16 +21,16 @@ What you need to have installed:
|
|||
* zlib
|
||||
* opus (libopus-dev)
|
||||
|
||||
Debian/Ubuntu:
|
||||
#### Debian/Ubuntu:
|
||||
```console
|
||||
# apt-get install qtbase5-private-dev zlib1g-dev libopenal-dev libavcodec-dev libavresample-dev libswscale-dev libopenal-data libopenal1 libavutil-dev
|
||||
# apt-get install libssl-dev libavformat-dev libavdevice-dev libswscale-dev libavutil-dev libpulse-dev libasound2-dev libswresample-dev libavresample-dev libopus-dev qtbase5-private-dev zlib1g-dev libopenal-dev libavcodec-dev libopenal-data libopenal1
|
||||
```
|
||||
|
||||
You most likely have to rebuild ffmpeg with `--enable-swresample --enable-swscale`
|
||||
|
||||
After that, go to the [next section](#configuring-and-building).
|
||||
|
||||
Fedora:
|
||||
#### Fedora:
|
||||
```console
|
||||
# dnf install rpm-build rpmdevtools mock mock-rpmfusion-free
|
||||
```
|
||||
|
|
|
@ -1042,7 +1042,7 @@ namespace internal {
|
|||
|
||||
Sandbox::SetLastCrashDump(lastdump);
|
||||
|
||||
LOG(("Opened '%1' for reading, the previous Telegram Desktop launch was not finished properly :( Crash log size: %2").arg(ReportPath).arg(lastdump.size()));
|
||||
LOG(("Opened '%1' for reading, the previous Kepka launch was not finished properly :( Crash log size: %2").arg(ReportPath).arg(lastdump.size()));
|
||||
|
||||
return LastCrashed;
|
||||
}
|
||||
|
|
|
@ -324,7 +324,7 @@ void start() {
|
|||
}
|
||||
if (!defaultValid && defaultFile.open(QIODevice::WriteOnly)) {
|
||||
const char *defaultHeader = "\
|
||||
// This is a list of default shortcuts for Telegram Desktop\n\
|
||||
// This is a list of default shortcuts for Kepka\n\
|
||||
// Please don't modify it, its content is not used in any way\n\
|
||||
// You can place your own shortcuts in the 'shortcuts-custom.json' file\n\n";
|
||||
defaultFile.write(defaultHeader);
|
||||
|
@ -398,7 +398,7 @@ void start() {
|
|||
}
|
||||
} else if (customFile.open(QIODevice::WriteOnly)) {
|
||||
const char *customContent = "\
|
||||
// This is a list of your own shortcuts for Telegram Desktop\n\
|
||||
// This is a list of your own shortcuts for Kepka\n\
|
||||
// You can see full list of commands in the 'shortcuts-default.json' file\n\
|
||||
// Place a null value instead of a command string to switch the shortcut off\n\n\
|
||||
[\n\
|
||||
|
|
Loading…
Reference in New Issue