Skip to content

Commit

Permalink
very minor changes to includes for iOS builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jfriesen222 committed Sep 3, 2024
1 parent 233bd7d commit 9bf2f98
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ build_android_signed
*.DS_Store

res/firmwares/*/
/build
1 change: 1 addition & 0 deletions configparams.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include <QObject>
#include <QHash>
#include <QStringList>
#include <QXmlStreamWriter>
#include <QXmlStreamReader>
#include "configparam.h"
Expand Down
1 change: 1 addition & 0 deletions display_tool/dispeditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include <QColor>
#include <QImage>
#include <QColorDialog>
#include <QMessageBox>

DispEditor::DispEditor(QWidget *parent) :
QWidget(parent),
Expand Down
6 changes: 3 additions & 3 deletions ios/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
<key>CFBundleIdentifier</key>
<string>com.vesc-project.vesc-tool</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<string>6.05</string>
<key>CFBundleName</key>
<string>VESC Tool</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>6.0</string>
<string>6.05</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>6.0</string>
<string>6.05</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>
Expand Down
2 changes: 2 additions & 0 deletions macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<dict>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>VESC Tool uses bluetooth to connect to embedded devices</string>
<key>NSBluetoothAlwaysUsageDescription</key>
<string>VESC Tool uses bluetooth to connect to embedded devices</string>
<key>NSDocumentsFolderUsageDescription</key>
<string>VESC Tool can store various logs and data files for configuration</string>
<key>NSBluetoothAlwaysUsageDescription</key>
Expand Down
1 change: 1 addition & 0 deletions pages/pageloganalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <QMessageBox>
#include <cmath>
#include <QStandardPaths>
#include <QScrollBar>

PageLogAnalysis::PageLogAnalysis(QWidget *parent) :
QWidget(parent),
Expand Down
3 changes: 3 additions & 0 deletions pages/pagevescpackage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
#include <QFileDialog>
#include <QProgressDialog>
#include <QDirIterator>
#include <QDirIterator>
#include <QScrollBar>


PageVescPackage::PageVescPackage(QWidget *parent) :
QWidget(parent),
Expand Down
1 change: 1 addition & 0 deletions vescinterface.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <QTimer>
#include <QByteArray>
#include <QList>
#include <QVariantList>
#include <QTcpSocket>
#include <QUdpSocket>
#include <QSettings>
Expand Down

0 comments on commit 9bf2f98

Please sign in to comment.