Skip to content

Commit cb2bc7a

Browse files
committed
added license
1 parent 97bf541 commit cb2bc7a

3 files changed

Lines changed: 50 additions & 1 deletion

File tree

LICENSE_PROPRIETARY.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Codex++ Proprietary License
2+
3+
Copyright (c) 2025 Marius-Constantin Dinu. All rights reserved.
4+
5+
This software and associated documentation files (the "Software") are the
6+
confidential and proprietary information of Marius-Constantin Dinu
7+
("Proprietary Information"). You shall not disclose such Proprietary
8+
Information and shall use it only in accordance with the terms of the license
9+
agreement you entered into with Marius-Constantin Dinu. Except as expressly
10+
permitted by such license agreement, you shall not:
11+
12+
- copy, modify, merge, publish, distribute, sublicense, or sell copies of the Software,
13+
- decompile, reverse engineer, disassemble, or otherwise attempt to derive the source code,
14+
- remove or alter any proprietary notices or labels on the Software,
15+
- use the Software for any purpose other than internal evaluation and use as expressly permitted.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM,
22+
OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.
24+
25+
For commercial licensing or inquiries, contact: marius@extensity.ai

interview_coder/Credits.rtf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{\rtf1\ansi\deff0
2+
{\fonttbl{\f0\fnil\fcharset0 Helvetica;}}
3+
\fs24
4+
\b Codex++\b0 — Version \cf1 \~\~MARKETING_VERSION\~\~\cf0 \\
5+
\line
6+
\b Developer:\b0 Marius-Constantin Dinu (marius@extensity.ai)\line
7+
\b License:\b0 Proprietary — All rights reserved. See LICENSE_PROPRIETARY.txt.\line
8+
\b Copyright:\b0 © 2025 Marius-Constantin Dinu.\line
9+
\line
10+
\b Release Notes (v1.0):\b0\line
11+
• Initial stable release with: Profiles (model/reasoning/verbosity/TTS/Web), reliable context assembly (screenshots, audio transcripts, text snippets, imported files), OpenAI Responses streaming with reasoning capture, Chat Completions fallback, JSONL logging, and TTS playback.\line
12+
• Web Search integration, sources logging, and model gating for unsupported combinations.\line
13+
• CI with coverage and Codecov integration.\line
14+
}

interview_coder/interview_coderApp.swift

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ struct interview_coderApp: App {
3434
CommandGroup(replacing: .appVisibility) { }
3535
// Remove default Preferences (⌘,) to avoid conflict
3636
CommandGroup(replacing: .appSettings) { }
37+
CommandGroup(replacing: .appInfo) {
38+
Button("About Codex++") {
39+
NSApp.orderFrontStandardAboutPanel(nil)
40+
NSApp.activate(ignoringOtherApps: true)
41+
}
42+
}
3743
CommandMenu("Codex++") {
3844
Button("Screenshot ⌘H") {
3945
if !NSEvent.modifierFlags.contains(.shift) { appModel.captureScreenshot() }
@@ -71,7 +77,11 @@ struct interview_coderApp: App {
7177
Button("Scroll Down ⌘.") { appModel.pageDown() }.keyboardShortcut(".", modifiers: .command)
7278
Divider()
7379
Button("Toggle Hotkeys ⇧⌘B") { appModel.toggleHotkeysAndOverlay() }.keyboardShortcut("b", modifiers: [.command, .shift])
74-
80+
Divider()
81+
Button("About…") {
82+
NSApp.orderFrontStandardAboutPanel(nil)
83+
NSApp.activate(ignoringOtherApps: true)
84+
}
7585
}
7686
}
7787
}

0 commit comments

Comments
 (0)