Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code View #3029

Merged
merged 55 commits into from
Nov 18, 2014
Merged
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
8d65a7d
renamed menus, updated command line options
Sep 29, 2014
72ceb53
enable code as 4th view
Sep 30, 2014
32a3181
find all mac serial ports
Oct 2, 2014
f4fa5d0
first baby steps to adding a board menu
Oct 3, 2014
67b4cd0
board menus
Oct 3, 2014
e7fa243
include selected board in programmer cli
Oct 3, 2014
b429df7
first pass at code editor re-styling
Oct 3, 2014
3b82097
hide toolbar and statusbar for views that don't make use of them
Oct 6, 2014
554d634
copy arduino sketch files in temporary folder for uploading
Oct 6, 2014
4958ef1
merged menus with main fritzing menus
Oct 6, 2014
bfe9e5b
move buttons down, add upload shortcut
Oct 6, 2014
66c8e61
revised code editor text colors
Oct 6, 2014
36d3632
add code view tab icon
Oct 7, 2014
cf79d62
replace native system calls with new qserialport
Oct 8, 2014
78569ef
first steps of making the code view toolbar more standard-like
Oct 8, 2014
fd0b811
placeholder icons for code view toolbar
Oct 8, 2014
56f52e5
more code view button arrangement
Oct 8, 2014
7bd94fb
more code view toolbar styling
Oct 8, 2014
dff26df
start of factoring out programmable platforms
Oct 9, 2014
cdd87f8
programming languages are now platforms
Oct 10, 2014
4001e5c
platform-dependent board selection
Oct 11, 2014
fcbd5eb
show serial port name instead of its system path
Oct 11, 2014
4f4129a
add all current arduino boards (only default cpus for now)
Oct 11, 2014
37fe4c8
code view preferences tab
Oct 11, 2014
e10f404
simplify color dialog
Oct 12, 2014
7c3d46e
change paths for compiling
el-j Oct 12, 2014
c46734b
list available platforms in settings
Oct 12, 2014
9572ba9
Merge pull request #3017 from fritzing/program-arduino-paths
aknoerig Oct 13, 2014
ddc8a8c
update partsbranche
el-j Oct 13, 2014
a394c7e
refactor programmer location, incomplete
Oct 13, 2014
1ac0070
Merge branch 'program-arduino' of https://github.com/fritzing/fritzin…
Oct 13, 2014
6be4440
change filepath that causes compiling error
el-j Oct 13, 2014
e60dd43
work in progress: codeing-tab style
el-j Oct 13, 2014
3044e9e
Merge branch 'program-arduino' of https://github.com/fritzing/fritzin…
Oct 13, 2014
fd8ce99
apply programmer location
Oct 13, 2014
1a39acc
fix serial port value
Oct 13, 2014
53c397a
store/restore programmer locations
Oct 13, 2014
0d96d67
slightly improved code prefs
Oct 13, 2014
df9f6b1
add symbols + qss
el-j Oct 16, 2014
c635f33
updated seeedstudion bin
el-j Oct 27, 2014
2a7ee16
updated partbranch
el-j Oct 27, 2014
52509ab
fix keyboard shortcuts for code view
Nov 13, 2014
b89019c
when saving, stay in last opened tab
Nov 13, 2014
d212671
select default board
Nov 13, 2014
6453466
trying to make drop-downs readable
Nov 13, 2014
8e91305
attempt to fix windows shortcut issue
Nov 14, 2014
10f543c
fix global save to include code
Nov 14, 2014
5fbb79f
don't attempt to save unmodified code tabs
Nov 14, 2014
4f2fb9b
attempt to fix windows shortcut issue
Nov 14, 2014
7eb39a7
first pass at serial monitor
Nov 14, 2014
3579065
auto-connect serial monitor
Nov 14, 2014
797b136
smoother upload process
Nov 15, 2014
372f334
serial monitor behaving properly
Nov 15, 2014
9ee8060
some serial monitor styling
Nov 18, 2014
ee574a8
Merge branch 'master' into program-arduino
Nov 18, 2014
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
Prev Previous commit
Next Next commit
don't attempt to save unmodified code tabs
  • Loading branch information
André Knörig committed Nov 14, 2014
commit 5fbb79fc825529f5b1203881a497a2d67b133678
1 change: 1 addition & 0 deletions src/program/programwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,7 @@ void ProgramWindow::tabBeforeClosing(int index, bool & ok) {
bool ProgramWindow::prepSave(ProgramTab * programTab, bool saveAsFlag)
{
m_savingProgramTab = programTab; // need this for the saveAsAux call
if (!programTab->isModified()) return false;

bool result = (saveAsFlag)
? saveAs(programTab->filename(), programTab->readOnly())
Expand Down