This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
gitea
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
API fix
for-closed-social
Unknown
10 years ago
parent
006c45e21d
commit
ea29a9b846
4 changed files
with
26 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
conf/app.ini
+23
-0
conf/gitignore/Android
+1
-1
gogs.go
+1
-1
models/models.go
+ 1
- 1
conf/app.ini
View File
@ -9,7 +9,7 @@ RUN_MODE = dev
[repository]
ROOT
=
SCRIPT_TYPE
=
bash
LANG_IGNS
=
Google Go|C|C++|Python|Ruby|C Sharp|Java|Objective-C
LANG_IGNS
=
Google Go|C|C++|Python|Ruby|C Sharp|Java|Objective-C
|Android
LICENSES
=
Apache v2 License|GPL v2|MIT License|Affero GPL|Artistic License 2.0|BSD (3-Clause) License
[server]
+ 23
- 0
conf/gitignore/Android
View File
@ -0,0 +1,23 @@
# Built application files
*.apk
*.ap_
# Files for the Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
+ 1
- 1
gogs.go
View File
@ -19,7 +19,7 @@ import (
// Test that go1.2 tag above is included in builds. main.go refers to this definition.
const
go12tag
=
true
const
APP_VER
=
"0.3.0.042
0
Alpha"
const
APP_VER
=
"0.3.0.042
1
Alpha"
func
init
(
)
{
base
.
AppVer
=
APP_VER
+ 1
- 1
models/models.go
View File
@ -120,7 +120,7 @@ func SetEngine() (err error) {
if
err
!=
nil
{
return
fmt
.
Errorf
(
"models.init(fail to create xorm.log): %v"
,
err
)
}
orm
.
Logger
=
f
orm
.
Logger
=
xorm
.
NewSimpleLogger
(
f
)
orm
.
ShowSQL
=
true
orm
.
ShowDebug
=
true
Write
Preview
Loading…
Cancel
Save