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

Merge v0.1.7 #14

Merged
merged 31 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
69be1a0
Bump version to 0.1.7
1whatleytay Jul 18, 2023
376c6e0
Remember memory settings after switching tabs
1whatleytay Jul 19, 2023
10e419d
Fix memory backstepping adding to log
1whatleytay Jul 19, 2023
fdeb95a
Add base debug tab
1whatleytay Jul 20, 2023
acc4a39
Add better memory and trap suggestions
1whatleytay Jul 25, 2023
a901ab2
Allow editing for MemoryTab
1whatleytay Jul 26, 2023
25a9cbd
Complete Memory Editing task in Readme
1whatleytay Jul 26, 2023
f4717e4
Change Debug tab items
1whatleytay Jul 28, 2023
c32d2ad
Gather stack information on debug view
1whatleytay Jul 29, 2023
7de5b32
Add instruction decoding to debug page
1whatleytay Jul 31, 2023
883b291
Add better instruction decoding
1whatleytay Aug 1, 2023
238ab4b
Move to register item
1whatleytay Aug 2, 2023
9ba9044
Improve interface for debug tab
1whatleytay Aug 3, 2023
992c24e
Add multiple instructions to debug tab
1whatleytay Aug 23, 2023
1f35fa1
Add support for offset types
1whatleytay Aug 23, 2023
8dde011
Add Step One on Break tab
1whatleytay Aug 24, 2023
d2f2c7e
Add hec regions exporting
1whatleytay Sep 25, 2023
07f1603
Add ELF exporting
1whatleytay Sep 25, 2023
66e0fd0
Add behaviour for exporting an ELF file
1whatleytay Sep 25, 2023
a6775e9
Add support for .entry directive
1whatleytay Sep 25, 2023
a296ce5
Fix breakpoints at 0x0
1whatleytay Sep 26, 2023
16bbb3a
Add export configurations dialog
1whatleytay Oct 5, 2023
d353714
Add jumping to beginning end of line
1whatleytay Oct 5, 2023
f41c5d5
Add encoding option to export regions
1whatleytay Oct 19, 2023
f9a742d
Rename to ExportModal
1whatleytay Oct 19, 2023
a4a9c3b
Implement 32-bit regions exporting
1whatleytay Oct 19, 2023
c036eab
Update rust packages
1whatleytay Oct 27, 2023
cc7f7ba
Update npm packages
1whatleytay Oct 27, 2023
8a9beb7
Allow macOS signing to access APPLE_TEAM_ID
1whatleytay Oct 31, 2023
0fdedeb
Remove extra console.log
1whatleytay Nov 1, 2023
81959c6
Disable context menu on production
1whatleytay Nov 1, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/build-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'Saturn v__VERSION__'
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ yarn tauri build

# Important Tasks

- [ ] Memory Editing and Copying
- [x] Memory Editing and Copying
- [x] Register Editing and Copying
- [x] Finding Text (Cmd + F)
- [x] Finished Execution State
Expand All @@ -63,3 +63,4 @@ yarn tauri build
- [x] MIDI and Other Syscalls
- [x] Variable Name Suggestions
- [x] Improve Bitmap Display
- [x] Add Time Travel
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri + Vue + TS</title>
<title>Saturn</title>
</head>

<style>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@types/uuid": "^9.0.0",
"@vitejs/plugin-vue": "^3.0.1",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.20",
"postcss": "^8.4.31",
"prettier": "2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.6.4",
Expand Down
Loading