소스 검색

fix: 修改键盘字号,修复输入内容后会清空聊天框的问题

Destiny 6 달 전
부모
커밋
513ce28f7b

+ 5 - 5
ios/AiKeyboard/KeyboardViewController.swift

@@ -77,7 +77,7 @@ class KeyboardViewController: UIInputViewController {
        
         let label = UILabel()
         label.text = "30%"
-        label.font = .boldSystemFont(ofSize: 10)
+        label.font = .boldSystemFont(ofSize: 12)
         label.textColor = .white
         
         label.isUserInteractionEnabled = true
@@ -119,7 +119,7 @@ class KeyboardViewController: UIInputViewController {
        
         let label = UILabel()
         label.text = "帮聊"
-        label.font = .boldSystemFont(ofSize: 12)
+        label.font = .boldSystemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         return label
     }()
@@ -135,7 +135,7 @@ class KeyboardViewController: UIInputViewController {
         
         let btn = UIButton()
         btn.setTitle("小蕾", for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         btn.setTitleColor(.hexStringColor(hexString: "#000000").withAlphaComponent(0.8), for: .normal)
         btn.setImage(UIImage(named: "keyboard_user_change_icon"), for: .normal)
         btn.setImageTitleLayout(.imgRight, spacing: 8)
@@ -156,7 +156,7 @@ class KeyboardViewController: UIInputViewController {
         let label = MarqueeLabel(frame: .zero, duration: 3.0, fadeLength: 0)
         label.type = .leftRight
         label.text = "通用键盘"
-        label.font = .systemFont(ofSize: 12)
+        label.font = .systemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000")
         label.textAlignment = .center
         return label
@@ -1194,7 +1194,7 @@ extension KeyboardViewController {
         
         self.view.addSubview(chooseView)
         chooseView.snp.makeConstraints { make in
-            make.width.equalTo(147)
+            make.width.equalTo(185)
             make.height.equalTo(34)
             make.left.equalTo(menuBtn.snp.right).offset(9)
             make.centerY.equalTo(menuBtn.snp.centerY)

+ 2 - 2
ios/AiKeyboard/View/Cell/KeyboardCharacterCell.swift

@@ -31,7 +31,7 @@ class KeyboardCharacterCell: UICollectionViewCell {
         label.type = .leftRight
         label.textAlignment = .center
         label.text = "💑 恋爱脑"
-        label.font = .systemFont(ofSize: 12)
+        label.font = .systemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000").withAlphaComponent(0.8)
         return label
     }()
@@ -42,7 +42,7 @@ class KeyboardCharacterCell: UICollectionViewCell {
         btn.isEnabled = false
         btn.isHidden = true
         btn.setTitle("添加人设", for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 12)
+        btn.titleLabel?.font = .systemFont(ofSize: 14)
         btn.setTitleColor(.hexStringColor(hexString: "#7D46FC"), for: .normal)
         btn.setImage(UIImage(named: "icon_plus"), for: .normal)
         btn.setImageTitleLayout(.imgLeft, spacing: 3)

+ 1 - 1
ios/AiKeyboard/View/Cell/KeyboardExchangeCell.swift

@@ -37,7 +37,7 @@ class KeyboardExchangeCell: UICollectionViewCell {
        
         let label = UILabel()
         label.text = "通用键盘"
-        label.font = .systemFont(ofSize: 12, weight: .medium)
+        label.font = .systemFont(ofSize: 15, weight: .medium)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         return label
     }()

+ 3 - 3
ios/AiKeyboard/View/Cell/KeyboardTeachDialogueCell.swift

@@ -29,7 +29,7 @@ class KeyboardTeachDialogueCell: UITableViewCell {
         label.isHidden = true
         label.numberOfLines = 0
         label.text = "巴拉巴拉小魔仙?"
-        label.font = .systemFont(ofSize: 12)
+        label.font = .systemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         label.setLineSpacing(5)
         return label
@@ -47,7 +47,7 @@ class KeyboardTeachDialogueCell: UITableViewCell {
 
         let label = UILabel()
         label.text = "加载中..."
-        label.font = .systemFont(ofSize: 12)
+        label.font = .systemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.47)
         return label
     }()
@@ -116,7 +116,7 @@ class KeyboardTeachDialogueCell: UITableViewCell {
         
         self.dialogueLabel.text = content
         
-        let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 12), lineSpacing: 5) + 16
+        let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 14), lineSpacing: 5) + 16
         self.containerView.frame = CGRect(x: 0, y: 0, width: KeyboardConst.kb_kScreenW - 84, height: height)
         self.containerView.addFourCorner(topLeft: 14, topRight: 18, bottomLeft: 0, bottomRight: 18)
     }

+ 7 - 7
ios/AiKeyboard/View/MainView/KeyboardBaseView.swift

@@ -50,7 +50,7 @@ class KeyboardBaseView: UIView {
         
         let label = UILabel()
         label.text = "“允许”【从其他app粘贴】,不再弹出询问弹窗>"
-        label.font = .systemFont(ofSize: 11)
+        label.font = .systemFont(ofSize: 13)
         label.textColor = .hexStringColor(hexString: "#FFA616")
         
         label.isUserInteractionEnabled = true
@@ -73,7 +73,7 @@ class KeyboardBaseView: UIView {
         button.setBackgroundImage(UIImage(named: "keyboard_paste_btn_bg"), for: .normal)
         button.setTitle("粘贴", for: .normal)
         button.setTitleColor(.white, for: .normal)
-        button.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        button.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         button.addTarget(self, action: #selector(pasteBtnAction), for: .touchUpInside)
         return button
     }()
@@ -84,7 +84,7 @@ class KeyboardBaseView: UIView {
         button.setBackgroundImage(UIImage(named: "keyboard_normal_btn_bg"), for: .normal)
         button.setTitle("删除", for: .normal)
         button.setTitleColor(.hexStringColor(hexString: "#000000").withAlphaComponent(0.9), for: .normal)
-        button.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        button.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         button.addTarget(self, action: #selector(deleteBtnAction), for: .touchUpInside)
         
         // 添加长按手势
@@ -100,7 +100,7 @@ class KeyboardBaseView: UIView {
         button.setBackgroundImage(UIImage(named: "keyboard_normal_btn_bg"), for: .normal)
         button.setTitle("清空", for: .normal)
         button.setTitleColor(.hexStringColor(hexString: "#000000").withAlphaComponent(0.9), for: .normal)
-        button.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        button.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         button.addTarget(self, action: #selector(clearBtnAction), for: .touchUpInside)
         return button
     }()
@@ -111,7 +111,7 @@ class KeyboardBaseView: UIView {
         button.setBackgroundImage(UIImage(named: "keyboard_normal_btn_bg"), for: .normal)
         button.setTitle("发送", for: .normal)
         button.setTitleColor(.hexStringColor(hexString: "#000000").withAlphaComponent(0.9), for: .normal)
-        button.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        button.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         button.addTarget(self, action: #selector(sendBtnAction), for: .touchUpInside)
         return button
     }()
@@ -136,7 +136,7 @@ class KeyboardBaseView: UIView {
         attr.append(copyAttr)
         
         let titleText = NSMutableAttributedString(string: "复制对方的话自动粘贴")
-        titleText.addAttributes([.font: UIFont.systemFont(ofSize: 14, weight: .medium), .foregroundColor: UIColor.hexStringColor(hexString: "#996DFF")], range: NSRange(location: 0, length: titleText.length))
+        titleText.addAttributes([.font: UIFont.systemFont(ofSize: 16, weight: .medium), .foregroundColor: UIColor.hexStringColor(hexString: "#996DFF")], range: NSRange(location: 0, length: titleText.length))
         attr.append(titleText)
 
         label.attributedText = attr
@@ -150,7 +150,7 @@ class KeyboardBaseView: UIView {
         label.textAlignment = .center
         label.text = ""
         label.textColor = .hexStringColor(hexString: "#996DFF")
-        label.font = .systemFont(ofSize: 14, weight: .medium)
+        label.font = .systemFont(ofSize: 16, weight: .medium)
         return label
     }()
     

+ 0 - 3
ios/AiKeyboard/View/MainView/KeyboardHelpView.swift

@@ -102,9 +102,6 @@ extension KeyboardHelpView: UICollectionViewDelegate, UICollectionViewDataSource
             if let model = self.characterList?[indexPath.row], let characterId = model.id {
                 helpDelegate?.helpCollectionViewDidSelectItem(characterId: characterId, content: self.dialogueLabel.text ?? "") { isSuccess in
                     cell.setAnimate(play: false)
-                    if isSuccess {
-                        self.dialogueClearBtnAction()
-                    }
                 }
             }
         }

+ 8 - 7
ios/AiKeyboard/View/MainView/KeyboardPrologueView.swift

@@ -21,7 +21,7 @@ class KeyboardPrologueView: KeyboardBaseView {
         static let twoTitleBtnWidth = (KeyboardConst.kb_kScreenW - 20) / 4
         static let threeTitleBtnWidth = (KeyboardConst.kb_kScreenW - 20) / 3
         static let fourTitleBtnWidth = (KeyboardConst.kb_kScreenW - 20) / 4
-        static let resultCellHeight = "单行文字".heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 12), lineSpacing: 5) + 16
+        static let resultCellHeight = "单行文字".heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 14), lineSpacing: 5) + 16
     }
     
     weak var prologueDelegate: KeyboardPrologueViewDelegate?
@@ -58,8 +58,8 @@ class KeyboardPrologueView: KeyboardBaseView {
         titleDataSource.itemWidth = UX.fourTitleBtnWidth
         titleDataSource.titleNormalColor = UIColor.hexStringColor(hexString: "#77849D")
         titleDataSource.titleSelectedColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
-        titleDataSource.titleNormalFont = .systemFont(ofSize: 12)
-        titleDataSource.titleSelectedFont = .boldSystemFont(ofSize: 12)
+        titleDataSource.titleNormalFont = .systemFont(ofSize: 14)
+        titleDataSource.titleSelectedFont = .boldSystemFont(ofSize: 14)
         titleDataSource.itemSpacing = 0
         
         return titleDataSource
@@ -135,7 +135,7 @@ class KeyboardPrologueView: KeyboardBaseView {
         btn.layer.shadowRadius = 6.1
         btn.setTitle("重新生成", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 12)
+        btn.titleLabel?.font = .systemFont(ofSize: 14)
         btn.addTarget(self, action: #selector(regenerateBtnClickAction), for: .touchUpInside)
         return btn
     }()
@@ -180,7 +180,7 @@ extension KeyboardPrologueView {
         self.isResultLoading = true
         self.collectionView.isHidden = false
         self.resultView.isHidden = true
-        self.dialogueClearBtnAction()
+        self.pagingTitleView.isHidden = false
     }
     
     // 重新生成按钮点击
@@ -246,6 +246,7 @@ extension KeyboardPrologueView: UICollectionViewDelegate, UICollectionViewDataSo
                 if isLogin {
                     // 清空回答列表
                     self.resultList?.removeAll()
+                    self.pagingTitleView.isHidden = true
                     self.collectionView.isHidden = true
                     self.resultView.isHidden = false
                     self.tableView.reloadData()
@@ -327,7 +328,7 @@ extension KeyboardPrologueView: UITableViewDelegate, UITableViewDataSource {
         if indexPath.section != 0 {
             if let resultList = self.resultList, resultList.count > 0 {
                 let content = resultList[indexPath.section - 1]
-                let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 12), lineSpacing: 5) + 16
+                let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 14), lineSpacing: 5) + 16
                 return height
             }
         }
@@ -412,7 +413,7 @@ extension KeyboardPrologueView {
         resultView.snp.makeConstraints { make in
             make.left.equalTo(10)
             make.right.equalTo(deleteBtn.snp.left).offset(-6)
-            make.top.equalTo(pagingTitleView.snp.bottom).offset(12)
+            make.top.equalTo(self.topView.snp.bottom)
             make.bottom.equalTo(0)
         }
         

+ 4 - 5
ios/AiKeyboard/View/MainView/KeyboardTeachView.swift

@@ -21,7 +21,7 @@ class KeyboardTeachView: KeyboardBaseView {
     struct UX {
         static let cellWidth = (KeyboardConst.kb_kScreenW - 96.0) / 3.0
         static let cellHeight = 46.0
-        static let resultCellHeight = "单行文字".heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 12), lineSpacing: 5) + 16
+        static let resultCellHeight = "单行文字".heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 14), lineSpacing: 5) + 16
     }
     
     weak var teachDelegate: KeyboardTeachViewDelegate?
@@ -91,7 +91,7 @@ class KeyboardTeachView: KeyboardBaseView {
         btn.layer.shadowRadius = 6.1
         btn.setTitle("重新生成", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 12)
+        btn.titleLabel?.font = .systemFont(ofSize: 14)
         btn.addTarget(self, action: #selector(regenerateBtnClickAction), for: .touchUpInside)
         return btn
     }()
@@ -136,7 +136,6 @@ extension KeyboardTeachView {
         self.isResultLoading = true
         self.collectionView.isHidden = false
         self.resultView.isHidden = true
-        self.dialogueClearBtnAction()
     }
     
     // 重新生成按钮点击
@@ -282,7 +281,7 @@ extension KeyboardTeachView: UITableViewDelegate, UITableViewDataSource {
         if indexPath.section != 0 {
             if let resultList = self.resultList, resultList.count > 0 {
                 let content = resultList[indexPath.section - 1]
-                let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 12), lineSpacing: 5) + 16
+                let height = content.heightAccording(width: KeyboardConst.kb_kScreenW - 105, font: .systemFont(ofSize: 14), lineSpacing: 5) + 16
                 return height
             }
         }
@@ -320,7 +319,7 @@ extension KeyboardTeachView {
         attr.append(copyAttr)
         
         let titleText = NSMutableAttributedString(string: "输入/粘贴你想说的话,润色升华")
-        titleText.addAttributes([.font: UIFont.systemFont(ofSize: 14, weight: .medium), .foregroundColor: UIColor.hexStringColor(hexString: "#996DFF")], range: NSRange(location: 0, length: titleText.length))
+        titleText.addAttributes([.font: UIFont.systemFont(ofSize: 16, weight: .medium), .foregroundColor: UIColor.hexStringColor(hexString: "#996DFF")], range: NSRange(location: 0, length: titleText.length))
         attr.append(titleText)
 
         self.dialogueTitleLabel.attributedText = attr

+ 1 - 1
ios/AiKeyboard/View/PopView/KeyboardExchangeView.swift

@@ -71,7 +71,7 @@ class KeyboardExchangeView: UIView {
         
         btn.setTitle("保存", for: .normal)
         btn.setTitleColor(.white, for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 16, weight: .medium)
         
         btn.addTarget(self, action: #selector(saveBtnClickAction), for: .touchUpInside)
         

+ 6 - 6
ios/AiKeyboard/View/PopView/KeyboardFunctionPopView.swift

@@ -42,7 +42,7 @@ class KeyboardFunctionPopView: UIView {
        
         let label = UILabel()
         label.text = "帮聊"
-        label.font = .boldSystemFont(ofSize: 12)
+        label.font = .boldSystemFont(ofSize: 14)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         return label
     }()
@@ -62,7 +62,7 @@ class KeyboardFunctionPopView: UIView {
         btn.setBackgroundImage(UIImage(named: "keyboard_func_select_bg"), for: .selected)
         btn.setTitle("帮聊", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = UIFont.boldSystemFont(ofSize: 12)
+        btn.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
         btn.addTarget(self, action: #selector(functionBtnTapped(_:)), for: .touchUpInside)
         return btn
     }()
@@ -74,7 +74,7 @@ class KeyboardFunctionPopView: UIView {
         btn.setBackgroundImage(UIImage(named: "keyboard_func_select_bg"), for: .selected)
         btn.setTitle("教你说", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = UIFont.systemFont(ofSize: 12)
+        btn.titleLabel?.font = UIFont.systemFont(ofSize: 14)
         btn.addTarget(self, action: #selector(functionBtnTapped(_:)), for: .touchUpInside)
         return btn
     }()
@@ -86,7 +86,7 @@ class KeyboardFunctionPopView: UIView {
         btn.setBackgroundImage(UIImage(named: "keyboard_func_select_bg"), for: .selected)
         btn.setTitle("开场白", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = UIFont.systemFont(ofSize: 12)
+        btn.titleLabel?.font = UIFont.systemFont(ofSize: 14)
         btn.addTarget(self, action: #selector(functionBtnTapped(_:)), for: .touchUpInside)
         return btn
     }()
@@ -185,10 +185,10 @@ extension KeyboardFunctionPopView {
         for button in buttons {
             if button.tag == self.selectType?.rawValue ?? 0 {
                 button.isSelected = true
-                button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 12)
+                button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
             } else {
                 button.isSelected = false
-                button.titleLabel?.font = UIFont.systemFont(ofSize: 12)
+                button.titleLabel?.font = UIFont.systemFont(ofSize: 14)
             }
         }
     }

+ 1 - 1
ios/AiKeyboard/View/PopView/KeyboardLoginTipView.swift

@@ -42,7 +42,7 @@ class KeyboardLoginTipView: UIView {
        
         let label = UILabel()
         label.text = "请登录后使用"
-        label.font = .systemFont(ofSize: 20, weight: .medium)
+        label.font = .systemFont(ofSize: 22, weight: .medium)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         return label
     }()

+ 3 - 3
ios/AiKeyboard/View/PopView/KeyboardMenuView.swift

@@ -45,7 +45,7 @@ class KeyboardMenuView: UIView {
         btn.layer.cornerRadius = 14
         btn.setTitle("定制人设", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 13, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 15, weight: .medium)
         btn.titleLabel?.textAlignment = .center
         btn.setImage(UIImage(named: "keyboard_menu_diy"), for: .normal)
         btn.setImageTitleLayout(.imgTop, spacing: 8)
@@ -60,7 +60,7 @@ class KeyboardMenuView: UIView {
         btn.layer.cornerRadius = 14
         btn.setTitle("人设市场", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 13, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 15, weight: .medium)
         btn.titleLabel?.textAlignment = .center
         btn.setImage(UIImage(named: "keyboard_menu_market"), for: .normal)
         btn.setImageTitleLayout(.imgTop, spacing: 8)
@@ -75,7 +75,7 @@ class KeyboardMenuView: UIView {
         btn.layer.cornerRadius = 14
         btn.setTitle("解锁会员", for: .normal)
         btn.setTitleColor(.hexStringColor(hexString: "#000000", alpha: 0.8), for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 13, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 15, weight: .medium)
         btn.titleLabel?.textAlignment = .center
         btn.setImage(UIImage(named: "keyboard_menu_vip"), for: .normal)
         btn.setImageTitleLayout(.imgTop, spacing: 8)

+ 2 - 2
ios/AiKeyboard/View/PopView/KeyboardTipsPopView.swift

@@ -40,7 +40,7 @@ class KeyboardTipsPopView: UIView {
        
         let label = UILabel()
         label.text = "开启【追爱小键盘】,并【允许完全访问】"
-        label.font = .systemFont(ofSize: 13, weight: .medium)
+        label.font = .systemFont(ofSize: 15, weight: .medium)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         return label
     }()
@@ -58,7 +58,7 @@ class KeyboardTipsPopView: UIView {
         btn.layer.cornerRadius = 17
         btn.setTitle("去设置", for: .normal)
         btn.setTitleColor(.white, for: .normal)
-        btn.titleLabel?.font = .systemFont(ofSize: 12, weight: .medium)
+        btn.titleLabel?.font = .systemFont(ofSize: 14, weight: .medium)
         
         if let image = UIImage.gradient([UIColor.hexStringColor(hexString: "#7D46FC"), UIColor.hexStringColor(hexString: "#BC87FF")], size: CGSize(width: 103, height: 34), locations: [0, 1], direction: .horizontal) {
             

+ 1 - 1
ios/AiKeyboard/View/PopView/KeyboardVipTipView.swift

@@ -52,7 +52,7 @@ class KeyboardVipTipView: UIView {
         let label = UILabel()
         label.numberOfLines = 2
         label.text = "您的免费提问次数已用完\n可订阅会员解锁无线提问"
-        label.font = .systemFont(ofSize: 14, weight: .medium)
+        label.font = .systemFont(ofSize: 16, weight: .medium)
         label.textColor = .hexStringColor(hexString: "#000000", alpha: 0.8)
         label.setLineSpacing(5)
         return label

+ 1 - 1
pubspec.yaml

@@ -3,7 +3,7 @@ description: "A new Flutter project."
 
 publish_to: 'none' # Remove this line if you wish to publish to pub.dev
 
-version: 1.1.2+14
+version: 1.1.3+15
 
 environment:
   sdk: ^3.7.0