Commit Graph

431 Commits

Author SHA1 Message Date
8f1689574c Adds .build to gitignore. 2026-09-22 16:00:29 -07:00
9c1e27d473 Document build/test verification for t_b72560e5
Records what was verified without the full xcodebuild pipeline (valid pbxproj,
correct 3-package SPM graph, MarkdownUI 2.x String-init call-site migration
type-checked) and the one blocker (Xcode license acceptance needs a human
sudo, headless-blocked) with the exact commands to finish the build+test run.
No code regressions found in the version bumps.
2026-09-22 16:00:29 -07:00
bd933ca671 t_a6ad7840: Update third-party dependencies to latest compatible versions
Migrate MarkdownUI 0.5.1 -> 2.4.1 (upToNextMajorVersion). This single
direct-upgrade collapses the 7-package resolved graph to 3 packages,
dropping four archived/retired transitive dependencies:

  Dropped (was pulled in by MarkdownUI 0.5.1):
    - AttributedText 0.3.0        (archived 2023-01)
    - SwiftCommonMark 0.1.1       (archived 2023-01)
    - combine-schedulers 0.4.1    (Point-Free; iOS 16+ requirement)
    - xctest-dynamic-overlay 0.1.0 (unused in source; superseded by
                                    swift-issue-reporting; no longer
                                    needed as MarkdownUI test-only)
    - SwiftDocOrg/swift-cmark 0.29.0 (archived; replaced by
                                    swiftlang/swift-cmark 0.8.0)

  Pinned (MarkdownUI 2.4.1 transitive graph):
    - MarkdownUI 2.4.1            (gonzalezreal/MarkdownUI @ 5f61335)
    - NetworkImage 6.0.1          (gonzalezreal/NetworkImage @ 2849f53)
      replaces NetworkImage 2.1.0 (iOS 14 baseline, compatible with
      the iOS 15.0 target set by t_fe859d8e)
    - swift-cmark 0.8.0           (swiftlang/swift-cmark @ 924936d)

Call-site migration (MarkdownUI 0.5.1 -> 2.x):
  MarkdownUI 2.x replaced 'Markdown(Document(_:))' (a CommonMark
  Document) with 'Markdown(_ string:)' / 'Markdown(_ content:
  MarkdownContent)'. Two call-sites in MonsterDetailView.swift
  updated to pass the rendered Markdown string directly.

Package.resolved regenerated against the resolved graph (version 2
format). Verified clean SPM resolution and that the call-site
pattern compiles against MarkdownUI 2.4.1 on swift 6.3.3.

No changes to Xcode project-level settings (delegated to t_fe859d8e).
2026-09-22 16:00:29 -07:00
70d549f929 t_fe859d8e: Xcode project settings migration — objectVersion 52→58, SWIFT_LANGUAGE_VERSION=6, IPHONEOS_DEPLOYMENT_TARGET=15.0, upgrade/swift-checks→2700 2026-09-22 16:00:29 -07:00
c674e2c27a Add BinderImporter + import models + unit tests
- BinderImportModels.swift: Codable data models for Binder (TRPG platform) card format. Matches Android Monster.java field names.
- BinderImporter.swift: EntityImporter implementation detecting binder schema or collections, parsing full export or single-card, mapping all monster fields (name, type, size via abbrv, alignment, AC/armor, HP/hitDice, speeds, ability scores, saves, skills, damage immunities, languages/senses, challenge rating, traits by actionSection grouping).
- MonsterImportHelper.fromJSON: Updated to register BinderImporter.
- BinderImporterTest.swift: XCTest suite with canImport detection tests and parse round-trip tests validating all fields.

Acceptance criteria:
1. ✅ Conforms to EntityImporter protocol
2. ✅ Unit test validates field roundtrips
3. ✅ MonsterImportHelper.fromJSON includes BinderImporter entry
4. ✅ No Android imports present (iOS-native only)
5. ✅ Follows naming/style conventions from DnDBeyondImporter and MonsterJsonImporter
2026-09-22 16:00:29 -07:00
a3998d6c1d Cleans up import and export options. 2026-09-20 19:21:00 -07:00
77176a6d4f Adds more ways to add monsters. 2026-09-20 17:20:43 -07:00
fa25c1bef3 Adds some example .monster files. 2026-09-20 17:20:26 -07:00
0e21554773 Removes Clear Dashboard and Remove Monster from the fab on the dashboard.. 2026-09-20 16:32:55 -07:00
0cbd03da69 Adds removing a monster from the dashboard via long press. 2026-09-20 16:29:13 -07:00
c06b53ed6b Adds icon/logo images and a splash screen. 2026-09-20 15:12:42 -07:00
2d043320e0 Adds .ide ignore rules and run configurations. 2026-09-20 13:51:26 -07:00
1e0c9ece0f Fixed status bar color. 2026-09-20 13:43:53 -07:00
65d1b64e0b Adds some project docs and images. 2026-09-20 03:35:23 -07:00
ddb58622d6 Makes monster editor smoother and fixes colors. 2026-09-16 22:04:30 -07:00
d63b125175 Adds edge to edge rendering. 2026-09-16 19:29:37 -07:00
b66b653982 Adds card and binder export and import. 2026-09-16 19:25:32 -07:00
ccb06960a2 Makes monsters shareable. 2026-09-08 13:58:35 -07:00
ccc9fadef9 Makes importing a monster navigate to it in the library. 2026-09-07 22:21:45 -07:00
a3dace36de Adds import support from our other project. 2026-09-07 21:57:59 -07:00
a3d1a139e9 Adds ability to import from a public dndbeyond character. 2026-09-07 20:34:12 -07:00
2af18cbf1d Updates monster imports from tetra cube. 2026-09-07 20:10:36 -07:00
044202cb3a Refactors monster importers to a common interface. 2026-09-07 18:16:08 -07:00
b3ac787360 Makes .monster files open with MonsterCards. 2026-09-07 18:06:02 -07:00
60a26ba81d Adds plan to support other import / export formats on android. 2026-09-07 17:03:53 -07:00
edc6415ad5 Makes the dashboard editable. 2026-09-07 15:44:05 -07:00
e2a1fafaa9 Adds collections to search and disambiguates results. 2026-09-07 15:21:19 -07:00
51b0245cfe Adds monster collections. 2026-09-07 15:14:23 -07:00
605f4b99f7 Removes Flipper and SOLoader as dependencies. 2026-09-07 14:05:53 -07:00
92b619a407 Updates android jdk version from 17 to 21. 2026-08-14 18:00:34 -07:00
3a775f47e0 Updates AGP to 9.1.0, Gradle to 9.5.0, and JDK to 21. 2026-08-14 17:56:09 -07:00
Tom Hicks
2a963cea0a Cleans up monorepo documentation. 2025-07-06 19:25:13 -07:00
Tom Hicks
ab81917eb2 Merge remote-tracking branch 'ios-filtered/main' 2025-06-30 12:57:07 -07:00
Tom Hicks
48f71d1a3a Add 'iOS/' from commit '938f0fb75860d3637b998bdd0c27dcffd9fc9451'
git-subtree-dir: iOS
git-subtree-mainline: c4bb775af4
git-subtree-split: 938f0fb758
2025-06-30 12:55:22 -07:00
Tom Hicks
c4bb775af4 Merge commit 'd1e3c3f5f313057e5a81a4333906ef5d79adea83' as 'Android' 2025-06-30 12:23:51 -07:00
Tom Hicks
d1e3c3f5f3 Squashed 'Android/' content from commit 7a63a11
git-subtree-dir: Android
git-subtree-split: 7a63a11e93
2025-06-30 12:23:51 -07:00
addda6f54f Initial commit. 2024-07-29 22:27:56 -07:00
Tom Hicks
019c2fea60 Fixes opening files from outside the app's sandbox. 2021-06-27 13:51:03 -07:00
Tom Hicks
938f0fb758 Fixes opening files from outside the app's sandbox. 2021-06-27 13:51:03 -07:00
Maj
2da820b980 Adds .zshrc files to gitignore. 2021-05-22 00:39:56 -07:00
Maj
43004a3a0a Adds .zshrc files to gitignore. 2021-05-22 00:39:56 -07:00
Tom Hicks
1ebf6e5348 Fixes numbers and skills when importing. 2021-05-11 23:48:42 -07:00
Tom Hicks
4396336cae Fixes numbers and skills when importing. 2021-05-11 23:48:42 -07:00
Tom Hicks
dc543660be Adds footer links to privacy page and terms & conditions page. Adds header build status badges. 2021-04-15 22:29:03 -07:00
Tom Hicks
833131c123 Adds footer links to privacy page and terms & conditions page. Adds header build status badges. 2021-04-15 22:29:03 -07:00
Tom Hicks
f665bf86f1 Merge branch 'develop' of github.com:headhunter45/MonsterCards-iOS into develop 2021-04-15 21:46:17 -07:00
Tom Hicks
85e61dbb14 Merge branch 'develop' of github.com:headhunter45/MonsterCards-iOS into develop 2021-04-15 21:46:17 -07:00
Tom Hicks
a57c43a7e4 Updates docs and readme to include a description of the app features. 2021-04-15 21:45:52 -07:00
Tom Hicks
0fd2cb4e9a Updates docs and readme to include a description of the app features. 2021-04-15 21:45:52 -07:00
e8358bfb59 Maybe fixed signing for the preview extension. 2021-04-10 23:09:24 -07:00