Skip to content

Commit

Permalink
Merge branch 'release/v0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-poidevin committed Aug 15, 2018
2 parents 2ec2093 + 81159d8 commit cfe45c3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# CHANGELOG
## 0.6.1 (August 15th, 2018)
#### Features
* Changed donation method to PayPal ([#82](https://github.com/julian-poidevin/MBPMid2010_GPUFix/issues/82))

## 0.6.0 (November 3rd, 2017)
#### BugFix
* Disabled kext signing verification ([#39](https://github.com/julian-poidevin/MBPMid2010_GPUFix/issues/39))
Expand Down
12 changes: 1 addition & 11 deletions mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,18 +759,8 @@ int MainWindow::loadKernelExtension(QFile *kernelFile)
//Execute commande line
processStatus |= executeProcess(&process,command,arguments);

//logger->write("Unloading previous kext : ");
/*** Unload previous kext file ***/
//TODO find a way to execute process as root
//command = "sudo -S kextunload -v /System/Library/Extensions/AppleGraphicsPowerManagement.kext";
//arguments.clear();
//arguments << "-v" << "/System/Library/Extensions/AppleGraphicsPowerManagement.kext";
//Execute commande line
//processStatus |= executeProcess(&process,command,arguments);

logger->write("Loading modified kext : ");
/*** Finally load kext file ***/
//TODO find a way to execute process as root
command = "sudo -S kextload -v /tmp/AppleGraphicsPowerManagement.kext";
arguments.clear();
//Execute commande line
Expand Down Expand Up @@ -849,7 +839,7 @@ void MainWindow::on_versionButton_clicked()

void MainWindow::on_pushButton_clicked()
{
QString link = "https://www.tipeee.com/MBPMid2010_GPUFix";
QString link = "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=VR3QQDC6GMDCQ";
QDesktopServices::openUrl(QUrl(link));

return;
Expand Down
2 changes: 1 addition & 1 deletion mainwindow.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#define VERSION "0.6.0"
#define VERSION "0.6.1"
#define APP_NAME "MBPMid2010-GPU-Fix"

#include <QMainWindow>
Expand Down
2 changes: 1 addition & 1 deletion ressource/MBPMid2010-GPU-Fix-client_mac.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name=MBPMid2010-GPU-Fix

[Deployment]
platform="mac"
qtDir="~/Qt/5.8/clang_64"
qtDir="~/Qt5.9.2/5.9.2/clang_64"
qmlSourceDir=""
applicationDir="./build-release/"
pkgname="MBPMid2010-GPU-Fix-%(version)s"
Expand Down

0 comments on commit cfe45c3

Please sign in to comment.