Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
Update tableview and add SQL Preview
Browse files Browse the repository at this point in the history
Signed-off-by: Virink <[email protected]>
  • Loading branch information
mozhu1024 committed Jan 25, 2019
1 parent 5276fa2 commit 7271a79
Show file tree
Hide file tree
Showing 5 changed files with 204 additions and 55 deletions.
135 changes: 121 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@

# Created by https://www.gitignore.io/api/xcode,cocoapods
# Created by https://www.gitignore.io/api/xcode,swift,objective-c
# Edit at https://www.gitignore.io/?templates=xcode,swift,objective-c

### CocoaPods ###
## CocoaPods GitIgnore Template

# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
# - Also handy if you have a lage number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGONRE THE LOCK FILE
Pods/
Podfile.lock

### Xcode ###
### Objective-C ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
Build/
Index/
build/
DerivedData/

## Various settings
Expand All @@ -36,11 +27,127 @@ xcuserdata/
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output

# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/

### Objective-C Patch ###

### Swift ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated

## Various settings

## Other

## Obj-C/Swift specific

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts


# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control


# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode


### Xcode ###
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## User settings

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)

### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
/*.gcno
**/xcshareddata/WorkspaceSettings.xcsettings

# End of https://www.gitignore.io/api/xcode,swift,objective-c

# End of https://www.gitignore.io/api/xcode,cocoapods
.DS_Store
Index
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

### Version

**1.1 Beta**
**1.1.1 Beta**

**1.0 Beta**
~~**1.1 Beta**~~

~~**1.0 Beta**~~

### 功能

Expand All @@ -26,9 +28,12 @@
- OpenLog 清空并开启Log日志
- 双击行复制SQL语句到剪贴板

### TODO
### TODO & DONE

- [ ] 表格自动换行并自适应列表行高 (看心情吧emmmmmmmmmmmmm)
- [x] ~~表格自动换行并自适应列表行高~~
- [x] 增加表格 SQL 字段的宽度,横向滚动
- [x] 新增完整 SQL 语句预览功能(实际上就是丢到另一个文本框 emmmm )
- [ ] 暂未发现还有啥要修改的地方 emmmmmm

## Author

Expand All @@ -41,6 +46,7 @@ Blog : [https://www.virzz.com](https://www.virzz.com)
- 2018-02-17 重构程序,移除Pods,使用OC+libmysqlclient
+ 重写了下连接mysql的模块、通过OC调用系统libmysqlclient(😂😂😂😂😂)优化了下查询语句
- 2017-12-12 重构程序,使用Pods
- 2019-01-26 不知道写啥了,反正就是更新了,任性

## License

Expand Down
Loading

0 comments on commit 7271a79

Please sign in to comment.