Skip to content

Commit d6226fa

Browse files
committed
v0.2.75: Fix version sync
1 parent dd68391 commit d6226fa

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

imgui.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Window][Editor]
22
Pos=0,0
3-
Size=988,801
3+
Size=1372,778
44
Collapsed=0
55

66
[Window][DockSpace]

pcode-settings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"window_w": 988,
3-
"window_h": 801,
2+
"window_w": 1372,
3+
"window_h": 778,
44
"dark_theme": true,
55
"show_status_bar": true,
66
"word_wrap": true,
77
"show_line_numbers": true,
8-
"show_minimap": false,
8+
"show_minimap": true,
99
"show_spaces": true,
1010
"highlight_line": 0,
1111
"show_tabs": true,
1212
"tab_size": 4,
1313
"font_size": 17,
1414
"font_name": "CascadiaMono",
1515
"last_open_dir": "C:\\Users\\casse\\github\\pcode-editor",
16-
"recent_files": ["C:\\Users\\casse\\github\\pcode-editor\\BUILD_SYSTEM.md", "C:\\Users\\casse\\github\\pcode-editor\\src\\main.cpp", "C:\\Users\\casse\\github\\pcode-editor\\src\\editor_app.cpp", "C:\\Users\\casse\\github\\pcode-editor\\src\\editor_app.h", ".\\BUILD_SYSTEM.md"]
16+
"recent_files": ["C:\\Users\\casse\\github\\pcode-editor\\CMakeLists.txt", "C:\\Users\\casse\\github\\pcode-editor\\TESTS.md", "C:\\Users\\casse\\github\\pcode-editor\\IMPLEMENTATION_SUMMARY.md", "C:\\Users\\casse\\github\\pcode-editor\\BUILD_SYSTEM.md", "C:\\Users\\casse\\github\\pcode-editor\\src\\main.cpp", "C:\\Users\\casse\\github\\pcode-editor\\src\\editor_app.cpp", "C:\\Users\\casse\\github\\pcode-editor\\src\\editor_app.h", ".\\BUILD_SYSTEM.md"]
1717
}

src/editor_app.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ std::string EditorApp::get_version() {
175175
} else {
176176
version = "BUG-merang!!!"; // fallback if VERSION file missing
177177
}
178-
return "pCode Editor version 0.2.72 (8c21f94)" + version;
178+
return "pCode Editor version " + version;
179179
}
180180

181181
// ============================================================================

0 commit comments

Comments
 (0)