Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
# ============================
# Qt / Qt Creator
# ============================

# Arquivos de configuração específicos do usuário
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.qmlproject.user
*.qmlproject.user.*

# Cache e arquivos temporários
.qmake.stash
*.autosave
*.qmlc
*.jsc
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
*.qrc.dep

# Diretórios de build do Qt Creator
build*/
*/build-*/

# ============================
# CMake
# ============================
CMakeLists.txt.user
CMakeCache.txt
CMakeFiles/
CMakeScripts/
Testing/
Makefile
cmake_install.cmake
install_manifest.txt
compile_commands.json
CTestTestfile.cmake

# ============================
# Ninja
# ============================
.ninja_deps
.ninja_log

# ============================
# Compilação
# ============================
*.o
*.obj
*.lo
*.la
*.al
*.libs
*.ko
*.dll
*.so
*.so.*
*.dylib
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# ============================
# Debug / Perfil
# ============================
*.dSYM/
*.su
*.idb
*.pdb
*.mod
*.cmd
*.bld
*.dep
*.gcno
*.gcda
*.gcov
*.prof
*.pgc
*.pgd

# Editor temporários
*~
*.swp
*.swo
*.tmp
*.bak
*.orig
*.rej

# ============================
# Outros
# ============================
*.log
*.trace

Binary file added Imgs/Browsers/librewolf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions ImgsResources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<file>Imgs/Browsers/edge.png</file>
<file>Imgs/Browsers/google-chrome.svg</file>
<file>Imgs/Browsers/microsoft-edge.svg</file>
<file>Imgs/Browsers/librewolf.png</file>
<file>Imgs/Browsers/opera.png</file>
<file>Imgs/Browsers/opera.svg</file>
<file>Imgs/Browsers/tor.png</file>
Expand Down
4 changes: 2 additions & 2 deletions Scripts/office365.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ echo "#!/usr/bin/env xdg-open
Version=1.0
Terminal=false
Type=Application
Name=Microsoft Office Word 356
Name=Microsoft Office Word 365
Exec=/usr/local/bin/${fname}
Categories=Office;
StartupWMClass=${url}
Expand All @@ -26,7 +26,7 @@ echo "#!/usr/bin/env xdg-open
Version=1.0
Terminal=false
Type=Application
Name=Microsoft Office Excel 356
Name=Microsoft Office Excel 365
Exec=/usr/local/bin/${fname}
Categories=Office;
StartupWMClass=${url}
Expand Down
11 changes: 10 additions & 1 deletion Welcome.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ void Welcome::fillOfficePage(){

ui->officeContainer->addWidget(
createButton(
"Office 365",
"Office 365 Online",
":/Imgs/Office/Imgs/Office/g825.png",
"/usr/share/applications/msword-365.desktop",
"://Scripts/office365.sh",
Expand Down Expand Up @@ -485,6 +485,15 @@ void Welcome::fillBrowserPage(){
"qapt-batch --uninstall brave-browser"),
0,2);

ui->browserContainer->addWidget(
createButton(
"LibreWolf",
":/Imgs/Browsers/Imgs/Browsers/librewolf.png",
"flatpak info org.torproject.torbrowser-launcher",
"flatpak-install-gui --override-appname=\"LibreWolf\" io.gitlab.librewolf-community",
"flatpak-install-gui --override-appname=\"LibreWolf\" --remove io.gitlab.librewolf-community"),
1,1);

ui->browserContainer->addWidget(
createButton(
"Opera",
Expand Down